本帖最后由 pcl_test 于 2016-3-1 22:03 编辑
2003系统下,用cmd的netsh dump 命令后获得配置脚本,要对其中的 接口IP配置做修改。
其中一块网卡绑定3个IP地址,其中 10.110.0.1、101.1.1.200 是固定的。
其中第三个地址是根据地址表分配的,且必须要在IP配置的首行,如下。
求脚本能修正错误的配置
正确格式:- set address name="本地连接" source=static addr=10.11.73.196 mask=255.255.255.224
- add address name="本地连接" addr=10.110.0.1 mask=255.255.255.0
- add address name="本地连接" addr=101.1.1.200 mask=255.255.255.0
复制代码 错误格式1:- set address name="本地连接" source=static addr=10.110.0.1 mask=255.255.255.0
- add address name="本地连接" addr=10.11.73.196 mask=255.255.255.224
- add address name="本地连接" addr=101.1.1.200 mask=255.255.255.0
复制代码 错误格式2:- set address name="本地连接" source=static addr=101.1.1.200 mask=255.255.255.0
- add address name="本地连接" addr=10.110.0.1 mask=255.255.255.0
- add address name="本地连接" addr=10.11.73.196 mask=255.255.255.224
复制代码 DUMP出来的接口IP配置端的内容- # ----------------------------------
- # 接口 IP 配置
- # ----------------------------------
- pushd interface ip
-
-
- # "本地连接" 的接口 IP 配置
-
- set address name="本地连接" source=static addr=10.11.73.196 mask=255.255.255.224
- add address name="本地连接" addr=10.110.0.1 mask=255.255.255.0
- add address name="本地连接" addr=101.1.1.200 mask=255.255.255.0
- set address name="本地连接" gateway=10.11.73.195 gwmetric=0
- set dns name="本地连接" source=static addr=114.80.169.59 register=PRIMARY
- add dns name="本地连接" addr=140.207.215.73 index=2
- set wins name="本地连接" source=static addr=none
-
- # "HDS" 的接口 IP 配置
-
- set address name="HDS" source=static addr=10.16.216.228 mask=255.255.255.224
- set dns name="HDS" source=static addr=none register=PRIMARY
- set wins name="HDS" source=static addr=none
-
-
- popd
- # 接口 IP 配置结束
复制代码
|