03-14-2022 02:33 AM
Slot-1 dblockr2x.16 # show port 1:43 qosmonitor congestion no-refreshalthough that was last week, now the counters have all gone to zero:
Port Qos Monitor
Port QP1 QP2 QP3 QP4 QP5 QP6 QP7 QP8
Pkt Pkt Pkt Pkt Pkt Pkt Pkt Pkt
Cong Cong Cong Cong Cong Cong Cong Cong
================================================================================
R2-39:> 6 0 0 0 0 0 0 0
Slot-1 dblockr2x.15 # show ports 1:43 qosmonitor congestion no-refreshAnyway, I read a bunch of posts here and the manuals, and since the phone does correctly tag the packets with DSCP EF and 802.1p priority 5, I want to stick that in a higher priority queue, so ran:
Port Qos Monitor
Port QP1 QP2 QP3 QP4 QP5 QP6 QP7 QP8
Pkt Pkt Pkt Pkt Pkt Pkt Pkt Pkt
Cong Cong Cong Cong Cong Cong Cong Cong
================================================================================
R2-39:> 0 0 0 0 0 0 0 0
create qosprofile "QP5"
configure qosprofile qp5 minbw 20 maxbw 100 ports all
configure dot1p type 5 qosprofile QP5
which should drop the traffic into QP5 based on the .1p value. I think this works, I can see traffic in QP5 using show port qosmonitor.
Now the hard part is getting the voice and control traffic coming the other direction correctly marked. The core is several 7400s in campus fabric, and the phone system runs as a number of VMs. I read the VOSS QOS guide and came to the conclusion that the default settings respect DSCP, but were probably being overridden by the 802.1p priority being set to the default of 0 (since it's just a normal vSwitch, not a vDS which has CoS/DSCP support), so on the ports going to the VMware servers, I set qos 802.1p-override enable
so that the .1p priority is ignored and the DSCP is used. However, I can't tell if it's having any effect. I have spanned the traffic out of a Cisco phone and it doesn't seem to have worked, traffic from the server just has 802.1p priority set to 0.
There's also a Cisco 4331 which terminates the SIP trunk, that is connected to a C3, which goes to a B5, which goes to the 7400. I set qos 802.1p-override enable
on the port the B5 goes to as well. The other way would be to do 802.1p tagging based on DSCP on the C3 or B5, but I haven't found the documentation to do that yet, am I going to have to fire up policy manager?
The SIP trunk comes in on a B5, vlan 102 so I ran this per https://extremeportal.force.com/ExtrArticleDetail?an=000080747:
vblock(su)->set policy profile 1 name "SIP Trunk" cos-status enable cos 5I would have to go sniff that traffic to see if it sets DSCP correctly.
vblock(su)->set policy rule admin-profile vlantag 102 admin-pid 1
08-24-2022 05:11 PM