嘿伙计们,我需要知道如何更改我的电脑的 MAC 地址,我知道它与注册表有关,我不喜欢深入研究,原因是,如果有什么东西搞砸了,那就搞砸了好的。我没有任何启动代码可以继续。对不起。
问问题
1119 次
2 回答
0
在我自己的 PC 上,我有一个 Realtek PCIe 卡,我可以通过这种方式指定一个硬件 (MAC) 地址。
- 在 Windows 7 上,尝试转到控制面板\网络和 Internet\网络连接。
- 选择您的网络适配器并右键单击以打开上下文菜单
- 选择属性。将弹出一个带有“网络”选项卡的窗口。
- 单击网络适配器名称下方的配置按钮。
- 单击高级选项卡。
- 选择网络地址属性。
这是一个带有屏幕截图的 Superuser.com 线程的链接: realtek pci-e gbe 系列网卡的高级参数
您还可以研究MAC 欺骗以获取更多信息。
于 2013-06-25T15:42:19.297 回答
0
看
netsh interface ipv4 set address /?
这应该做你想要的。
编辑:几年前我写了这个程序。使用你需要的任何东西。请注意,您可能必须将“LAN-Verbindung”改编为您的适配器名称(使用“ipconfig”查找)也很抱歉德语“how-to”,我不知道这些菜单是如何用英文命名的。- 但也许,您不需要 DHCP 服务器。
@echo off
if "%1"=="home" goto home
if "%1"=="office" goto office
if "%1"=="dhcp" goto dhcp
if "%1"=="server" goto server
goto help
REM set ip-address to parameter
netsh interface ip set address "LAN-Verbindung" static %1 255.255.255.0
goto ende
:dhcp rem work as DHCP-Client
netsh interface ip set address "LAN-Verbindung" dhcp
goto ende
:server rem work as DHCP-Server
netsh interface ip set address "LAN-Verbindung" static 192.168.0.1 255.255.255.0 192.168.0.1 1
goto ende
:home rem fixed Address at home
netsh interface ip set address "LAN-Verbindung" static 192.168.178.30 255.255.255.0 192.168.178.1 1
goto ende
:office rem fixed Address at office
netsh interface ip set address "LAN-Verbindung" static 192.168.0.5 255.255.255.0
goto ende
:help
echo.
echo Syntax: ip [parameter]
echo Parameter:
echo home set a fixed IP (predefined)
echo work set a fixed IP (predefined)
echo server set a fixed IP (predefined) and works as DHCP-Server
echo dhcp works as DHCP-Client
echo [IP-Adresse] set a fixed IP (defined by parameter
echo Examples:
echo ip 192.168.1.44 sets IP to 192.168.1.44
echo ip server sets IP to 192.168.0.1 and starts DHCP-Server
echo ip home sets IP to a fixed (predefined) IP
echo ip dhcp fetches an IP from DHCP-Server
echo ATTENTION: to work as DHCP-Server, the "Gemeinsame Nutzung der
echo Internetverbindung" aktiviert werden (has to be done only one time).
echo Netzwerkverbindungen "Eigenschaften"
echo LAN-Verbindung "Eigenschaften"
echo "Erweitert" "Anderen Benutzern im Netzwerk gestatten..." aktivieren
echo HINT: This Batch-file needs Administrator-rights
echo.
REM the IP-Range for den DHCP-Server can be determined to a smaller range.
REM Info see: http://support.microsoft.com/?kbid=230248
goto ende2
:ende
ipconfig
:ende2
echo.
于 2013-05-31T05:41:23.020 回答