Donnerstag, 16. April 2020

Ubuntu 18 Netplan

In case you have problems with static IP on ubuntu:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
network:
version: 2
  renderer: networkd
  ethernets:
    enp0s25:
      dhcp4: yes
      dhcp6: no
      gateway4: 172.168.0.1
      nameservers:
          addresses: [172.168.0.1]
  wifis:
    wlp3s0:
     dhcp4: yes
     dhcp6: no
     gateway4: 172.168.0.1
     nameservers:
          addresses: [172.168.0.1]
     access-points:
        "myssid":
          password: "mypassword"

Or make an online check: 

don't forget: netplan apply