opensuse10和Red Hat Enterprise 4添加多IP
下面是一个实例
bootproto='static'
broadcast=''
ethtool_options=''
ipaddr='192.168.1.158'
mtu=''
name='amd pcnet - fast 79c971'
netmask='255.255.255.0'
network=''
remote_ipaddr=''
startmode='auto'
unique='rbuf.weguq9ywypf'
usercontrol='no'
_nm_name='bus-pci-0000:02:00.0'
ipaddr_1='192.168.2.158'
netmask_1='255.255.255.128'
label_1='1'
prefixlen_1=''
红色部分是你要加的,要加另外的ip就加像红色的部分就ok了,要改的地方就是ipaddr_,netmask_,label_,prefixlen_后面的部分,可以是数字和字母。
然后要加新网段的默认网关才可以 修改/etc/sysconfig/network/routes
内容如下,第一二行分别是第一 二个ip的网关
default 192.168.1.1 - -
default 192.168.2.129 - -
red hat linux enterprise 4 多ip设置
配置文件在/ect/sysconfig/network-scripts/目录下
如果是对第一个网卡加ip在该目录下创建一个文件ifcfg-eth0:1即可,如果要继续加就ifcfg-eth0:2 ifcfg-eth0:3 .............................依次类推,red hat与suse不同的是默认网关也是写在网卡配置文件里面的,suse是写在文件/etc/sysconfig/network/routes的
下面是一个实例 注意红色部分要想对应你的物理网卡接口名和mac地址。
gateway=192.168.2.129
type=ethernet
device=eth0:1
hwaddr=00:0c:29:19:04:99
bootproto=none
netmask=255.255.255.128
ipaddr=192.168.2.159
ipv6init=no
onboot=yes
userctl=no
peerdns=yes