mit
Code: Alles auswählen
iptables -A INPUT -i lo -j ACCEPT
iptables -A OUTPUT -o lo -j ACCEPT
Was ich nicht verstehe, ich erhalte mit
Code: Alles auswählen
sudo /sbin/iptables -L
Was mich irritiert, ist die MeldungChain INPUT (policy DROP)
target prot opt source destination
ACCEPT all -- anywhere anywhere
Chain FORWARD (policy DROP)
target prot opt source destination
Chain OUTPUT (policy DROP)
target prot opt source destination
ACCEPT all -- anywhere anywhere
Das liest sich so, als würde allen alles erlaubt? Mir fehlt der Hinweis, dass sich das auf die lokale Adresse bezieht?target prot opt source destination
ACCEPT all -- anywhere anywhere
Wie muss ich diese Meldung verstehen?
Vielen Dank für Hinweise.
wckl