红联Linux门户
Linux帮助
当前位置: 红联Linux门户 > Debian

debian或者ubuntu的网络接口信息文件

发布时间:2008-01-29 11:21:22来源:红联作者:return
作者:武汉 情灭缘尽
root@havp:~# cat /etc/network/interfaces
#本地环回接口 auto表示开机自动启用该接口
auto lo
iface lo inet loopback
#eth0的设置
auto eth0
iface eth0 inet static
address 192.168.1.250 #ip地址
netmask 255.255.255.0 #子网掩码
network 192.168.1.0 #网络号
broadcast 192.168.1.255 #广播地址
gateway 192.168.1.1 #网关地址
dns-nameservers 202.103.0.117 202.103.24.68 #dns地址,一般在/etc/resolv.conf设置

#第二块网卡信息的设置,注意debian或者其他的debian的衍生版本,所有的网络接口都在一个文件中,这样比#redhat等要方便的多

auto eth1
iface eth1 inet static
address 192.168.2.250
netmask 255.255.255.0
network 192.168.2.0
broadcast 192.168.2.255

#子接口设置,用于一个网卡设置多个ip的情况
auto eth0:1
iface eth0:1 inet static
address 202.103.24.5
netmask 255.255.255.0
network 202.103.24.0
broadcast 202.103.0.255

#网卡自定义mac地址,因为某些特殊的情况,换了网卡或者机器,但是mac还是需要是以前的,如下
auto eth3
iface eth3 inet static
pre-up ifconfig eth3 hw ether xx:xx:xx:xx:xx:xx #看清楚加的就是这句话,看清楚eth3和上面的对应
address 192.168.3.250 #上面那一行后面的xx:xx:xx:xx:xx:xx就是指定的mac
netmask 255.255.255.0
network 192.168.3.0
broadcast 192.168.3.255

#通过dhcp获取地址,配置这个最简单
auto eth4
iface eth4 inet dhcp
#其他的什么都不需要写,开机自动找dhcp服务器获得ip

#启用配置

#修改了配置以后可以运行如下命令来更新配置,或者重新启动机器也可以

#root@havp:~# /etc/init.d/networking restart
文章评论

共有 0 条评论