DHCP配置如下(假设通过eth1上网)
# The primary network interface - use DHCP to find our address
auto eth1
iface eth1 inet dhcp //指定为dhcp
然后重启
sudo /etc/init.d/networking restart
静态IP地址配置如下(假设通过eth1上网)
# The primary network interface
auto eth1
iface eth1 inet static//指定为static
address 192.168.0.1//IP地址
gateway 192.168.0.1//网关
netmask 255.255.255.0//子网掩码
同样需要重启
sudo /etc/init.d/networking restart
如果有必要,配置DNS
sudo gedit /etc/resolv.conf
nameserver 192.168.0.1
ubuntu配置IP
最新推荐文章于 2024-09-28 17:22:20 发布