Internet Access on Toradex T20 (Linux)

Can someone specify how to connect T20 (Linux) via internet sharing via USB over the laptop using Windows 10 OS
Basically I am Using these Configs at T20 Side

ip link set eth0 up
ip addr add 192.168.10.2/24 broadcast 192.168.10.255 dev eth0
ip route add default via 192.168.10.1

and I have Added Network Sharing at the Windows 1 Side with
Own IP 192.168.10.1
Subnet 255.255.255.0
Gateway- Blank
DNS - Blank

Get the system Working just add the following lines and you would be good to go.

ip link set eth0 up
ip addr add 192.168.10.2/24 broadcast 192.168.10.255 dev eth0
ip route add default via 192.168.10.1
/sbin/ifconfig eth0 192.168.10.2 netmask 255.255.255.000
/sbin/route add default gw 192.168.10.1
echo 'nameserver 8.8.8.8' >> /etc/resolv.conf