##########################################################
####### Linux Network Configuration OLD STYLE ############
##########################################################

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet static

address (host ip)
netmask (netmask)
network (network ip)
dns-nameservers (ns ip's space separated)
gateway (gateway ip)
dns-domain (domain name)


##########################################################
####### Linux Network Configuration NEW STYLE YAML #######
##########################################################

network:
version: 2
renderer: networkd
ethernets:
ens32:
dhcp4: no
addresses: [192.168.XXX.XXX/24]
gateway4: 192.168.XXX.XXX
nameservers:
search: [domain.name]
addresses: [192.168.XXX.XXX, 192.168.XXX.XXX]


######################################################
# sudo netplan apply