iptables problem allowing incoming connections
Hello,
I want to allow connections to my ldap server to all ips in my local LAN through iptables. I have used the below rule and it doesn't seem to be working.
iptables -A INPUT -p tcp -s 0/0 -d 127.0.0.1/32 --destination-port 389 --syn -j ACCEPT
please help.
|