iptables.pl - Reguły iptables

Description: Strona zawiera zbiór podstawowych reguł iptables

iptables (25) reguły iptables (1) iptables blokada (1) iptables przekierowanie (1)

Example domain paragraphs

  blokady p2p dla całej sieci w godzinach od 17 do 22   iptables -t mangle -A PREROUTING -m time --timestart 17:00 --timestop 22:00  -m ipp2p --ipp2p -j DROP blokada p2p dla konkretnego ip w godzinach 17 do 22   iptables -I FORWARD -s 192.168.0.11 -m time --timestart 17:00 --timestop 22:00 -m ipp2p --ipp2p -j DROP blokada p2p dla konkretnego ip   iptables -I FORWARD -s 192.168.0.11 -m ipp2p --ipp2p -j DROP proxy dla całej sieci na porcie 3128   iptables -t nat -A PREROUTING -i eth1 -p tcp --dport 80 -j REDI