#ifconfg eth0:2 down
......
五、ip别名和从属ip地址(secondary ip address)
secondary ip address和ip alias是不同的概念,首先问Google,Google没有给我好的答案。只好自己摸索了,于是目前只能得到下面的一些概念:
ip alias和secondary ip address是两种不同的实现方式,用来在Linux系统中给同一个物理网卡增加多个ip地址。
ip alias是由ifconfig程序来创建和维护的,而secondary ip address则是有ip程序来创建和维护的。ip addr add 创建的scondary ip address不能在ifconfig -a中看到,反过来,ifconfig创建的ethX:Y却能在ip addr show中看到。
ip alias在上面介绍了,因此说说secondary ip address如何创建
[root@mlsx autostart]# ifconfig
eth1 Link encap:Ethernet HWaddr 00:13:77:00:7C:C6
inet addr:192.168.0.100 Bcast:192.168.0.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:163438 errors:2515 dropped:0 overruns:0 frame:2515
TX packets:165217 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:96792997 (92.3 MiB) TX bytes:16356841 (15.5 MiB)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:561 errors:0 dropped:0 overruns:0 frame:0
TX packets:561 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:119798 (116.9 KiB) TX bytes:119798 (116.9 KiB)
eth0被我用ifconfig eth0 down了。
[root@mlsx autostart]# ip addr sh
2: lo: <LOOPBACK,UP,10000> mtu 16436 qdisc noqueue
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
4: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc pfifo_fast qlen 1000
link/ether 00:12:f0:1d:e8:c5 brd ff:ff:ff:ff:ff:ff
inet 192.168.1.101/24 brd 192.168.1.255 scope global eth0
6: eth1: <BROADCAST,MULTICAST,UP,10000> mtu 1500 qdisc pfifo_fast qlen 1000
link/ether 00:13:77:00:7c:c6 brd ff:ff:ff:ff:ff:ff
inet 192.168.0.100/24 brd 192.168.0.255 scope global eth1
down下去的eth0在这里还是能体现出来的。
[root@mlsx autostart]# ip addr add 192.168.0.102/24 dev eth1
[root@mlsx autostart]# ip addr sh eth1
6: eth1: <BROADCAST,MULTICAST,UP,10000> mtu 1500 qdisc pfifo_fast qlen 1000
link/ether 00:13:77:00:7c:c6 brd ff:ff:ff:ff:ff:ff
inet 192.168.0.100/24 brd 192.168.0.255 scope global eth1
inet 192.168.0.102/24 scope global secondary eth1
[root@mlsx autostart]# ping 192.168.0.102
PING 192.168.0.102 (192.168.0.102) 56(84) bytes of data.
64 bytes from 192.168.0.102: icmp_seq=1 ttl=64 time=0.049 ms
64 bytes from 192.168.0.102: icmp_seq=2 ttl=64 time=0.043 ms
通过ip程序增加了一个secondar ip address,通过ip addr show也能看到,而且能ping通,但是ifconfig中却看不到。
[root@mlsx autostart]# ifconfig -a
eth1 Link encap:Ethernet HWaddr 00:13:77:00:7C:C6
inet addr:192.168.0.100 Bcast:192.168.0.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:163888 errors:2515 dropped:0 overruns:0 frame:2515
TX packets:165696 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:96837439 (92.3 MiB) TX bytes:16426734 (15.6 MiB)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:565 errors:0 dropped:0 overruns:0 frame:0
TX packets:565 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:120134 (117.3 KiB) TX bytes:120134 (117.3 KiB)
但是ip alias和secondary ip address在实际的使用过程中,会有什么差别呢?
大部分HA软件,包括开源的heartbeat都采用了ip alias的方式,为什么他们不采用secondary ip address方式呢?
或者说ip alias和secondary ip address比较起来,谁更优秀呢?
五、ip别名的应用
通过使用从属ip地址或ip别名,你可以在一个ip地址上提供一个服务如sendmail,以及在另一个ip地址上提供另外的服务,如HTTP,即使这两个ip地址同属于一台计算机(一块物理网卡,一个MAC地址)。
当你使用Heartbeat在一个从属ip地址(或ip别名)上提供一个服务时,这个服务是属于服务器的(意味着服务器是激活的或主要节点),服务器拥有用于访问服务的ip地址,备用节点必须使用从属ip地址(或ip别名),当主节点出故障时,服务应该都备用节点提供,备用服务器不但需要启动服务或守护进程,而且还需要为它的网卡添加适当的从属ip地址(或ip别名)。
使用以太网传输心跳数据包的双节点Heartbeat集群配置如图6-2所示。
(点击查看大图)图6-2:一个基本的Heartbeat配置 |
在图6-2中,ip地址209.100.100.2是主服务器的主ip地址,它永远不需要转移到备用服务器,备用服务器的主ip地址是209.100.100.5,同样这个ip地址也永远不用转移到另外的网卡上,然而,ip地址209.100.100.3和209.100.100.4分别关联到运行在主服务器上的某个特定的服务上,如果主服务器停掉,这些ip地址需要转移到备用服务器上,如图6-3所示。
(点击查看大图)图6-3:主服务器失效后相同的Heartbeat基本配置 |