Hello together,
I am hosting a Hetzner Server and using the Linux Bridge with one public IP.
Now I am forced to implement ovsBridges and want to ask if someone know how I need to do this.
I mean to manage inside SDN with OpenVSwitch I know but can I configure it like the Linux Bridges?
Thank you guys for Support.
I am hosting a Hetzner Server and using the Linux Bridge with one public IP.
Code:
auto lo
iface lo inet loopback
iface enp34s0 inet manual
auto vmbr0
iface vmbr0 inet static
address 78.x.x.115/26
gateway 78.x.x.66
bridge-ports enp34s0
bridge-stp off
bridge-fd 0
auto vmbr1
iface vmbr1 inet static
address 10.x.x.1/24
bridge-ports none
bridge-stp off
bridge-fd 0
post-up echo 1 > /proc/sys/net/ipv4/ip_forward
post-up iptables -t nat -A POSTROUTING -s '10.x.x.0/24' -o vmbr0 -j MASQUERADE
post-down iptables -t nat -F
Now I am forced to implement ovsBridges and want to ask if someone know how I need to do this.
I mean to manage inside SDN with OpenVSwitch I know but can I configure it like the Linux Bridges?
Thank you guys for Support.