Changes

Jump to: navigation, search

OPS335 Web Server Lab

556 bytes added, 16:48, 7 February 2012
Install and test Apache
*Go back to f16 and redo your iptables command to forward connections to port 80 to the new port 8080 on vm02, removing previous rule for port 80.
*Verify that other students on other PCs can still view your web page.
=== 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 vm02 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.70.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.70.3:8080
==Completing the Lab==
1
edit

Navigation menu