mirror of
https://github.com/siderolabs/talos.git
synced 2025-08-22 23:21:11 +02:00
This introduces the ability to reset the network interface during the bootup sequence. This allows for user defined static networking to be the only configuration on the network interface instead of potentially dhcp+static. Signed-off-by: Brad Beam <brad.beam@talos-systems.com>
networkd
Networkd handles the addressing and interface configuration in Talos.
The general workflow is:
- Discover all network interfaces (
networkd.Discover()
) - Create an abstract representation of the network interface configuration (
nic.NetworkInterface
) - Merge userdata configuration options on top of the
nic.NetworkInterface
representation - Configure the network interfaces based on the abstract representation (
networkd.Configure(...)
) -
- Bring interface up
-
- Begin address configuration method (
address.DHCP
,address.Static
)
- Begin address configuration method (
-
- Create rtnetlink message to set address based on config method
-
- Create rtnetlink message to set any routes defined by the address method