I have 3 bridges.
vmbr0 - set up on install, directly connected to my PC, soon will be used by pfsense vmachine as LAN and gateway for VMs/CTs
vmbr1 - connected to my network, soon will be used by pfsense vmachine as WAN.
vmbr2 - also connected to my network
What i want is to set vmbr2 as my default gateway, only for proxmox(host) to connect directly to my network. CTs/VMs will be using vmbr0.
I set dhcp and gateway on vmbr2, it gets the IP correctly, but still have no connection. Ping doesnt work.
An here are my interfaces
vmbr0 - set up on install, directly connected to my PC, soon will be used by pfsense vmachine as LAN and gateway for VMs/CTs
vmbr1 - connected to my network, soon will be used by pfsense vmachine as WAN.
vmbr2 - also connected to my network
What i want is to set vmbr2 as my default gateway, only for proxmox(host) to connect directly to my network. CTs/VMs will be using vmbr0.
I set dhcp and gateway on vmbr2, it gets the IP correctly, but still have no connection. Ping doesnt work.
Code:
t@proxmox:~# ping 8.8.8.8
PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
From 10.10.0.1 icmp_seq=1 Destination Host Unreachable
From 10.10.0.1 icmp_seq=2 Destination Host Unreachable
An here are my interfaces
Code:
auto lo
iface lo inet loopback
iface enp0s7 inet manual
iface enp2s0f0 inet manual
iface enp2s0f1 inet manual
auto vmbr0
iface vmbr0 inet static
address 10.10.0.1
netmask 255.255.255.0
gateway 10.10.0.2
bridge-ports enp0s7
bridge-stp off
bridge-fd 0
auto vmbr1
iface vmbr1 inet manual
bridge-ports enp2s0f0
bridge-stp off
bridge-fd 0
auto vmbr2
iface vmbr2 inet dhcp
gateway 10.11.23.1
bridge-ports enp2s0f1
bridge-stp off
bridge-fd 0
Last edited: