Skip to content
Dell OS10 Switch

Dell OS10 Switch

Dell OS10 Switches

Basic commands

System info

Show system info:

1
2
show system #shows info about hardware
show version #shows info about OS

Prefix lists

Check:

1
show ip prefix-list

Add to prefix list

1
ip prefix-list <prefix list name> seq <sequence number> permit <IP in CIDR>

Remove

1
ip prefix-list <prefix list name> seq <sequence number> permit <IP in CIDR>

Dell OS10 (S5248F-ON) Useful Commands

System Information

Show switch model, OS version and uptime

1
show version

Interface Status

Show status of all interfaces

1
show interfaces status

Show detailed information for a specific interface

1
show interface ethernet 1/1/25:1

Show all Layer 3 interfaces and assigned IP addresses

1
show ip interface brief

Show Layer 3 interfaces in a specific VRF

1
show ip interface brief vrf PRODUCTION

Interface Configuration

Show configuration of an interface

1
show running-configuration interface ethernet 1/1/25:1

Show configuration of a port-channel

1
show running-configuration interface port-channel 1

Show all configured IP addresses

1
show running-configuration | grep "ip address"

Port-Channels

Show all port-channels and member interfaces

1
show port-channel summary

Show details of a specific port-channel

1
show interface port-channel 1

Show channel-group membership

1
show running-configuration | grep channel-group

MAC Address Table

Show all learned MAC addresses

1
show mac address-table

Show MAC addresses learned on an interface

1
show mac address-table interface ethernet 1/1/25:1

Show MAC addresses learned on a port-channel

1
show mac address-table interface port-channel 1

Show MAC addresses in a VLAN

1
show mac address-table vlan 100

Locate a specific MAC address

1
show mac address-table address aa:bb:cc:dd:ee:ff

ARP Table

Show all ARP entries

1
show ip arp

Show ARP entries in a VRF

1
show ip arp vrf PRODUCTION

Show dynamic ARP entries only

1
show ip arp dynamic

Show ARP entries for an interface

1
show ip arp interface ethernet 1/1/25:1

Show ARP entries for a port-channel

1
show ip arp interface port-channel 1

Look up a specific IP address

1
show ip arp <ip address>

LLDP

Show all LLDP neighbours

1
show lldp neighbors

Show detailed LLDP neighbour information

1
show lldp neighbors detail

Show LLDP neighbour on a specific interface

1
show lldp neighbors interface ethernet 1/1/25:1

VRFs and Routing

Show configured VRFs

1
show vrf

or

1
show ip vrf

Show routes in a VRF

1
show ip route vrf PRODUCTION

Show route to a destination

1
show ip route 10.52.240.218

Connectivity Testing

Ping from default VRF

1
ping 10.52.240.218

Ping from a specific VRF

1
ping vrf PRODUCTION 10.52.240.218

Common Troubleshooting Workflow

Identify device connected to an interface

1
2
3
4
5
show interface ethernet 1/1/25:1
show running-configuration interface ethernet 1/1/25:1
show lldp neighbors interface ethernet 1/1/25:1
show mac address-table interface ethernet 1/1/25:1
show ip arp vrf PRODUCTION

Determine members of a port-channel

1
show port-channel summary

Find IPs associated with a port-channel

1
2
show mac address-table interface port-channel 1
show ip arp vrf PRODUCTION

Determine the far end of a /30 link

For:

1
Ethernet 1/1/25:1  10.52.240.217/30

The other usable host is:

1
10.52.240.218

Verify with:

1
2
3
ping vrf PRODUCTION 10.52.240.218
show ip arp vrf PRODUCTION
show lldp neighbors interface ethernet 1/1/25:1

Backup Config

Copy file to startup configuration

1
2
3
copy {config://filepath | home://filepath |
ftp://userid:passwd@hostip/filepath | scp://userid:passwd@hostip/filepath |
sftp://userid:passwd@hostip/filepath | tftp://hostip/filepath} config://startup.xml 

Back up startup file

1
copy config://startup.xml config://backup-9-28.xml

Restore startup file from backup.

1
2
3
copy config://backup-9-28.xml config://startup.xml
reload
System configuration has been modified. Save? [yes/no]:no

Back up startup file to server

1
copy config://startup.xml scp://userid:password@hostip/backup-9-28.xml

Restore startup file from server.

1
2
3
copy scp://admin:admin@hostip/backup-9-28.xml config://startup.xml
reload
System configuration has been modified. Save? [yes/no]:no