Good day,
I am fairly new to Proxmox, busy evaluating it as a possible replacement for our hosting platform. I am testing out the Simple vNET functionality of SDN on Proxmox 8.1.4 (fresh install).
I have followed this guide: https://pve.proxmox.com/wiki/Setup_Simple_Zone_With_SNAT_and_DHCP
I have created the Simple vNET and the subnet with source NAT enabled but my devices cannot reach out of the simple network. Devices internally can ping each other, they can ping the gateway and can even ping my Proxmox management IP address. However any other device on the wider external network or internet is unreachable.
Simple vNET subnet: 192.168.200.0/24
Simple vNET gateway: 192.168.200.1
Proxmox management IP: 192.168.0.210
Output of cat /etc/network/interfaces.d/sdn
I have also got some OVS bridges setup but they are on completely different physical NICs to the Proxmox management interface.
I have tried with the PVE firewall enable or disabled and with various rules (allow all in/out specifically) just to try get it working. I am at a bit of a loss of where to look next.
If anyone can point me in the right direction I would greatly appreciate it. I know a simple SDN network is not typically used in the hosting environment but I do want to test the functionality.
Thank you for any assistance.
Regards,
Nick
I am fairly new to Proxmox, busy evaluating it as a possible replacement for our hosting platform. I am testing out the Simple vNET functionality of SDN on Proxmox 8.1.4 (fresh install).
I have followed this guide: https://pve.proxmox.com/wiki/Setup_Simple_Zone_With_SNAT_and_DHCP
I have created the Simple vNET and the subnet with source NAT enabled but my devices cannot reach out of the simple network. Devices internally can ping each other, they can ping the gateway and can even ping my Proxmox management IP address. However any other device on the wider external network or internet is unreachable.
Simple vNET subnet: 192.168.200.0/24
Simple vNET gateway: 192.168.200.1
Proxmox management IP: 192.168.0.210
Output of cat /etc/network/interfaces.d/sdn
Code:
#version:38
auto ln_vLAN1
iface ln_vLAN1
ovs_type OVSIntPort
ovs_bridge vmbr0
ovs_mtu 9000
ovs_options tag=1
auto vLAN1
iface vLAN1
bridge_ports ln_vLAN1
bridge_stp off
bridge_fd 0
mtu 9000
alias Infrastructure vLAN
auto vNet1
iface vNet1
address 192.168.200.1/24
post-up iptables -t nat -A POSTROUTING -s '192.168.200.0/24' -o enp1s0f0 -j SNAT --to-source 192.168.0.210
post-down iptables -t nat -D POSTROUTING -s '192.168.200.0/24' -o enp1s0f0 -j SNAT --to-source 192.168.0.210
post-up iptables -t raw -I PREROUTING -i fwbr+ -j CT --zone 1
post-down iptables -t raw -D PREROUTING -i fwbr+ -j CT --zone 1
bridge_ports none
bridge_stp off
bridge_fd 0
mtu 1460
alias Simple SDN vNet Test
ip-forward on
auto vmbr0
iface vmbr0
ovs_ports ln_vLAN1
I have also got some OVS bridges setup but they are on completely different physical NICs to the Proxmox management interface.
I have tried with the PVE firewall enable or disabled and with various rules (allow all in/out specifically) just to try get it working. I am at a bit of a loss of where to look next.
If anyone can point me in the right direction I would greatly appreciate it. I know a simple SDN network is not typically used in the hosting environment but I do want to test the functionality.
Thank you for any assistance.
Regards,
Nick