ubuntu-netplan

Solid

Author, validate, and debug netplan network configuration (`/etc/netplan/*.yaml`) for Ubuntu Server LTS 24.04 and 26.04, focused on on-premise and air-gapped hosts — static addressing, bonds, bridges, VLANs, VRFs, routing/policy-routing, DNS, interface matching/renaming, and the systemd-networkd renderer (NetworkManager and desktop covered briefly). Also the shared `network:` substrate for the ubuntu-autoinstall and ubuntu-cloud-init skills, which both use netplan v2.

AI & Automation 3 stars 1 forks Updated yesterday MIT

Install

View on GitHub

Quality Score: 79/100

Stars 20%
20
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# ubuntu-netplan Netplan is Ubuntu's network-configuration abstraction: declarative YAML under `/etc/netplan/` that netplan renders to a backend — **systemd-networkd** (servers, the default) or **NetworkManager** (desktop) — and uses to bring the network up. This skill is authoring-led (produce correct YAML from a description) with a strong validation/debug path, aimed at **on-prem / air-gapped Ubuntu Server LTS**. Netplan is also the shared network substrate for the sibling skills: cloud-init's network-config **v2 is netplan format**, and an autoinstall `network:` block **is** netplan v2. See **Boundaries** at the end. ## Authoring workflow 1. **Confirm target & renderer.** Server → `renderer: networkd` (the default). Desktop/Wi-Fi → `renderer: NetworkManager`. Check the running version with `netplan info` (24.04 ships ~1.0.x, 26.04 tracks 1.2.x — see version notes). 2. **Pick the device type(s):** `ethernets`, `bonds`, `bridges`, `vlans`, `vrfs`, `tunnels`, `dummy-devices`, `virtual-ethernets`, `wifis`, `modems`. Stack them bottom-up: ethernets → bond → vlans-on-bond → bridges-on-bond/vlan. 3. **Write the YAML** under `/etc/netplan/`, choosing a filename that orders correctly (see precedence). Use 2-space indentation, **never tabs**. 4. **Validate** without applying: `netplan generate` (fails loudly on errors). 5. **Apply safely.** On a remote/SSH host use `netplan try` (auto-rollback), never a blind `netplan apply` — see "Apply safely". 6. **Verify:**...

Details

Author
air-gapped
Repository
air-gapped/skills
Created
3 months ago
Last Updated
yesterday
Language
Python
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

ubuntu-autoinstall

Author, validate, and debug Ubuntu Server autoinstall configuration (the Subiquity installer's `autoinstall:` schema, version 1) for Ubuntu Server LTS 24.04 and 26.04, focused on unattended on-premise and air-gapped installs — identity, storage (LVM/direct/ZFS/encryption/RAID), apt mirror-selection + proxy + offline fallback, ssh, packages, kernel, late-commands/early-commands, and zero-touch delivery via a NoCloud seed. The `network:` block is netplan v2 (use the ubuntu-netplan skill); the `user-data:` block is cloud-config for the installed system (use the ubuntu-cloud-init skill).

3 Updated yesterday
air-gapped
DevOps & Infrastructure Solid

ubuntu-cloud-init

Author, validate, and debug cloud-init configuration for Ubuntu Server LTS 24.04 and 26.04, focused on on-premise and air-gapped hosts via the NoCloud datasource — `#cloud-config` user-data, the cloud-config modules (users, ssh, write_files, runcmd, apt with local mirrors, ca_certs for internal CAs, ntp, disk_setup), NoCloud seeding (seed dir, `cidata` ISO, `ds=nocloud;s=...` kernel cmdline, SMBIOS serial), boot stages, and pinning `datasource_list`. Public-cloud datasources (EC2/Azure/GCE…) are pointers only. For the `network:` block use the ubuntu-netplan skill; for the installer schema use the ubuntu-autoinstall skill.

3 Updated yesterday
air-gapped
AI & Automation Listed

networking

Linux networking troubleshooting — DNS, firewalls, ports, routing, and connectivity diagnostics. Invoke with /networking.

4 Updated 4 days ago
AreteDriver