我有一台运行 Ubuntu 服务器 14.04.1 的 PC。我相信互联网是使用 DHCP 设置的。我想保留我现在的 IP 和子网,但只需将其更改为静态内部 IP。
答案1
您需要遵循经典的接口文件配置 /etc/network/interfaces。
编辑文件:
sudo su
nano /etc/network/interfaces
其内容总是以下几行:
auto lo
iface lo inet loopback
然后是以太网设备,在本例中为 eth0,包含以下几行:
DHCP 的 IP:
auto eth0
iface eth0 inet dhcp
要切换到静态 IP,了解 ifconfig 使用的参数,您必须放置类似以下的行:
auto eth0
iface eth0 inet static
address 192.168.10.5
netmask 255.255.255.0
network 192.168.10.0
broadcast 192.168.10.255
gateway 192.168.10.1
当然你应该为你的网络改变这些值。