差異處
這裏顯示兩個版本的差異處。
下次修改 | 前次修改 | ||
microsoft:netsh_ip [2011/05/19 16:27] – 建立 jal | microsoft:netsh_ip [2012/11/16 09:09] (目前版本) – jal | ||
---|---|---|---|
行 9: | 行 9: | ||
* IP: 192.168.1.1, | * IP: 192.168.1.1, | ||
* <file bat ipv4.bat> | * <file bat ipv4.bat> | ||
- | echo | + | set IP=192.168.1.1 |
- | netsh interface ip set address " | + | set MASK=255.255.255.0 |
- | netsh interface ip set dns " | + | set GW=192.168.1.254 |
- | echo 已將IP地址設為:192.168.1.1,按任一鍵後繼續…… | + | set DNS=8.8.8.8 |
+ | echo | ||
+ | netsh interface ip set address " | ||
+ | netsh interface ip set dns " | ||
+ | echo 已將IP地址設為:%IP%,按任一鍵後繼續…… | ||
pause | pause | ||
</ | </ | ||
行 41: | 行 45: | ||
* 由於 Windows 系列僅接受 64 之遮罩長度(Sub Netmask) | * 由於 Windows 系列僅接受 64 之遮罩長度(Sub Netmask) | ||
* IP: 2001: | * IP: 2001: | ||
- | * <file bat ipv6.bat> | + | * <file bat ipv6_XP.bat> |
echo | echo | ||
netsh interface ipv6 set address " | netsh interface ipv6 set address " | ||
netsh interface ipv6 set route ::/0 " | netsh interface ipv6 set route ::/0 " | ||
+ | netsh interface ipv6 set dns " | ||
+ | echo 已將IPv6地址設為:2001: | ||
+ | pause | ||
+ | </ | ||
+ | * <file bat ipv6_win7.bat> | ||
+ | echo | ||
+ | netsh interface ipv6 add address " | ||
+ | netsh interface ipv6 add route ::/0 " | ||
+ | netsh interface ipv6 set dnsservers " | ||
echo 已將IPv6地址設為:2001: | echo 已將IPv6地址設為:2001: | ||
pause | pause | ||
</ | </ | ||
- |