具體方法如下:
1在其它電腦上,開始->所有程序->附件->命令提示符,在cmd窗口內輸入采用netsh -f interface dump > c:\ip.txt 命令。
2打開C:\ip.txt文件,如下格式(Windows 7下):
#========================
# IPv4 配置
#========================
pushd interface ipv4
reset
set global defaultcurhoplimit=64 icmpredirects=enabled
add route prefix=0.0.0.0/0 interface="本地連接" nexthop=10.100.18.254 publish=是
add address name="本地連接" address=10.100.18.100 mask=255.255.255.0
popd
# IPv4 配置結束
# ----------------------------------
# IPv6 配置
# ----------------------------------
pushd interface ipv6
reset
set interface interface="Teredo Tunneling Pseudo-Interface" forwarding=disabled advertise=disabled mtu=1280 metric=0 siteprefixlength=0 nud=disabled routerdiscovery=disabled managedaddress=disabled otherstateful=disabled weakhostsend=disabled weakhostreceive=disabled ignoredefaultroutes=disabled advertisedrouterlifetime=0 advertisedefaultroute=disabled currenthoplimit=0 forcearpndwolpattern=disabled enabledirectedmacwolpattern=disabled
popd
# IPv6 配置的結尾
# ----------------------------------
# ISATAP 配置
# ----------------------------------
pushd interface isatap
popd
# ISATAP 配置結束
# ----------------------------------
# 6to4 配置
# ----------------------------------
pushd interface 6to4
reset
3找到:
add route prefix=0.0.0.0/0 interface="本地連接" nexthop=10.100.18.254 publish=是
add address name="本地連接" address=10.100.18.100 mask=255.255.255.0
其中nexthop=10.100.18.254表示網關;address=10.100.18.100表示IP地址;mask=255.255.255.0表示子網掩碼。
將以上網關、IP地址和子網掩碼改成自己電腦相應的值。
在自己的電腦上輸入以上ip.txt的內容,並保存為C盤根目錄下ip.txt。如果能夠直接從其它電腦上拷貝過來到C盤根目錄下也可以。
在自己電腦上,開始->所有程序->附件->命令提示符,在cmd窗口內輸入采用netsh -c c:\ip.txt 命令。
IP地址更改完畢,重啟電腦,搞定!
電腦軟件相關教程