Displaying 1 result from an estimated 1 matches for "realserver1_ip".
2000 Oct 11
0
RE: CBQ and load balancing -> solved
...LVS/DR is working: the destination address in the IP header is
not changed, it is same for all real servers: the VIP.
---
so that´s what I did:
I had to setup my VS WITH IP-TUNNELING and make an entry like this
-> for the load balancer (LVS)
ipvsadm -A -f 100 -s lc
ipvsadm -a -f 100 -r <realserver1_IP> -i
ipvsadm -a -f 100 -r <realserver2_IP> -i
ipvsadm -a -f 100 -r <realserver3_IP> -i
having a rule in my ipchains table like that:
# ipchains -A input -p http -s <client-IP> -m 1
and setting up a CBQ filter
# tc filter add dev eth0 protocol ip parent 100:0 prio 100 handl...