Linux Iptables allow WEBCACHING incoming client request
WWW caching service by default listen on TCP 8080 port. Following iptables rules allows WEBCACHE incoming client request (open TCP port 8080) for server IP address 202.54.1.20:
iptables -A INPUT -p tcp -s 0/0 --sport 1024:65535 -d 202.54.1.20 --dport 8080 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A OUTPUT -p tcp -s 202.54.1.20 --sport 8080 -d 0/0 --dport 1024:65535 -m state --state ESTABLISHED -j ACCEPT
You may also be interested in other helpful articles:
- Linux Iptables allow LDAPS server incoming client request
- Linux Iptables allow LDAP server incoming client request
- Linux Iptables allow SQUID proxy incoming client request
- Linux Iptables allow or block ICMP ping request
- Linux Iptables allow SOCKS incoming client request
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!


Recent Comments
Yesterday ~ 24 Comments
Yesterday ~ 24 Comments
Yesterday ~ 3 Comments
Yesterday ~ 2 Comments
09/05/2008 06:08 pm (2 days ago) ~ 16 Comments