Weird issue : on Ubunut 22.04 , Outgoing connections only works if Host is connected via VPN

I had similar issue with LXD ubuntu:22.04 and Docker Daemon.

I found that issue: Containers do not have outgoing internet access

And use the same command to solve:

for ipt in iptables iptables-legacy ip6tables ip6tables-legacy; do $ipt --flush; $ipt --flush -t nat; $ipt --delete-chain; $ipt --delete-chain -t nat; $ipt -P FORWARD ACCEPT; $ipt -P INPUT ACCEPT; $ipt -P OUTPUT ACCEPT; done
systemctl reload snap.lxd.daemon
1 Like