I have a zotac xbox C133 nano that has wireless as well as dual ethernet ports, and would like to use this as my firewall with opnsense. Ideally, I would like to use the wireless connection for management access to promox only, and passthrough to the dual ethernet ports for firewall wan and lan
I have been able to get the wireless connection going and am able to access proxmox as admin. I have also been able to set up passthrough using the IOMMU related posts, but have noticed that all my traffic seems to be going through the wireless connection. Using iperf, I am getting decent (GB/s) between machines on my lan, but consistently getting 24MB/s up / 18 MB/s down for all traffice to the zbox - i.e.
- proxmox shell to another machine on the LAN
- proxmox shell to VM within zbox
- VM within zbox to another machine on the LAN
I am getting the same speeds when bridging the ethernet ports
Here are the interfaces configurations
passthrough
auto lo
iface lo inet loopback
auto enp2s0
iface enp2s0 inet static
address 192.168.6.30/24
gateway 192.168.6.1
auto enp1s0
iface enp1s0 inet static
address 192.168.6.31/24
gateway 192.168.6.1
auto wlan0
iface wlan0 inet static
address 192.168.6.29/24
gateway 192.168.6.1
bridged
auto lo
iface lo inet loopback
iface enp2s0 inet manual
iface enp1s0 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.6.30/24
gateway 192.168.6.1
bridge-ports enp1s0
bridge-stp off
bridge-fd 0
auto vmbr1
iface vmbr1 inet static
address 192.168.6.31/24
bridge-ports enp2s0
bridge-stp off
bridge-fd 0
auto wlan0
iface wlan0 inet static
address 192.168.6.29/24
gateway 192.168.6.1
Any pointers to what I am doing wrong here would be greatly appreciated.
I have been able to get the wireless connection going and am able to access proxmox as admin. I have also been able to set up passthrough using the IOMMU related posts, but have noticed that all my traffic seems to be going through the wireless connection. Using iperf, I am getting decent (GB/s) between machines on my lan, but consistently getting 24MB/s up / 18 MB/s down for all traffice to the zbox - i.e.
- proxmox shell to another machine on the LAN
- proxmox shell to VM within zbox
- VM within zbox to another machine on the LAN
I am getting the same speeds when bridging the ethernet ports
Here are the interfaces configurations
passthrough
auto lo
iface lo inet loopback
auto enp2s0
iface enp2s0 inet static
address 192.168.6.30/24
gateway 192.168.6.1
auto enp1s0
iface enp1s0 inet static
address 192.168.6.31/24
gateway 192.168.6.1
auto wlan0
iface wlan0 inet static
address 192.168.6.29/24
gateway 192.168.6.1
bridged
auto lo
iface lo inet loopback
iface enp2s0 inet manual
iface enp1s0 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.6.30/24
gateway 192.168.6.1
bridge-ports enp1s0
bridge-stp off
bridge-fd 0
auto vmbr1
iface vmbr1 inet static
address 192.168.6.31/24
bridge-ports enp2s0
bridge-stp off
bridge-fd 0
auto wlan0
iface wlan0 inet static
address 192.168.6.29/24
gateway 192.168.6.1
Any pointers to what I am doing wrong here would be greatly appreciated.