Vorlage:Input-output.conf: Unterschied zwischen den Versionen

Aus Xinux Wiki
Zur Navigation springen Zur Suche springen
Zeile 3: Zeile 3:
 
  table inet filter {
 
  table inet filter {
 
         chain input {
 
         chain input {
                  type filter hook input priority filter; policy drop;
+
                type filter hook input priority filter; policy drop;
 
                 ct state established,related accept
 
                 ct state established,related accept
 
                 ct state new iif "lo" accept
 
                 ct state new iif "lo" accept

Version vom 7. Mai 2026, 15:00 Uhr

 flush ruleset
 table inet filter {
         chain input {
                 type filter hook input priority filter; policy drop;
                 ct state established,related accept
                 ct state new iif "lo" accept
                 ct state new iif $DMZDEV ip saddr $DMZ tcp dport 22 accept
 	     	 ct state new iif $LANDEV ip saddr $LAN tcp dport 22 accept
 	  	 ct state new iif "SERVERDEV" ip saddr $SERVER tcp dport 22 accept
 	 	 ct state new iif "WANDEV" ip saddr $HOST tcp dport 22 accept
                 ct state new icmp type echo-request accept 
                 log prefix " --nftables-drop-input-- "
          }
 
          chain output {
                 type filter hook output priority filter; policy drop;
                 ct state established,related accept
                 ct state new oif "lo" accept
                 ct state new accept
                 log prefix " --nftables-drop-output-- "
          }
 }