Windows XP是美国微软公司研发的基于X86、X64架构的PC和平板电脑使用的操作系统,于2001年8月24日发布RTM版本,并于2001年10月25日开始零售。其名字中“XP”的意思来自英文中的“体验(Experience)”。该系统是继Windows 2000及Windows ME之后的下一代Windows操作系统,也是微软首个面向消费者且使用Windows NT5.1架构的操作系统。
在使用深度技术WinXP系统时,不少用户都不知如何进行切换ip的设置。小编这就来帮大家排忧解难,具体的设置方法如下:
1. 切换成自动获取IP
以下是代码片段:
@echo off
netsh interface ip set address name=“local” source=dhcp
netsh interface ip set dns name=“local” source=dhcp
2. 切换成固定IP
以下是代码片段:
@echo off
netsh interface ip set address local static 192.168.0.84 255.255.255.0 192.168.0.254
netsh interface ip set dns local 192.168.0.254
netsh interface ip add dns local 202.106.196.115 index=2
netsh interface ip add dns local 202.106.0.20 index=3
“local” 是你的本地网卡名称,也可能是 “本地连接”,需要自己替换下。如果是2个固定IP间的来回切换,把第2个脚本自己改改吧。
dns设置中,第一个是set,表示设置,后面两个则是添加,自己替换成当地的dns server。这样你的xp系统就完成自动设置了。
Windows XP服役时间长达13年,产生的经济价值也较高。2014年4月8日,微软终止对该系统的技术支持,但在此之后仍在一些重大计算机安全事件中对该系统发布了补丁。
|