Iptables

ARUN Post in FIREWALL
0

service iptables stop
service iptables start
/etc/init.d/iptables status

Open a Port using Iptables

iptables -A INPUT -p tcp –dport portnumber -j ACCEPT

iptables -A OUTPUT -p tcp –sport portnumber -j ACCEPT

Allow an IP address using IP tables

iptables -I INPUT -p tcp -s IP_Address -j ACCEPT

« Prev: :Next »

Leave a Reply

You must be logged in to post a comment.