Dell OS10 Management Interface: OOB IP, Route and VRF Config - 夜莺博客

Dell OS10 Management Interface: OOB IP, Route and VRF Config

Every Dell OS10 switch should be managed out-of-band: the dedicated management interface (mgmt 1/1/1) keeps SSH, SNMP and monitoring traffic completely separate from production data, so a data-plane outage never costs you your management plane. Dell's knowledge base article 000184302 defines the exact procedure — assign the IP on the management interface, add a management route for the default gateway, and optionally isolate everything in the management VRF. This guide follows that procedure with the verification commands included.

Assigning the Management IP and Management Route

The management interface must live on a different subnet from the in-band interfaces of the switch. Basic configuration:

OS10# configure
OS10(config)# interface mgmt 1/1/1
OS10(conf-if-ma-1/1/1)# ip address 10.0.0.1/24
OS10(conf-if-ma-1/1/1)# no shutdown
OS10(conf-if-ma-1/1/1)# exit
OS10(config)# management route 0.0.0.0/0 10.0.0.254

Two rules from Dell matter: the management route next hop must be within the same subnet as the management IP, and the route prefix cannot be the exact same subnet as the assigned IP. For a /24 management network with gateway 10.0.0.254, the commands above give you reachability to everywhere behind that gateway.

Verification

OS10# show ip interface brief | grep man
OS10# show ip management-route

show ip interface brief filtered for the management interface confirms the address is active; show ip management-route lists the routes installed in the management context.

Management VRF: Isolating the Management Plane

OS10 supports a management VRF instance alongside the default VRF plus up to 512 non-default VRFs, and only management interfaces can join the management VRF. Use it when you need a default route in both the default VRF and the management context — without VRF separation, Dell warns that the management default route is ignored whenever the same prefix exists in the default VRF. The procedure requires removing any existing IP configuration on the management interface first:

OS10# configure
OS10(config)# ip vrf management
OS10(conf-vrf)# interface management
OS10(conf-if-ma-1/1/1)# ip address 10.0.0.1/24
OS10(conf-if-ma-1/1/1)# exit
OS10(config)# ip route 0.0.0.0/0 10.0.0.254 vrf management
OS10(config)# end
OS10# show ip vrf management

Note that once the interface is inside the management VRF, the route is configured with the VRF keyword rather than as a management route. Verify membership with show ip vrf management and reachability with a ping sourced from the management interface. If the same physical switch also runs VLT for redundancy, read our OS10 VLT setup guide — the VLTi heartbeat itself often uses the management interface, so plan the addressing together.

Post-Reset and Day-0 Reminder

After any OS10 factory reset the management configuration is gone along with everything else, and remote access is disabled until you re-add it from the console. Keep this snippet as your day-0 template, and pair it with our OS10 factory reset guide so the rebuild path is fully documented.

原文链接:https://dell.com/support/kbdoc/en-us/000184302/dell-emc-networking-os10-how-to-configure-out-of-band-management