ubuntu网络配置文件主要文件有/etc/network/interfaces 和 /etc/resolv.conf。
主要命令/etc/init.d/networking restart重启网络,使配置生效;也可以通过sudo ifdown eth0 和sudo ifup eth0来重启网卡使配置生效。
1、通过/etc/network/interfaces来更改ip、网关、掩码等。
a、配置dhcp方式上网
auto eth0 #开机启动网卡
iface eth0 inet dhcp
b、静态ip
auto lo
iface lo inet loopback
#上面的是回环
#网卡eth0的配置
auto eth0
#staic 静态IP
iface eth0 inet static
address 192.168.1.5
netmask 255.255.255.0
gateway 192.168.1.1
nameserver 202.96.128.68