Debian6 FailoverIP 配置

Debian6 FailoverIP 配置

您好,我为我的服务器订购了一个新的 IP 地址,现在配置出现了问题。主 IP 是 5.xx.xx.xx,我订购的新 IP 是 46.xx.xx.xx。有谁能告诉我我哪里出错了?

操作系统:Debian6 主机:OVH

auto lo 
iface lo inet loopback

auto eth0 iface eth0 inet static
        address 5.xx.xx.xx
        netmask 255.255.255.0
        network 5.xx.xx.0
        broadcast 5.xx.xx.255  
        gateway 5.xx.xx.254

post-up /sbin/ifconfig eth0:0 5.xx.xx.xx netmask 255.255.255.255 broadcast5.xx.xx.255   
post-down /sbin/ifconfig eth0 down 
post-up /sbin/ifconfig eth0:1 46.xx.xx.xx netmask 255.255.255.255 broadcast
46.xx.xx.255 
post-down /sbin/ifconfig eth0:0 down


auto eth0:0 iface eth0:0 inet static
        adress 46.xx.xx.xx
        netmask 255.255.255.0
        broadcast 46.xx.xx.255

答案1

您首先在 eth0 上添加 5.xx.xx.xx,然后使用命令在 eth0:0 上再次添加 5.xx.xx.xx,并在 eth0:1 上添加 46.xx.xx.xx post-up,然后尝试在 eth0:0 上再次添加 46.xx.xx.xx,并在末尾添加块。

去掉post-uppost-down线,那么一切都应该没问题。

相关内容