HI everybody,<br><br>I didn't solve the problem, but I use the same configuration in a real computer an it worked. <span id="result_box" class="short_text" lang="en"><span class="hps">Definitely it was a problem with Virtualbox and the way it routes the packets internally. </span></span>My objective was only install and test a linux container... so far so good. <br>
<br>Thanks for the advices and your time. <br><br><br><div class="gmail_quote">2013/7/8 Walter <span dir="ltr"><<a href="mailto:walter.stanish+lxc-users@gmail.com" target="_blank">walter.stanish+lxc-users@gmail.com</a>></span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Assuming you have IP forwarding enabled on the LXC host's kernel<br>
(sysctl -w net.ipv4.ip_forward=1) as reported...<br>
<br>
Check you have allowed forwarding of packets to/from that interface<br>
with 'iptables-save' (dump current rules).<br>
<br>
If not, try adding some rules like:<br>
 # at filter table, allow input (receiving packets) from vboxnet0 interface<br>
 iptables -t filter -A INPUT -i vboxnet0 -j ACCEPT<br>
 # at filter table, allow output (sending packets) to vboxnet0 interface<br>
 iptables -t filter -A OUTPUT -o vboxnet0 -j ACCEPT<br>
 iptables -t filter -A FORWARD -i vboxnet0 -j ACCEPT<br>
<br>
If you want to then add NAT access for the LXC guest to the internet,<br>
something quick might look like:<br>
 iptables -t nat -A POSTROUTING -o boxnet0 -j MASQUERADE<br>
 iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE<br>
<br>
Also double-check in the LXC guest that you have no firewall rules<br>
active or that they default to ACCEPT (again, use 'iptables-save').<br>
Finally, if you want the guest to route beyond the host, check that<br>
the LXC guest has a default route configured.<br>
<br>
For additional debugging, I'd recommend using tcpdump and ping within<br>
the host and the guest.<br>
<span class="HOEnZb"><font color="#888888"><br>
- Walter<br>
</font></span></blockquote></div><br><br clear="all"><br>-- <br>Luis M. Ibarra