diff --git a/docs/user/unattended/profile/network.md b/docs/user/unattended/profile/network.md index d22a578..4aef1b2 100644 --- a/docs/user/unattended/profile/network.md +++ b/docs/user/unattended/profile/network.md @@ -121,7 +121,7 @@ includes the list of ports to connect. network: { connections: [ { - id: "Bridge #0", + id: "Bridge0", interface: "br0", bridge: { ports: ["eth0", "eth1"] @@ -157,7 +157,7 @@ the list of ports to connect. network: { connections: [ { - id: "Bond #0", + id: "Bond0", interface: "bond0", bond: { ports: ["eth0", "eth1"], @@ -212,3 +212,27 @@ To create a VLAN you need to include a `vlan` section supporting the following f } } ``` + +## Deleting network connections + +As commented in previous sections, the `status` field allows to bring `up`, `down` or even `remove` +an existing connection. It might be useful to delete an existing connection before creating a new +one specially when it is already applied to an specific interface. + +```json +{ + "network": { + "connections": [ + { + "id": "default", + "status": "removed" + }, + { + "id": "enp1s0", + "interface": "enp1s0", + "status": "up" + } + ] + } +} +```