使用批處理命令設(shè)置windows系統(tǒng)的ip地址和dns附圖
更新時(shí)間:2014年06月06日 11:00:16 作者:
這篇文章主要介紹了如何使用批處理命令設(shè)置windows系統(tǒng)的ip地址和dns,需要的朋友可以參考下
找到對(duì)應(yīng)的網(wǎng)卡名稱
使用命令:ipconfig
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è)置為自動(dòng)獲取
使用命令:
netsh interface ip set address "本地連接" dhcp
netsh interface ip set dns "本地連接" dhcp
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)點(diǎn)數(shù):一般填1]
netsh interface ip set dns "本地連接" static [dns地址]
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)于操作:
使用命令: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è)置為自動(dòng)獲取
使用命令:
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)點(diǎ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)于操作:

相關(guān)文章
批處理文件bat腳本實(shí)現(xiàn)代碼自動(dòng)提交和項(xiàng)目部署
這篇文章主要介紹了批處理文件bat腳本實(shí)現(xiàn)代碼自動(dòng)提交和項(xiàng)目部署,本文給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2020-06-06admin.vbs 以管理員身份運(yùn)行程序的vbs命令
建議放到%SystemRoot%\system32目錄下,對(duì)喜歡玩cmd而且操作系統(tǒng)是win7的人有點(diǎn)用處2011-12-12批處理(bat)命令學(xué)習(xí)的一些總結(jié)
這篇筆記是我對(duì)批處理學(xué)習(xí)的一些總結(jié),能在系統(tǒng)幫助里找到的內(nèi)容我就不寫(xiě)了,太偏門(mén)的也不寫(xiě),只寫(xiě)些個(gè)人感覺(jué)很好用的技巧,大部分屬于整理2014-07-07