I have this config on my lab:
class-map match-all crap
match dscp 21
match dscp af21
class-map match-all bulk
match dscp af33
class-map match-all voice
match dscp ef
!
!
policy-map corp
class voice
priority percent 60
class bulk
bandwidth percent 10
class crap
bandwidth percent 5
random-detect
class class-default
fair-queue
So we have the Voice class configured using LLQ, and the bulk and crap classes configured using CBWFQ.
When i do a show policy-map int s2/0 i was expecting to see the words Weighted Fair Queue under the crap and bulk classes but all i get is:
R1#sh policy-map interface s2/0
Serial2/0
Service-policy output: corp
Class-map: voic (match-all)
0 packets, 0 bytes
5 minute offered rate 0 bps, drop rate 0 bps
Match: dscp ef (46)
Queueing
Strict Priority
Output Queue: Conversation 264
Bandwidth 60 (%)
Bandwidth 926 (kbps) Burst 23150 (Bytes)
(pkts matched/bytes matched) 0/0
(total drops/bytes drops) 0/0
Class-map: bulk (match-all)
0 packets, 0 bytes
5 minute offered rate 0 bps, drop rate 0 bps
Match: dscp af33 (30)
Queueing
Output Queue: Conversation 265
Bandwidth 10 (%)
Bandwidth 154 (kbps)Max Threshold 64 (packets)
(pkts matched/bytes matched) 0/0
(depth/total drops/no-buffer drops) 0/0/0
Class-map: crap (match-all)
0 packets, 0 bytes
5 minute offered rate 0 bps, drop rate 0 bps
Match: dscp 21
Match: dscp af21 (1

Queueing
Output Queue: Conversation 266
Bandwidth 5 (%)
Bandwidth 77 (kbps)
(pkts matched/bytes matched) 0/0
(depth/total drops/no-buffer drops) 0/0/0
exponential weight: 9
mean queue depth: 0
class Transmitted Random drop Tail drop Minimum Maximum Mark
pkts/bytes pkts/bytes pkts/bytes thresh thresh prob
0 0/0 0/0 0/0 20 40 1/10
1 0/0 0/0 0/0 22 40 1/10
2 0/0 0/0 0/0 24 40 1/10
3 0/0 0/0 0/0 26 40 1/10
4 0/0 0/0 0/0 28 40 1/10
5 0/0 0/0 0/0 30 40 1/10
6 0/0 0/0 0/0 32 40 1/10
7 0/0 0/0 0/0 34 40 1/10
rsvp 0/0 0/0 0/0 36 40 1/10
Class-map: class-default (match-any)
13 packets, 922 bytes
5 minute offered rate 0 bps, drop rate 0 bps
Match: any
Queueing
Flow Based Fair Queueing
Maximum Number of Hashed Queues 256
(total queued/total drops/no-buffer drops) 0/0/0
So as you see under the bulk and crap classes it does not say what type of queuing method is in use.
If you have the cisco press book check out pages 161 and 162. Pretty much the same config as above and the output of the show policy-map command lists the type of queuing for all the classes....
Am i missing something here??