Linux Iptables allow SOCKS incoming client request
Socks is proxy server/service (dante-server) which by default listen on TCP 1080 port. Following iptables rules allows SOCKS incoming client request (open TCP port 1080) 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 1080 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A OUTPUT -p tcp -s 202.54.1.20 --sport 1080 -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 WEBCACHING 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
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