Windows 下的网络命令


 ★ 更改网络设置的脚本

保存成 .bat 文件。
#################### 开始,不包括此行 ####################
@Echo Off
rem 设定当前网卡“本地连接”对应的外网 IP 地址和地址掩码;
netsh interface ip set address name="本地连接" source=static addr=192.168.0.4 mask=255.255.255.0
rem 设定网关的 IP 地址和寻址的权值;
netsh interface ip set address name="本地连接" gateway=192.168.0.1 gwmetric=1
rem 设定局域网中主 DNS 服务器的 IP 地址;
netsh interface ip set dns name="本地连接" source=static addr=211.148.192.137
#################### 结束,不包括此行 ####################

参考:
1.http://cache.baidu.com/c?word=dos%2C%B8%FC%B8%C4%3B%CD%F8%C2%E7%3B%C9%E8%D6%C3%2C%BD%C5%B1%BE&url=http%3A//bbs%2Enju%2Eedu%2Ecn/vd353251/blogdcon%3Fuserid%3Doliver197411%26m%3D9%26d%3D11&b=26&a=16&user=baidu
2. 南京大学小百合站 network 版“笔记本网络设置常需修改,有什么好办法没?”主题中 waful 的回复;
3. netsh interface ip set /?
4. netsh interface ip set address /?
5. netsh interface ip set d /?

 ★ net


net view
    列出局域网上同一工作组当前可见的所有计算机名

参考:
1. 如下命令帮助:
net /?
net accounts /?
2. http://article.pchome.net/00/00/85/87/

 ★ netsh

参考:
1. 如下命令帮助:
netsh /?
netsh interface /?

你可能感兴趣的:(Windows)