2026-09-02 21:14:55 -04:00
|
|
|
# Ref: https://docs.siderolabs.com/talos/latest/reference/configuration/network/linkconfig
|
|
|
|
|
|
|
|
|
|
apiVersion: v1alpha1
|
|
|
|
|
kind: LinkConfig
|
|
|
|
|
name: enp0s1 # Default link position assigned by proxmox
|
|
|
|
|
up: true
|
|
|
|
|
mtu: 1500
|
|
|
|
|
addresses:
|
2026-09-03 00:35:34 -04:00
|
|
|
- address: "${ipv4_address}/${ipv4_subnet_mask}"
|
|
|
|
|
- address: "${ipv6_address}/64"
|
2026-09-02 21:14:55 -04:00
|
|
|
routes:
|
2026-09-03 00:35:34 -04:00
|
|
|
- destination: "0.0.0.0/0"
|
|
|
|
|
gateway: "${ipv4_gateway}"
|
|
|
|
|
- destination: "::/0"
|
|
|
|
|
gateway: "${ipv6_gateway}"
|