# - bof - #





# -  - #
# - uServer - #



# :a
# -  - #
# - ipa - #
ipa;
ip -c a;

╭── # is_derayo@uServerLXC ~ :
╰─▷ $ ipa
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
2: ens18: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
    inet 10.0.0.200/24 brd 10.0.0.255 scope global ens18
    


# :b
# -  - #
# - Edit the yaml file - #
sudo vim /etc/netplan/50-cloud-init.yaml;

# - Configured - #

network:
  ethernets:
    ens18:
      dhcp4: no
      addresses: [10.0.0.200/24]
      gateway4: 10.0.0.1
      nameservers:
        addresses: [8.8.8.8,8.8.4.4]
  version: 2



# :c
# -  - #
# - Restart netplan - #
sudo netplan apply;



# :d
# -  - #
# - Restart computer - #
sudo reboot now;





# - eof - #
