无忧启动论坛

标题: 求助,P处理自动设置IP地址 [打印本页]

作者: 阿非    时间: 2007-11-6 10:45
标题: 求助,P处理自动设置IP地址
我想用P处理来自动设置
1、计算机名
2、IP
3、DNS
4、自动绑定网卡

请大侠们给写个。P处理我是外行,只能照猫画虎的改改
作者: oym2007    时间: 2007-11-6 11:44
ECHO 设置IP...
net stop dhcp
rundll32 netshell.dll HrRenameConnection
netsh add helper ifmon.dll
netsh int ip set address 本 static 192.168.1.108 255.255.255.0 192.168.1.1
netsh int ip set dns  本 static 61.187.98.3
netsh int ip add dns  本  61.187.98.6
netsh int ip set address 本 static 192.168.1.108 255.255.255.0 192.168.1.1
netsh int ip set dns  本 static 61.187.98.3
netsh int ip add dns  本  61.187.98.6
rem 在PE中要设置两次,成功,所以下面的和上面的相同
net start dhcp
netsh int ip set address 本 static 192.168.1.108 255.255.255.0 192.168.1.1
netsh int ip set dns  本 static 61.187.98.3
netsh int ip add dns  本  61.187.98.6
netsh int ip set address 本 static 192.168.1.108 255.255.255.0 192.168.1.11
netsh int ip set dns  本 static 61.187.98.3
netsh int ip add dns  本  61.187.98.6
作者: 阿非    时间: 2007-11-6 21:24
上面的这个我有,改不了机名,绑定不了网卡
请大侠再次出手
作者: 阿非    时间: 2007-11-7 08:16
搜索查阅N多,整理如下,在我的机子上测试成功


echo off

rem 关闭动态IP服务,加快设置速度
net stop dhcp

rem 设置静态IP,网关
netsh interface ip set address "本地连接" static addr=192.168.1.8 mask=255.255.255.0 gateway=192.168.1.1 auto

rem 设置首选DNS服务器
netsh interface ip set dns "本地连接" static 61.134.1.4

rem 设置备用DNS服务器
netsh interface ip add dns "本地连接" 71.134.1.4

rem 启动动态IP服务
net start dhcp

rem 导出相应注册表到临时文件,修改计算机名
echo Windows Registry Editor Version 5.00 >ComputerName.reg
echo [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName] >>ComputerName.reg

rem 用变量"%ComputerName%"去替换实际的机器名
echo "ComputerName"="%ComputerName" >>ComputerName.reg
echo [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters] >>ComputerName.reg

rem 用变量"%ComputerName%"去替换实际的机器名
echo "NV Hostname"="%ComputerName" >>ComputerName.reg
echo "Hostname"="%ComputerName" >>ComputerName.reg

rem 修改 CS-CDKEY 不用管它
echo [HKEY_CURRENT_USER\Software\Valve\CounterStrike\Settings]>>ComputerName.reg
echo "Key"="%strCdkey%">>ComputerName.reg
echo [HKEY_USERS\S-1-5-21-839522115-507921405-2146800195-500\Software\Valve\CounterStrike\Settings]>>ComputerName.reg
echo "Key"="%strCdkey%">>ComputerName.reg

rem 导入修改后的注册表文件
regedit /s ComputerName.reg

rem 删除临时注册表文件
del /q ComputerName.reg

[ 本帖最后由 阿非 于 2007-11-7 08:17 AM 编辑 ]
作者: 阿非    时间: 2007-11-8 08:27
echo off

rem 关闭动态IP服务,加快设置速度
net stop dhcp

rem 设置静态IP,网关
netsh interface ip set address "本地连接" static addr=192.168.1.8 mask=255.255.255.0 gateway=192.168.1.1 auto

rem 设置首选DNS服务器
netsh interface ip set dns "本地连接" static 61.134.1.4

rem 设置备用DNS服务器
netsh interface ip add dns "本地连接" 71.134.1.4

rem 启动动态IP服务
net start dhcp

rem 更改计算机名为无忧启动
wmic computersystem where "name='%computername%'" call rename 无忧启动 >nul
作者: keygen    时间: 2007-11-8 20:07
自动绑定网卡?
作者: 阿非    时间: 2007-11-8 20:48
原帖由 keygen 于 2007-11-8 08:07 PM 发表
自动绑定网卡?

自动绑定网关网卡MAC地址 防止ARP欺骗攻击。我想达到这个目的。现在就这个还没有搞定
作者: kaixinguo    时间: 2007-11-9 10:47
@echo off
arp -d
arp -s  192.168.1.1  00-0a-eb-ee-b0-20

只要把它放在启动里面,再把它隐藏就可以了。
作者: keygen    时间: 2007-11-9 16:00
你如何用P处理获得网关网卡MAC地址00-0a-eb-ee-b0-20?




欢迎光临 无忧启动论坛 (http://bbs.wuyou.net/) Powered by Discuz! X3.3