Configure o SSH enquanto estiver usando o UCARP para failover

2

Tenho o SSH instalado e o UCARP configurado para failover em um IP virtual quando uma das duas caixas fica inativa. O problema que estou tendo é quando uma VM está rodando, e a interface ucarp está ativa (eth0: ucarp), eu não consigo ssh para a VM usando o endereço eth0; Eu só posso consegui-lo usando o endereço eth0: ucarp.

Eu usei este guia para configurar o UCARP: link

Existe uma maneira de configurar o ssh para ser executado apenas na eth0, ou tornar a eth0 a interface 'primária' para o ssh? Agora, se eu tentar ssh para o endereço eth0, não há resposta (a conexão expira).

Aqui está o meu arquivo / etc / networking / interfaces:

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet static
    ###
    # standard config
    ###
    address 192.168.1.7
    netmask 255.255.255.0
    gateway 192.168.1.1
    network 192.168.1.0
    broadcast 192.168.1.255

    ###
    # ucarp config
    ###
    # vid: the ID of the virtual server [1-255]
    ucarp-vid 1
    # vip: the virtual IP
    ucarp-vip 192.168.1.3
    # password
    ucarp-password info322
    # advskew: Advertisement skew [1-255]
    ucarp-advskew 1
    # advbase: Interval in seconds that advertisements will occur
    ucarp-advbase 1
    # master: determine if this server is the master
    ucarp-master yes

# The carp network interface, on top of eth1
iface eth0:ucarp inet static
    address 192.168.1.3
    netmask 255.255.255.0
    
por EGr 06.11.2013 / 18:58

0 respostas