我在 Openstack VM 中运行 HA Proxy 和 Keepalived。(VM1-192.168.10.1,VM2 - 192.168.10.2)。Keepalived 配置了 VIP 192.168.10.50/24。VIP 已分配给 VM1。我登录到 VM2 并尝试 ping VM1 的 IP - 成功,但当我尝试 ping VIP 时,出现“目标主机无法访问”错误。以下是我的 Keepalived 配置文件内容。
global_defs {
router_id LVS_DEVEL
enable_script_security
}
vrrp_script check_apiserver {
script "/etc/keepalived/check_apiserver.sh"
interval 3
weight -2
fall 3
rise 2
}
vrrp_instance VI_1 {
state BACKUP
interface eth0
virtual_router_id 100
priority 100
authentication {
auth_type PASS
auth_pass password
}
virtual_ipaddress {
192.168.10.50/24
}
track_script {
check_apiserver
}
}
有人可以帮我吗?