Windows 2000操作系统内置了一个本地或远程计算机的命令行和脚本实用程序“NetSh”,我们可以利用它来备份网络属性设置。
1. 备份网络属性
点击“开始”,在运行中输入“cmd.exe”并回车,在随后出现的命令提示符下键入“netsh interface ip dump > c:\\ WorkStation1.txt”,将网络属性设置备份在C盘的“WorkStation1.txt”文本文件中,其中的路径,相对的、绝对的都可以,而且以上命令行还可以简写成“netsh in ip du > c:\\ WorkStation1.txt”,同样也能够备份网络属性设置。
备份之后打开“WorkStation1.txt”文件,以下是文件中各行配置对应的网络属性:
set address name = \"本地连接\" //LAN连接的名称;
source = static addr = 192.168.0.5 //IP地址;
mask = 255.255.255.0 //子网掩码
set address name = \"本地连接\" gateway = 192.168.0.1 gwmetric = 1 //默认网关;
set dns name = \"本地连接\" source = static addr = 192.168.0.5 //首选DNS服务器;
add dns name = \"本地连接\" addr = 192.168.0.1 //备用DNS服务器;
set wins name = \"本地连接\" source = static addr = none //WINS地址(none表示没有设置WINS地址);