Netplan: Difference between revisions

From DWIKI
Line 39: Line 39:


==Permissions for /etc/netplan/00-installer-config.yaml are too open. Netplan configuration should NOT be accessible by others.==
==Permissions for /etc/netplan/00-installer-config.yaml are too open. Netplan configuration should NOT be accessible by others.==
  chmopd 0600 /etc/netplan/00-installer-config.yaml
  chmod 0600 /etc/netplan/00-installer-config.yaml

Revision as of 10:04, 4 September 2024

Ubuntu network configuration new style


Links

HOWTO

Verify netplan config

netplan try

FAQ

An error occurred: 'NetplanApply' object has no attribute 'state

That's because netplan is broken, try:

netplan try --state /etc/netplan


`gateway6` has been deprecated, use default routes instead

Use:

 routes:
   - to: default
     via: fe80::1


Error in network definition: expected mapping (check indentation)

It seems to prefer list of addresses in square brackets


`gateway4` has been deprecated, use default routes instead.

Try

routes:
  - to: default
    via: 192.168.10.1


Permissions for /etc/netplan/00-installer-config.yaml are too open. Netplan configuration should NOT be accessible by others.

chmod 0600 /etc/netplan/00-installer-config.yaml