- 以DHCP方式配置网卡
编辑文件/etc/network/interfaces: sudo vi /etc/network/interfaces 并用下面的行来替换有关eth0的行: #The primary network interface - use DHCP to find our addres auto eth0 iface eth0 inet dhcp 用下面的命令使网络设置生效: sudo /etc/init.d/networking restart 也可以在命令行下直接输入下面的命令来获取地址 sudo dhclient eth0 - 为网卡配置静态IP地址
编辑文件/etc/network/interfaces: sudo vi /etc/network/interfaces 并用下面的行来替换有关eth0的行:# The primary network interface auto eth0 iface eth0 inet static address 192.168.3.90 gateway 192.168.3.1 netmask 255.255.255.0 #network 192.168.3.0 #broadcast 192.168.3.255 将上面的ip地址等信息换成你自己就可以了.用下面的命令使网络设置生效: sudo /etc/init.d/networking restart
Ubuntu在修改了网卡配置文件之后使用service network-manager restart或者/etc/init.d/networking restart重启网络服务不生效,可通过以下两种方法解决:
方法一:重启系统 reboot 方法二: ip addr flush dev eth0 ifdown eth0 ifup eth0
|