Hi All,
I have a curious problem with Windows devices behind a VyOS VM which sits on a Klas TRX R6. The VyOS unit is running multiple VLAN’s, doing NAT, and firewalling between VLAN’s, along with running some containers to do healthchecks, flow monitoring, and log export.
MacOS, iOS, Android devices which connect to a wireless network fronted by Cisco WLC AP’s have great throughput (we get around 70+Mbps on the backhaul we’re using which is kind of expected). Windows devices, no so much (0.3Mbps). If we put the Windows device on a switch port in the same VLAN as the wireless, the throughput is the same. If we move the Windows machine to be directly connected to the TRX R6 bypassing VyOS, we get 70+Mbps, so we’re fairly confident the issue is something to do with VyOS, but what we’re not sure.
The VM on the TRX is configured simply with -
!
vm vyos
hdd create vyos.img disk1: 200 type virtio
cdrom disk1: vyos.iso
cpu 4
ram 16384
nic 1 vSwitch 9 type virtio
nic 2 vSwitch 10 type virtio
start
!
Within VyOS itself, we configure the interfaces like so -
set interfaces dummy dum0 description '***MIRROR***'
set interfaces ethernet eth0 address {{ wan_ip }}
set interfaces ethernet eth0 description 'UNTRUST'
set interfaces ethernet eth1 mirror egress 'dum0'
set interfaces ethernet eth1 mirror ingress 'dum0'
set interfaces ethernet eth1 address {{ mgmt_ip }}
set interfaces ethernet eth1 description 'MGMT'
set interfaces ethernet eth1 vif 121 address {{ net1_ip }}
set interfaces ethernet eth1 vif 121 description 'NET1'
set interfaces ethernet eth1 vif 122 address {{ net2_ip }
set interfaces ethernet eth1 vif 122 description 'NET2'
set interfaces ethernet eth1 vif 123 address {{ net3_ip }}
set interfaces ethernet eth1 vif 123 description 'NET3'
set interfaces ethernet eth1 vif 124 address {{ net4_ip }}
set interfaces ethernet eth1 vif 124 description 'NET4'
set interfaces ethernet eth1 vif 125 address {{ net5_ip }}
set interfaces ethernet eth1 vif 125 description 'NET5'
set interfaces ethernet eth1 vif 126 address {{ net6_ip }}
set interfaces ethernet eth1 vif 126 description 'NET6'
set interfaces ethernet eth1 vif 127 address {{ net7_ip }}
set interfaces ethernet eth1 vif 127 description 'NET7'
set interfaces ethernet eth1 vif 128 address {{ net8_ip }}
set interfaces ethernet eth1 vif 128 description 'NET8'
set interfaces ethernet eth1 vif 140 address {{ net9_ip }}
set interfaces ethernet eth1 vif 140 description 'NET9'
set interfaces ethernet eth1 vif 142 address {{ net10_ip }}
set interfaces ethernet eth1 vif 142 description 'NET10'
set interfaces loopback lo
We’ve tried both vanilla Windows, and corporate image Windows. Any ideas on what we might do to identify what the issue is?
Cheers
Andy