使用静态 IP 地址
cd /etc/network
sudo nano interfaces
把iface eth0 inet dhcp中的dhcp换成static也就是以下文本
iface eth0 inet static
address 192.168.1.10
netmask 255.255.255.0
gateway 192.168.1.1
最后重启一下就行了。
via
cd /etc/network
sudo nano interfaces
把iface eth0 inet dhcp中的dhcp换成static也就是以下文本
iface eth0 inet static
address 192.168.1.10
netmask 255.255.255.0
gateway 192.168.1.1
最后重启一下就行了。
via