- 论坛徽章:
- 0
|
现象是这样的:
环境:有两个网卡,共6个网口,只用eth2, eth3
配置eth2及eth3如下:
[root@rac2 network-scripts]# cat ifcfg-eth2
DEVICE=eth2
TYPE=Ethernet
ONBOOT=yes
NM_CONTROLLED=yes
BOOTPROTO=static
IPADDR=192.168.8.21
NETMASK=255.255.255.0
GATEWAY=192.168.8.1
[root@rac2 network-scripts]# cat ifcfg-eth3
DEVICE=eth3
TYPE=Ethernet
ONBOOT=yes
NM_CONTROLLED=yes
BOOTPROTO=none
IPADDR=10.10.10.21
NETMASK=255.255.255.248
问题1:route -n出现如下: eth4/5/0/1 这些我都没用,怎么会用eth3的IP?
[root@rac2 ~]# route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
10.10.10.16 0.0.0.0 255.255.255.248 U 0 0 0 eth3
10.10.10.16 0.0.0.0 255.255.255.248 U 1 0 0 eth5
10.10.10.16 0.0.0.0 255.255.255.248 U 1 0 0 eth4
10.10.10.16 0.0.0.0 255.255.255.248 U 1 0 0 eth1
10.10.10.16 0.0.0.0 255.255.255.248 U 1 0 0 eth0
192.168.8.0 0.0.0.0 255.255.255.0 U 0 0 0 eth2
问题2:vi ifcfg-eth2 :修改(只输入一个空格)后,eth2的IP也会被eth3的IP替换掉??
这两种情况是为什么?如何解决呢?? |
|