|
|
# static ip configuration
# /etc/netplan/50-cloud-init.yaml
network:
ethernets:
eth0:
dhcp4: true
optional: true
wifis:
wlan0:
dhcp4: no
dhcp6: no
addresses: [192.168.1.150/24]
gateway4: 192.168.1.1
nameservers:
addresses: [1.1.1.1, 8.8.8.8]
access-points:
"wifiname":
password: "password"
version: 2
|