Dell OS10 Switch Management: Static IP, Users and Routes - 夜莺博客

Dell OS10 Switch Management: Static IP, Users and Routes

Out-of-band management is the lifeline of every production switch, yet it is often the least documented part of an initial deployment. This guide walks through the Dell SmartFabric OS10 procedure for setting up the management interface with a static IP, adding a default management route, and creating role-based admin accounts — the exact steps from the official Dell knowledge base, with verification commands for each stage.

OS10 Management Interface Basics

Dell PowerSwitch S-series switches running OS10 boot with the management interface (mgmt 1/1/1) in DHCP mode by default. Before the switch can be managed remotely over the out-of-band network, the interface needs a stable address and a route to the management network.

Step 1: Configure a Static IP on the Management Interface

OS10# configure terminal
OS10(config)# interface mgmt 1/1/1
OS10(conf-if-ma-1/1/1)# no ip address dhcp
OS10(conf-if-ma-1/1/1)# ip address 10.20.30.5/24
OS10(conf-if-ma-1/1/1)# exit
OS10(config)# management route 0.0.0.0/0 10.20.30.1
OS10(config)# end

Step 2: Verify the Management Configuration

OS10# show running-configuration interface mgmt 1/1/1
! interface mgmt1/1/1
  no shutdown
  no ip address dhcp
  ip address 10.20.30.5/24
OS10# show running-configuration management-route
! management route 0.0.0.0/0 10.20.30.1

The management route is separate from the data-plane routing table in OS10 — it must be configured under the global management route command, not as a regular static route.

Step 3: Create Role-Based Admin Accounts

OS10 ships with default credentials (admin/admin) which must never remain in production. Create named accounts with the role keyword, choosing from sysadmin, netadmin, secadmin or netoperator depending on the job function:

OS10(config)# username test password P@ssw0rd!123 role sysadmin
OS10(config)# end
OS10# show running-configuration users
username test password **** role sysadmin priv-lvl 15

Step 4: Save and Harden

Always persist the configuration with write memory. For production deployments, pair this setup with SNMPv3 monitoring configuration and review the transaction-based configuration mode before making large changes — it lets you review a candidate config before it touches the running configuration.

Related: OS10 quick start on the S5212F-ON.

原文链接:https://www.dell.com/support/kbdoc/en-us/000201924/dell-emc-networking-os10-basic-switch-management-configuration