ich benutze Debian Lenny und habe vor zwei Tagen ein aptitude update && aptitude upgrade durchgeführt. Danach bemerkte ich, das meine Virtuellen Maschinen (Virtualbox) keine Internetverbindungen mehr hatten. Zunächst dachte ich das liegt an virtualbox, doch bei meiner Fehlersuche stellte ich fest, das Iptables von "selbst" unten stehende Regeln erstellt hat. Ich verwende aber nur eigene iptables Scripte, welche ich manuell starte, d. h. nach einem Neustart sollten keine iptables Regeln existieren. Woher kommen untenstehende Regeln? Wer startet iptables mit diesen Regeln? In den /etc/ini.t Scripten habe ich schon nachgesehen, dort gibt es bei mir keinen Firewall Dienst.
MfG risc2000
Code: Alles auswählen
skynet:/home/risc# iptables -L
Chain INPUT (policy DROP)
target prot opt source destination
ACCEPT all -- anywhere anywhere
LOG all -- loopback/8 anywhere LOG level warning
DROP all -- loopback/8 anywhere
ACCEPT all -- anywhere 255.255.255.255
ACCEPT all -- anywhere 255.255.255.255
ACCEPT all -- anywhere noname
ACCEPT all -- anywhere 192.168.0.255
ACCEPT all -- anywhere noname
ACCEPT all -- anywhere 192.168.0.255
LOG all -- anywhere anywhere LOG level warning
DROP all -- anywhere anywhere
Chain FORWARD (policy DROP)
target prot opt source destination
LOG all -- anywhere anywhere LOG level warning
DROP all -- anywhere anywhere
Chain OUTPUT (policy DROP)
target prot opt source destination
ACCEPT all -- anywhere anywhere
ACCEPT all -- anywhere 255.255.255.255
ACCEPT all -- anywhere 255.255.255.255
ACCEPT all -- noname anywhere
ACCEPT all -- 192.168.0.255 anywhere
ACCEPT all -- noname anywhere
ACCEPT all -- 192.168.0.255 anywhere
LOG all -- anywhere anywhere LOG level warning
DROP all -- anywhere anywhere
skynet:/home/risc#