On Wednesday 28 March 2007 at 4:26 pm, David Baron wrote: > > Disabling the firewall does not help. I cannot send HTTP packets > from host to guest.
Hi David, If your default policy is set to DENY, disabling the firewall won't do the trick. If you're in a secure environment (behind a firewall), you can do the following as root: iptables -F # flush all tables iptables -X # remove any user defined chains # # Change the policy to ACCEPT # iptables -P INPUT ACCEPT iptables -P OUTPUT ACCEPT iptables -P FORWARD ACCEPT Cheers, -- pablo _______________________________________________ vbox-users mailing list [email protected] http://vbox.innotek.de/mailman/listinfo/vbox-users
