我想用交叉以太网电缆连接两台笔记本电脑,以便将它们同步ntp
。一台笔记本电脑运行 Windows 7,另一台运行 Ubuntu。
在 Ubuntu 上,为了给接口分配静态 IP 地址,我只需执行以下操作:
sudo ifconfig eth0 10.0.0.100 netmask 255.255.255.0
对于 Windows,是否有类似的方法cmd
?
答案1
您可以使用 NETSH 设置静态 IP 地址,请参阅http://support2.microsoft.com/kb/257748/en
语法:netsh interface ip set address "本地连接" static ipaddr subnetmask gateway metric 示例:netsh interface ip set address "本地连接" static 192.168.0.10 255.255.255.0 192.168.0.1 1
根据需要用网络适配器的名称替换“本地连接”。
您可能需要停用 Windows 防火墙。