Open main menu

CDOT Wiki β

Changes

OPS335 Web Server Lab

2 bytes removed, 13:12, 1 October 2012
fixing minor typo
=== Load balancing using iptables ===
*Iptables can be used for load balancing connections. On your host machine add a rule(s) to the PREROUTING chain that will alternate connections bound for port 80 on your host machine to vm01 and vm03.
iptables -t nat -I PREROUTING -p tcp --dport 80 -m state --state NEW -m statistic --mode nth --every 2 --packet 1 -j DNAT --to-destination 192.168.70X.4:8080 iptables -t nat -I PREROUTING -p tcp --dport 80 -m state --state NEW -m statistic --mode nth --every 2 --packet 0 -j DNAT --to-destination 192.168.70X.2:8080
*Again ask another student to test that load balancing is indeed working.
932
edits