Loading...

Messages

Proposals

Stuck in your homework and missing deadline? Get urgent help in $10/Page with 24 hours deadline

Get Urgent Writing Help In Your Essays, Assignments, Homeworks, Dissertation, Thesis Or Coursework & Achieve A+ Grades.

Privacy Guaranteed - 100% Plagiarism Free Writing - Free Turnitin Report - Professional And Experienced Writers - 24/7 Online Support

Mls qos map cos dscp

25/10/2021 Client: muhammad11 Deadline: 2 Day

Introduction

Objective

As a network engineer working for a Service Provider, configure Traffic Classification in a Converged network. The traffic types that need classification are: VOIP, Television, High-Speed Internet, and management traffic. But first the configuration has to be tested in a lab.

Note that the traffic types used are the same as the previous lab, where we assumed the classification has been done. In this lab we are doing the classification.

Testing Cases

For the lab the traffic sources are connected to NYCORE1. The service provider decided to classify traffic at the ingress of ports connected to the traffic sources. See the table below for the ports numbers and COS class.

Lab Network Diagram

Task Index

· Task 1 - Enable QoS. 


· Task 2 - Configure Classification at the Interface Ingress of the Traffic 


· Task 3 - COS-DSCP mapping 


· Task 4 - DSCP-COS mapping 


Task 1 - Enable QoS

Step 1: Access Switch NYCORE1 go to privileged mode

NYCORE1> enable

NYCORE1#

Step 2: Enable QoS on the switch

NYCORE1#config t

Enter configuration , one per line. End with CNTL/Z.

NYCORE1 (config)#mls qos

NYCORE1 (config)#

Step 3: Show that the QoS was enabled

NYCORE1(config)#exit

NYCORE1#show mls QoS

QoS is enabled
QoS ip packet dscp rewrite is enabled

Task 2 - Configure Classification at the Interface Ingress of the Traffic

The classification will be based on the layer 2 classification using COS. The Ethernet header has a 3 bits field that will carry the classification, the same way it carries source or destination mac address.

Step 1: Apply the classification on the interfaces

NYCORE1#Config t

NYCORE1(config-if)#int fa1/0/5

NYCORE1(config-if)#mls qos cos 6

NYCORE1 (config-if)#mls qos cos override

NYCORE1(config-if)#int fa1/0/6

NYCORE1(config-if)#mls qos cos 5

NYCORE1 (config-if)#mls qos cos override

NYCORE1(config-if)#int fa1/0/7

NYCORE1(config-if)#mls qos cos 3

NYCORE1(config-if)#mls qos cos override

NYCORE1(config-if)#int fa1/0/8

NYCORE1(config-if)#mls qos cos 0

NYCORE1 (config-if)#mls qos cos override

Step 2: Verify the configuration using the show run command

NYCORE1# show run

Scroll down using the space bar and you should see the interfaces configured as the following:

interface FastEthernet1/0/5

mls qos cos 6

!

interface FastEthernet1/0/6

mls qos cos 5 !

interface FastEthernet1/0/7

mls qos cos 3

!

interface FastEthernet1/0/8

Note that interface 1/0/8 does not show the COS, that is because the COS that was used for internet was COS 0, and that is the default. The show command does not show the default configuration on the Cisco switch.

Task 3 - COS-DSCP Mapping

Now that the traffic has been classified, we need to make sure, that the marking is done at the egress of the router toward the IP network, which uses Layer 3 DSCP marking. In production the backbone is based on other technologies and not Ethernet, so the layer 2 COS marking cannot be used. Layer 3 DSCP (Differentiated Services Code Point) is used. DSCP has 64 classes, from 0 to 63. So we need to map the COS marking to DSCP marking before it egress toward the backbone network. Cisco has already a default mapping, we will check it next.

Step 1: Show the default cos-dscp mapping

NYCORE1#show mls qos map cos-dscp

Cos-dscp map:

cos: 01234567 -------------------------------- dscp: 0 8 16 24 32 40 48 56

NYCORE1#show mls qos map cos-dscp

Cos-dscp map:

cos: 01234567 -------------------------------- dscp: 0 8 16 24 32 40 48 56

The output form the show command shows that all the COS classes are mapped, starting from COS 0 mapped to dscp 0 and ending with COS7 mapped to dscp 56.

Everything looks good except that in the case of this service provider you are working for, and as an example, dscp 40 is used from for something else, so you need to change the default mapping to map COS 5 to dscp 46 and not 40 as the default mapping. You will do that next.

Step 2: Change the default cos-dscp mapping

NYCORE1# config t

NYCORE1(config)#mls qos map cos-dscp 0 8 16 24 32 46 48 56

NYCORE1(config)#exit

Step 3: Verify the cos-dscp mapping changes

NYCORE1#show mls qos map cos-dscp

Cos-dscp map:

cos: 01234567 -------------------------------- dscp: 0 8 16 24 32 46 48 56

The output now shows that COS 5 is mapped to dscp 46.

Task 4 – DSCP-COS Mapping

The last switch before the customer connection in a production service provider network has to reverse the mapping from dscp to cos, since the customer is connected using fast Ethernet, which is a layer 2 protocol and does support cos. In the case of our lab NYCORE2 needs to do this mapping. But first let see what is the default Cisco dscp to cos mapping?

Step 1: Check the default dscp-cos mapping

Go to NYCORE2 and issue the following command:

NYCORE2#show mls qos map dscp-cos

Dscp-cos map:

d1: d20 1 2 3 4 5 6 7 8 9 ---------------------------------------

. 0: 00000000 


. 1: 01010101 


. 2: 02020202 


. 3: 03030404 


. 4: 05050505 


. 5: 06060606 


. 6: 07070707 


000000000101 010102020202 030303030303 040404040404 050505050606 060607070707

Because now we have to map 64 dscp classes to 8 cos classes, more than one dscp class can be mapped to one cos class.

In the output above d1 column represents the first digit of dscp, and d2 row represents the second digit. The cross point of d1 and d2 is the cos class. So for example dscp 21 is mapped to cos 2. We are interested in dscp 46, we want to make sure is mapped to cos 5, which is the reverse of what we did in TASK 3, Step 3.

So looking at dscp in the above output you can see that dscp 46 is mapped to cos 5, and all the other dscp that we are interested in are mapped to the right cos. Therefore you keep the dscp- cos default mapping.

With this we are sure that QoS classification and marking are kept end to end in the network.

Summary

In this lab you completed the following tasks:

· Task 1 - Enable QoS. 


· Task 2 - Configure Classification at the Interface Ingress of the Traffic 


· Task 3 - COS-DSCP Mapping 


· Task 4 - DSCP-COS Mapping 


NETW320 Week 2 Report

Configuring Traffic Classification (40 points)

Name:
Date:
Professor:

Write a paragraph (minimum five college-level sentences) below that summarizes what was accomplished in this lab. What did you learn by performing it? (10 points)

Answer the following question with short answers, and copy and paste the screenshots or the show output command when it is required, from the configuration.

*Hint* Read and study the instructions and explanations within the lab for assistance.

1. What was accomplished in task 2, step 1? (3 points)

2. What was accomplished in task 3, step 2? (3 points)

3. What was accomplished in task 4? (4 points)

4. Copy and paste the output from the show run that shows the interfaces configured with cos task 2, step 2. (5 points)

5. In the output of task 2, step 2, why is the cos 0 is not showing? (5 points)

6. Copy and paste the output from the show command in task 3, step 3. (5 points)

7. In the output of task 3, step 3, to which cos is dscp 46 mapped? (5 points)

Homework is Completed By:

Writer Writer Name Amount Client Comments & Rating
Instant Homework Helper

ONLINE

Instant Homework Helper

$36

She helped me in last minute in a very reasonable price. She is a lifesaver, I got A+ grade in my homework, I will surely hire her again for my next assignments, Thumbs Up!

Order & Get This Solution Within 3 Hours in $25/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 3 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

Order & Get This Solution Within 6 Hours in $20/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 6 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

Order & Get This Solution Within 12 Hours in $15/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 12 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

6 writers have sent their proposals to do this homework:

WRITING LAND
Quick Finance Master
Top Quality Assignments
Assignment Hut
Quality Homework Helper
Premium Solutions
Writer Writer Name Offer Chat
WRITING LAND

ONLINE

WRITING LAND

I am an elite class writer with more than 6 years of experience as an academic writer. I will provide you the 100 percent original and plagiarism-free content.

$42 Chat With Writer
Quick Finance Master

ONLINE

Quick Finance Master

I have worked on wide variety of research papers including; Analytical research paper, Argumentative research paper, Interpretative research, experimental research etc.

$48 Chat With Writer
Top Quality Assignments

ONLINE

Top Quality Assignments

This project is my strength and I can fulfill your requirements properly within your given deadline. I always give plagiarism-free work to my clients at very competitive prices.

$41 Chat With Writer
Assignment Hut

ONLINE

Assignment Hut

I am a PhD writer with 10 years of experience. I will be delivering high-quality, plagiarism-free work to you in the minimum amount of time. Waiting for your message.

$46 Chat With Writer
Quality Homework Helper

ONLINE

Quality Homework Helper

I am an academic and research writer with having an MBA degree in business and finance. I have written many business reports on several topics and am well aware of all academic referencing styles.

$38 Chat With Writer
Premium Solutions

ONLINE

Premium Solutions

As per my knowledge I can assist you in writing a perfect Planning, Marketing Research, Business Pitches, Business Proposals, Business Feasibility Reports and Content within your given deadline and budget.

$21 Chat With Writer

Let our expert academic writers to help you in achieving a+ grades in your homework, assignment, quiz or exam.

Similar Homework Questions

Trans world airlines inc v hardison - Fa licensed coaches club - Ncnm renew of licence - Apply the total cell style to the selected cells - Ben ramsden pants to poverty - Assessing a company's future financial health harvard solution - Pharmasim period 1 decisions - 7/265 ocean drive port macquarie - All the world's a stage theme - Chemistry - write 3 typed 1.5 spacing pages (need to take simple personal tests before writing the paper) - Comparative language analysis essay example - Which of these statements about corporate bonds is correct - You are the chief financial officer for a firm that sells digital music players - Week 5 - Assignment: Plan Data Collection Effort for Informed Decision Making - August 2026 there will come soft rains summary - How I Will Redirect Students When They Misbehave - One smooth stone organizational structure - Electing tribunes and displaying the law of the twelve tables - Lincoln hall university of nottingham - The most consistent feature of workplace drug prevention programs has been - Blockchain - Moshi monster sign in - Ecology the lion king movie guide answers - "Ethical Dilemmas in Business: A Management Assignment Demonstration" - Companies that outsource jobs are acting immorally - Ethics in research - Sullivan nicolaides holter monitor - Nrma modified car insurance - Cadet oer support form example - Reply to an informal invitation - Peacock dove eagle owl - Assignment - Cutting for stone book group questions - 10 ways to irritate a telemarketer - Social stratification - Badoit sparkling water sainsburys - I love a sunburnt country lyrics - Unit 7 Discussion 1 - Human resource management byars and rue 11th edition pdf - David sedaris tickets state theatre of ithaca april 5 - Assignment #1 DUE Wednesday morning - Translink ilink travel card - What uhf channel do truck drivers use in australia - Declare a 8x8 two dimensional array of strings named chessboard - What was jennifer's gross pay for the year - Laplace transform of unit step function in matlab - What privileges are afforded to accounts with desktop user privileges? - Riverton family history center - Coca cola target market segment - The cranes by peter meinke summary - Reextend - King of boot camps - Week 8 Discussion - Avery usa 8660 label template access - Hobo dyer projection pros and cons - Problem Set 1 - What is telstra hardware repayment option - Examples of diction in the devil in the white city - Bsbcmm401a make a presentation assessment answers - 24 hour daycare on tara blvd - Unisa harvard referencing guide - Essay Question - Ps 201 root cause analyses and actions quizlet - How to date a browngirl junot diaz summary - What does oil symbolise in baptism - THE PROJECT PROFITABILITY INDEX AND THE INTERNAL RATE OF RETURN - Write equations for three hills that do meet the requirements - What does under god mean in the pledge - Nurs 6650 midterm exam questions and answers - Case Study Analysis IT - Write a Java programme - Voltage comparator using transistor - Biological basis - A person has a reasonable chance of surviving - Commonwealth security clearance levels - Order 2301073: How education impact to our life - Math in the Real World - How Oracle 12c advances the security discussion - Macduff role in macbeth - Lutron 2 link processor - Joint office of gas transporters - Dry unit weight to moist unit weight - True or false a convex shape curves outwards - Under armour global strategy - AUTHORIESED HEALTH +27835179056 Capitalized Safe abortion clinic//pills in Umdloti Umgababa Umhlanga Rocks Umlazi Verulam limpopo - 4 asset portfolio standard deviation calculator - Dq - Drown your sorrows hitman 2 - HR - The south division of wiig company reported - Distances in space worksheet - ECON Question - What distinguishes a freehold estate from a leasehold estate - Security Architecture and Design - Business Process Redesign - A radio station has a radius of 100 miles - What are the branches of science - What is the primary drawback to job specialization - Author's bias worksheet