Linux Iptables allow LDAP outgoing client request via firewall
Allow outgoing LDAP client request from firewall host 202.54.1.20:
iptables -A OUTPUT -p udp -s 202.54.1.20 --sport 1024:65535 -d 0/0 --dport 389 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -p udp -s 0/0 --sport 389 -d 202.54.1.20 --dport 1024:65535 -m state --state ESTABLISHED -j ACCEPT
You may also be interested in other helpful articles:
- Linux Iptables allow LDAPS outgoing client request via firewall
- Linux Iptables allow or block ICMP ping request
- Linux Iptables allow LDAP server incoming client request
- Linux Iptables allow LDAPS server incoming client request
- Linux: Iptables Allow MYSQL server incoming request on port 3306
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