-
How to set static ip in TX2 Board?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
# 01. check ip ifconfig # 02. sudo vim /etc/network/interfaces # 03. Add info as here auto eth0 iface eth0 inet static address xxx.xx.xxx.xxx netmask 255.255.255.0 dns-nameserver 8.8.8.8 gateway xxx.xx.xxx.xxx # 04. refresh ip sudo ip addr flush wlan0 # 05. reboot network service sudo systemctl restart networking.service # 06. reboot TX2 sudo reboot