The Dell OS10 out-of-band management (OOBM) gateway router must be configured to have separate Interior Gateway Protocol (IGP) instances for the managed network and management network.
Severity | Group ID | Group Title | Version | Rule ID | Date | STIG Version |
---|---|---|---|---|---|---|
medium | V-269863 | SRG-NET-000019-RTR-000011 | OS10-RTR-000200 | SV-269863r1052433_rule | 2024-12-11 | 1 |
Description |
---|
If the gateway router is not a dedicated device for the OOBM network, implementation of several safeguards for containment of management and production traffic boundaries must occur. Since the managed and management network are separate routing domains, configuration of separate IGP routing instances is critical on the router to segregate traffic from each network. |
ℹ️ Check |
---|
This requirement is not applicable for the DODIN Backbone. Verify the OOBM interface is an adjacency in the IGP routing domain for the management network. Verify the IGP instance used for the management network is configured in a separate VRF from that used for the managed networks. ! router ospf 1 vrf OOBM router-id 77.0.0.10 ... ! router ospf 2 vrf PROD router-id 88.0.0.88 ... ! If the router does not enforce that IGP instances configured on the OOBM gateway router peer only with their own routing domain, this is a finding. |
✔️ Fix |
---|
Configure the router to enforce that IGP instances configured on the OOBM gateway router peer only with their own routing domain. OS10(config)# ip vrf OOBM OS10(conf-vrf)# exit OS10(config)# ip vrf PROD OS10(conf-vrf)# exit OS10(config)# router ospf 1 vrf OOBM OS10(config-router-ospf-1)# router-id 77.0.0.10 OS10(config-router-ospf-1)# exit OS10(config)# router ospf 2 vrf PROD OS10(config-router-ospf-2)# router-id 88.0.0.88 OS10(config-router-ospf-2)# exit |