Asus TUF Gaming AX6000 support

Unfortunately, this one doesn't work either

only this one working:

and it should be:

#!/bin/bash

# Disable Offloads for all interfaces

for DEV in $(ls /sys/class/net) ; do
echo -n "$DEV "
ethtool -K ${DEV} tso off
ethtool -K ${DEV} gro off
ethtool -K ${DEV} tx off
echo "Offloads Disabled"
done