Hi,
So the issue im having is that i have 2 different /24 as follows:
xxx.xxx.250.0/24
xxx.xxx.20/24
the xxx.xxx.250.0 is the main vmbr 0 and works great including inside all the VMs they get ips etc no problem there, however, i have added a vmbr1 with the xxx.xxx.20.0 and this has the gateway of .20.1 not the same as vmbr0
here is my interfaces:
Now the strange thing is that i can ping from my home pc the .20.80 fine but try to ping out won't work for example:
ping -I vmbr1 8.8.8.8
From xxx.xxx.20.80 icmp_seq=1 Destination Host Unreachable
Any help would be much appreciated.
So the issue im having is that i have 2 different /24 as follows:
xxx.xxx.250.0/24
xxx.xxx.20/24
the xxx.xxx.250.0 is the main vmbr 0 and works great including inside all the VMs they get ips etc no problem there, however, i have added a vmbr1 with the xxx.xxx.20.0 and this has the gateway of .20.1 not the same as vmbr0
here is my interfaces:
Code:
auto lo
iface lo inet loopback
iface eth0 inet manual
iface eth1 inet manual
iface eth2 inet manual
iface eth3 inet manual
auto vmbr0
iface vmbr0 inet static
address xxx.xxx.250.223
netmask 255.255.255.0
gateway xxx.xxx.250.1
bridge_ports eth0
bridge_stp off
bridge_fd 0
auto vmbr1
iface vmbr1 inet static
address xxx.xxx.20.80
netmask 255.255.255.0
bridge_ports none
bridge_stp off
bridge_fd 0
Now the strange thing is that i can ping from my home pc the .20.80 fine but try to ping out won't work for example:
ping -I vmbr1 8.8.8.8
From xxx.xxx.20.80 icmp_seq=1 Destination Host Unreachable
Any help would be much appreciated.