1. Login server SSH Putty
2. Allow incoming connections from 192.168.0.1
# iptables -A INPUT -s 192.168.0.1 -j ACCEPT
3. Allow outgoing connections to 192.168.0.1
# iptables -A OUTPUT -d 192.168.0.1 -j ACCEPT
1. Login server SSH Putty
2. Allow incoming connections from 192.168.0.1
# iptables -A INPUT -s 192.168.0.1 -j ACCEPT
3. Allow outgoing connections to 192.168.0.1
# iptables -A OUTPUT -d 192.168.0.1 -j ACCEPT