Hi there,
I am really new to all of this so excuse the question, if too stupid
I want to use OVS and I understood that PVE needs a static IP. I replaced the basic linux bridge with OVS and it works just fine.
/etc/network/interfaces (part of)
Now, I'd like to use vlan2 for my pfSense WAN port and as such I want to get a DHCP from the same modem (192.168.178.1 - fritzbox, yes). I thought I could just add
but I don't get an IP from the modem. What am I doing wrong?
I am really new to all of this so excuse the question, if too stupid
I want to use OVS and I understood that PVE needs a static IP. I replaced the basic linux bridge with OVS and it works just fine.
/etc/network/interfaces (part of)
Code:
auto lo
iface lo inet loopback
auto enp9s0
iface enp9s0 inet manual
ovs_type OVSPort
ovs_bridge vmbr0
ovs_mtu 1500
ovs_options vlan_mode=native-untagged tag=1
auto vlan1
iface vlan1 inet static
address 192.168.178.178
gateway 192.168.178.1
ovs_type OVSIntPort
ovs_bridge vmbr0
ovs_mtu 1500
ovs_options tag=1
auto vmbr0
iface vmbr0 inet manual
ovs_type OVSBridge
ovs_ports enp9s0 vlan1 vlan2
ovs_mtu 1500
Now, I'd like to use vlan2 for my pfSense WAN port and as such I want to get a DHCP from the same modem (192.168.178.1 - fritzbox, yes). I thought I could just add
Code:
auto vlan2
iface vlan2 inet dhcp
ovs_type OVSIntPort
ovs_bridge vmbr0
ovs_mtu 1500
ovs_options tag=2
but I don't get an IP from the modem. What am I doing wrong?