- deploy.conf templates interface names/USB IDs (@TOKEN@ substitution) across ap/* configs so a dongle swap only needs deploy.conf edited, not the repo configs themselves; drops ap/rtw88.conf (old 2.4GHz dongle retired for the DWA-171, which needs no such power-save override). - failover/van-wlan-watchdog: recovers wlan0 from NM's post-boot no-secrets wedge (a boot-time supplicant race, not a real credential failure). - deploy.sh: warn() collects dependency/config warnings (missing python3-gps, python3-paho-mqtt, mobile-broadband-provider-info, grpcurl, gpsd; netplan drift; unedited example configs) into /var/lib/vanlink/deploy-warnings.json, rendered as an amber Cockpit card so they're visible without reading deploy output. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
42 lines
1.8 KiB
YAML
42 lines
1.8 KiB
YAML
# /etc/netplan/50-van-wan.yaml — replaces cloud-init's 50-cloud-init.yaml.
|
|
# The WANs handed to NetworkManager so van-failover can steer them (mirrors
|
|
# wayback where NM owns all WANs): wlan0 = wifi uplink (Wapana at home /
|
|
# campsite wifi), enxd8ec5eeb3512 = Starlink. The AP radios and the wired LAN
|
|
# ports (USB dongle + onboard eth0, since 2026-07-12 an internal LAN port) are
|
|
# deliberately absent: systemd-networkd/hostapd own them, and
|
|
# van-ap-unmanaged.conf hides them from NM.
|
|
# Apply once by hand: netplan generate && netplan apply (flaps the uplinks).
|
|
network:
|
|
version: 2
|
|
ethernets:
|
|
# Starlink dish uplink (RTL8153 USB NIC, MAC-named — travels with the
|
|
# adapter, see STARLINK_IFACE in deploy.conf). The /32 link route keeps the
|
|
# dish's management address reachable no matter which WAN holds the
|
|
# default route: the dish answers on 192.168.100.1 (gRPC :9200) even while
|
|
# the uplink sits behind CGNAT.
|
|
@STARLINK_IFACE@:
|
|
renderer: NetworkManager
|
|
optional: true
|
|
dhcp4: true
|
|
routes:
|
|
- to: 192.168.100.1/32
|
|
scope: link
|
|
wifis:
|
|
wlan0:
|
|
renderer: NetworkManager
|
|
optional: true
|
|
dhcp4: true
|
|
# IPv6 is deliberate as of 2026-07-12: NM does SLAAC/DHCPv6 itself.
|
|
# Before this it only worked by accident — dracut's runtime catch-all
|
|
# /run/systemd/network/zzzz-dracut-default.network had networkd
|
|
# co-managing wlan0 (second DHCPv4 client + surprise IPv6); deploy.sh
|
|
# now masks that file. Privacy (temporary) addresses stay off so hbd
|
|
# and DNS see one stable source address per uplink.
|
|
dhcp6: true
|
|
ipv6-privacy: false
|
|
access-points:
|
|
"Wapana":
|
|
auth:
|
|
key-management: "psk"
|
|
password: "6e1335fd97165a7d2618bec19824be363a2766d7765f91aa14773d871eaa59dc"
|