这可能吗?如果可以,我该如何将静态本地 IP 设置为 192.168.0.2?
现在我正在我的 /etc/network/interfaces 中使用它
iface eth0 inet static
address 192.168.0.2
netmask 255.255.255.0
gateway 192.168.0.1
但它似乎不起作用因为我无法 ping 任何东西。
当我输入 ifconfig 时,它甚至没有显示 eth0。我不知道是什么原因造成的。
答案1
eth0 可能没有启动?
- 确保您的接口文件中有一行“auto eth0”。
- 为了立即激活接口,请执行“ifup eth0”。这不会使您的接口显示在 ifconfig 中(或产生错误消息),这是更根本的问题。