Hia.
So I recently installed proxmox on my hetzner dedicated server and I have been trying to get the networking working on the vms for the past 3 days.
Currently my vms cannot connect to the internet whatever I try.
I was following this guide: https://community.hetzner.com/tutorials/install-and-configure-proxmox_ve
I have a main IP and bought a 6 ip block later so the ips are not the same
I am trying to use the bridged method.
This is my /etc/network/interfaces on the node itself
In the vms I had to manually configure it cause it was not working with dhcp
this is the config there:
What am I doing wrong and how can I fix this?
So I recently installed proxmox on my hetzner dedicated server and I have been trying to get the networking working on the vms for the past 3 days.
Currently my vms cannot connect to the internet whatever I try.
I was following this guide: https://community.hetzner.com/tutorials/install-and-configure-proxmox_ve
I have a main IP and bought a 6 ip block later so the ips are not the same
I am trying to use the bridged method.
This is my /etc/network/interfaces on the node itself
Bash:
source /etc/network/interfaces.d/*
auto lo
iface lo inet loopback
iface lo inet6 loopback
auto eno1
iface eno1 inet static
address 135.181.142.136
netmask 255.255.255.192
gateway 135.181.142.129
up route add -net 135.181.142.128 netmask 255.255.255.192 gw 135.181.142.129 dev eno1
# route 135.181.142.128/26 via 135.181.142.129
iface eno1 inet6 static
address 2a01:4f9:3a:1682::2
netmask 64
gateway fe80::1
# for a subnet
auto vmbr1
iface vmbr1 inet static
address 65.21.113.64
netmask 29
bridge_ports none
bridge_stp off
bridge_fd 0
In the vms I had to manually configure it cause it was not working with dhcp
this is the config there:
Bash:
auto eno18
iface eno18 inet static
address 65.21.113.64
netmask 255.255.255.248
pointopoint 135.181.142.136
gateway 135.181.142.136
What am I doing wrong and how can I fix this?