Back to Contents Page

Priority Commands:
Dell™ PowerEdge™ 1655MC Integrated Switch User's Guide

switchport priority default

queue cos-map

show queue cos-map

show interfaces switchport

 


The commands described in this section allow you to specify which data packets have greater precedence when traffic is buffered in the switch due to congestion. This switch supports Class of Service (CoS) with four priority queues for each port. Data packets in a port’s high-priority queue will be transmitted before those in the lower-priority queues. You can set the default priority for each interface.


switchport priority default

Use this command to set a priority for incoming untagged frames, or the priority of frames received by the device connected to the specified interface. Use the no form to restore the default value.

Syntax

switchport priority default default-priority-id
no switchport priority default

default-priority-id - The priority number for untagged ingress traffic.
The priority is a number from 0 to 7. Seven is the highest priority.

Default Setting

The priority is not set, and the default value for untagged frames received on the interface is zero. The switch is not instructed what to do with the priority.

Command Mode

Interface Configuration (Ethernet, Port Channel)

Command Usage

Example

The following example shows how to set the default priority on port 3 to 5:

(config)#interface ethernet 1/3
(config-if)#switchport priority default 5


queue cos-map

Use this command to assign Class of Service (CoS) values to the CoS priority queues. Use the no form set the CoS map to the default values.

Syntax

queue cos-map queue_id [cos1 ... cosn]
no queue cos-map

Default Setting

This switch supports Class of Service by using four priority queues, with Weighted Fair Queuing for each port. Up to 8 separate traffic classes are defined in IEEE 802.1p. The default priority levels are assigned according to recommendations in the IEEE 802.1p standard as shown in the following table.

Table 1. Priority to Queue Mapping

Queue
1 2 3 4
Priority   0    
1      
2      
  3    
    4  
    5  
      6
      7

Command Mode

Interface Configuration (Ethernet, Port Channel)

Command Usage

CoS assigned at the ingress port is used to select a CoS priority at the egress port.

  NOTE: The queue cos-map command sets the CoS values for the entire switch. However, you must first enter Interface Configuration mode for any interface to use this command.

Example

The following example shows how to map CoS values 0, 1 and 2 to CoS priority queue 0, value 3 to CoS priority queue 1, values 4 and 5 to CoS priority queue 2, and values 6 and 7 to CoS priority queue 3:

(config)#interface ethernet 1/7
(config-if)#queue cos-map 0 0 1 2
(config-if)#queue cos-map 1 3
(config-if)#queue cos-map 2 4 5
(config-if)#queue cos-map 3 6 7
(config-if)#

Related Commands

show queue cos-map


show queue cos-map

Use this command to show the class of service priority map.

Syntax

show queue cos-map [interface]

Default Setting

None

Command Mode

Privileged Exec

Example

#show queue cos-map ethernet 1/11
Information of Eth 1/11
 Queue ID Class of service
 -------- ----------------
    0     1 2
    1     0 3
    2     4 5
    3     6 7
#


 Back to Contents Page