Linuxhotel Wiki

Wie ging das nochmal?

Benutzer-Werkzeuge

Webseiten-Werkzeuge


lpi2:iptables

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen gezeigt.

Link zu der Vergleichsansicht

Beide Seiten, vorherige Überarbeitung Vorherige Überarbeitung
Nächste Überarbeitung
Vorherige Überarbeitung
Nächste Überarbeitung Beide Seiten, nächste Überarbeitung
lpi2:iptables [2013/12/13 17:44]
ingo_wichmann
lpi2:iptables [2014/07/11 13:22]
ingo_wichmann [Debian]
Zeile 1: Zeile 1:
 ====== iptables beobachten ====== ====== iptables beobachten ======
-  watch -d iptables -L -n -v --line-numbers+  watch -d iptables -nvL --line-numbers
  
   * -L = List (auflisten)   * -L = List (auflisten)
Zeile 7: Zeile 7:
   * --line-numbers = Regeln Nummerieren (einzelne Regeln können anhand der Nummer z.B. gelöscht werden)   * --line-numbers = Regeln Nummerieren (einzelne Regeln können anhand der Nummer z.B. gelöscht werden)
  
-====== iptables ​Syntax ​======+====== iptables ​Regeln zurücksetzen ​====== 
 +===== filter ===== 
 +  iptables -P INPUT ACCEPT 
 +  iptables -P OUTPUT ACCEPT 
 +  iptables -P FORWARD ACCEPT 
 +  iptables -F 
 +  iptables -X 
 +===== nat ===== 
 +  iptables -t nat -F 
 +  iptables -t nat -X
  
 +====== iptables Syntax ======
 ^ table     ^ command ^ chain  ^ rule-specification ​            ^^^ target ​        ​^^ ​ ^ table     ^ command ^ chain  ^ rule-specification ​            ^^^ target ​        ​^^ ​
 | -t filter | -A | INPUT       | -s |           ​| ​                | -j | ACCEPT ​    | | -t filter | -A | INPUT       | -s |           ​| ​                | -j | ACCEPT ​    |
Zeile 26: Zeile 36:
 {{:​iptables.jpg?​direct&​900|}} {{:​iptables.jpg?​direct&​900|}}
 )) ))
- 
-====== iptables filter-Regeln komplett zurücksetzen ====== 
-  iptables -P INPUT ACCEPT 
-  iptables -P OUTPUT ACCEPT 
-  iptables -P FORWARD ACCEPT 
-  iptables -F 
-  iptables -X 
-  iptables -t nat -F 
-  iptables -t nat -X 
  
 ====== Einbindung von iptables in den Bootvorgang ====== ====== Einbindung von iptables in den Bootvorgang ======
Zeile 112: Zeile 113:
   update-rc.d iptables start 40 S . stop 89 0 6 .   update-rc.d iptables start 40 S . stop 89 0 6 .
  
 +Alternativ:
 +''/​etc/​network/​interfaces''​ :
 +<​file>​
 +auto eth0
 +iface eth0 inet dhcp
 +  up sh -c '​iptables-restore < /​etc/​iptables'​
 +</​file>​
 ====== Einfacher Paketfilter mit NAT ====== ====== Einfacher Paketfilter mit NAT ======
  
Zeile 181: Zeile 189:
   * http://​www.frozentux.net/​iptables-tutorial/​iptables-tutorial.html   * http://​www.frozentux.net/​iptables-tutorial/​iptables-tutorial.html
  
-===== iptables und dhcp ===== +
-  * http://​www.faveve.uni-stuttgart.de/​it/​auth/​dhcp.php+
  
 ===== iptables und ssh ===== ===== iptables und ssh =====
   * http://​www.debian-administration.org/​articles/​187 , aber: http://​bugs.debian.org/​cgi-bin/​bugreport.cgi?​bug=332231   * http://​www.debian-administration.org/​articles/​187 , aber: http://​bugs.debian.org/​cgi-bin/​bugreport.cgi?​bug=332231
  
lpi2/iptables.txt · Zuletzt geändert: 2019/12/19 17:19 von dirk_streubel