docs: Add example of a VLAN configured device.
Signed-off-by: Niklas Wik <niklas.wik@nokia.com> fix: fixes linting for doc update Signed-off-by: Niklas Wik <niklas.wik@nokia.com> feat: initial work for supporting vlans Adding VLAN as option to machine config under devices. Signed-off-by: Niklas Wik <niklas.wik@nokia.com> feat: Add addressing support for VLAN devices. - Refactors static addressing to not be dependent on machine.Device Signed-off-by: Niklas Wik <niklas.wik@nokia.com> feat: Add addressing support for VLAN devices. - Support of VLAN being the default network to use by removing need of addressing on master device. Signed-off-by: Niklas Wik <niklas.wik@nokia.com> fix: Fix the fmt of go files Signed-off-by: Niklas Wik <niklas.wik@nokia.com> fix: refactor based on review comment. Signed-off-by: Niklas Wik <niklas.wik@nokia.com> fix: remove unused function Signed-off-by: Niklas Wik <niklas.wik@nokia.com> feat: initial work for supporting vlans Adding VLAN as option to machine config under devices. Signed-off-by: Niklas Wik <niklas.wik@nokia.com> feat: Add addressing support for VLAN devices. - Refactors static addressing to not be dependent on machine.Device Signed-off-by: Niklas Wik <niklas.wik@nokia.com> feat: Add addressing support for VLAN devices. - Support of VLAN being the default network to use by removing need of addressing on master device. Signed-off-by: Niklas Wik <niklas.wik@nokia.com> fix: Fix the fmt of go files Signed-off-by: Niklas Wik <niklas.wik@nokia.com> fix: refactor based on review comment. Signed-off-by: Niklas Wik <niklas.wik@nokia.com> fix: fix test case function arguments Signed-off-by: Niklas Wik <niklas.wik@nokia.com> fix: Add log for debugging address configuration failures Signed-off-by: Niklas Wik <niklas.wik@nokia.com> fix: fix lint issues. Signed-off-by: Niklas Wik <niklas.wik@nokia.com> fix: fix the lint error. Signed-off-by: Niklas Wik <niklas.wik@nokia.com> fix: Fix when addressing set with kernel options Signed-off-by: Niklas Wik <niklas.wik@nokia.com>
This commit is contained in:
parent
ea868bfb82
commit
c10465d4fb
@ -79,3 +79,22 @@ machine:
|
||||
- eth0
|
||||
- eth1
|
||||
```
|
||||
|
||||
### VLANs
|
||||
|
||||
To setup vlans on a specific device use an array of VLANs to add.
|
||||
The master device may be configured without addressing by setting dhcp to false.
|
||||
|
||||
```yaml
|
||||
machine:
|
||||
network:
|
||||
interfaces:
|
||||
- interface: eth0
|
||||
dhcp: false
|
||||
vlans:
|
||||
- vlanId: 100
|
||||
cidr: "192.168.2.10/28"
|
||||
routes:
|
||||
- network: 0.0.0.0/0
|
||||
gateway: 192.168.2.1
|
||||
```
|
||||
|
Loading…
x
Reference in New Issue
Block a user