V
valferon
Guest
I'm having troubles with my network configuration and so, few questions for you ^^
I would like this :
[external network] <----->[eth0(Proxmox Host)]=>eth0 bridge vmbr0 ||| this works
+
[external network] <----->[eth0.100(Proxmox Host)]=>eth0.100 bridge vmbr1 ||| doesn't work
What is want to do is to have a bridge on eth0.100 (vlan tagging 100) and have a VM connected to this bridge where I set the IP.
My VM (KVM) has this IP config :
and my Proxmox host :
I read almost every post about VLAN configuration and I still can't see where I fail!
For exemple, I can't ping my VM 192.168.1.100 from my machine on the same VLAN and same IP network.
Thanks everyone!
I would like this :
[external network] <----->[eth0(Proxmox Host)]=>eth0 bridge vmbr0 ||| this works
+
[external network] <----->[eth0.100(Proxmox Host)]=>eth0.100 bridge vmbr1 ||| doesn't work
What is want to do is to have a bridge on eth0.100 (vlan tagging 100) and have a VM connected to this bridge where I set the IP.
My VM (KVM) has this IP config :
Code:
auto eth0
iface eth0 inet static
address 192.168.1.100
netmask 255.255.255.0
broadcast 192.168.1.255
gateway 192.168.1.254
and my Proxmox host :
Code:
# network interface settings
auto lo
iface lo inet loopback
iface eth0 inet manual
iface eth0.100 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.1.187
netmask 255.255.255.0
gateway 192.168.1.254
bridge_ports eth0
bridge_stp off
bridge_fd 0
auto vmbr1
iface vmbr1 inet manual
bridge_ports eth0.100
bridge_stp off
bridge_fd 0
I read almost every post about VLAN configuration and I still can't see where I fail!
For exemple, I can't ping my VM 192.168.1.100 from my machine on the same VLAN and same IP network.
Thanks everyone!
Last edited by a moderator: