<div dir="ltr"><div>I have seen cases where the built in Ethernet would not come <br></div><div>up on its own, for an unknown reason. <br></div><div><br></div><div>It will show up in lshw -c net, but would be disabled. <br></div><div><br></div><div>So I resorted to the snippet below in /etc/network/interfaces</div><div>with a comment so I don't forget.</div><div><br></div><div>(Yes, I never bothered with netplan either)<br></div><div><br></div><div>The two boards I have seen doing this were Gigabyte <br></div><div>F2A88X-D3H (Ethernet was called enp1s0) and the MSI <br></div><div>X570-A Pro (enp39s0)</div><div><br></div><div># IMPORTNAT: This interface MUST be static. It cannot be DHCP !! <br># If it is DHCP, then weewx weather station will not start<br># DO NOT CHANGE THIS!!!<br>auto enp39s0<br>iface enp39s0 inet static<br>  address           192.168.0.x<br>  gateway           192.168.0.1<br>  netmask           255.255.255.0<br>  broadcast         192.168.0.255<br>  dns-nameservers   192.168.0.1<br></div></div>