欧美大屁股bbbbxxxx,狼人大香伊蕉国产www亚洲,男ji大巴进入女人的视频小说,男人把ji大巴放进女人免费视频,免费情侣作爱视频

歡迎來到入門教程網(wǎng)!

DOS/BAT

當(dāng)前位置:主頁 > 腳本語言 > DOS/BAT >

使用批處理命令設(shè)置windows系統(tǒng)的ip地址和dns附圖

來源:本站原創(chuàng)|時間:2020-01-10|欄目:DOS/BAT|點擊: 次

找到對應(yīng)的網(wǎng)卡名稱

使用命令:ipconfig

復(fù)制代碼 代碼如下:

ipconfig/all

Windows IP Configuration

Host Name . . . . . . . . . . . . : D501-4-3
Primary Dns Suffix . . . . . . . :
Node Type . . . . . . . . . . . . : Unknown
IP Routing Enabled. . . . . . . . : No
WINS Proxy Enabled. . . . . . . . : No

Ethernet adapter 本地連接:

Connection-specific DNS Suffix . :
Description . . . . . . . . . . . : Marvell Yukon 88E8057 PCI-E Gigabit
Ethernet Controller
Physical Address. . . . . . . . . : 44-37-E6-1D-5B-F1
Dhcp Enabled. . . . . . . . . . . : No
IP Address. . . . . . . . . . . . : 192.168.1.111
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . : 192.168.1.1
DNS Servers . . . . . . . . . . . : 8.8.8.8

我們現(xiàn)在需要設(shè)置的網(wǎng)卡名稱為"本地連接",ip地址為192.168.1.111,子網(wǎng)掩碼為255.255.255.0,dns地址為8.8.8.8

將ip和dns設(shè)置為自動獲取

使用命令:
netsh interface ip set address "本地連接" dhcp
netsh interface ip set dns "本地連接" dhcp

復(fù)制代碼 代碼如下:

netsh interface ip set address "本地連接" dhcp
確定。

netsh interface ip set dns "本地連接" dhcp
確定。

相當(dāng)于操作:
 

將ip和dns設(shè)置為固定的值

使用命令:
netsh interface ip set address "本地連接" static [ip地址] [子網(wǎng)掩碼] [網(wǎng)關(guān)] [網(wǎng)關(guān)跳遠(yuǎn)點數(shù):一般填1]
netsh interface ip set dns "本地連接" static [dns地址]
復(fù)制代碼 代碼如下:

netsh interface ip set address "本地連接" static 192.168.1.111 255.255.255.0 192
.168.1.1 1
確定。

netsh interface ip set dns "本地連接" static 8.8.8.8
確定。

相當(dāng)于操作:

網(wǎng)頁制作CMS教程網(wǎng)絡(luò)編程軟件編程腳本語言數(shù)據(jù)庫服務(wù)器

如果侵犯了您的權(quán)利,請與我們聯(lián)系,我們將在24小時內(nèi)進(jìn)行處理、任何非本站因素導(dǎo)致的法律后果,本站均不負(fù)任何責(zé)任。

聯(lián)系QQ:835971066 | 郵箱:835971066#qq.com(#換成@)

Copyright © 2002-2020 腳本教程網(wǎng) 版權(quán)所有