netplanの設定例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
papanda925@papandaSV:/etc/netplan$ cat 50-cloud-init.yaml # This file is generated from information provided by the datasource. Changes # to it will not persist across an instance reboot. To disable cloud-init's # network configuration capabilities, write a file # /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg with the following: # network: {config: disabled} network: ethernets: eth0: dhcp4: true optional: true dhcp-identifier: mac wifis: wlan0: dhcp4: true optional: true dhcp-identifier: mac access-points: SSIDを設定: password: パスワードを設定 version: 2 |
DHCPサーバにMACアドレスを通知させるための設定がこれ
我が家のAtermでは、ubuntuを固定IPにするには必須だった。
1 |
dhcp-identifier: mac |
無線LANについてはこちら SSID名 と パスワードを無線LAN機器から確認に設定する。
1 2 3 4 5 6 7 8 |
wifis: wlan0: dhcp4: true optional: true dhcp-identifier: mac access-points: SSID名: password: パスワードを設定 |
最後に有効化
1 |
sudo netplan apply |
コメント