所有连接都是InActConn
我是使用LVS的新手。我试过LVS / TUN和LVS / DR,结果是一样的,所有连接都是InActConn。但是真实的服务器可以到达(通过PING)。请帮助!!!
OS: CentOS 6.2
RemoteAddress:Port Forward Weight ActiveConn InActConn
UDP 192.168.10.240:2345 rr
-> 192.168.10.251:2345 Tunnel 1 0 10
-> 192.168.10.252:2345 Tunnel 1 0 9
-> 192.168.10.253:2345 Tunnel 1 0 9
答案 0 :(得分:2)
这是不维护连接的服务(如UDP)的预期行为。您可能希望阅读LVS Howto,尤其是关于Active / Inactive连接的部分:
http://www.austintek.com/LVS/LVS-HOWTO/HOWTO/LVS-HOWTO.ipvsadm.html#ActiveConn
答案 1 :(得分:0)
旧问题:但是我从Google那里获得了这篇帖子,想在这里粘贴我的发现。
在以上答案中,@ remi-ggacogne粘贴的链接对于Real服务器错过了第一步。
您必须关闭rp_filter(特别是在Centos / RHEL中)https://www.slashroot.in/linux-kernel-rpfilter-settings-reverse-path-filtering
打开/etc/sysctl.conf并粘贴以下行(根据您的网络接口)
net.ipv4.conf.all.rp_filter = 0
net.ipv4.conf.default.rp_filter = 0
net.ipv4.conf.tunl0.rp_filter = 0
使以上功能生效->
$systcl -p