



# iptables -A PREROUTING -t nat -i eth0 -p tcp \ --dport 80 -j DNAT --to 192.168.0.2:80 # iptables -A FORWARD -p tcp -m state \ --state NEW -d 192.168.0.2 --dport 80 -j ACCEPT
# iptables -A PREROUTING -t nat -i eth0 -p tcp \ --source 193.63.148.0/24 \ --dport 80 -j DNAT --to 192.168.0.2:80
# iptables -A INPUT -p tcp --syn --dport 23 -m connlimit \ --connlimit-above 2 -j REJECT
# iptables -t nat -A PREROUTING -d 1.1.1.1 \ -j DNAT --to-destination 2.2.2.2
# iptables -t nat -A PREROUTING -p tcp -d 10.10.20.99 \ --dport 80 -j DNAT --to-destination 10.10.14.2
# iptables -t nat -A PREROUTING -d 205.254.211.17 \ -j DNAT --to-destination 192.168.100.17 # iptables -t nat -A POSTROUTING -s 192.168.100.17 \ -j SNAT --to-destination 205.254.211.17
# iptables -A input -m ipv4options --rr -j DROP
# iptables -A input -m ipv4options --ts -j DROP
# iptables -A FORWARD -m recent --name badguy --rcheck \ --seconds 60 -j DROP # iptables -A FORWARD -p tcp -i eth0 --dport 139 \ -m recent --name badguy --set -j DROP
This document was produced using groff-1.19.