[SOLVED] No Guest Internet access

cloudfather

Member
Dec 30, 2020
15
1
8
36
Most asked question but after hours of reading, I couldn't find the solution for my case.

I have set up a proxmox server on Hetzner which has only one public IP,
I need to build a private network that can access the internet.
I did configure the bridge network, and it is working privately, VMS can access each other but not the internet.

Any advice is appreciated.
 

Attachments

  • Screenshot 2020-12-30 at 23.53.27.png
    Screenshot 2020-12-30 at 23.53.27.png
    70.1 KB · Views: 44
  • Screenshot 2020-12-30 at 23.55.14.png
    Screenshot 2020-12-30 at 23.55.14.png
    68.6 KB · Views: 42
Last edited:
Change eno1 to enp4s0 as the name of your interface network like this:

Code:
post-up iptables -t nat -A POSTROUTING -s '10.10.10.10/24' -o enp4s0 -j MASQUERADE
post-down iptables -t nat -D POSTROUTING -s '10.10.10.0/24' -o enp4s0 -j MASQUERADE