最基础的interfaces配置网络

**文件位置 **/etc/network/interfacesip a查看网卡名enp6s18

静态IP

 auto enp6s18
 iface enp6s18 inet static
     address 192.168.69.147/24
     gateway 192.168.69.89

或者DHCP

 auto enp6s18
 iface enp6s18 inet dhcp
 ​