350-501 Automation and Quality of Service • Complete Question Bank
Complete 350-501 Automation and Quality of Service question bank — all 0 questions with answers and detailed explanations.
Refer to the exhibit. class-map match-any VIDEO match ip dscp af41 af42 af43 ! class-map match-all VOICE match ip dscp ef ! policy-map QOS-POLICY class VOICE priority percent 10 class VIDEO bandwidth remaining percent 30 class class-default fair-queue ! interface GigabitEthernet0/0 service-policy output QOS-POLICY
A service provider is deploying QoS on a Cisco ASR 9000 router to support a triple-play service (voice, video, data) over an Ethernet access network. The network engineer must ensure that voice traffic (EF) is prioritized, video traffic (AF41) is treated with low loss, and data traffic (default) gets best-effort service. Additionally, the engineer must implement a hierarchical QoS policy to shape the aggregate subscriber traffic to 100 Mbps on a GigabitEthernet interface, with the following per-class bandwidth allocations: voice 10 Mbps, video 40 Mbps, and data 50 Mbps. During testing, voice packets are being dropped under congestion, and video traffic is experiencing jitter. The current QoS configuration is as follows:
policy-map CHILD
class VOICE
priority level 1 police rate 10 mbps
class VIDEO
bandwidth remaining ratio 40
class DATA
bandwidth remaining ratio 50 ! policy-map PARENT
class class-default
shape average 100 mbps service-policy CHILD !
Which action should the engineer take to resolve the issues while maintaining the design objectives?
Refer to the exhibit. class-map match-any VOICE match ip dscp ef class-map match-any VIDEO match ip dscp af41 af42 class-map match-any DATA match ip dscp default ! policy-map QOS_POLICY class VOICE priority level 1 set mpls experimental topmost 5 class VIDEO bandwidth remaining percent 30 set mpls experimental topmost 4 class DATA bandwidth remaining percent 70 set mpls experimental topmost 0 ! interface GigabitEthernet0/0/0 service-policy output QOS_POLICY
A service provider has deployed a new MPLS L3VPN service for a customer with multiple sites. The customer reports intermittent voice quality issues during peak hours. The provider uses a DiffServ QoS model with MPLS EXP markings. The PE routers apply the following policy on the customer-facing interfaces:
policy-map CUSTOMER-OUT
class VOICE
priority percent 10 set mpls experimental topmost 5
class VIDEO
bandwidth remaining percent 30 set mpls experimental topmost 4
class DATA
bandwidth remaining percent 70 set mpls experimental topmost 0
The core network has a simple policy that maps EXP 5 to PQ, EXP 4 to a low-latency queue, and EXP 0 to best effort. The provider monitors the network and finds that the PE-CE interfaces are not congested (average utilization is 40%), but the voice packets are experiencing jitter. The customer's voice traffic is about 5% of the link capacity. Which action is most likely to reduce the jitter?
Drag steps to the numbered slots on the right, or tap a step then tap a slot.
Drag steps to the numbered slots on the right, or tap a step then tap a slot.
Drag a concept onto its matching description — or click a concept then click the description.
Well-known mandatory attribute for loop prevention
Well-known mandatory attribute indicating next-hop IP
Well-known discretionary attribute for best path selection
Optional non-transitive attribute to influence inbound traffic
Optional transitive attribute for route tagging and policy
Drag a concept onto its matching description — or click a concept then click the description.
Network configuration protocol using XML-based data encoding
Data modeling language for network device configuration and state
HTTP-based API for NETCONF data stores
Automation tool for configuration management and orchestration
High-performance RPC framework for telemetry and streaming
Refer to the exhibit. policy-map SHAPE-1M class class-default shape average 1000000 ! policy-map CHILD-QOS class VOICE priority level 1 police cir 256000 class DATA bandwidth remaining ratio 50 class MANAGEMENT bandwidth remaining ratio 10 ! interface GigabitEthernet0/0/0/0.100 service-policy output SHAPE-1M service-policy output CHILD-QOS
Refer to the exhibit.
<rpc xmlns="urn:ietf:params:xml:ns:netconf:base:1.0">
<get>
<filter type="subtree">
<policy-maps xmlns="http://cisco.com/ns/yang/Cisco-IOS-XR-qos-ma-cfg">
<policy-map>
<type>qos</type>
<name>POLICE-CUSTOMER</name>
</policy-map>
</policy-maps>
</filter>
</get>
</rpc>
Response:
<data xmlns="urn:ietf:params:xml:ns:netconf:base:1.0">
<policy-maps xmlns="http://cisco.com/ns/yang/Cisco-IOS-XR-qos-ma-cfg">
<policy-map>
<type>qos</type>
<name>POLICE-CUSTOMER</name>
<class>
<name>class-default</name>
<police>
<cir>256000</cir>
<conform-action>transmit</conform-action>
<exceed-action>drop</exceed-action>
</police>
</class>
</policy-map>
</policy-maps>
</data>Refer to the exhibit. RP/0/0/CPU0:router# show qos interface gigabitEthernet 0/0/0/0 Interface: GigabitEthernet0/0/0/0 Bandwidth configured: 1000000 kbps Policy: QOS_BUSINESS Class: VOICE Queue ID: 1 Taildrop thresholds: 50 packets Average queue depth: 12 packets Maximum queue depth: 48 packets Class: BEST_EFFORT Queue ID: 2 Taildrop thresholds: 600 packets Average queue depth: 580 packets Maximum queue depth: 650 packets
router# show policy-map interface GigabitEthernet0/0/0
GigabitEthernet0/0/0
Service-policy input: QOS_INPUT
Class-map: VOICE (match-any)
9286 packets, 12345678 bytes
5 minute offered rate 100000 bps, drop rate 0 bps
Match: ip dscp ef (46)
police:
cir 64000 bps, bc 8000 bytes
conformed 5000 packets, 6400000 bytes; actions:
set-dscp-transmit ef
exceeded 4286 packets, 5934578 bytes; actions:
drop
conformed 60000 bps, exceed 40000 bps
Class-map: DATA (match-all)
0 packets, 0 bytes
5 minute offered rate 0 bps, drop rate 0 bps
Match: ip dscp af31 (26)
Class-map: class-default
0 packets, 0 bytes
5 minute offered rate 0 bps, drop rate 0 bps<config xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
<native xmlns="http://cisco.com/ns/yang/Cisco-IOS-XE-native">
<policy>
<policy-map>
<name>QOS-POLICY</name>
<class>
<name>VOICE</name>
<priority>
<level>1</level>
</priority>
<police>
<cir>64000</cir>
<bc>8000</bc>
<conform-action>
<transmit/>
</conform-action>
<exceed-action>
<drop/>
</exceed-action>
</police>
</class>
</policy-map>
</policy>
</native>
</config>interface GigabitEthernet0/0/0 service-policy input POLICE_IN service-policy output SHAPE_OUT ! policy-map POLICE_IN class VOICE police cir 1000000 ! policy-map SHAPE_OUT class class-default shape average 10000000
Refer to the exhibit.
Router# show policy-map interface GigabitEthernet0/0/0 input
GigabitEthernet0/0/0
Service-policy input: QOS-POLICY
Class-map: VOICE (match-all)
1151375 packets, 108215153 bytes
5 minute offered rate 13000 bps, drop rate 0000 bps
Match: ip dscp ef (46)
police:
cir 10000 bps, bc 1500 bytes
conformed 1151375 packets, 108215153 bytes; actions:
transmit
exceeded 0 packets, 0 bytes; actions:
drop
conformed 13000 bps, exceed 0000 bps
Class-map: VIDEO (match-all)
250000 packets, 35000000 bytes
5 minute offered rate 25000 bps, drop rate 5000 bps
Match: ip dscp af41 (34)
police:
cir 20000 bps, bc 1500 bytes
conformed 200000 packets, 28000000 bytes; actions:
transmit
exceeded 50000 packets, 7000000 bytes; actions:
drop
conformed 20000 bps, exceed 5000 bps
Class-map: class-default (match-any)
500000 packets, 60000000 bytes
5 minute offered rate 50000 bps, drop rate 0000 bps
Match: any