Implementing Inter-VLAN Routing. 2003, Cisco Systems, Inc. All rights reserved. 2-1

Size: px
Start display at page:

Download "Implementing Inter-VLAN Routing. 2003, Cisco Systems, Inc. All rights reserved. 2-1"

Transcription

1 Implementing Inter-VLAN Routing 2003, Cisco Systems, Inc. All rights reserved. 2-1

2 Internetwork Communications C:>ping Can two hosts on different subnets communicate without a router? No What would happen if a host tried to ping another host? They could not communicate. Would it send an ARP Request? Why or why not? The host would not send an ARP Request because there is no defaultgateway. 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

3 Internetwork Communications 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

4 InterVLAN Routing External Router VLAN 1 VLAN 2 VLAN 3 Router on a stick VLANs 1, 2, 3 Trunk Multilayer Switch VLAN 1 VLAN 2 VLAN 3 Or Trunk External Router Router(config)# inter fa 0/1 Router(config-if) ip address Router(config)# inter fa 0/2 Router(config-if) ip address Router(config)# inter fa 0/3 Router(config-if) ip address , Cisco Systems, Inc. All rights reserved. BCMSN v

5 Inter-VLAN Routing External Router Configuration Commands Configure on subinterface encapsulation dot1q (or isl) 10 ip address Verify show vlan 10 show ip route Router on a stick VLANs 1, 2, 3 Trunk 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

6 Inter-VLAN Routing on External Router: 802.1Q Trunk Link 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

7 Inter-VLAN Routing on External Router: ISL Trunk Link 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

8 Verifying Inter-VLAN Routing The ping command tests connectivity to remote hosts. 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

9 Verifying the Inter-VLAN Routing Configuration Router#show vlan Displays the current IP configuration per VLAN Router#show ip route Displays IP route table information Router#show ip interface brief Displays IP address on interfaces and current state of interface 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

10 Multilayer Switching 2003, Cisco Systems, Inc. All rights reserved. 2-10

11 Explaining Multilayer Switching 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

12 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

13 Multilayer Switch Interfaces Layer 2: Access or Trunk Ports Logical Interface (SVI) Physical Interface 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

14 Multilayer Switch Interfaces Layer 2: Access or Trunk Ports Logical Interface (SVI-L3) Physical Interface (L3) DLS1# show interface gig 0/2 switchport Name: Gig0/2 Switchport: Enabled <output omitted> 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

15 Multilayer Switch Interfaces If in Layer 3 mode switchport interface command puts the port into Layer 2 mode. 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

16 Layer 3 Port Configuration Physical Interfaces DLS1(config)# interface gig 0/1 DLS1(config-if)# no switchport DLS1(config-if)# ip address DLS2(config)# interface gig 0/1 DLS2(config-if)# no switchport DLS2(config-if)# ip address , Cisco Systems, Inc. All rights reserved. BCMSN v

17 Physical Interfaces and EtherChannel SwitchA(config)# interface port-channel 5 SwitchA(config-if)# no switchport SwitchA(config-if)# ip address SwitchB(config)# interface port-channel 5 SwitchB(config-if)# no switchport SwitchB(config-if)# ip address If several interfaces are bundled together using EtherChannel the IP address is assigned to the port-channel interface, not the individual physical links. To configure Layer 3 EtherChannels,: First you must create the port-channel logical interface Then you add the Ethernet ports into the port-channel 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

18 What about EtherChannel Interfaces? Port-channel 5 Port-channel SwitchA(config)# interface port-channel 5 SwitchA(config-if)# no switchport SwitchA(config-if)# ip address SwitchA(config)# interface range fa 0/11-12 SwitchA(config-if-range)# no ip address SwitchA(config-if-range)# no switchport SwitchA(config-if-range)# channel-group 5 mode active SwitchB(config)# interface port-channel 5 SwitchB(config-if)# no switchport Fa 0/11 Fa 0/11 Fa 0/12 Fa 0/12 SwitchB(config-if)# ip address SwitchB(config)# interface range fa 0/11-12 SwitchB(config-if-range)# no ip address SwitchB(config-if-range)# no switchport SwitchB(config-if-range)# channel-group 5 mode active First you must create the port-channel logical interface Then you add the Ethernet ports into the port-channel Using LACP in this example. Remember, the channel-group number is associated with the port-channel interface. 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

19 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

20 SVI Interfaces - Logical Interfaces Switch(config)# vlan vlan-number Switch(config-vlan)# name vlan-name SwitchA(config)# interface vlan vlan-number SwitchA(config-if)# ip address ip-address mask SwitchA(config-if)# no shutdown Layer 3 functionality can also be enabled for an entire VLAN. The IP address is assigned to the logical interface the VLAN. This is needed when routing is required between VLANs. SVI (Switched Virtual Interface) No physical connection VLANs must be created before the SVI can be used. The IP address associated of the VLAN interface is the default gateway of the workstation. 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

21 Configuring a Routed Port Step 1 : Configure IP routing. Switch(config)#ip routing Step 2 : Create a routed port. Switch(config-if)#no switchport Step 3 : Assign an IP address to the routed port. Switch(config-if)#ip address ip-address mask Step 4 : Configure the IP routing protocol if needed. Switch(config)#router ip_routing_protocol <options> 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

22 Configuring Inter-VLAN Routing Through an SVI Step 1 : Configure IP routing. Switch(config)#ip routing Step 2 : Create an SVI interface. Switch(config)#interface vlan vlan-id Step 3 : Assign an IP address to the SVI. Switch(config-if)#ip address ip-address mask Step 4 : Configure the IP routing protocol if needed. Switch(config)#router ip_routing_protocol <options> 2003, Cisco Systems, Inc. All rights reserved. 22 BCMSN v

23 Routing Enable routing on DLS1 and DLS2. Configure EIGRP DLS1 and DLS2. Turn off auto-summarization DLS1(config)# ip routing DLS1(config)# router eigrp 1 DLS1(config-router)# network DLS1(config-router)# network DLS1(config-router)# no auto-summary DLS2(config)# ip routing DLS2(config)# router eigrp 1 DLS2(config-router)# network DLS2(config-router)# network DLS2(config-router)# no auto-summary 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

24 Verifying DLS1#show ip route Core Network /24 is subnetted, 1 subnets D [90/ ] via , 00:00:07, FastEthernet0/ /24 is subnetted, 5 subnets C is directly connected, Vlan10 C is directly connected, Vlan11 D [90/ ] via , 01:29:41, GigabitEthernet0/1 DLS2 Networks (VLANs) D [90/ ] via , 01:29:41, GigabitEthernet0/1 C is directly connected, Vlan /30 is subnetted, 3 subnets C is directly connected, GigabitEthernet0/1 C is directly connected, FastEthernet0/1 D [90/28416] via , 01:17:18, GigabitEthernet0/1 DLS1# Network between DLS2 and Core 2003, Cisco Systems, Inc. All rights reserved. 24 BCMSN v

25 Defining Flows - MLS p3 p2 p1 Multilayer Switched Environment Host A Conventional Environment Host B 1 First Packet Host A 2 Host B Subsequent Packets Each packet of a traditional flow must be processed by the router The first packet of an MLS flow is processed by the router; all subsequent packets are switched 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

26 Layer 2 Switch Forwarding Process 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

27 Logical Packet Flow for a Multilayer Switch 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

28 Establishing an MLS Cache Entry Candidate Packet L3 Information Source IP = Destination IP = L2 Information Source MAC = 0010.f663.d000 Destination MAC = The MLS-SE receives initial frame Cache Entry? The MLS-SE reads and recognizes the destination MAC Address The MLS-SE checks the MLS cache for like entries The MLS-SE forwards the frame to the MLS-RP A f663.d , Cisco Systems, Inc. All rights reserved. BCMSN v B 0090.b

29 Establishing an MLS Cache Entry (cont.) Enable Packet L3 Information Source IP = Destination IP = L2 Information Source MAC = Destination MAC = 0090.b A 0010.f663.d The MLS-RP receives the frame and consults the routing table 2003, Cisco Systems, Inc. All rights reserved. BCMSN v B 0090.b The MLS-RP rewrites the header with the new destination MAC address The MLS-RP enters its own MAC address for the source address The MLS-RP forwards the frame to the MLS-SE

30 Switching Subsequent Frames in a Flow Incoming Frame L3 Information Source IP = Destination IP = L2 Information Source MAC = 0010.f663.d000 Destination MAC = A 0010.f663.d Destination IP Source IP Port DstPrt SrcPrt Destination Mac Vlan Port UDP b /9 MLS Cache Entry B b Rewritten Frame L3 Information Source IP = Destination IP = L2 Information Source MAC = Destination MAC = 0090.b The MLS-SE receives subsequent frames in the flow The MLS-SE compares the incoming frame with the MLS cache entry The MLS-SE rewrites the frame header The MLS-SE forwards the frame to the destination 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

31 IP Unicast Frame and Packet Rewrite Incoming IP Unicast Packet Rewritten IP Unicast Packet 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

32 Improving IP Routing Performance with MLS In this section we discuss the following topics: Multilayer Switching Fundamentals Configuring the Multilayer Switch Route Processor Applying Flow Masks Configuring the Multilayer Switch Switching Engine MLS Topologies Topology Examples Topology Quiz Unsupported Topology Topology Changes and Routing Impacts 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

33 MLS Topology Example 1 A 1 2 R2 R1 3 MLS-SE MLS-RP R B 1 2 Host A sends a packet to the default gateway R1 rewrites the frame header to reflect the destination as the next-hop router (R2) MLS-SE forwards the frame to R2 R2 rewrites the frame header to reflect the destination as Host B MLS-SE forwards the frame to Host B All subsequent frames are switched , Cisco Systems, Inc. All rights reserved. BCMSN v

34 MLS Topology Example 2 MLS-RP Host A sends a packet to the default gateway MLS-SE1 forwards the frame to MLS-SE2 MLS-SE2 forwards the frame to MLS-SE3 MLS-SE3 forwards the frame to MLS-RP1 MLS-RP1 rewrites the frame header and forwards the frame to MLS-SE3 MLS-SE3 forwards the frame to MLS-SE2 MLS-SE2 forwards the frame to MLS-SE1 MLS-SE1 forwards the frame to Host B All subsequent frames are switched through MLS-SE1 A MLS-SE3 6 MLS-SE2 7 MLS-SE1 8 9 B 10 Entries in MLS-SE2 and 3 time out 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

35 MLS-RP Advertisement Hello Message MLS-RP sends out multicast hello messages Messages contain MAC, VLAN, and route information Messages use the CGMP multicast well-known address 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

36 Receiving MLSP Hello Messages Hello Message Hello Message I am not a Layer 3 Switch but I will still pass on the message. All switches receive the hello message Layer 3 switches process the hello message IP multicast passes transparently through non- Cisco switches 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

37 Quiz: MLS Topology Example S1 MLS-RP Port in Blocking State X S2 S3 S4 A S5 S6 B S7 Original MLS path was A S4 S2 S1 S3 S7 B Spanning tree blocked the link between S1 and S3 What is the next available MLS path? 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

38 Answer: MLS Topology Example S2 S1 MLS-RP Port in blocking state X S3 S4 A S5 S6 B S7 First packet path = A S4 S2 S1 S2 S3 S7 B Subsequent packet path = A S4 S2 S3 S7 B 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

39 Unsupported MLS Topology VLAN41 VLAN42 RSM1 RSM2 A B 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

40 Unsupported MLS Topology Solution 1 VLAN 41 VLAN 42 MLS-RP 1 ISL Link MLS-SE 1 MLS-RP 2 MLS-SE 2 A B Configure an ISL link from MLS-SE1 to MLS-RP1 to carry both VLAN41 and VLAN , Cisco Systems, Inc. All rights reserved. BCMSN v

41 Unsupported MLS Topology Solution 2 VLAN 41 VLAN 42 MLS-RP 1 MLS-RP 2 Link 1 Link 2 MLS-SE 1 MLS-SE 2 A B Configure a second link from MLS-SE1 to MLS-RP1 to route for Subnet , Cisco Systems, Inc. All rights reserved. BCMSN v

42 Summary A router on a stick can be used to route between VLANs using either ISL or 802.1Q as the trunking protocol. A router on a stick requires subinterfaces, one for each VLAN. Verify inter-vlan routing by generating IP packets between two subnets. Multilayer switches can forward traffic at both Layer 2 and Layer 3. Multilayer switches rewrite the Layer 2 and Layer 3 header using tables held in hardware. 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

43 Deploying CEF-Based Multilayer Switching 2003, Cisco Systems, Inc. All rights reserved. 2-43

44 Multilayer Switching Traditional MLS CEF-Based MLS Multilayer switching - ability of a Catalyst switch to support switching and routing of packets in hardware. Optional support for Layers 4 through 7 switching in hardware as well. A route processor (or Layer 3 engine) must download software-based routing, switching, access lists, QoS, and other information to the hardware for packet processing. 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

45 Traditional MLS RP Dual effort between: Route Processor (RP) Switching Engine (SE) Traditional MLS: Route once, switch many Specialized Application-Specific Integrated Circuits (ASICs) perform Layer 2 rewrite operations of routed packets: Source MAC address Destination MAC address Cyclic redundancy check (CRC). Because the source and destination MAC addresses change during Layer 3 rewrites, the switch must recalculate the CRC for these new MAC addresses. 2003, Cisco Systems, Inc. All rights reserved. BCMSN v SE

46 Traditional MLS SE: Listens in to the first packet going to the router (RP) and going from the router (RP). If the SE can switch the packet in both directions: It can learn a shortcut path for subsequent packets to use. Thus, bypassing the router (RP). This technique is also known as: Netflow-based switching. With traditional MLS, the Layer 3 engine (route processor) and switching ASICs work together to build Layer 3 entries on the switch. 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

47 Traditional MLS dot1q Tag (inside Eth. Hdr) VLAN 1 Ethernet Header IP Header IP Data D-MAC= C S-MAC= 00-AA AA S-IP = D-IP = The switch forwards the first packet in any flow to the Layer 3 engine for processing using software switching/routing. After the routing of the first packet in the flow, the Layer 3 engine programs the hardware-switching components for routing for subsequent packets. 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

48 Candidate Packet Info Layer 3 Info S-IP D-IP Layer 2 Info S-MAC 00-AA D-MAC C MLS- SE MLS- RP The Destination MAC Address is one of the router s interfaces. There is not an existing flow, so I will flag this as a candidate packet. dot1q Tag (inside Eth. Hdr) VLAN 1 D-MAC= C Ethernet Header IP Header IP Data S-MAC= 00-AA S-IP = D-IP = Workstation A sends a packet to workstation B, Workstation A sends the packet to its default gateway (which is the RSM). Switch (MLS-SE) recognizes this packet as an MLS candidate packet because the destination MAC address matches the MAC address of the MLS router (MLS-RP). As a result, the switch creates a candidate entry for this flow. 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

49 MLS- RP MLS- SE dot1q Tag (inside Eth. Hdr) VLAN 2 D-MAC= 00-AA Ethernet Header IP Header IP Data S-MAC= C S-IP = D-IP = Next, the router accepts the packets from workstation A, rewrites the Layer 2 MAC addresses and CRC, and forwards the packet to workstation B. The switch refers to the routed packet from the RSM as the enabler packet. 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

50 MLS- RP Candidate Packet Info Layer 3 Info S-IP D-IP Layer 2 Info S-MAC 00-AA D-MAC C MLS- SE dot1q Tag (inside Eth. Hdr) VLAN 2 D-MAC= 00-AA Ethernet Header IP Header IP Data S-MAC= C S-IP = D-IP = MLS-SE recognizes various matches including CAM, details not included. Basically, the MLS-SE recognizes that the packet going out of VLAN 2 was the same one that came in on VLAN 1. The switch, upon seeing both the candidate and enabler packets, creates an MLS entry in hardware (MLS Cache) such that the switch rewrites and forwards all future packets matching this flow. 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

51 Candidate Packet Info Layer 3 Info S-IP D-IP Layer 2 Info S-MAC 00-AA D-MAC C Future Packets MLS- SE MLS- RP Found match in MLS Cache, rewrite Ethernet Header and send directly to Host B, forget the router! MLS Cache Dst IP Src IP Port Dst Port Src Port Dst MAC TCP AA Src MAC C VLAN Interface 2 3/1 As future packets from the flow arrive, the MLS-SE uses the destination IP address to look up the entry in the MLS cache. Finding a match, rewrite engine modifies the necessary header information and forwards the frame (the packet is not forwarded to the router). The rewrite operation modifies all the same fields initially modified by the router for the first packet, including the source MAC and destination MAC addresses. 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

52 CEF-Based Multilayer Switches CEF caches routing information in the FIB table and Layer 2 next-hop addresses in the adjacency table. 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

53 CEF CEF-based MLS forwarding model is used to: Download the control plane information (such as the access lists) to the data plane (on the supervisor, port, or line card) for hardware switching of packets. Control plane represents the Layer 3 engine (route processor) Data plane represents the hardware components such as ASICs used by the switch for hardware switching. CEF is a topology-based forwarding model in which all routing information is prepopulated into a forwarding information base (FIB). Result is switches can quickly look up routing information such as IP adjacencies and next-hop IP and MAC addresses. 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

54 CEF Routing Table The two main components of CEF are : 1. FIB 2. Adjacency Table DLS1#show ip cef Prefix Next Hop Interface /0 no route /32 receive / FastEthernet0/ /24 attached Vlan /32 receive Vlan /32 receive Vlan /32 receive Vlan /24 attached Vlan /32 receive Vlan /32 receive Vlan /32 receive Vlan / GigabitEthernet0/ / GigabitEthernet0/ /24 attached Vlan /32 receive Vlan /32 receive Vlan /32 receive Vlan99 Forwarding information base Makes IP destination switching decisions /30 attached GigabitEthernet0/ /32 receive GigabitEthernet0/1 Similar to a routing table: Reformatted /32 into an ordered receive list with most GigabitEthernet0/1 specific route first for each IP network/subnet in the routing /32 table GigabitEthernet0/ /32 receive GigabitEthernet0/1 Ordered with most specific (longest /30 match) first followed attached by less specific FastEthernet0/1 subnets /32 receive FastEthernet0/1 Mirror image of the forwarding information /32 contained in the IP routing FastEthernet0/1 table /32 receive FastEthernet0/1 When routing or topology changes /32 occur in the network, receive the IP routing FastEthernet0/1 table is updated, and those changes are reflected /30 in the FIB GigabitEthernet0/ /4 drop Maintains next-hop address information /24 based on the receive information in the IP routing table /32 receive DLS1# 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

55 CEF Adjacency tables Network nodes in the network are said to be adjacent if they can reach each other with a single hop across a link layer. (OSPF, EIGRP) A router normally maintains: Routing table containing Layer 3 network and next-hop information ARP table containing Layer 3 to Layer 2 address mapping. These tables are kept independently. 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

56 CEF-Based MLS Lookups 1. Layer 3 packets initiate TCAM lookup. 2. The longest match returns adjacency with rewrite information. 3. The packet is rewritten per adjacency information and forwarded. 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

57 CEF-Based MLS Operation 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

58 Packet Rewrite Egress Packet 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

59 Packet Rewrite Host B s MAC Address L2 Checksum L3 Checksum Default Gateway Host A TTL The switch receives another packet: After a multilayer switch finds valid entries in the FIB and adjacency tables, a packet is almost ready to be forwarded. One step remains the packet header information must be rewritten. Multilayer switching occurs as quick table lookups: Find the next-hop address Outbound switch port. The IP header must also be adjusted, as if a traditional router had done the forwarding (TTL). 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

60 Packet Rewrite Host B s MAC Address L2 Checksum L3 Checksum Default Host B Gateway MAC Add Host L3 switch A outbound interface TTL - 1 The packet rewrite engine makes the following changes to the packet just prior to forwarding: Layer 2 destination address Changed to the next-hop device's MAC address Layer 2 source address Changed to the outbound Layer 3 switch interface's MAC address Layer 3 IP Time To Live (TTL) Decremented by one, as one router hop has just occurred Layer 2 frame checksum Recalculated to include changes to the Layer 2 and Layer 3 headers Layer 3 IP checksum Recalculated to include changes to the IP header 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

61 Packet Rewrite Host B s MAC Address L2 Checksum L3 Checksum Default Host B Gateway MAC Add Host L3 switch A outbound interface TTL - 1 A traditional router would normally make the same changes to each packet. The multilayer switch must act as if a traditional router were being used, making identical changes. The multilayer switch: Can do this very efficiently with dedicated packet rewrite hardware and with address information obtained from table lookups. 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

62 Packet Rewrite Host B s MAC Address L2 Checksum L3 Checksum Default Host B Gateway MAC Add Host L3 switch A outbound interface TTL - 1 The switch performs a Layer 3 lookup and finds a CEF entry for Host B. The switch rewrites packets per the adjacency information and forwards the packet to Host B on its VLAN. 2003, Cisco Systems, Inc. All rights reserved. 62 BCMSN v

63 CEF Catalyst switches do not support routing of all types of frames in hardware. For example, the following list details common frame types that are not supported by hardware switching: Packets with IP header options Packets sourced from or destined to tunnel interfaces Packets using Ethernet encapsulation types other than ARPA Packets that require fragmentation (exceed MTU of the interface) Two types of CEF Central CEF or Accelerated CEF Forwarding decisions done by ASIC that is central to all interfaces. Distributed CEF (dcef) Forwarding decisions done on independently on interfaces or line modules line cards (faster). 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

64 Multilayer Switch Packet Forwarding Process Some IP packets cannot be processed in hardware. If an IP packet cannot be processed in hardware, it is processed by the Layer 3 engine. 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

65 Enabling CEF The commands required to enable CEF are platform dependent: On the Cisco Catalyst 4000 switch Switch(config-if)#ip cef On the Cisco Catalyst 3550 switch Switch(config-if)#ip route-cache cef 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

66 Verifying CEF Switch#show ip cef [type mod/port vlan_interface] [detail] Switch# show ip cef vlan 11 detail IP CEF with switching (Table Version 11), flags=0x0 10 routes, 0 reresolve, 0 unresolved (0 old, 0 new), peak 0 13 leaves, 12 nodes, bytes, 14 inserts, 1 invalidations 0 load sharing elements, 0 bytes, 0 references universal per-destination load sharing algorithm, id 4B936A24 2(0) CEF resets, 0 revisions of existing leaves Resolution Timer: Exponential (currently 1s, peak 1s) 0 in-place/0 aborted modifications refcounts: 1061 leaf, 1052 node Table epoch: 0 (13 entries at this epoch) /24, version 6, epoch 0, attached, connected 0 packets, 0 bytes via Vlan11, 0 dependencies valid glean adjacency 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

67 Verify Layer 3 Switching Switch#show interface {{type mod/port} {port-channel number}} begin L3 Switch#show interface fastethernet 3/3 begin L3 L3 in Switched: ucast: 0 pkt, 0 bytes - mcast: 12 pkt, 778 bytes mcast L3 out Switched: ucast: 0 pkt, 0 bytes - mcast: 0 pkt, 0 bytes packets input, bytes, 0 no buffer Received broadcasts, 2 runts, 0 giants, 0 throttles... Switch# 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

68 Displaying Hardware Layer 3 Switching Statistics Switch#show interfaces {{type mod/port} {port-channel number}} include switched Switch#show interfaces gigabitethernet 9/5 include switched L2 Switched: ucast: 8199 pkt, bytes - mcast: 6980 pkt, bytes L3 in Switched: ucast: 3045 pkt, bytes - mcast: 0 pkt, 0 bytes mcast L3 out Switched: ucast: 2975 pkt, bytes - mcast: 0 pkt, 0 bytes 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

69 Adjacency Information Switch#show adjacency [{{type mod/port} {port-channel number}} detail internal summary] Switch#show adjacency gigabitethernet 9/5 detail Protocol Interface Address IP GigabitEthernet9/ (11) 504 packets, 6110 bytes 00605C865B F83FA50800 ARP 03:49: , Cisco Systems, Inc. All rights reserved. BCMSN v

70 Debugging CEF Operations Switch#debug ip cef {drops access-list receive events prefix-ipc table} Displays debug information for CEF Switch#debug ip cef {ipc interface-ipc} Displays debug information related to IPC in CEF Switch#ping ip Performs an extended ping 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

71 Summary Layer 3 switching is high-performance packet switching in hardware. MLS functionality can be implemented through CEF. CEF uses tables in hardware to forward packets. Specific commands are used to enable and verify CEF operations. Commands to enable CEF are platform dependent. CEF problems can be matched to specific solutions. Specific commands are used to troubleshoot and solve CEF problems. Ordered steps assist in troubleshooting CEF-based problems. 2003, Cisco Systems, Inc. All rights reserved. BCMSN v

Implementing Inter-VLAN Routing

Implementing Inter-VLAN Routing Internetwork Communications C:>ping 172.16.30.100 Implementing Inter-VLAN Routing Can two hosts on different subnets communicate without a router? No What would happen if a host tried to ping another host?

More information

Implementing Inter-VLAN Routing

Implementing Inter-VLAN Routing Internetwork Communications C:>ping 72.6.30.00 Implementing Inter-VLN Routing Can two hosts on different subnets communicate without a router? No What would happen if a host tried to ping another host?

More information

Layer 3 Switch Processing. CEF-Based Multilayer Switches. Layer 3 Switch Processing (Cont.)

Layer 3 Switch Processing. CEF-Based Multilayer Switches. Layer 3 Switch Processing (Cont.) Layer 3 Switch Processing In Layer 3 switches, the control path and data path are relatively independent. The control path code, such as routing protocols, runs on the route processor. Data packets are

More information

Describing the STP. Enhancements to STP. Configuring PortFast. Describing PortFast. Configuring. Verifying

Describing the STP. Enhancements to STP. Configuring PortFast. Describing PortFast. Configuring. Verifying Enhancements to STP Describing the STP PortFast Per VLAN Spanning Tree+ (PVST+) Rapid Spanning Tree Protocol (RSTP) Multiple Spanning Tree Protocol (MSTP) MSTP is also known as Multi-Instance Spanning

More information

RealCiscoLAB.com. Inter-VLAN Routing with an Internal Route Processor and Monitoring CEF Functions

RealCiscoLAB.com. Inter-VLAN Routing with an Internal Route Processor and Monitoring CEF Functions RealCiscoLAB.com CCNPv6 SWITCH Inter-VLAN Routing with an Internal Route Processor and Monitoring CEF Functions Topology Objective Background Route between VLANs using a 3560 switch with an internal route

More information

Configuring IP Unicast Layer 3 Switching on Supervisor Engine 1

Configuring IP Unicast Layer 3 Switching on Supervisor Engine 1 CHAPTER 19 Configuring IP Unicast Layer 3 Switching on Supervisor Engine 1 The features described in this chapter are supported only on Supervisor Engine 1, the policy feature card (PFC), and the Multilayer

More information

Chapter 5: Inter-VLAN Routing. Routing & Switching

Chapter 5: Inter-VLAN Routing. Routing & Switching Chapter 5: Inter-VLAN Routing Routing & Switching What is Inter-VLAN routing? Layer 2 switches cannot forward traffic between VLANs without the assistance of a router. Inter-VLAN routing is a process for

More information

IP MultiLayer Switching Sample Configuration

IP MultiLayer Switching Sample Configuration IP MultiLayer Switching Sample Configuration Document ID: 12022 Contents Introduction Prerequisites Requirements Components Used Conventions Background Information Configure Network Diagram MLS Operation

More information

University of Jordan Faculty of Engineering & Technology Computer Engineering Department Advance Networks Laboratory Exp.4 Inter-VLAN Routing

University of Jordan Faculty of Engineering & Technology Computer Engineering Department Advance Networks Laboratory Exp.4 Inter-VLAN Routing University of Jordan Faculty of Engineering & Technology Computer Engineering Department Advance Networks Laboratory 0907529 Exp.4 Inter-VLAN Routing Objectives 1. Describe the three primary options for

More information

VLANs. 2003, Cisco Systems, Inc. All rights reserved. 2-1

VLANs. 2003, Cisco Systems, Inc. All rights reserved. 2-1 VLANs 2003, Cisco Systems, Inc. All rights reserved. 2-1 Traditional Campus Networks Broadcast Domain Collision Domain 1 Collision Domain 2 Bridges terminate collision domains 2003, Cisco Systems, Inc.

More information

VLANs. 2003, Cisco Systems, Inc. All rights reserved. 2-1

VLANs. 2003, Cisco Systems, Inc. All rights reserved. 2-1 VLANs 2003, Cisco Systems, Inc. All rights reserved. 2-1 Traditional Campus Networks Broadcast Domain Collision Domain 1 Collision Domain 2 Bridges terminate collision domains 2003, Cisco Systems, Inc.

More information

Lab 5-1 Hot Standby Router Protocol

Lab 5-1 Hot Standby Router Protocol Lab 5-1 Hot Standby Router Protocol Topology Diagram Objective Configure inter-vlan routing with HSRP to provide redundant, fault tolerant routing to the internal network. Scenario Step 1 HSRP provides

More information

VLANs. Traditional Campus Networks. Performance Issues. Broadcast Issues. Bridges terminate collision domains

VLANs. Traditional Campus Networks. Performance Issues. Broadcast Issues. Bridges terminate collision domains Traditional Campus Networks Broadcast Domain VLANs Collision Domain 1 Collision Domain 2 Bridges terminate collision domains 2003, Cisco Systems, Inc. All rights reserved. 2-1 2003, Cisco Systems, Inc.

More information

Route between VLANs using a 3560 switch with an internal route processor using Cisco Express Forwarding (CEF).

Route between VLANs using a 3560 switch with an internal route processor using Cisco Express Forwarding (CEF). Lab 3- Part I Inter-VLAN routing with a Multilayer Switch Configuration and Management of Networks - 2014 Topology Objective Route between VLANs using a 3560 switch with an internal route processor using

More information

RealCiscoLAB.com. Configuring EtherChannel. Topology. Objective. Background. Required Resources. CCNPv6 Switch. Configure EtherChannel.

RealCiscoLAB.com. Configuring EtherChannel. Topology. Objective. Background. Required Resources. CCNPv6 Switch. Configure EtherChannel. RealCiscoLAB.com CCNPv6 Switch Configuring EtherChannel Topology Objective Background Configure EtherChannel. Four switches have just been installed. The distribution layer switches are Catalyst 3560 switches,

More information

Configuring SPAN. About SPAN. SPAN Sources

Configuring SPAN. About SPAN. SPAN Sources This chapter describes how to configure an Ethernet switched port analyzer (SPAN) to analyze traffic between ports on Cisco NX-OS devices. This chapter contains the following sections: About SPAN, page

More information

Configuring VRF-lite CHAPTER

Configuring VRF-lite CHAPTER CHAPTER 36 Virtual Private Networks (VPNs) provide a secure way for customers to share bandwidth over an ISP backbone network. A VPN is a collection of sites sharing a common routing table. A customer

More information

RealCiscoLAB.com. Configure inter-vlan routing with HSRP to provide redundant, fault-tolerant routing to the internal network.

RealCiscoLAB.com. Configure inter-vlan routing with HSRP to provide redundant, fault-tolerant routing to the internal network. RealCiscoLAB.com CCNPv6 SWITCH Hot Standby Router Protocol Topology Objective Background Configure inter-vlan routing with HSRP to provide redundant, fault-tolerant routing to the internal network. Hot

More information

Configuring Link Aggregation on the ML-MR-10 card

Configuring Link Aggregation on the ML-MR-10 card CHAPTER 34 Configuring Link Aggregation on the ML-MR-10 card This chapter applies to the ML-MR-10 card and describes how to configure link aggregation for the ML-Series cards, both EtherChannel and packet-over-sonet/sdh

More information

Ch. 5 Maintaining and Troubleshooting Routing Solutions. Net412- Network troubleshooting

Ch. 5 Maintaining and Troubleshooting Routing Solutions. Net412- Network troubleshooting Ch. 5 Maintaining and Troubleshooting Routing Solutions Net412- Network troubleshooting Troubleshooting Routing Network Layer Connectivity EIGRP OSPF 2 Network Connectivity Just like we did when we looked

More information

Configuring Web Cache Services By Using WCCP

Configuring Web Cache Services By Using WCCP CHAPTER 44 Configuring Web Cache Services By Using WCCP This chapter describes how to configure your Catalyst 3560 switch to redirect traffic to wide-area application engines (such as the Cisco Cache Engine

More information

Cisco ME 3400 Ethernet Access Switch Show Platform Commands

Cisco ME 3400 Ethernet Access Switch Show Platform Commands APPENDIXC Cisco ME 3400 Ethernet Access Switch Show Platform Commands This appendix describes the show platform privileged EXEC commands that have been created or changed for use with the Cisco ME 3400

More information

Configuring VLANs. Understanding VLANs CHAPTER

Configuring VLANs. Understanding VLANs CHAPTER CHAPTER 11 This chapter describes how to configure normal-range VLANs (VLAN IDs 1 to 1005) and extended-range VLANs (VLAN IDs 1006 to 4094) on your Catalyst 3550 switch. It includes information about VLAN

More information

MPLS VPN. 5 ian 2010

MPLS VPN. 5 ian 2010 MPLS VPN 5 ian 2010 What this lecture is about: IP CEF MPLS architecture What is MPLS? MPLS labels Packet forwarding in MPLS MPLS VPNs 3 IP CEF & MPLS Overview How does a router forward packets? Process

More information

Chapter 5 Lab 5-1 Inter-VLAN Routing INSTRUCTOR VERSION

Chapter 5 Lab 5-1 Inter-VLAN Routing INSTRUCTOR VERSION CCNPv7.1 SWITCH Chapter 5 Lab 5-1 Inter-VLAN Routing INSTRUCTOR VERSION Topology Objectives Implement a Layer 3 EtherChannel Implement Static Routing Implement Inter-VLAN Routing Background Cisco's switching

More information

Maintaining Specific VLAN Identification. Comparing ISL and 802.1Q. VLAN Trunking

Maintaining Specific VLAN Identification. Comparing ISL and 802.1Q. VLAN Trunking Maintaining Specific VLAN Identification Specifically developed for multi-vlan interswitch communications Places a unique identifier in each frame Functions at Layer 2 2003, Cisco Systems, Inc. All rights

More information

Multiprotocol Label Switching (MPLS)

Multiprotocol Label Switching (MPLS) 36 CHAPTER Prerequisites for MPLS, page 36-1 Restrictions for MPLS, page 36-1 Information About MPLS, page 36-2 Default Settings for MPLS, page 36-7 How to Configure MPLS Features, page 36-7 Configuration

More information

Configuring VLANs. Understanding VLANs CHAPTER

Configuring VLANs. Understanding VLANs CHAPTER CHAPTER 14 This chapter describes how to configure normal-range VLANs (VLAN IDs 1 to 1005) and extended-range VLANs (VLAN IDs 1006 to 4094) on the Catalyst 3750 switch. It includes information about VLAN

More information

Chapter 3: VLANs. Routing & Switching

Chapter 3: VLANs. Routing & Switching Chapter 3: VLANs Routing & Switching VLAN Definitions A VLAN is a logical partition of a Layer 2 network. VLANs logically group hosts, regardless of physical location. Multiple partitions can be created,

More information

CCNA Practice test. 2. Which protocol can cause high CPU usage? A. NTP B. WCCP C. Telnet D. SNMP Answer: D

CCNA Practice test. 2. Which protocol can cause high CPU usage? A. NTP B. WCCP C. Telnet D. SNMP Answer: D 1. Which network would support at least 30 hosts? A. 10.0.0.0 255.255.255.252 B. 10.0.0.0 255.255.255.240 C. 10.0.0.0 255.255.255.224 D. 10.0.0.0 255.255.255.248 2. Which protocol can cause high CPU usage?

More information

Chapter 16. Configuring IPv4 Addresses and Routes

Chapter 16. Configuring IPv4 Addresses and Routes Chapter 16. Configuring IPv4 Addresses and Routes This chapter covers the following exam topics: Operation of IP Data Networks Predict the data flow between two hosts across a network. IP Routing Technologies

More information

1 of :22

1 of :22 Feedback: Help us help you Please rate this document. Excellent Good Average Fair Poor This document solved my problem. Yes No Just Browsing Suggestions to improve this document. (512 character limit)

More information

BraindumpsIT. BraindumpsIT - IT Certification Company provides Braindumps pdf!

BraindumpsIT.  BraindumpsIT - IT Certification Company provides Braindumps pdf! BraindumpsIT http://www.braindumpsit.com BraindumpsIT - IT Certification Company provides Braindumps pdf! Exam : 300-115 Title : Implementing Cisco IP Switched Networks Vendor : Cisco Version : DEMO Get

More information

Configuring IPv4. Finding Feature Information. This chapter contains the following sections:

Configuring IPv4. Finding Feature Information. This chapter contains the following sections: This chapter contains the following sections: Finding Feature Information, page 1 Information About IPv4, page 2 Virtualization Support for IPv4, page 6 Licensing Requirements for IPv4, page 6 Prerequisites

More information

Configuring IP Multicast

Configuring IP Multicast CHAPTER 27 This chapter describes IP multicast routing on the Catalyst 4500 series switch. It also provides procedures and examples to configure IP multicast routing. Note For complete syntax and usage

More information

Configuring VLANs. Understanding VLANs CHAPTER

Configuring VLANs. Understanding VLANs CHAPTER CHAPTER 12 This chapter describes how to configure normal-range VLANs (VLAN IDs 1 to 1005) and extended-range VLANs (VLAN IDs 1006 to 4094) on the switch. It includes information about VLAN membership

More information

CCENT Study Guide. Chapter 11 VLANs and Inter-VLAN Routing

CCENT Study Guide. Chapter 11 VLANs and Inter-VLAN Routing CCENT Study Guide Chapter 11 VLANs and Inter-VLAN Routing Chapter 11 Objectives The CCENT Topics Covered in this chapter include: 2.0 LAN Switching Technologies 2.4 Configure, verify, and troubleshoot

More information

Behavior of Cisco Discovery Protocol between Routers and Switches

Behavior of Cisco Discovery Protocol between Routers and Switches Behavior of Cisco Discovery Protocol between Routers and Switches Document ID: 118736 Contributed by Meghana Tandon, Sumanth Srinath, and Vishnu Asok, Cisco TAC Engineers. May 06, 2015 Contents Introduction

More information

Configuring VLANs. Finding Feature Information. Prerequisites for VLANs

Configuring VLANs. Finding Feature Information. Prerequisites for VLANs Finding Feature Information, page 1 Prerequisites for VLANs, page 1 Restrictions for VLANs, page 2 Information About VLANs, page 2 How to Configure VLANs, page 7 Monitoring VLANs, page 19 Where to Go Next,

More information

DOiT-200v6 VOLUME II I2 R2 4 N1. DOiT-200v6 Lab 16 Multi-Topic CCIE-Level Scenario. For CCIE Candidates

DOiT-200v6 VOLUME II I2 R2 4 N1. DOiT-200v6 Lab 16 Multi-Topic CCIE-Level Scenario. For CCIE Candidates Revision 7.0 (10/26/2005) DOiT-200v6-SCENARIO 16 Page 1 NETMASTERCLASS ROUTING AND SWITCHING CCIE TRACK DOiT-200v6 VOLUME II 4 I2 R2 3 3 R5 I5 3 3 R6 R1 4 N1 4 4 2 2 1 4 I3 R3 3 1 R4 3 N2 N1 I4 1 R7 DOiT-200v6

More information

Configuring Network Security with ACLs

Configuring Network Security with ACLs 26 CHAPTER This chapter describes how to use access control lists (ACLs) to configure network security on the Catalyst 4500 series switches. Note For complete syntax and usage information for the switch

More information

Configuring SPAN and RSPAN

Configuring SPAN and RSPAN 34 CHAPTER This chapter describes how to configure the Switched Port Analyzer (SPAN) and Remote SPAN (RSPAN) on the Catalyst 4500 series switches. SPAN selects network traffic for analysis by a network

More information

Implement Inter-VLAN Routing. LAN Switching and Wireless Chapter 6 Modified by Tony Chen 11/01/2008

Implement Inter-VLAN Routing. LAN Switching and Wireless Chapter 6 Modified by Tony Chen 11/01/2008 Implement Inter-VLAN Routing LAN Switching and Wireless Chapter 6 Modified by Tony Chen 11/01/2008 ITE I Chapter 6 2006 Cisco Systems, Inc. All rights reserved. Cisco Public 1 Notes: If you see any mistake

More information

3. What could you use if you wanted to reduce unnecessary broadcast, multicast, and flooded unicast packets?

3. What could you use if you wanted to reduce unnecessary broadcast, multicast, and flooded unicast packets? Nguyen The Nhat - Take Exam Exam questions Time remaining: 00: 00: 51 1. Which command will give the user TECH privileged-mode access after authentication with the server? username name privilege level

More information

Configuring IRB. Integrated Routing and Bridging CHAPTER

Configuring IRB. Integrated Routing and Bridging CHAPTER CHAPTER 11 This chapter describes how to configure integrated routing and bridging (IRB) for the ML-Series card. For more information about the Cisco IOS commands used in this chapter, refer to the Cisco

More information

Configuring Cache Services Using the Web Cache Communication Protocol

Configuring Cache Services Using the Web Cache Communication Protocol Configuring Cache Services Using the Web Cache Communication Protocol Finding Feature Information, page 1 Prerequisites for WCCP, page 1 Restrictions for WCCP, page 2 Information About WCCP, page 3 How

More information

Configuring VLANs. Understanding VLANs CHAPTER

Configuring VLANs. Understanding VLANs CHAPTER CHAPTER 9 This chapter describes how to configure normal-range VLANs (VLAN IDs 1 to 1005) and extended-range VLANs (VLAN IDs 1006 to 4094). It includes information about VLAN membership modes, VLAN configuration

More information

Configuring SPAN and RSPAN

Configuring SPAN and RSPAN 41 CHAPTER This chapter describes how to configure the Switched Port Analyzer (SPAN) and Remote SPAN (RSPAN) on the Catalyst 4500 series switches. SPAN selects network traffic for analysis by a network

More information

26 CHAPTER Virtual Private Networks (VPNs) provide a secure way for customers to share bandwidth over an ISP backbone network. A VPN is a collection of sites sharing a common routing table. A customer

More information

Configuring CEF Network Accounting

Configuring CEF Network Accounting This module contains information about and instructions for configuring network accounting for Cisco Express Forwarding. Accounting produces the statistics that enable you to better understand Cisco Express

More information

Configuring Network Access to the GGSN

Configuring Network Access to the GGSN CHAPTER 7 This chapter describes how to configure access from the gateway GPRS support node (GGSN) to a serving GPRS support node (SGSN), public data network (PDN), and optionally to a Virtual Private

More information

Configuring IEEE 802.1Q Tunneling and Layer 2 Protocol Tunneling

Configuring IEEE 802.1Q Tunneling and Layer 2 Protocol Tunneling CHAPTER 14 Configuring IEEE 802.1Q Tunneling and Layer 2 Protocol Tunneling With Release 12.1(13)E and later, the Catalyst 6500 series switches support IEEE 802.1Q tunneling and Layer 2 protocol tunneling.

More information

Exam4Tests. Latest exam questions & answers help you to pass IT exam test easily

Exam4Tests.   Latest exam questions & answers help you to pass IT exam test easily Exam4Tests http://www.exam4tests.com Latest exam questions & answers help you to pass IT exam test easily Exam : 200-101 Title : Interconnecting Cisco Networking Devices Part 2 (ICND2) Vendor : Cisco Version

More information

Configuring VLAN Interfaces

Configuring VLAN Interfaces CHAPTER1 The Cisco Application Control Engine (ACE) module does not have any external physical interfaces to receive traffic from clients and servers. Instead, it uses internal VLAN interfaces. You assign

More information

TestOut Routing and Switching Pro - English 6.0.x COURSE OUTLINE. Modified

TestOut Routing and Switching Pro - English 6.0.x COURSE OUTLINE. Modified TestOut Routing and Switching Pro - English 6.0.x COURSE OUTLINE Modified 2017-07-10 TestOut Routing and Switching Pro Outline- English 6.0.x Videos: 133 (15:42:34) Demonstrations: 78 (7:22:19) Simulations:

More information

Lab 5: Inter-VLANs Routing

Lab 5: Inter-VLANs Routing Lab 5: Inter-VLANs Routing Network Topology:- Device Interface IP Address Subnet Mask Gateway/Clock Rate Fa 0/0.10 10.5.0.1 255.255.255.192 ----- R1 Fa 0/0.20 10.6.0.1 255.255.255.192 ----- Fa 0/0.30 10.10.0.1

More information

Application Guide. VLANs for improved Q-SYS performance

Application Guide. VLANs for improved Q-SYS performance Application Guide Rev. A, 6 June 2018 OPTIMIZE Q-SYS PERFORMANCE: CREATE DEDICATED VLANS. One way to greatly ensure the reliability and performance of a Q-SYS network is putting Q-SYS traffic on one or

More information

Configuring VLAN Interfaces

Configuring VLAN Interfaces CHAPTER1 The Cisco Application Control Engine (ACE) module does not have any external physical interfaces to receive traffic from clients and servers. Instead, it uses internal VLAN interfaces. You assign

More information

Configuring VRF-lite. Information About VRF-lite

Configuring VRF-lite. Information About VRF-lite Information About VRF-lite, page 1 Guidelines for, page 3 How to Configure VRF-lite, page 4 for IPv6, page 13 Additional Information for VRF-lite, page 23 Verifying VRF-lite Configuration, page 24 Configuration

More information

CISCO EXAM QUESTIONS & ANSWERS

CISCO EXAM QUESTIONS & ANSWERS CISCO 200-101 EXAM QUESTIONS & ANSWERS Number: 200-101 Passing Score: 800 Time Limit: 120 min File Version: 32.2 http://www.gratisexam.com/ CISCO 200-101 EXAM QUESTIONS & ANSWERS Exam Name: Interconnecting

More information

Lab 6-1 Configuring a WLAN Controller

Lab 6-1 Configuring a WLAN Controller Lab 6-1 Configuring a WLAN Controller Topology Diagram Scenario Step 1 In the next two labs, you will configure a wireless solution involving a WLAN controller, two lightweight wireless access points,

More information

Configuring Private VLANs

Configuring Private VLANs CHAPTER 15 This chapter describes how to configure private VLANs on the Cisco 7600 series routers. Note For complete syntax and usage information for the commands used in this chapter, refer to the Cisco

More information

mls qos (global configuration mode)

mls qos (global configuration mode) mls qos (global configuration mode) mls qos (global configuration mode) To enable the quality of service (QoS) functionality globally, use the mls qos command in global configuration mode. To disable the

More information

How to Verify Cisco Express Forwarding Switching

How to Verify Cisco Express Forwarding Switching How to Verify Cisco Express Forwarding Switching Document ID: 47205 Contents Introduction Prerequisites Requirements Components Used Conventions What Is Cisco IOS Switching? Verification Steps Understand

More information

Configuring VLANs. Understanding VLANs CHAPTER

Configuring VLANs. Understanding VLANs CHAPTER CHAPTER 11 This chapter describes how to configure normal-range VLANs (VLAN IDs 1 to 1005) and extended-range VLANs (VLAN IDs 1006 to 4094) on the Cisco ME 3400 Ethernet Access switch. It includes information

More information

Lab 3.3 Configuring Wireshark and SPAN

Lab 3.3 Configuring Wireshark and SPAN Lab 3.3 Configuring Wireshark and SPAN Learning Objectives Install Wireshark on a host PC Configure a switch to use the SPAN monitoring tool. Topology Diagram Scenario In this lab, you will configure a

More information

Lab Configuring Per-Interface Inter-VLAN Routing (Solution)

Lab Configuring Per-Interface Inter-VLAN Routing (Solution) (Solution) Topology Addressing Table Objectives Device Interface IP Address Subnet Mask Default Gateway R1 G0/0 192.168.20.1 255.255.255.0 N/A G0/1 192.168.10.1 255.255.255.0 N/A S1 VLAN 10 192.168.10.11

More information

Note: Use two 2960 switches for ALS1 and ALS2 and two 3560 switches for DLS1 and DLS2

Note: Use two 2960 switches for ALS1 and ALS2 and two 3560 switches for DLS1 and DLS2 LAB 2 - Part I - VLANs, VLAN Trunking, and VTP Domains Topology: Objectives Set up a VTP domain. Create and maintain VLANs. Configure 802.1Q trunking. Background VLANs logically segment a network by function,

More information

IPv4 IGP Troubleshooting. IPv4 Routing Workflow. IPv4 routing can be subdivided into three discrete steps

IPv4 IGP Troubleshooting. IPv4 Routing Workflow. IPv4 routing can be subdivided into three discrete steps Internetwork Expert s CCNP Bootcamp IPv4 IGP Troubleshooting http:// IPv4 Routing Workflow IPv4 routing can be subdivided into three discrete steps Routing lookup Switching method Layer 2 encapsulation

More information

Configuring IP Unicast Routing

Configuring IP Unicast Routing CHAPTER 40 This chapter describes how to configure IP Version 4 (IPv4) unicast routing on the Catalyst 3750-E or 3560-E switch. Unless otherwise noted, the term switch refers to a Catalyst 3750-E or 3560-E

More information

Configuring EtherChannels and Layer 2 Trunk Failover

Configuring EtherChannels and Layer 2 Trunk Failover 35 CHAPTER Configuring EtherChannels and Layer 2 Trunk Failover This chapter describes how to configure EtherChannels on Layer 2 and Layer 3 ports on the switch. EtherChannel provides fault-tolerant high-speed

More information

Lab Configuring Per-Interface Inter-VLAN Routing (Instructor Version)

Lab Configuring Per-Interface Inter-VLAN Routing (Instructor Version) (Instructor Version) Instructor Note: Red font color or Gray highlights indicate text that appears in the instructor copy only. Topology Addressing Table Objectives Device Interface IP Address Subnet Mask

More information

Configuring VLANs. Understanding VLANs CHAPTER

Configuring VLANs. Understanding VLANs CHAPTER CHAPTER 10 This chapter describes how to configure normal-range VLANs (VLAN IDs 1 to 1005) and extended-range VLANs (VLAN IDs 1006 to 4094) on the switch. It includes information about VLAN membership

More information

The following graphic shows a single switch VLAN configuration.

The following graphic shows a single switch VLAN configuration. 7.1. VLAN A Virtual LAN (VLAN) can be defined as: Broadcast domains defined by switch port rather than network address. A grouping of devices based on service need, protocol, or other criteria rather than

More information

22 Cisco IOS Commands for the Catalyst 4500 Series Switches interface

22 Cisco IOS Commands for the Catalyst 4500 Series Switches interface Chapter 2 22 interface interface To select an interface to configure and to enter interface configuration mode, use the interface command. interface type number type number Type of interface to be configured;

More information

Configuring IP Unicast Routing

Configuring IP Unicast Routing 28 CHAPTER This chapter describes how to configure IP unicast routing on the Catalyst 3750 Metro switch. Note For more detailed IP unicast configuration information, refer to the Cisco IOS IP and IP Routing

More information

Cisco CCNA Basic IP Routing Part I

Cisco CCNA Basic IP Routing Part I Cisco CCNA Basic IP Routing Part I Cisco CCNA IP Routing In this chapter, we re to discuss the IP routing process. This is an important subject to understand since it pertains to all routers and configurations

More information

Configuring VLANs. Understanding VLANs CHAPTER

Configuring VLANs. Understanding VLANs CHAPTER 7 CHAPTER This chapter describes how to configure normal-range VLANs (VLAN IDs 1 to 1005) and extended-range VLANs (VLAN IDs 1006 to 4094) on the Cisco MWR 2941 router. It includes information about VLAN

More information

Troubleshooting High CPU Utilization Due to the IP Input Process

Troubleshooting High CPU Utilization Due to the IP Input Process Troubleshooting High CPU Utilization Due to the IP Input Process Document ID: 41160 Contents Introduction Prerequisites Requirements Components Used Conventions IP Input Sample IP Packet Debugging Session

More information

Cisco IOS Switching Paths Overview

Cisco IOS Switching Paths Overview This chapter describes switching paths that can be configured on Cisco IOS devices. It contains the following sections: Basic Router Platform Architecture and Processes Basic Switching Paths Features That

More information

Configuring InterVLAN Routing

Configuring InterVLAN Routing CHAPTER 2 Configuring InterVLAN Routing This chapter describes how to configure the Multilayer Switch Feature Card (MSFC) for intervlan routing on the Catalyst 6000 family switches and MSFC. Note For more

More information

VLAN Configuration. Understanding VLANs CHAPTER

VLAN Configuration. Understanding VLANs CHAPTER CHAPTER 11 This chapter describes how to configure normal-range VLANs (VLAN IDs 1 to 1005) and extended-range VLANs (VLAN IDs 1006 to 4094) on the CGR 2010 ESM. It includes information about VLAN membership

More information

Multiprotocol Label Switching (MPLS) on Cisco Routers

Multiprotocol Label Switching (MPLS) on Cisco Routers Multiprotocol Label Switching (MPLS) on Cisco Routers This document describes commands for configuring and monitoring Multiprotocol Label Switching (MPLS) functionality on Cisco routers and switches. This

More information

Sybex CCENT Chapter 11: VLANs and Inter-VLAN Routing. Instructor & Todd Lammle

Sybex CCENT Chapter 11: VLANs and Inter-VLAN Routing. Instructor & Todd Lammle Sybex CCENT 100-101 Chapter 11: VLANs and Inter-VLAN Routing Instructor & Todd Lammle Chapter 11 Objectives The CCENT Topics Covered in this chapter include: LAN Switching Technologies Describe how VLANs

More information

DOiT-200v6 VOLUME II. DOiT-200v6 Lab 3 Multi-Topic CCIE-Level Scenario. For CCIE Candidates

DOiT-200v6 VOLUME II. DOiT-200v6 Lab 3 Multi-Topic CCIE-Level Scenario. For CCIE Candidates Revision 7.0 (10/20/2005) DOiT-200v6-SCENARIO 3 Page 1 NETMASTERCLASS ROUTING AND SWITCHING CCIE TRACK DOiT-200v6 VOLUME II DOiT-200v6 Lab 3 Multi-Topic CCIE-Level Scenario For CCIE Candidates Revision

More information

Configuring Routes on the ACE

Configuring Routes on the ACE CHAPTER2 This chapter describes how the ACE is considered a router hop in the network when it is in routed mode. In the Admin or user contexts, the ACE supports static routes only. The ACE supports up

More information

Cisco Questions & Answers

Cisco Questions & Answers Cisco 200-101 Questions & Answers Number: 200-101 Passing Score: 800 Time Limit: 120 min File Version: 23.7 http://www.gratisexam.com/ Cisco 200-101 Questions & Answers Exam Name: Interconnecting Cisco

More information

Configuring a Management IP Address on Catalyst 4500/4000, 5500/5000, 6500/6000, and Catalyst Fixed Configuration Switches

Configuring a Management IP Address on Catalyst 4500/4000, 5500/5000, 6500/6000, and Catalyst Fixed Configuration Switches Configuring a Management IP Address on Catalyst 4500/4000, 5500/5000, 6500/6000, and Catalyst Fixed Configuration Switches Document ID: 10594 Interactive: This document offers customized analysis of your

More information

Chapter 6 Lab 6-3, Gateway Load Balancing Protocol (GLBP) INSTRUCTOR VERSION

Chapter 6 Lab 6-3, Gateway Load Balancing Protocol (GLBP) INSTRUCTOR VERSION CCNPv7.1 SWITCH Chapter 6 Lab 6-3, Gateway Load Balancing Protocol (GLBP) INSTRUCTOR VERSION Topology Objectives Configure trunking, VTP, and inter-vlan routing using router-on-a stick Configure GLBP Configure

More information

Chapter 5 Reading Organizer After completion of this chapter, you should be able to:

Chapter 5 Reading Organizer After completion of this chapter, you should be able to: Chapter 5 Reading Organizer After completion of this chapter, you should be able to: Describe the operation of the Ethernet sublayers. Identify the major fields of the Ethernet frame. Describe the purpose

More information

Lab Configuring 802.1Q Trunk-Based Inter-VLAN Routing (Instructor Version Optional Lab)

Lab Configuring 802.1Q Trunk-Based Inter-VLAN Routing (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

Cisco Express Forwarding Overview

Cisco Express Forwarding Overview Cisco Express Forwarding () is advanced, Layer 3 IP switching technology. optimizes network performance and scalability for networks with large and dynamic traffic patterns, such as the Internet, on networks

More information

Question No : 1 Which three of these statements regarding 802.1Q trunking are correct? (Choose three.)

Question No : 1 Which three of these statements regarding 802.1Q trunking are correct? (Choose three.) Volume: 149 Questions Question No : 1 Which three of these statements regarding 802.1Q trunking are correct? (Choose three.) A. 802.1Q native VLAN frames are untagged by default. B. 802.1Q trunking ports

More information

Switches running the LAN Base feature set support only static routing on SVIs.

Switches running the LAN Base feature set support only static routing on SVIs. Finding Feature Information, on page 1 Prerequisites for VLANs, on page 1 Restrictions for VLANs, on page 2 Information About VLANs, on page 2 How to Configure VLANs, on page 6 Monitoring VLANs, on page

More information

CCNP TSHOOT. Quick Reference Sheet Exam

CCNP TSHOOT. Quick Reference Sheet Exam CCNP TSHOOT Quick Reference Sheet Exam 300-135 Chapter 1. Network Principles Troubleshooting Steps Problem Identification Collection of Information Examination and Action Plan Verification Basic Troubleshooting

More information

Introduction to Routers and LAN Switches

Introduction to Routers and LAN Switches Introduction to Routers and LAN Switches Session 3048_05_2001_c1 2001, Cisco Systems, Inc. All rights reserved. 3 Prerequisites OSI Model Networking Fundamentals 3048_05_2001_c1 2001, Cisco Systems, Inc.

More information

Configuring Interface Characteristics

Configuring Interface Characteristics CHAPTER 10 This chapter defines the types of interfaces on the switch and describes how to configure them. Unless otherwise noted, the term switch refers to a standalone switch and to a switch stack. The

More information

Configuring Private VLANs

Configuring Private VLANs 36 CHAPTER This chapter describes private VLANs (PVLANs) on Catalyst 4500 series switches. It also provides restrictions, procedures, and configuration examples. This chapter includes the following major

More information

Catalyst Switches for Microsoft Network Load Balancing Configuration Example

Catalyst Switches for Microsoft Network Load Balancing Configuration Example Catalyst Switches for Microsoft Network Load Balancing Configuration Example Document ID: 107995 Contributed by Shashank Singh, Cisco TAC Engineer. Dec 19, 2013 Contents Introduction Prerequisites Requirements

More information

GRE Tunnel with VRF Configuration Example

GRE Tunnel with VRF Configuration Example GRE Tunnel with VRF Configuration Example Document ID: 46252 Contents Introduction Prerequisites Requirements Components Used Conventions Configure Network Diagram Configurations Verify Troubleshoot Caveats

More information