Open specific port
# iptables -A INPUT -p tcp --dport xxxx -j ACCEPT
Open all ports:
# iptables -I INPUT -j ACCEPT
Save iptables configuration:
# iptables-save > /etc/network/iptables.rules
Restore last cofiguration:
# iptables-restore < /etc/iptables.firewall.rules