From eeccb4713521585c7c74dde74c61fa252dd79754 Mon Sep 17 00:00:00 2001 From: Timotej Lazar Date: Fri, 7 Nov 2025 16:25:28 +0100 Subject: [PATCH] Update README --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 543124e..f9558bd 100644 --- a/README.md +++ b/README.md @@ -92,15 +92,14 @@ The MAC address is only used in some playbooks to set the interface name. #### L1 setup -To break out a port, create the appropriately named interfaces and disable the original interface: +To break out a port, create the appropriately named interfaces and delete the original interface, e.g. for swp14: - { "name": "swp14", "enabled": false }, { "name": "swp14s0", "type": { "value": "25gbase-x-sfp28" } }, { "name": "swp14s1", "type": { "value": "25gbase-x-sfp28" } }, { "name": "swp14s2", "type": { "value": "25gbase-x-sfp28" } }, { "name": "swp14s3", "type": { "value": "25gbase-x-sfp28" } } -Note that for SN2700 switches only odd‐numbered ports may be broken out; the next even‐numbered port must be disabled as well as the original port in this case. The new ports can be used normally in further configuration. +Note that for SN2700 switches only odd‐numbered ports may be broken out; besides deleting the original interface the next even‐numbered interface must be disabled as well. The new ports can then be used normally in further configuration. #### L3 setup @@ -225,8 +224,8 @@ The setup consists of two [firewall nodes](https://netbox.fri.uni-lj.si/search/? For the firewall nodes, configure `mgmt0` and `lo` as usual for L3 devices. Additionally, the firewall nodes should define the following interfaces: - { "name": "lan0" }, - { "name": "lan1" }, + { "name": "lan0", "mac_address": "12:34:56:ab:cd:e0" }, + { "name": "lan1", "mac_address": "12:34:56:ab:cd:e1" }, { "name": "mgmt1", "ip_addresses": [{ "address": "fe80::1/64" }] }, The MAC address should be defined for each interface, as they are renamed by the OS. The `mgmt1` interface is used for synchronizing connection-tracking information and should use the `fe80::1/64` and `fe80::2/64` addresses for the first and second firewall node, respectively.