While using FreeBSD 11 on Google Compute engine creating a vpn with openvpn & l2tp (mpd), I notice that the network speed was extreamly slow, first I disable the TSO:
ifconfig vtnet0 -tso
But didn't work, therefore I disable the full vtnet checksum offload by adding this line to the /boot/loader.conf file:
hw.vtnet.csum_disable="1"
After doing that network speed boosted noticeable.
But wondering if this could raise other issues or is totally fine to disable it been an virtual environment?