Dell EMC OS10 Enterprise Edition Concise Configuration Manual

Author: Mark Wang

Date: April 16, 2018

1. Introduction

DELL EMC OS10 is a new generation of modular network operating systems. It differs significantly from the previous OS9 (formerly FTOS) in both hardware and system commands. This manual provides examples for the OS10 Enterprise Edition operating system.

2. Console Usage

Currently, all Dell switches ending with "-ON" have a baud rate of 115200. We recommend using PuTTY as the console terminal software, especially for initial setup operations. The following are the recommended PuTTY parameter settings:

Session Settings:

Terminal Settings:

Connection Type: Serial

3. Switch Management

3.1 Switch IP Address Configuration

3.1.1 Out-of-Band Management IP Configuration

Command Example:

OS10# show running-configuration interface mgmt 1/1/1
!
interface mgmt1/1/1
 no shutdown
ip address dhcp
ipv6 address autoconfig
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)# no ipv6 address autoconfig
OS10(conf-if-ma-1/1/1)# exit
OS10(config)# ip vrf management
OS10(conf-vrf)# interface management
OS10(conf-vrf)# exit
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#OS10(config)# management route 0.0.0.0/0 172.16.1.254 (Default route for out-of-band network)
OS10(config)#do write

3.1.2 In-Band Management IP Configuration

In-band refers to the configuration of the VLAN interface (SVI) IP address. The following example configures VLAN 1:

Command Example:

OS10(config)# interface vlan 1
OS10(conf-if-vl-1)# ip address 192.168.1.1/24
OS10(conf-if-vl-1)# no shutdown
OS10(conf-if-vl-1)# exit
OS10(config)# ip route 0.0.0.0/0 192.168.1.254 (Default gateway for in-band network)
OS10(config)# do write

Note: The VLAN 1 configuration is an example; modify it according to your VLAN plan.

Important: If both in-band and out-of-band default routes are configured, the out-of-band management port MGMT 1/1/1 must be assigned to the Management VRF. Otherwise, only the in-band default route will be effective.

3.2 Username and Password Modification or Creation

The default username and password for Dell OS10 are both 'admin'. To modify or add new users, refer to the following commands:

Command Example:

OS10# configure terminal
OS10(config)# username admin password password_2018 role sysadmin
OS10(config)# end
OS10# write memory

Reminder: Passwords must not be weak. Please modify the parts highlighted in red as needed.

3.3 SSH Service

SSH service is enabled by default in OS10. We recommend using SSH for remote switch access.

3.4 Telnet Service

If you wish to use Telnet to log in to the switch, the switch's operating system (firmware) must be at least 10.3.1E(152). The Telnet service is disabled by default. To enable it:

Command Example:

OS10# configure terminal
OS10(config)# ip telnet server enable
OS10(config)# do write memory

Reminder: It is recommended to use SSH protocol for switch login instead of Telnet.

4. Switch Date and Time

4.1 Configure Local Time

Command Example:

OS10# configure terminal
OS10(config)# clock timezone UTC 8 0
OS10(config)# end
OS10# clock set 22:49:00 2018-03-29
OS10# show clock
2018-03-29T22:49:10.06+08:00
OS10#write

4.2 NTP Time Synchronization

Command Example:

OS10(config)# clock timezone UTC 8 0
OS10(config)# do show clock
2018-03-30T06:26:15.24+08:00
OS10(config)# ntp server 192.168.220.159
OS10(config)# do write

5. Switch Interface Mode Configuration

5.1 Access Mode

Example: Create VLAN 10 and assign interface e1/1/1 to VLAN 10 in access mode.

Command Example:

OS10# configure terminal
OS10(config)# interface vlan 10
OS10(conf-if-vl-10)# exit
OS10(config)# interface e1/1/1
OS10(conf-if-eth1/1/1)#switchport mode access
OS10(conf-if-eth1/1/1)#switchport access vlan 10
OS10(conf-if-eth1/1/1)# no shutdown
OS10(conf-if-eth1/1/1)# do write

5.2 Trunk Mode

Example: Create VLAN 10 and 20, and configure interface e1/1/2 in trunk mode, allowing VLANs 10 and 20.

Command Example:

OS10# configure terminal
OS10(config)# interface vlan 20
OS10(conf-if-vl-20)# exit
OS10(config)# interface e1/1/2
OS10(conf-if-eth1/1/2)#switchport mode trunk
OS10(conf-if-eth1/1/2)#switchport trunk allowed vlan 10,20
OS10(conf-if-eth1/1/2)# show configuration
!
interface ethernet1/1/2
no shutdown
switchport mode trunk
switchport access vlan 1 (If you want native vlan to be 2, use 'switch access vlan 2')
switchport trunk allowed vlan 10,20
OS10(conf-if-eth1/1/2)# do write memory

5.3 Modify Default VLAN

The default VLAN for OS10 is 1, and by default, all trunk ports have VLAN 1 untagged. To change the default VLAN to another VLAN, follow these steps:

Command Example:

OS10# configure terminal
OS10(config)# interface vlan 4093
OS10(conf-if-vl-4093)# exit
OS10(config)# default vlan-id 4093
OS10(config)# do show vlan

Codes: * Default VLAN, M - Management VLAN, R - Remote Port Mirroring VLANs

Q: A - Access (Untagged), T - Tagged

NUM Status Description Q Ports
* 1 Inactive
4093 Active A Eth1/1/1-1/1/32

OS10(config)#do write

Note: New default VLANs need to be created in advance, which differs from OS9.

6. Spanning Tree Configuration

In this section, the bridge priority for spanning tree is modified to 4096 as an example. Please configure the bridge priority for the VLAN according to your network plan. The default bridge priority is 32768.

6.1 Rapid PVST+ Configuration

The OS10 switch will enable Rapid PVST+ (RPVST+) spanning tree protocol by default.

Command Example:

OS10# configure terminal
OS10(config)# spanning-tree vlan 10 priority 4096
OS10(config)# spanning-tree vlan 20 priority 4096
OS10(config)#end
OS10#show spanning-tree active

6.2 RSTP Configuration

Command Example:

OS10# configure terminal
OS10(config)# spanning-tree mode rstp
OS10(config)# spanning-tree rstp priority 4096
OS10(config)#do write

6.3 MST Configuration

In this example, VLAN 10 is assigned to instance 1, and VLAN 20 is assigned to instance 2. The bridge priority for both instances is configured as 4096. The name and revision should be consistent with other switches running MST.

Command Example:

OS10#configure terminal
OS10(config)# spanning-tree mst configuration
OS10(config-mst)# name dell
OS10(config-mst)# revision 1
OS10(config-mst)# instance 1 vlan 10
OS10(config-mst)# instance 2 vlan 20
OS10(config-mst)# exit
OS10(config)# spanning-tree mode mst
OS10(config)# spanning-tree mst 1 priority 4096
OS10(config)# spanning-tree mst 2 priority 4096
OS10(config)# do write

6.4 Configure Spanning Tree Port Type Edge

Command Example:

OS10(config)# interface e1/1/1
OS10(conf-if-eth1/1/1)# spanning-tree port type edge
OS10(conf-if-eth1/1/1)# do write

6.5 Disable Spanning Tree

There are two ways to disable spanning tree: globally or for a specific interface.

1. Global Disable

Command Example:

OS10# configure terminal
OS10(config)# spanning-tree disable
OS10(config)#do write

2. Interface Disable

Command Example:

OS10(config)# interface e1/1/3
OS10(conf-if-eth1/1/3)# spanning-tree disable

7. Link Aggregation Configuration

7.1 Static Link Aggregation

Example: Statically aggregate interfaces e1/1/49 and e1/1/50 to PO1, configure it in trunk mode, and allow VLANs 10 and 20.

Command Example:

OS10# configure terminal
OS10(config)# interface port-channel 1
OS10(conf-if-po-1)#switchport mode trunk
OS10(conf-if-po-1)# switchport trunk allowed vlan 10,20
OS10(conf-if-po-1)# no shutdown
OS10(conf-if-po-1)# exit
OS10(config)# interface range e1/1/49-1/1/50
OS10(conf-range-eth1/1/49-1/1/50)# channel-group 1
OS10(conf-range-eth1/1/49-1/1/50)# no shutdown
OS10(conf-range-eth1/1/49-1/1/50)# end
OS10#write
To view:
OS10# show interface port-channel 1 summary

7.2 Dynamic LACP Aggregation

Command Example:

OS10# configure terminal
OS10(config)# interface port-channel 1
OS10(conf-if-po-1)#switchport mode trunk
OS10(conf-if-po-1)# switchport trunk allowed vlan 10,20
OS10(conf-if-po-1)# no shutdown
OS10(conf-if-po-1)# exit
OS10(config)# interface range e1/1/49-1/1/50
OS10(conf-range-eth1/1/49-1/1/50)# channel-group 1 mode active
OS10(conf-range-eth1/1/49-1/1/50)# no shutdown
OS10(conf-range-eth1/1/49-1/1/50)# end
OOS100#write
To view:
OOS100# show interface port-channel 1 summary

8. Local Port Mirroring

Example: Mirror the traffic in both directions of interface e1/1/1 to interface e1/1/2 for packet capture analysis.

Command Example:

OS10(config)# interface e1/1/2
OS10(conf-if-eth1/1/2)# no switchport
OS10(conf-if-eth1/1/2)#exit
OS10(config)# monitor session 1
OS10(conf-mon-local-1)# source interface ethernet 1/1/1 both
OS10(conf-mon-local-1)# destination interface e1/1/2
OS10(conf-mon-local-1)# no shut

9. Syslog Host Configuration

Currently, OS10 uses TCP protocol by default to transmit logs to an external Syslog Server. Ensure that the syslog server is listening on TCP port 514. The default log level for OS10 is 'notice'.

Command Example:

OS10#config t
OS10(config)# logging log-file severity log-debug
OS10(config)# logging server 192.168.220.159 severity log-debug udp
OS10(config)# logging enable
OS10(config)# do write

Additionally, to enable audit logging (recording switch user command operations):

Command Example:

OS10(config)# logging audit enable
OS10(config)# show logging audit

10. SNMP Configuration

Example: Configure SNMP community as 'dell' with read-only access.

Command Example:

OS10# configure terminal
OS10(config)# snmp-server community dell ro

To configure an SNMP server and enable traps, refer to the following:

Command Example:

OS10(config)# snmp-server host 1.1.1.1 version 2c dell
OS10(config)# snmp-server enable traps
OS10(config)# do write

11. VLT Configuration

Important: As per VLT best practices, ensure that spanning tree configurations are completed before configuring VLT. Failure to do so may lead to potential looping risks. In a VLT environment, if the switch is not acting as a VLAN gateway but only as a Layer 2 switch, do not configure peer-routing within the VLT Domain. If VRRP is configured in VLT, peer-routing does not need to be configured separately.

This example uses the out-of-band management port (mgmt 1/1/1) for the heartbeat link (backup link). Spanning tree is configured using RSTP in this example, but RPVST+ is also supported. Starting from version 10.4.3.0, VLT supports MST spanning tree protocol.

The physical interfaces for VLTi are e1/1/49 and e1/1/50. The Port-channel interface formed by these is 1000, which is automatically generated and cannot be modified.

11.1 Topology Diagram

A diagram illustrating the VLT Domain with two VLT Peers (Node 1 and Node 2) connected via management ports and port channels. Node 3 is also shown connected via port channels.

11.2 Configuration Reference

Primary Node Configuration (e.g., S1)

S1# configure terminal
S1(config)# spanning-tree mode rstp
S1(config)# spanning-tree rstp priority 4096
S1(config)# interface range e1/1/49-1/1/50
S1(conf-range-eth1/1/49-1/1/50)# no switchport
S1(conf-range-eth1/1/49-1/1/50)# no shutdown
S1(conf-range-eth1/1/49-1/1/50)# exit
S1(config)# interface mgmt 1/1/1
S1(conf-if-ma-1/1/1)# no ip address dhcp
S1(conf-if-ma-1/1/1)# ip address 1.1.1.1/24
S1(conf-if-ma-1/1/1)# no shutdown
S1(conf-if-ma-1/1/1)#exit
S1(config)# vlt-domain 1
S1(conf-vlt-1)# discovery-interface ethernet 1/1/49
S1(conf-vlt-1)# discovery-interface ethernet 1/1/50
S1(conf-vlt-1)# primary-priority 4096
S1(conf-vlt-1)# vlt-mac de:11:de:11:de:11
S1(conf-vlt-1)# backup destination 1.1.1.2
S1(conf-vlt-1)# peer-routing (Optional, configure if Layer 3 routing is enabled)
S1(conf-vlt-1)#exit
S1(config)# interface port-channel 1
S1(conf-if-po-1)# description "Connect to S3 switch"
S1(conf-if-po-1)# vlt-port-channel 1
S1(conf-if-po-1)# switchport mode trunk
S1(conf-if-po-1)#switchport access vlan 1
S1(conf-if-po-1)# switchport trunk allowed vlan 10,20
S1(conf-if-po-1)# no shutdown
S1(conf-if-po-1)# exit
S1(config)# interface range e1/1/51-1/1/52
S1(conf-range-eth1/1/51-1/1/52)# channel-group 1 mode active
S1(conf-range-eth1/1/51-1/1/52)# no shutdown
S1(conf-range-eth1/1/51-1/1/52)# exit

Standby Node Configuration (e.g., S2)

S2# configure terminal
S2(config)# spanning-tree mode rstp
S2(config)# spanning-tree rstp priority 8192
S2(config)# interface range e1/1/49-1/1/50
S2(conf-range-eth1/1/49-1/1/50)# no switchport
S2(conf-range-eth1/1/49-1/1/50)# no shutdown
S2(conf-range-eth1/1/49-1/1/50)# exit
S2(config)# interface mgmt 1/1/1
S2(conf-if-ma-1/1/1)# no ip address dhcp
S2(conf-if-ma-1/1/1)# ip address 1.1.1.2/24
S2(conf-if-ma-1/1/1)# no shutdown
S2(conf-if-ma-1/1/1)#exit
S2(config)# vlt-domain 1
S2(conf-vlt-1)# discovery-interface ethernet 1/1/49
S2(conf-vlt-1)# discovery-interface ethernet 1/1/50
S2(conf-vlt-1)# primary-priority 8192
S2(conf-vlt-1)# vlt-mac de:11:de:11:de:11
S2(conf-vlt-1)# backup destination 1.1.1.1
S2(conf-vlt-1)# peer-routing (Optional, configure if Layer 3 routing is enabled)
S2(conf-vlt-1)#exit
S2(config)# interface port-channel 1
S2(conf-if-po-1)# description "Connect to S3 switch"
S2(conf-if-po-1)# vlt-port-channel 1
S2(conf-if-po-1)# switchport mode trunk
S2(conf-if-po-1)#switchport access vlan 1
S2(conf-if-po-1)# switchport trunk allowed vlan 10,20
S2(conf-if-po-1)# no shutdown
S2(conf-if-po-1)# exit
S2(config)# interface range e1/1/51-1/1/52
S2(conf-range-eth1/1/51-1/1/52)# channel-group 1 mode active
S2(conf-range-eth1/1/51-1/1/52)# no shutdown
S2(conf-range-eth1/1/51-1/1/52)# exit

Note: If VRRP needs to be configured on top of VLT, refer to the "VRRP Configuration" section below after completing the VLT deployment.

12. VRRP Configuration

This example configures VRRP Master for VLAN 10 with a priority of 120. The default priority is 100.

Command Example:

OS10# configure terminal
OS10(config)# interface vlan 10
OS10(conf-if-vl-10)# ip address 192.168.10.252/24
OS10(conf-if-vl-10)# no shutdown
OS10(conf-if-vl-10)# vrrp-group 10
OS10(conf-vlan10-vrid-10)# virtual-address 192.168.10.254
OS10(conf-vlan10-vrid-10)# priority 120
OS10(conf-vlan10-vrid-10)# do write

Note: For the standby switch, only the SVI interface address needs to be different; the priority does not need to be configured.

13. Storage Best Practices

Assuming storage devices (iSCSI SAN) and servers are connected to interfaces 1-20 of the same switch, refer to the following:

Command Example:

OS10(config)# interface range ethernet 1/1/1-1/1/20
OS10(conf-range-eth1/1/1-1/1/20)# mtu 9216
OS10(conf-range-eth1/1/1-1/1/20)# flowcontrol receive on
OS10(conf-range-eth1/1/1-1/1/20)# flowcontrol transmit off
OS10(conf-range-eth1/1/1-1/1/20)# spanning-tree port type edge
OS10(conf-range-eth1/1/1-1/1/20)# do write

Note: The above is for reference only. Do not apply it blindly. For network configuration of storage devices, please refer to the best practice manual provided by the storage device manufacturer for the corresponding model.

14. Policy-Based Routing (PBR) Configuration

Topology Diagram

A network topology diagram showing routers R1, R2, R3, an OS10 switch, and a client. It illustrates default routes and PBR next hops.

Configuration Example:

configure t
hostname OS10
interface ethernet1/1/1
switchport access vlan 10
no shutdown
exit
interface ethernet1/1/49
no shutdown
no switchport
ip address 10.0.0.2/30
exit
interface ethernet1/1/50
no shutdown
no switchport
ip address 20.0.0.2/30
exit
ip access-list pbr
seq 10 permit ip 192.168.10.0/24 any
exit
route-map pbr-map permit 10
match ip address pbr
set ip next-hop 20.0.0.1
exit
interface vlan10
no shutdown
ip address 192.168.10.1/24
ip policy route-map pbr-map
exit
ip route 0.0.0.0/0 10.0.0.1
end
write

15. DHCP Server Configuration

Command Example:

OS10# configure terminal
OS10(config)# ip dhcp server
OS10(config-dhcp)# pool 192_168_10
OS10(config-dhcp-192_168_10)#lease 060 (Lease for 6 hours)
OS10(config-dhcp-192_168_10)# network 192.168.10.0/24
OS10(config-dhcp-192_168_10)# default-router 192.168.10.1
OS10(config-dhcp-192_168_10)# dns-server 8.8.8.8
OS10(config-dhcp-192_168_10)# dns-server 9.9.9.9
OS10(config-dhcp-192_168_10)# domain-name dhcp.os10.dell
OS10(config-dhcp-192_168_10)# exit
OS10(config-dhcp)# no disable
OS10(config-dhcp)# do write
To view the address allocation table:
OS10#show ip dhcp binding

16. Export/Import Configuration File

Export Configuration File via TFTP Server

Command Example:

OS10#copy running-configuration tftp://192.168.220.157/os10.running.txt

Import Configuration File via TFTP Server

Command Example:

OS10#copy tftp://192.168.220.157/os10.running.txt running-configuration
OS10#write

17. Backup or Import OS10 License

17.1 Prepare USB Drive

Insert a USB drive formatted with FAT32 into the switch's USB port. The switch will automatically recognize and mount it under the /mnt/usb directory. Based on our experience, Kingston brand USB drives are recommended.

Command Example:

OS10# dir usb
Directory contents for folder: usb
Date (modified) Size (bytes) Name
2018-03-31T16:44:34Z 38 usb_test.txt

As shown above, the USB drive has been recognized, and its root directory contains the test file.

Note: If the USB drive is not recognized, try a different brand. If it's still not recognized and mounted automatically, please contact DELL technical support.

17.2 View License Location

As shown below, assuming the Service tag is AAAAAAA, it is typically installed in the /mnt/license/ directory.

Command Example:

OS10# show license status
System Information
Vendor Name : Dell EMC
Product Name : S4128F-ON
Hardware Version: A00
Platform Name : X86_64-dellemc_s4128f_c2338-r0
PPID : 
Service Tag : AAAAAAA
License Details
Software : OS10-Enterprise
Version : 10.4.0E(R3)
License Type : PERPETUAL
License Duration: Unlimited
License Status : Active
License location: /mnt/license/AAAAAAA.lic

17.3 Backup License

To back up (export) the license file to the root directory of the USB drive:

Command Example:

OS10#system "sudo -i cp /mnt/license/AAAAAAA.lic /mnt/usb/AAAAAAA.lic"
OS10# dir usb
Directory contents for folder: usb
Date (modified) Size (bytes) Name
2018-03-31T16:44:34Z 38 usb_test.txt
2018-03-31T17:47:54Z 3718 AAAAAAA.lic

After backing up, remove the USB drive from the switch and insert it into a computer's USB port to verify that the license file AAAAAAA.lic exists in the root directory and has a non-zero file size. The license backup is now complete.

17.4 Import License

If, for any reason (e.g., reinstalling OS10), you need to re-import the installed license, insert the USB drive containing the backup license into the switch's USB port. Ensure the USB drive is recognized and automatically mounted in the /mnt/usb directory.

Command Example:

OS10#license install usb://AAAAAAA.lic
License installation success.
OS10# show license status
System Information
Vendor Name : Dell EMC
Product Name : S4128F-ON
Service Tag : AAAAAAA
License Details
Version : 10.4.0E(R3)
License Type : PERPETUAL
License Duration: Unlimited
License Status : Active
License location: /mnt/license/AAAAAAA.lic

If the above output is displayed, the import and installation were successful.

18. Firmware Update

If the firmware is 10.4.0E(R1) or later, you can update the firmware directly using the 'image install' command in the OS10 command line. Reminder: Do not restart or power off the switch until the firmware update is fully successful, as this may prevent the switch from booting. This example uses a USB drive to update the switch firmware. Therefore, format the USB drive with FAT32 beforehand and place the .bin firmware file in the root directory of the USB drive before inserting it into the switch's USB port. (Kingston USB drives are recommended).

Command Example:

OS10# image install usb://PKGS_OS10-Enterprise-10.4.0E.R3.233-installer-x86_64.bin
Install started.
Use 'show image status' for updates

Important Note: Unlike previous versions, after executing the 'image install' command, you will immediately see the above prompt and return to the command prompt.

Check Image Status:

OS10# show image status
Image Upgrade State: install
File Transfer State: idle
State Detail: No download information available
Task Start: 0000-00-00T00:00:00Z
Task End: 0000-00-00T00:00:00Z
Transfer Progress: 0%
Transfer Bytes: 0 bytes
File Size: 0 bytes
Transfer Rate: 0 kbps
Installation State: install
State Detail: In progress: Installing (Indicates installation in progress...)
Task Start: 2018-04-03T08:34:58Z
Task End: 0000-00-00T00:00:00Z

Check Clock:

OS10# show clock
2018-04-03T08:35:40.06+00:00

Check Image Status Again:

OS10# show image status
Image Upgrade State: idle
File Transfer State: idle
State Detail: No download information available
Task Start: 0000-00-00T00:00:00Z
Task End: 0000-00-00T00:00:00Z
Transfer Progress: 0%
Transfer Bytes: 0 bytes
File Size: 0 bytes
Transfer Rate: 0 kbps
Installation State: idle

Check Boot System:

OS10# boot system standby
OS10# show boot detail
Current system image information detail:
Type: Node-id 1
Boot Type: Flash Boot
Active Partition: B
Active SW Version: 10.4.0E(X2)
Active SW Build Version: 10.4.0E(X2.22)
Active Kernel Version: Linux 3.16.43
Active Build Date/Time: 2018-01-26T09:46:11Z
Standby Partition: A
Standby SW Version: 10.4.0E(R3)
Standby SW Build Version: 10.4.0E(R3.233)
Standby Build Date/Time: 2018-03-30T11:05:41Z
Next-Boot: standby[A]

Save Configuration and Reload:

OS10# write memory
OS10# reload

19. Troubleshooting

19.1 Common Show Commands

19.2 Collect Command Output for DELL TAC

If you need to contact DELL Network Technical Support, please capture the output of the following commands in advance. Then, contact Dell technical support by phone, providing your switch's Service Tag or Express Service Code.

1. Set Putty Command Output Storage Path

Right-click on the blue title bar in PuTTY and select "Change Settings". In the "Session" category, select "Logging". Choose "All session output" and specify a log file name (e.g., putty.log). You can use date and time variables in the filename. Select "Always append to the end of it" for the log file.

2. Execute the following commands sequentially for continuous capture:

enable
show clock
show tech | no
show boot detail | no
show inter port-channel summary | no
show lacp port-channel | no
show inter | no
show interface phy-eth 1/1/x transceiver | no (Replace x with the appropriate interface number)
show ip int bri | no
show vlan | no
show spanning active | no
show spanning detail | no
show spanning virtual-interface | no
show vrrp bri | no
show mac addr | no
show ip arp | no
show ip route | no
show hardware forwarding-table mode all | no
show trace | no
show process node 1 | no (Execute this command 6 times consecutively)
show logg log | no
dir coredump
system "sudo -i journalctl -b 0 --no-pager" (Press Enter and enter the password when prompted)

3. After completion, close PuTTY and provide the generated command output files to the DELL network engineer.

19.3 Capture OS10 Support Bundle

Note: Generate the Support Bundle file only when requested by a DELL network engineer. Do not perform this operation otherwise.

1. Execute the following commands multiple times to check CPU usage:

OS10# show processes node-id 1 | grep Cpu
%Cpu(s): 1.9 us, 2.8 sy, 0.0 ni, 95.1 id, 0.2 wa, 0.0 hi, 0.1 si, 0.0 st

2. Execute the command to generate the support bundle:

OS10# generate support-bundle enable-all-plugin-options
OS10# dir supportbundle
Directory contents for folder: supportbundle

3. The following indicates that the support bundle generation is in progress but not yet complete, as indicated by temporary filenames:

OS10# dir supportbundle
Directory contents for folder: supportbundle
Date (modified) Size (bytes) Name
2018-04-12T14:33:55Z 800 tmp2_5t3zpz
2018-04-12T14:34:24Z 71435 tmpx2az_oc6
OS10#
Apr 12 14:35:32 OS10 dn_svc_sw[557]: Node.1-Unit.1:PRI:notice [os10:notify], %Dell EMC
(OS10) %log-notice:SUPPORT_BUNDLE_COMPLETED: generate support-bundle execution has completed successfully:All
Plugin options enabled

The above indicates that the support bundle has been completed.

4. View and Download Support Bundle to Local Computer

Command Example:

OS10# dir supportbundle
Directory contents for folder: supportbundle
Date (modified) Size (bytes) Name
2018-04-12T14:35:24Z 9062388 sosreport-OS10-20180412143354.tar.gz
2018-04-12T14:35:32Z 33 sosreport-OS10-20180412143354.tar.gz.md5
OS10# copy supportbundle://sosreport-OS10-20180412143354.tar.gz tftp://172.21.40.19//sosreport-OS10-20180412143354.tar.gz
OS10# copy supportbundle://sosreport-OS10-20180412143354.tar.gz.md5 tftp://172.21.40.19/sosreport-OS10-20180412143354.tar.gz.md5

Please provide the two downloaded support bundle files to the DELL network engineer.

PDF preview unavailable. Download the PDF instead.

Dell EMC OS10 v2.2 pkb en US 1 Microsoft Word 2016

Related Documents

Preview Dell EMC SmartFabric OS10 Security Best Practices Guide
This document provides a set of recommendations for securing switches that run Dell EMC SmartFabric OS10. It covers best practices for initial setup, password management, secure boot, user access control, port security, management plane security, data plane security, neighbor authentication, certificate management, and more.
Preview Dell EMC SmartFabric OS10 User Guide Release 10.5.3
Comprehensive user guide for Dell EMC SmartFabric OS10, Release 10.5.3. Covers installation, configuration, management, and advanced features of the OS10 operating system for Dell networking switches.
Preview OS10 Enterprise Edition User Guide for PowerEdge MX I/O Modules
Comprehensive user guide for OS10 Enterprise Edition, detailing the configuration and management of PowerEdge MX I/O Modules. Covers installation, CLI basics, interfaces, routing protocols, system management, and access control lists.
Preview OS10 Enterprise Edition User Guide Release 10.4.0E(R3)
Comprehensive user guide for Dell EMC OS10 Enterprise Edition Release 10.4.0E(R3), detailing installation, configuration, command-line interface (CLI) operations, troubleshooting, and system management for network professionals.
Preview Dell EMC OpenManage Enterprise-Modular Edition for PowerEdge MX7000 Chassis User's Guide
Comprehensive user guide for Dell EMC OpenManage Enterprise-Modular Edition (OME-Modular) software, detailing the management of PowerEdge MX7000 Chassis, including firmware updates, network configuration, compute sled management, and troubleshooting.
Preview Dell EMC PowerSwitch S6010-ON Firmware Updater Release Notes
Official release notes for the Dell EMC PowerSwitch S6010-ON firmware updater. This guide details firmware requirements, revision history, important information, and step-by-step procedures for updating the switch's BIOS and CPLD via ONIE, USB, and NOS.
Preview Dell EMC OpenManage Enterprise 3.2 User's Guide
Comprehensive guide to Dell EMC OpenManage Enterprise version 3.2, covering installation, configuration, device management, firmware updates, security features, and reporting for Dell servers, chassis, storage, and network switches.
Preview Dell iDRAC 8/7 v2.40.40.40 User's Guide
Comprehensive user guide for Dell iDRAC 8/7 version 2.40.40.40, covering setup, configuration, management, troubleshooting, and advanced features for server lifecycle management.