Ubuntu网络借口的配置方法有很多,有ifconfig(设置ip地址)、ip(设置ip地址)、route(设置路由)、iwconfig(设置无线网卡)、resolvconf(设置dns)、ifupdown(设置网络接口)等命令,我自己最常用的还是ifupdown,下面将用ifupdown设置网络接口的方法总结如下:
1.用ifupdown设置接口的一般步骤
#ifdown eth0
#gedit /etc/network/interfaces
#ifup eth0
2.interfaces的内容示例
#用固定ip地址192.168.0.111配置接口eth0
iface eth0 inet static
address 192.168.0.111
netmask 255.255.255.0
gateway 192.168.0.1
dns-search somedomain.org
dns-nameservers 195.238.2.21 195.238.2.22
#用dhcp配置接口eth0
iface eth0 inet dhcp
#配置pppoe
先用pppoeconf设置pppoe连接,然后加入
iface eth0 inet ppp
provider myisp
#设置虚拟接口
iface home inet static#虚拟接口home
address 192.168.0.123
netmask 255.255.255.0
gateway 192.168.0.1
iface work inet static#虚拟接口home
address 81.201.3.123
netmask 255.255.0.0
gateway 81.201.1.1
切换到home接口的命令
#ifdown eth0
#ifup eth0=home
切换到work接口的命令
#ifdown eth0
#ifup eth0=work