Basics of GNS3 and Cisco IOS

Size: px
Start display at page:

Download "Basics of GNS3 and Cisco IOS"

Transcription

1 Lab00: Objectives: Basics of GNS3 and Cisco IOS IERG4090 Lab00 P.1 Upon completion of this lab, you will be able to: - Extract a given topology GNS3 archive - Start GNS3 - Open the given topology file in GNS3 and rename to new lab - Cabling devices in GNS3 - Start devices in GNS3 - Start device terminal in GNS3 - Configuration of network devices - Configuration of docker container labvpc Prerequisite: - You are provided with virtual machine in VMware Workstation format that contains the required tools. - You should know how to start the virtual machine in VMware Workstation. - For information about VMware Workstation, please visit the official website: - For tutorials about how to use VMware Workstation, please visit Youtube and search by keyword vmware workstation tutorial. - For tutorials about how to use GNS3, please visit Youtube and search by keyword GNS3 - For docker container, please visit: Procedures for Lab file recovery: 1) Download the Lab file Topo01.tar into ~/GNS3/projects/IERG4090/ directory 2) Start a terminal at the top left corner of the VM desktop. At the terminal, change to the directory ~/GNS3/projects/IERG4090 and recover the Lab file by tar xvf Topo01.tar

2 3) Start GNS by clicking the icon on the top menu bar: IERG4090 Lab00 P.2 - The New project window pop up - Click the Open a project button on the New project window: - Select the IERG4090 folder

3 IERG4090 Lab00 P.3 - Select the file Topo01.gns3 under IERG4090/Topo01/ directory and click Open button: - Some devices appeared in the working area of GNS3. Procedures for saving into a new project: 1) In the top menu File Save project as Select IERG4090 folder

4 IERG4090 Lab00 P.4 2) In the Project name textbox, change the name from Topo01 to Lab00. Make sure that it is still under the IERG4090 directory. Click the Save button 3) The project name is now saved to Lab00.gns3 as shown in the title bar of GNS3. Procedures for cabling devices: 1) On the top menu bar, click the Add a link button: 2) The button picture will be changed when the mode is activated:

5 IERG4090 Lab00 P.5 3) To add a link between labvpc-1:ethernet0 and SW1:Ethernet0/0 Click on labvpc-1 Select eth0 Click on SW1 Select Ethernet0/0 They are connected 4) Move the mouse arrow over a link, the link will be highlighted in RED with a message describing the connection. 5) To delete a link, move the mouse arrow over a link, right click and then select the Delete from the menu. Note: You have to restart lab-vpc1 (lab-vpc) if the link is deleted and reconnected. To restart a device, move the mouse arrow over the device, right click and then select the Reload item on the menu.

6 IERG4090 Lab00 P.6 After Reload, the console on the Terminal screen will be gone. Click Console on the sub-menu to display labvpc-1 s console on the terminal again. 6) Similarly connect the devices together as shown in the diagram below: - To exit from Add a link mode, click the Add a link button again to toggle the mode. 7) Save the project - Click the Save project button on the top menu to save the topology.

7 Procedures for starting the simulation: IERG4090 Lab00 P.7 1) Clicking the Start/Resume all devices button on the top menu to start up all devices: 2) All devices are turned on. The link color on the devices will change from RED to GREEN when they are started.

8 Procedure to configure network devices: IERG4090 Lab00 P.8 1) To configure devices, click the Console connect to all devices button on the top menu: - A terminal will be popped up showing all devices tab on the left. 2) To select the console of SW2, click the SW2 tab on the left. The title will be changed to the current terminal SW2.

9 3) To configure SW1, click the SW1 tab on the left of the terminal. IERG4090 Lab00 P.9 - The terminal screen should show the privilege exec mode of SW1. It is indicated by the # sign in the prompt: - In privilege exec mode, you are the super-user and you have the privilege to configure everything in the device. 4) To switch to user exec mode, use the command disable. disable SW1> - The prompt will change from # to >. It is the mode that general users can obtain limited information about the device. 5) To switch to privilege exec mode, use the command enable SW1>enable 6) To get the information of all interfaces in SW1: show interface status Port Name Status Vlan Duplex Speed Type Et0/0 connected 1 auto auto unknown Et0/1 connected 1 auto auto unknown Et0/2 connected trunk auto auto unknown Et0/3 connected trunk auto auto unknown - The Status shows connected. It means that they are in enabled state. - The Vlan shows 1 for Et0/0. It is an access port. - The Vlan shows trunk for Et0/2 and Et0/3. They are negotiated as trunk port with neighbor switches. 7) To configure the device, in the privileged exec mode, change to the global configuration mode by: configure terminal Enter configuration commands, one per line. End with CNTL/Z. SW1(config)# 8) To configure an interface, say, Ethenet0/1 (Nothing is connected to this interface), change to the console into interface configuration mode by: SW1(config)#interface e0/1 9) To shutdown an interface, use shutdown command under the interface configuration mode : SW1(config-if)#shutdown SW1(config-if)# *Jan 10 01:26:52.042: %LINK-5-CHANGED: Interface Ethernet0/1, changed state to administratively down *Jan 10 01:26:53.042: %LINEPROTO-5-UPDOWN: Line protocol on Interface Ethernet0/1, changed state to down - Note: In Cisco IOS, use the prefix no to reverse a command. E.g. Use no shutdown to bring up an interface.

10 10) After configuration, return to the privilege exec mode by: IERG4090 Lab00 P.10 SW1(config-if)#end *Dec 12 10:58:49.127: %SYS-5-CONFIG_I: Configured from console by console Summary of walking around different configuration mode: User EXEC mode: To Privilege EXEC mode: To Global Configuration Mode: SW1> SW1>enable configure terminal SW1(config)# To Interface Configuration Mode: SW1(config)#interface e0/0 SW1(config-if)# Return to Global Configuration Mode: Return to Privilege EXEC mode: Return to User EXEC mode: 11) Check the interface status by: show interface status SW1(config-if)#exit SW1(config)# SW1(config)#exit disable SW1> Port Name Status Vlan Duplex Speed Type Et0/0 connected 1 auto auto unknown Et0/1 disabled 1 auto auto unknown Et0/2 connected trunk auto auto unknown Et0/3 connected trunk auto auto unknown - The status of Ethernet0/1 becomes disabled now. 12) According to the network diagram, the switch ports SW1:e0/2 and SW1:e0/3 are connected to SW2 and SW3 respectively. Enable the interfaces simultaneously by: SW1(config)#interface range e0/2-3 - By default, the operation mode of switch ports are negotiated dynamically. To change the mode of switch port into static access mode (carries only a single vlan): SW1(config-if-range)#switchport mode access SW1(config-if-range)#end 13) Verify the interface status again: show interfaces status Port Name Status Vlan Duplex Speed Type Et0/0 connected 1 auto auto unknown Et0/1 disabled 1 auto auto unknown Et0/2 connected 1 auto auto unknown Et0/3 connected 1 auto auto unknown

11 IERG4090 Lab00 P.11 14) Similarly, enable the interfaces e0/0, e0/2 and e0/3 on SW2 and SW3. Command shortcut is used in the configuration as shown below: SW2: SW2# SW2#conf? Configure To show the command(s) beginning with conf The only command is configure The shortcut conf can replace configure SW2#conf? To show the command(s) beginning with command configure confirm Confirm replacement of running-config with a new config file memory Configure from NV memory network Configure from a TFTP network host overwrite-network Overwrite NV memory from TFTP network host replace Replace the running-config with a new config file revert Parameters for reverting the configuration terminal Configure from the terminal <cr> SW2#conf t? To show the command(s) beginning with t terminal The only command is terminal The shortcut t can replace terminal SW2#conf t Enter configuration commands, one per line. End with CNTL/Z. SW2(config)#int e0/1 SW2(config-if)#shut *Jan 10 01:29:32.012: %LINK-5-CHANGED: Interface Ethernet0/1, changed state to administratively down *Jan 10 01:29:33.012: %LINEPROTO-5-UPDOWN: Line protocol on Interface Ethernet0/1, changed state to down SW2(config-if)#int range e0/2-3 SW2(config-if-range)#sw mo ac SW2(config-if-range)#end SW2#sh int status Port Name Status Vlan Duplex Speed Type Et0/0 connected 1 auto auto unknown Et0/1 disabled 1 auto auto unknown Et0/2 connected 1 auto auto unknown Et0/3 connected 1 auto auto unknown SW3: SW3#conf t Enter configuration commands, one per line. End with CNTL/Z. SW3(config)#int e0/1 SW3(config-if)# shut SW3(config-if)# *Jan 10 01:29:32.012: %LINK-5-CHANGED: Interface Ethernet0/1, changed state to administratively down *Jan 10 01:29:33.012: %LINEPROTO-5-UPDOWN: Line protocol on Interface Ethernet0/1, changed state to down SW3(config-if)#int range e0/2-3 SW3(config-if-range)#sw mo ac SW3(config-if-range)#end *Dec 22 03:03:36.868: %SYS-5-CONFIG_I: Configured from console by console SW3#sh int status Port Name Status Vlan Duplex Speed Type Et0/0 connected 1 auto auto unknown Et0/1 disabled 1 auto auto unknown Et0/2 connected 1 auto auto unknown

12 IERG4090 Lab00 P.12 Et0/3 connected 1 auto auto unknown 15) To save the configuration in switch: wr Building configuration... Compressed configuration from 1225 bytes to 824 bytes[ok] - Similarly, save the configuration in SW2 and SW3. 16) For further information about Cisco IOS Basics, please google with keyword introduction to Cisco IOS CLI. Procedures for Docker container (labvpc) configurations: - In the past, end devices (e.g. hosts) are simulated by routers. The purpose is to use ping and traceroute for verification of network accessibility. - With host running in docker, it can replace routers to act as end devices. - Docker provides the ability to run an application in a loosely isolated environment called a container. The isolation and security allow the system to run many containers simultaneously. - The docker container (labvpc) can execute a few network commands like ping and traceroute. 1) Configure IP address of labvpc-1, labvpc-2 and labvpc-3: labvpc /24 labvpc /24 labvpc /24 Modify the network configuration of labvpc as shown below: Move the mouse over the device, left click and select Configure Click Edit to modify the network configuration

13 IERG4090 Lab00 P.13 The network configuration window is shown Modify the network setting as shown and click Save Click OK to make the changes. Note: The labvpc will be restarted. 2) Verify the configured IP address by: Select Console to access the terminal.

14 IERG4090 Lab00 P.14 bash-4.3# ifconfig eth0 eth0 Link encap:ethernet HWaddr 9E:B7:0A:08:BA:12 inet addr: Bcast: Mask: inet6 addr: fe80::9cb7:aff:fe08:ba12%32691/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:24 errors:0 dropped:0 overruns:0 frame:0 TX packets:8 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:3015 (2.9 KiB) TX bytes:648 (648.0 B) bash-4.3# 3) Similarly, configure IP address for labvpc-2 and labvpc-3. Verification of network connectivity: 1) At labvpc-1, perform PING test to labvpc-2 and labvpc-3: bash-4.3# ping PING ( ): 56 data bytes 64 bytes from : seq=0 ttl=64 time=1.152 ms 64 bytes from : seq=1 ttl=64 time=0.403 ms 64 bytes from : seq=2 ttl=64 time=0.494 ms 64 bytes from : seq=3 ttl=64 time=0.412 ms ^C ping statistics packets transmitted, 4 packets received, 0% packet loss round-trip min/avg/max = 0.403/0.615/1.152 ms bash-4.3# ping PING ( ): 56 data bytes 64 bytes from : seq=0 ttl=64 time=1.676 ms 64 bytes from : seq=1 ttl=64 time=0.475 ms 64 bytes from : seq=2 ttl=64 time=0.510 ms 64 bytes from : seq=3 ttl=64 time=0.497 ms ^C ping statistics packets transmitted, 4 packets received, 0% packet loss round-trip min/avg/max = 0.475/0.789/1.676 ms bash-4.3# Discovering directly connected neighbors of a device: - To show which devices are connected, use the following command: show cdp neighbors Capability Codes: R - Router, T - Trans Bridge, B - Source Route Bridge S - Switch, H - Host, I - IGMP, r - Repeater, P - Phone, D - Remote, C - CVTA, M - Two-port Mac Relay Device ID Local Intrfce Holdtme Capability Platform Port ID SW2 Eth 0/2 156 R S I Linux Uni Eth 0/3 SW3 Eth 0/3 156 R S I Linux Uni Eth 0/3 - The Device ID column shows the neighbor device being discovered. - The Port ID column shows the interface of the neighbor device being discovered. - The Local Intrfce column shows the interface of the device discovering the neighbor.

15 Procedures for packet capture IERG4090 Lab00 P.15 1) Select the port to capture packet - Move the mouse over the link (between SW1 and SW2). - The link turns red. - Right click on the red link. A sub-menu comes out. - Select Start capture - A Packet capture windows pops up showing the port to be captured. - Select SW2:e0/3 and click OK button - Wireshark is started automatically and packets are captured in real time. - In the Wireshark, some spanning tree frames are captured which are shown in the Packet List Pane. - To view the details information of a frame, click the small triangle in the Packet Details Pane.

16 2) On labvpc-2, perform PING to labvpc-3: IERG4090 Lab00 P.16 bash-4.3# ping PING ( ): 56 data bytes 64 bytes from : seq=0 ttl=64 time=2.032 ms 64 bytes from : seq=1 ttl=64 time=0.713 ms 64 bytes from : seq=2 ttl=64 time=0.675 ms 64 bytes from : seq=3 ttl=64 time=0.675 ms - Some ICMP frames are captured and appeared on the Wireshark screen in real time. 3) To stop the capture - On GNS3, move the mouse over the link and the link turns to red. - Right click on the link and select Stop capture. This stops packet capture in the Wireshark. - Wireshark has stopped the packet capture. 4) On the Wireshark, move the scroll bar on the right until ICMP frames are displayed.

17 - According to the Wireshark output: o ARP request is sent by labvpc-2 ( ). o ARP response is sent by labvpc-3 ( ) with MAC Address 00:50:79:66:68:03 o Five pairs of Echo request and Echo reply follows. IERG4090 Lab00 P.17 4) Packet filter on Wireshark - To only display particular type of packets on Wireshark, say, ICMP packet - On the Filter textbox, type in icmp and then click Apply button - The Wireshark only shows ICMP packets on screen. Check list when a Lab is completed? 1) Have you saved the configurations of all devices? 2) Have you stop all devices and saved the project? 3) Have you restart GNS3, load the project and start all devices for verifications? --- End of Lab--- Note on lab submission: - After finish the lab, save the configurations in all devices. Then save the projects in GNS3. - Exit the GNS3 and then restart the lab again. Make sure that your setup can be recovered. If not, you have to do the lab again until you can save your setup properly. If the tutor cannot recover your lab, it will be scored with ZERO mark even you have submitted lab report properly. - In the command prompt, go to /home/gns3/gns3/projects/ierg4090. Archive your lab directory by the command sudo tar cfz XXX.tar.gz XXX where XXX is the folder name of your lab. - Retrieve the archive file via SCP or Copy and Paste to your desktop computer. - ZIP the lab report and the lab archive into a single file with filename SID_LabXX.zip where SID is your student ID and XX is the lab number. - Submit it to the tutor via elearning system.

Question 5.1. Every port on a switch is a collision domain. Every port on a router is a collision domain.

Question 5.1. Every port on a switch is a collision domain. Every port on a router is a collision domain. Question 5.1 Q 5.1.1 Number of Collision Domains: = 14 Every port on a switch is a collision domain. Every port on a router is a collision domain. Number of Broadcast Domains: = 5 Every port on a router

More information

Packet Tracer - Connect a Router to a LAN (Instructor Version)

Packet Tracer - Connect a Router to a LAN (Instructor Version) (Instructor Version) Instructor Note: Red font color or gray highlights indicate text that appears in the instructor copy only. Topology Addressing Table Device Interface IP Address Subnet Mask Default

More information

FiberstoreOS IP Service Configuration Guide

FiberstoreOS IP Service Configuration Guide FiberstoreOS IP Service Configuration Guide Contents 1 Configuring ARP...4 1.1 Overview...4 1.2 Configuring ARP... 4 1.3 Validation commands...5 2 Configuring Proxy ARP... 7 2.1 Overview...7 2.2 Configuring

More information

Let us ping! First we will learn the Hello World of a networked machine.

Let us ping! First we will learn the Hello World of a networked machine. AN INTRODUCTION TO LINUX NETWORKING In this article, we ll explore networking under GNU/Linux. You ll find it interesting to manage the entire network through certain valid keystrokes known as commands.

More information

Network Configuration for Cisco UCS Director Baremetal Agent

Network Configuration for Cisco UCS Director Baremetal Agent Network Configuration for Cisco UCS Director Baremetal Agent This chapter contains the following sections: About the Network Configuration Options, page 1 Single Network for Management and PXE, page 1

More information

LAB THREE STATIC ROUTING

LAB THREE STATIC ROUTING LAB THREE STATIC ROUTING In this lab you will work with four different network topologies. The topology for Parts 1-4 is shown in Figure 3.1. These parts address router configuration on Linux PCs and a

More information

Laboration 2 Troubleshooting Switching and First-Hop Redundancy

Laboration 2 Troubleshooting Switching and First-Hop Redundancy Laboration 2 Troubleshooting Switching and First-Hop Redundancy Topology All contents are Copyright 1992 2011 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 1

More information

GM8126 MAC DRIVER. User Guide Rev.: 1.0 Issue Date: December 2010

GM8126 MAC DRIVER. User Guide Rev.: 1.0 Issue Date: December 2010 GM8126 MAC DRIVER User Guide Rev.: 1.0 Issue Date: December 2010 REVISION HISTORY Date Rev. From To Dec. 2010 1.0 - Original Copyright 2010 Grain Media, Inc. All Rights Reserved. Printed in Taiwan 2010

More information

Advanced Troubleshooting CCIE Routing & Switching v5.0

Advanced Troubleshooting CCIE Routing & Switching v5.0 Advanced Troubleshooting CCIE Routing & Switching v5.0 www.micronicstraining.com Narbik Kocharians CCSI, CCIE #12410 R&S, Security, SP Switching-I Questions & Answers CCIE R&S by Narbik Kocharians Advanced

More information

Lab Troubleshooting LAN Connectivity

Lab Troubleshooting LAN Connectivity Lab 9.2.4 Troubleshooting LAN Connectivity Device Host Name Interface IP Address Subnet Mask Default Gateway Switch Port R1 R1 Fast Ethernet 0/0 192.168.1.1 255.255.255.0 N/A Fast Ethernet 0/2 S1 S1 VLAN

More information

Introduction to lab assignments with GNS3

Introduction to lab assignments with GNS3 Politecnico di Torino TSR/CNTS, PRL, PAR Introduction to lab assignments with GNS3 User guide and helpful tips Roberto Bonafiglia, Fulvio Risso October 27, 2017 Contents 1 Requirements 4 2 Access to GNS3

More information

CIS Test 1- Practice - Fall 2011

CIS Test 1- Practice - Fall 2011 CIS 192 - Test 1- Practice - Fall 2011 Name Each question worth 2 points: Tip: When not logged in as root, you can still use many of the network commands but you must preface them with /sbin/ because you

More information

FiberstoreOS. IP Service Configuration Guide

FiberstoreOS. IP Service Configuration Guide FiberstoreOS IP Service Configuration Guide Contents 1 Configuring ARP... 1 1.1 Overview... 1 1.2 Configuring ARP... 1 1.3 Validation commands...2 2 Configuring Proxy ARP...4 2.1 Overview... 4 2.2 Configuring

More information

UCS IPv6 Management Configuration Example

UCS IPv6 Management Configuration Example UCS IPv6 Management Configuration Example Document ID: 118784 Contributed by Padmanabhan Ramaswamy and Shankar Prasath, Cisco TAC Engineers. Mar 06, 2015 Contents Introduction Prerequisites Requirements

More information

FSOS IP Service Configuration Guide

FSOS IP Service Configuration Guide FSOS IP Service Configuration Guide Contents 1 Configuring ARP... 5 1.1 Overview... 5 1.2 Configuring ARP... 5 1.3 Validation commands...6 2 Configuring Proxy ARP...8 2.1 Overview... 8 2.2 Configuring

More information

Lab - Using Wireshark to Examine TCP and UDP Captures

Lab - Using Wireshark to Examine TCP and UDP Captures Topology Part 1 (FTP) Part 1 will highlight a TCP capture of an FTP session. This topology consists of a PC with Internet access. Topology Part 2 (TFTP) Part 2 will highlight a UDP capture of a TFTP session.

More information

This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for non-commercial distribution and

This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for non-commercial distribution and This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for non-commercial distribution and exclusive use by instructors in the CCNA Exploration:

More information

TABLE OF CONTENTS. ACI Solutions Team by Tomas de Leon 2

TABLE OF CONTENTS. ACI Solutions Team by Tomas de Leon 2 TABLE OF CONTENTS 1 INTRODUCTION... 3 2 LAB REFERENCE & TOPOLOGY INFORMATION... 3 3 DELETE THE EXISTING OUT OF BAND NODE MANAGEMENT ADDRESSES CONFIGURATION FOR YOUR DESIGNATED ACI FABRIC... 4 4 CONFIGURE

More information

Lab Establishing and Verifying a Telnet Connection Instructor Version 2500

Lab Establishing and Verifying a Telnet Connection Instructor Version 2500 Lab 4.2.2 Establishing and Verifying a Telnet Connection Instructor Version 2500 Objective Establish a Telnet connection to a remote router. Verify that the application layer between source and destination

More information

IP over IB Protocol. Introduction CHAPTER

IP over IB Protocol. Introduction CHAPTER CHAPTER 3 The following sections appear in this chapter: Introduction, page 3-1 Manually Configure IPoIB for Default IB Partition, page 3-2 Subinterfaces, page 3-2 Verify IPoIB Functionality, page 3-5

More information

Basic Cisco Router Configuration: Multiple Routers

Basic Cisco Router Configuration: Multiple Routers Basic Cisco Router Configuration: Multiple Routers Routers rarely exist alone. Most organizations have several to several dozens of routers. In this Lab, we will study two different ways in which routers

More information

This document guides the user through: 1. Setting up and configuring networking for the BeagleBone black or green with the host.

This document guides the user through: 1. Setting up and configuring networking for the BeagleBone black or green with the host. Networking Guide for BeagleBone (Black or Green) by Brian Fraser Last update: Nov 17, 2017 This document guides the user through: 1. Setting up and configuring networking for the BeagleBone black or green

More information

Troubleshoot interface down issues in Cisco routers

Troubleshoot interface down issues in Cisco routers Troubleshoot interface down issues in Cisco routers Contents Introduction Prerequisites Requirements Conventions Troubleshoot Methodology Troubleshoot Examples Introduction This document describes troubleshoot

More information

Sirindhorn International Institute of Technology Thammasat University

Sirindhorn International Institute of Technology Thammasat University 1 Name...ID....Section. Seat No.. Sirindhorn International Institute of Technology Thammasat University Midterm Examination: Semester 2/2007 Course Title : ITS 332 Information Technology II Lab (Networking)

More information

Lab I: Using tcpdump and Wireshark

Lab I: Using tcpdump and Wireshark Objectives To get the student familiar with basic network protocol analyzer, tools and equipment used in later labs, including tcpdump and Wireshark. Lab Readings Go to http://www.tcpdump.org/tcpdump_man.html

More information

Lab - Troubleshooting Connectivity Issues

Lab - Troubleshooting Connectivity Issues Lab - Troubleshooting Connectivity Issues Topology Addressing Table R1 ISP Objectives Device Interface IP Address Subnet Mask Default Gateway G0/1 192.168.1.1 255.255.255.0 N/A S0/0/0 10.1.1.1 255.255.255.252

More information

Quick guide for configuring a system with multiple IP-LINKs

Quick guide for configuring a system with multiple IP-LINKs Quick guide for configuring a system with multiple IP-LINKs October 4 th 2005, KK. This guide will show an example configurations for a system with multiple IP-LINKs. Example 1, three devices connected

More information

Wi-Fi Guide: Edimax USB Adapter on BBG

Wi-Fi Guide: Edimax USB Adapter on BBG Wi-Fi Guide: Edimax USB Adapter on BBG August 3 rd 2017 Table of Contents: Page 1: Page 2: Page 3: Page 4: Page 5: Introduction & Hardware requirements Getting Started Connecting to a network using Network

More information

Enabling CDC-ETHER Connection for Skywire CAT1

Enabling CDC-ETHER Connection for Skywire CAT1 Enabling CDC-ETHER Connection for Skywire CAT1 NimbeLink Corp Updated: May 2017 PN 30111 rev 5 NimbeLink Corp. 2017. All rights reserved. 1 Table of Contents Table of Contents 2 1. Introduction 2 1.1 Orderable

More information

Enabling CDC_ETHER Connection for Skywire GSM CAT1

Enabling CDC_ETHER Connection for Skywire GSM CAT1 Enabling CDC_ETHER Connection for Skywire GSM CAT1 NimbeLink Corp Updated: February 2018 PN 30262 rev 4 NimbeLink Corp. 2018. All rights reserved. 1 Table of Contents Table of Contents 2 1. Introduction

More information

Configuring Interfaces

Configuring Interfaces CHAPTER 9 This chapter defines the types of interfaces on the Cisco ME 3400 Ethernet Access switch and describes how to configure them. Understanding Interface Types, page 9-1 Using Interface Configuration

More information

Configuring Interfaces

Configuring Interfaces CHAPTER 9 This chapter defines the types of interfaces on the Cisco ME 3400 Ethernet Access switch and describes how to configure them. The chapter consists of these sections: Understanding Interface Types,

More information

CDP Command Reference

CDP Command Reference This chapter describes commands used to monitor the router and network using Cisco Discovery Protocol (CDP). cdp enable, page 2 cdp run, page 3, page 4 entry, page 5 interface, page 7 neighbors, page 8

More information

Accessing the Networking Stack

Accessing the Networking Stack The Cisco IOS XR Software serves as a networking stack for communication. This section explains how applications on IOS XR can communicate with internal processes, and with servers or outside devices.

More information

Lab 1. CLI Navigation. Scenario. Initial Configuration for R1

Lab 1. CLI Navigation. Scenario. Initial Configuration for R1 Lab 1 CLI Navigation This lab covers the most basic skills for accessing and using the command-line interface (CLI) on a Cisco router or switch. Many of the small, picky details of how the CLI works cannot

More information

Politecnico di Torino TSR/CNTS, PRL, PAR. Tutorial. User guide and helpful tips. Fulvio Risso and Marco Leogrande

Politecnico di Torino TSR/CNTS, PRL, PAR. Tutorial. User guide and helpful tips. Fulvio Risso and Marco Leogrande Politecnico di Torino TSR/CNTS, PRL, PAR Dyn@NG Tutorial User guide and helpful tips Fulvio Risso and Marco Leogrande November 28, 2018 Contents 1 Introduction 4 1.1 How it works.....................................

More information

LAN Troubleshooting. Ethernet Troubleshooting

LAN Troubleshooting. Ethernet Troubleshooting CCIE Routing & Switching Advanced Troubleshooting Bootcamp LAN Troubleshooting http:// Ethernet Troubleshooting No Ethernet switching troubleshooting in Troubleshooting Section, but it can be included

More information

Lab Configuring and Verifying Standard IPv4 ACLs (Instructor Version Optional Lab)

Lab Configuring and Verifying Standard IPv4 ACLs (Instructor Version Optional Lab) (Instructor Version Optional Lab) Instructor Note: Red font color or gray highlights indicate text that appears in the instructor copy only. Optional activities are designed to enhance understanding and/or

More information

Lab 5: Basic VLAN Configuration

Lab 5: Basic VLAN Configuration Topology Diagram Addressing Table Device (Hostname) Interface IP Address Subnet Mask Default Gateway S1 VLAN 99 172.17.99.11 255.255.255.0 N/A S2 VLAN 99 172.17.99.12 255.255.255.0 N/A S3 VLAN 99 172.17.99.13

More information

ISP /24. Fas0/0. Fas1/0/1. Fas1/0/22 NYCORE1. Cisco PS. Fas0/1. Lab Nic /24

ISP /24. Fas0/0. Fas1/0/1. Fas1/0/22 NYCORE1. Cisco PS. Fas0/1. Lab Nic /24 Introduction The Configuring VLANs and Trunks module provides you with the instructions and Cisco hardware to develop your hands on skills in configuring layer 2 technologies VLANs and trunking. This module

More information

Lab Catalyst 2950T and 3550 Series Basic Setup

Lab Catalyst 2950T and 3550 Series Basic Setup Lab 1.2.9.1 Catalyst 2950T and 3550 Series Basic Setup Objective Configure a Cisco Catalyst 2950T or 3550 series Ethernet switch for the first time using the command-line interface (CLI) mode. Basic first

More information

Lab Configuring and Verifying Standard ACLs Topology

Lab Configuring and Verifying Standard ACLs Topology Topology 2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 1 of 9 Addressing Table Objectives Device Interface IP Address Subnet Mask Default Gateway R1 G0/1 192.168.10.1

More information

INSTALLATION RUNBOOK FOR Hitachi Block Storage Driver for OpenStack

INSTALLATION RUNBOOK FOR Hitachi Block Storage Driver for OpenStack INSTALLATION RUNBOOK FOR Hitachi Block Storage Driver for OpenStack Product Name: Hitachi Block Storage Driver for OpenStack Driver Version: 1.4.10 MOS Version: 7.0 OpenStack Version: Product Type: Kilo

More information

New System Setup Guide

New System Setup Guide New System Setup Guide Logging into PBXact UC Quick Setup Wizard STEP 1: Time Zone and Email STEP 2: Extension Creation STEP 3: Extension Customization Dashboard Module Configuration Extensions IVR Inbound

More information

Classful Address Subnet Mask Number of Hosts per Subnet (2 x 2)

Classful Address Subnet Mask Number of Hosts per Subnet (2 x 2) LAB 1 Exercise 1- Subnetting exercises. Write the subnet, broadcast address, and valid host range for question 1 through question 6: 1. 192.168.100.25/30 2. 192.168.100.37/28 3. 192.168.100.66/27 4. 192.168.100.17/29

More information

The objective of this lab is to become familiar with Cisco switches as well as the Spanning Tree Protocol.

The objective of this lab is to become familiar with Cisco switches as well as the Spanning Tree Protocol. CIS 83 LAB 4 - Spanning Tree Protocol Rich Simms October 3, 2006 Objective The objective of this lab is to become familiar with Cisco switches as well as the Spanning Tree Protocol. Scenario This lab was

More information

Configuring HSRP. Global Knowledge Training LLC L5-1

Configuring HSRP. Global Knowledge Training LLC L5-1 L5 Configuring HSRP Global Knowledge Training LLC L5-1 Objectives In this lab you will examine the hot standby router protocol (HSRP). First you will configure PxR2 similar to PxR1, so they are both possible

More information

Getting Started with PetaLinux SDK

Getting Started with PetaLinux SDK Getting Started with PetaLinux SDK November 26, 2009 Table of Contents Table of Contents...2 About This Guide...3 Related PetaLinux Documents...3 Getting Started...3 Prerequisites...3 Installation...4

More information

Lab Configuring and Verifying Standard IPv4 ACLs Topology

Lab Configuring and Verifying Standard IPv4 ACLs Topology Topology 2016 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 1 of 10 Addressing Table Objectives Device Interface IP Address Subnet Mask Default Gateway R1 G0/1 192.168.10.1

More information

Configuration and management of Networks LAB 1 Introduction to packet tracer

Configuration and management of Networks LAB 1 Introduction to packet tracer LAB 1 Introduction to packet tracer Objectives: Learn Packet Tracer to design and simulate networks. Learn to create a simple LAN with two PCs using an Ethernet hub and two straight through cables to connect

More information

CCNA Semester 1 labs. Part 2 of 2 Labs for chapters 8 11

CCNA Semester 1 labs. Part 2 of 2 Labs for chapters 8 11 CCNA Semester 1 labs Part 2 of 2 Labs for chapters 8 11 8.1.4.6 Lab - Calculating IPv4 Subnets 8.1.4.8 Lab - Designing and Implementing a Subnetted IPv4 Addressing Scheme 8.2.1.5 Lab - Designing and Implementing

More information

Lecture (08) STP - CDP. Dr. Ahmed M. ElShafee CDP STP. tweak this simple design to make it more resilient by adding

Lecture (08) STP - CDP. Dr. Ahmed M. ElShafee CDP STP. tweak this simple design to make it more resilient by adding Lecture (08) STP - CDP STP CDP Dr. Ahmed M. ElShafee ١ ٢ Such design creates a single point of failure. We could easily tweak this simple design to make it more resilient by adding an extra path between

More information

Configuring Storm Control

Configuring Storm Control 40 CHAPTER This chapter describes how to configure port-based traffic control on the Catalyst 4500 series switch. For complete syntax and usage information for the switch commands used in this chapter,

More information

HP Services zl Module ngenius Integrated Agent Installation and Getting Started Guide

HP Services zl Module ngenius Integrated Agent Installation and Getting Started Guide HP Services zl Module ngenius Integrated Agent Installation and Getting Started Guide Part Number 733-0207 www.hp.com/networking Revision A www.netscout.com September 28, 2010 Copyright 2008 Hewlett-Packard

More information

ICND2. Rapid Spanning-Tree Protocol. These exercises utilize build on the previous ones used in the last class sessions.

ICND2. Rapid Spanning-Tree Protocol. These exercises utilize build on the previous ones used in the last class sessions. ICND2 Rapid Spanning-Tree Protocol TOPOLOGY 5x2950 (Layer 2 Switches) These exercises utilize build on the previous ones used in the last class sessions. Lab Exercise 1: Rapid Spanning-Tree Configuration

More information

Configuring IEEE 802.3ad Link Bundling and Load Balancing

Configuring IEEE 802.3ad Link Bundling and Load Balancing Configuring IEEE 802.3ad Link Bundling and Load Balancing This document describes how the IEEE 802.3ad link bundling and load balancing leverages the EtherChannel infrastructure within Cisco software to

More information

Cisco Discovery Protocol Version 2

Cisco Discovery Protocol Version 2 Cisco Discovery Protocol (formerly known as CDP) is a Layer 2, media-independent, and network-independent protocol that runs on Cisco devices and enables networking applications to learn about directly

More information

Configuring Port-Based Traffic Control

Configuring Port-Based Traffic Control CHAPTER 22 This chapter describes how to configure the port-based traffic control features on the Cisco ME 3400 Ethernet Access switch. For complete syntax and usage information for the commands used in

More information

If this is your first time configuring the switch, you will notice that the Switch IOS is almost identical to Router IOS.

If this is your first time configuring the switch, you will notice that the Switch IOS is almost identical to Router IOS. Spanning Tree Lab Objective Create a basic switch configuration and verify it. Determine which switch is selected as the root switch with the factory default settings. Force the other switch to be selected

More information

NVIDIA Professional Application Center

NVIDIA Professional Application Center NVIDIA Professional Application Center Network Licensing Guide 5 May 2017 Document version 2.0 Copyright Information 2017 NVIDIA Corporation. All rights reserved. This document is protected under copyright

More information

This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for non-commercial distribution and

This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for non-commercial distribution and This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for non-commercial distribution and exclusive use by instructors in the CCNA Exploration:

More information

PT Activity 2.5.1: Basic Switch Configuration

PT Activity 2.5.1: Basic Switch Configuration Topology NOTE TO USER: This activity is a variation of Lab 2.5.1. Packet Tracer may not support all the tasks specified in the hands-on lab. This activity should not be considered equivalent to completing

More information

Configuring the BeagleBone Black s Ethernet Port for SSH Access

Configuring the BeagleBone Black s Ethernet Port for SSH Access Configuring the BeagleBone Black s Ethernet Port for SSH Access NimbeLink Corp Updated: April 2016 PN 30112 rev 1 NimbeLink Corp. 2017. All rights reserved. 1 Table of Contents Table of Contents 2 1. Introduction

More information

Configuring Port-Based Traffic Control

Configuring Port-Based Traffic Control Overview of Port-Based Traffic Control, page 1 Finding Feature Information, page 2 Information About Storm Control, page 2 How to Configure Storm Control, page 4 Information About Protected Ports, page

More information

Lab Configuring Basic Switch Settings (Solution)

Lab Configuring Basic Switch Settings (Solution) (Solution) Topology Addressing Table Objectives Device Interface IP Address Subnet Mask Default Gateway S1 VLAN 99 192.168.1.2 255.255.255.0 192.168.1.1 PC-A NIC 192.168.1.10 255.255.255.0 192.168.1.1

More information

This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for non-commercial distribution and

This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for non-commercial distribution and This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for non-commercial distribution and exclusive use by instructors in the CCNA Exploration:

More information

Lab Troubleshooting Using traceroute Instructor Version 2500

Lab Troubleshooting Using traceroute Instructor Version 2500 Lab 9.3.4 Troubleshooting Using traceroute Instructor Version 2500 294-833 CCNA 2: Routers and Routing Basics v 3.1 - Lab 9.3.4 Copyright 2003, Cisco Systems, Inc. Objective Use the traceroute Cisco IOS

More information

Enter your answers to the questions in this lab using Canvas Quiz Ch.5 Global Unicast Address + Lab. Additional questions are included in the quiz.

Enter your answers to the questions in this lab using Canvas Quiz Ch.5 Global Unicast Address + Lab. Additional questions are included in the quiz. Lab: Introducing Global Unicast Addresses CIS 116 IPv6 Fundamentals Enter your answers to the questions in this lab using Canvas Quiz Ch.5 Global Unicast Address + Lab. Additional questions are included

More information

IOS and Configuration Basics

IOS and Configuration Basics APPENDIX C This appendix contains basic information about the Cisco Internet Operating System (IOS) software and includes the following sections: Cisco IOS Modes of Operation Getting Context-Sensitive

More information

LAB MANUAL for Computer Network

LAB MANUAL for Computer Network LAB MANUAL for Computer Network CSE-310 F Computer Network Lab L T P - - 3 Class Work : 25 Marks Exam : 25 MARKS Total : 50 Marks This course provides students with hands on training regarding the design,

More information

CCNA Layer 2 switching. Revision no.: PPT/2K605/03

CCNA Layer 2 switching. Revision no.: PPT/2K605/03 CCNA 640-801 Layer 2 switching Revision no.: PPT/2K605/03 What is Switching? It breaks the Collision Domain It takes the packet and forwards to destined port without any modification. Network still remains

More information

lab rip experiences with RIPv2 distance vector protocol

lab rip experiences with RIPv2 distance vector protocol lab rip experiences with RIPv2 distance vector protocol hosts need routing each host with a network stack performs some elementary routing ip layer nic eth0? lo the network stack may be used to access

More information

Lab 5.5.2: Challenge Spanning Tree Protocol

Lab 5.5.2: Challenge Spanning Tree Protocol Topology Diagram Addressing Table Device (Hostname) Interface IP Address Subnet Mask Default Gateway S1 VLAN 99 172.17.99.11 255.255.255.0 N/A S2 VLAN 99 172.17.99.12 255.255.255.0 N/A S3 VLAN 99 172.17.99.13

More information

Chapter 2 Lab 2-1, EIGRP Configuration, Bandwidth, and Adjacencies

Chapter 2 Lab 2-1, EIGRP Configuration, Bandwidth, and Adjacencies Chapter 2 Lab 2-1, EIGRP Configuration, Bandwidth, and Adjacencies Topology Objectives Background Configure EIGRP on multiple routers. Configure the bandwidth command to modify the EIGRP metric. Verify

More information

Lab - Configuring IPv6 Addresses on Network Devices

Lab - Configuring IPv6 Addresses on Network Devices Topology Addressing Table Device Interface IPv6 Address Prefix Length Default Gateway Objectives R1 G0/0 2001:DB8:ACAD:A::1 64 N/A G0/1 2001:DB8:ACAD:1::1 64 N/A S1 VLAN 1 2001:DB8:ACAD:1::B 64 N/A PC-A

More information

Lab Using Wireshark to Examine Ethernet Frames

Lab Using Wireshark to Examine Ethernet Frames Topology Objectives Part 1: Examine the Header Fields in an Ethernet II Frame Part 2: Use Wireshark to Capture and Analyze Ethernet Frames Background / Scenario When upper layer protocols communicate with

More information

Lab 1: Introduction to Linux Networking

Lab 1: Introduction to Linux Networking CMPE 150: Introduction to Computer Networks Fall 2011 http://courses.soe.ucsc.edu/courses/cmpe150/fall11/01/ Lab 1: Introduction to Linux Networking Materials: Please bring a USB drive to each lab section.

More information

Lab - Configuring VLANs and Trunking

Lab - Configuring VLANs and Trunking Topology Addressing Table Objectives Device Interface IP Address Subnet Mask Default Gateway S1 VLAN 1 192.168.1.11 255.255.255.0 N/A S2 VLAN 1 192.168.1.12 255.255.255.0 N/A PC-A NIC 192.168.10.3 255.255.255.0

More information

HOW-TO-GUIDE: demonstrating Fabric Attach using OpenVSwitch

HOW-TO-GUIDE: demonstrating Fabric Attach using OpenVSwitch HOW-TO-GUIDE: demonstrating Fabric Attach using OpenVSwitch 1 Target audience System Engineers interested to understand the Fabric Attach (FA) technology and/or for demo proposes. Why does it make sense

More information

StampA5D3x/PortuxA5/PanelA5. Quickstart Guide

StampA5D3x/PortuxA5/PanelA5. Quickstart Guide StampA5D3x/PortuxA5/PanelA5 Quickstart Guide StampA5D3x/PortuxA5/PanelA5 StampA5D3x/PortuxA5/PanelA5: Quickstart Guide Copyright 2015 taskit GmbH All rights to this documentation and to the product(s)

More information

Gns3 You Must Use 'manual Mode' To Connect A Link

Gns3 You Must Use 'manual Mode' To Connect A Link Gns3 You Must Use 'manual Mode' To Connect A Link It puts the IOS into a sleep state when it is not in active use and wakes it up only when Well the reason for adding the modules is they offer the ability

More information

XE2000/XE3000 IP-PBX: Getting Started Guide Package Contents

XE2000/XE3000 IP-PBX: Getting Started Guide Package Contents XE2000/XE3000 IP-PBX: Getting Started Guide Package Contents XE2000/XE3000 (2U 19'' width unit) Power cord Support hardware for 19'' cabinet Prerequisites You need a computer equipped with Internet browser.

More information

C H A P T E R Commands Cisco SFS Product Family Command Reference OL

C H A P T E R Commands Cisco SFS Product Family Command Reference OL CHAPTER 3 This chapter documents the following commands: aaa accounting, page 3-8 aaa authorization, page 3-9 action, page 3-11 addr-option, page 3-12 authentication, page 3-14 auto-negotiate (Ethernet

More information

Interface Management

Interface Management COSC301 Laboratory Manual Required Reading Prior to Lab To ensure you get plenty of time to ask for any help during the lab, please ensure you have read at least Section 1, A Map, Notation and a bit of

More information

CCNA Routing & Switching Lab Workbook - Full-Scale Lab 1

CCNA Routing & Switching Lab Workbook - Full-Scale Lab 1 CCNA Routing & Switching Lab Workbook - Full-Scale Lab 1 Task 1.1 Tasks You must load the initial configuration files for the section, FS Lab-1 Initial, which can be found in CCNA Routing & Switching Topology

More information

NETWORK LAB 2 Configuring Switch Desktop

NETWORK LAB 2 Configuring Switch Desktop Configuring Switch 1. Select the switch tab and then add a switch from the list of switches we have to the workspace, we will choose (2950-24) switch. 2. Add a number of PCs next to the switch in order

More information

Smart Install Concepts

Smart Install Concepts CHAPTER 1 Smart Install is a plug-and-play configuration and image-management feature that provides zero-touch deployment for new switches. This means that a customer can ship a switch to a location, place

More information

Lab 1.4.6B Implementing Port Security

Lab 1.4.6B Implementing Port Security Lab 1.4.6B Implementing Port Security Device Designation Device Name VLAN 1 Address Subnet mask S1 FC-ASW-1 10.0.0.2 255.255.255.0 PC1 Host 1 10.0.0.254 255.255.255.0 PC2 Host 2 10.0.0.253 255.255.255.0

More information

Lab Capturing and Analyzing Network Traffic

Lab Capturing and Analyzing Network Traffic Lab 1.2.2 Capturing and Analyzing Network Traffic Host Name IP Address Fa0/0 Subnet Mask IP Address S0/0/0 Subnet Mask Default Gateway RouterA 172.17.0.1 255.255.0.0 192.168.1.1 (DCE) 255.255.255.0 N/A

More information

Lecture (04) VTP Ports Security

Lecture (04) VTP Ports Security Lecture (04) VTP Ports Security By: Dr. Ahmed ElShafee ١ Dr. Ahmed ElShafee, ACU : Fall 2015, Practical App. Networks II VTP VLAN Trucking Protocol (VTP) is a Cisco proprietary protocol that propagates

More information

Internet Tool Practice. 이지민 장동현

Internet Tool Practice. 이지민 장동현 Internet Tool Practice 이지민 (jmlee@mmlab.snu.ac.kr) 장동현 (dhjang@mmlab.snu.ac.kr) 2011. 11. 2 1 Outline Internet Tools ping traceroute nslookup ifconfig arp netstat synack nmap Iperf crontab Homeworks 2

More information

APPLICATION NOTE. Scope. Reference Documents. Software Ethernet Bridge on SAMA5D3/D4. Atmel SMART SAMA5D3/D4 Series

APPLICATION NOTE. Scope. Reference Documents. Software Ethernet Bridge on SAMA5D3/D4. Atmel SMART SAMA5D3/D4 Series SMART APPLICATION NOTE Software Ethernet Bridge on SAMA5D3/D4 Atmel SMART SAMA5D3/D4 Series Scope The Atmel SMART SAMA5D3/D4 series are high-performance, power-efficient embedded MPUs based on the ARM

More information

Lab Exploring Cisco IOS and Configuring Basic Switch Settings

Lab Exploring Cisco IOS and Configuring Basic Switch Settings Topology Addressing Table Objectives Device Interface IP Address Subnet Mask Default Gateway S1 VLAN 99 192.168.1.2 255.255.255.0 192.168.1.1 PC-A NIC 192.168.1.10 255.255.255.0 192.168.1.1 Part 1: Cable

More information

Lab Using Wireshark to Examine Ethernet Frames

Lab Using Wireshark to Examine Ethernet Frames Topology Objectives Part 1: Examine the Header Fields in an Ethernet II Frame Part 2: Use Wireshark to Capture and Analyze Ethernet Frames Background / Scenario When upper layer protocols communicate with

More information

Packet Tracer Mini-Lab 05: Supplement Configuring 2 LANs with 2 Routers using CLI in Packet Tracer

Packet Tracer Mini-Lab 05: Supplement Configuring 2 LANs with 2 Routers using CLI in Packet Tracer Packet Tracer Mini-Lab 05: Supplement Configuring 2 LANs with 2 Routers using CLI in Packet Tracer CAVEAT: THE LABS IN CC2-180 MAY NOT WORK ENTIRELY AS PLANNED. WE WILL BE UTILIZING BOTH A SERVER 2012

More information

Chapter 3 Command List

Chapter 3 Command List Chapter 3 Command List This chapter lists all the commands in the CLI. The commands are listed in two ways: All commands are listed together in a single alphabetic list. See Complete Command List on page

More information

Access Server: User's and Developer's Guide <<< Previous Next >>>

Access Server: User's and Developer's Guide <<< Previous Next >>> 1 of 14 12/9/2008 10:18 AM Access Server: User's and Developer's Guide > Chapter 2. Getting Started with Access Server Access Server can be controlled in three ways: by using the WWW

More information

Cisco IOS Commands. abort CHAPTER

Cisco IOS Commands. abort CHAPTER CHAPTER 2 abort Use the abort VLAN database command to abandon the proposed new VLAN database, exit VLAN database mode, and return to privileged EXEC mode. abort This command has no arguments or keywords.

More information

LS9200 User Guide LinkSprite Technologies, Inc.

LS9200 User Guide LinkSprite Technologies, Inc. LS9200 User Guide LinkSprite Technologies, Inc. 1 / 17 Table of Contents 1. Foreword... 3 2. Features... 3 3. Part and jumper description... 4 Part description... 4 LED and Key description... 4 Jumper

More information

Configuring Port-Based Traffic Control

Configuring Port-Based Traffic Control CHAPTER 18 This chapter describes how to configure port-based traffic control features on the Catalyst 3750 Metro switch. For complete syntax and usage information for the commands used in this chapter,

More information