Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 21 additions & 5 deletions network/vyos/configs/gateway.conf
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,15 @@
* 10 - LAB_MGMT (10.10.10.0/24) - Management + platform
* 20 - LAB_PROV (10.10.20.0/24) - Provisioning (PXE)
* 40 - LAB_WORKLOAD (10.10.40.0/24) - Workload / VM network
* access - LAB_OOB (10.10.70.0/24) - MS-02 AMT/OOB access switch on eth5
* access - LAB_OOB (10.10.70.0/24) - KVM devices on eth4-eth5
*
* Bridge Architecture:
* br10 - Bridges eth1.10 (switch trunk) and eth2.10 (UM760 direct connect)
* for steady-state UM760 management/platform access.
* br20 - Bridges eth1.20 (switch trunk) and, temporarily, physical eth2
* while provisioning the UM760 via untagged PXE/Tinkerbell.
* br70 - Bridges the directly attached PiKVM and TESmart KVM on untagged
* LAN ports eth4-eth5.
*/

firewall {
Expand Down Expand Up @@ -458,6 +460,16 @@ interfaces {
}
}
}
bridge br70 {
address 10.10.70.1/24
description "LAB_OOB - KVM"
member {
interface eth4 {
}
interface eth5 {
}
}
}
ethernet eth0 {
address 10.0.0.2/30
description "WAN - Transit to Home (CCR2004)"
Expand All @@ -481,9 +493,11 @@ interfaces {
description "LAB_MGMT - Bridge member (br10)"
}
}
ethernet eth4 {
description "LAN - PiKVM OOB"
}
ethernet eth5 {
address 10.10.70.1/24
description "LAB_OOB - MS-02 AMT access switch"
description "LAN - TESmart KVM OOB"
}
}
nat {
Expand Down Expand Up @@ -562,8 +576,6 @@ protocols {
}
service {
dhcp-server {
listen-address 10.10.10.1
listen-address 10.10.70.1
dynamic-dns-update {
enable
conflict-resolution enable
Expand Down Expand Up @@ -636,6 +648,10 @@ service {
ip-address 10.10.70.13
mac 38:05:25:35:43:f0
}
static-mapping PiKVM {
ip-address 10.10.70.20
mac 88:a2:9e:42:4a:7f
}
subnet-id 2
}
}
Expand Down
Loading