SlideShare una empresa de Scribd logo
1 de 29
Descargar para leer sin conexión
Packet Tracer
              Simulation Lab
               L2 Switching

Johnson Liu
CCIE#11440(R&S, SP)
CCSI#31346
Agenda Slide

      • Power on a new switch

      • Assign a port as an specific VLAN membership

      • Setup hosts in the same VLAN

      • Power on another new switch

      • Assign a port as an trunk interface to pass-through
        different VLAN traffic over a single link

      • Enable a Inter-VLAN routing to route traffic between
        different VLANs



3/6/2013   Confidential | Copyright 2012 Trend Micro Inc.
Power on a new switch
Power on a new Switch




3/6/2013   Confidential | Copyright 2012 Trend Micro Inc.   4
Power on a new Switch




3/6/2013   Confidential | Copyright 2012 Trend Micro Inc.   5
Power on a new Switch




3/6/2013   Confidential | Copyright 2012 Trend Micro Inc.   6
Switch basic configuration
     Switch>enable
     Switch#conf t
     Enter configuration commands, one per line.             End with CNTL/Z.
     Switch(config)#hostname SW1
     SW1(config)#interface vlan 1
     SW1(config-if)#no shutdown

     %LINK-5-CHANGED: Interface Vlan1, changed state to up

     SW1(config-if)#ip address 10.100.1.253 255.255.255.0
     SW1(config-if)#exit
     SW1(config)#ip default-gateway 10.100.1.254
     SW1(config)#exit
     SW1#
     %SYS-5-CONFIG_I: Configured from console by console

     SW1#copy running-config startup-config
     Destination filename [startup-config]?
     Building configuration...
     [OK]




3/6/2013    Confidential | Copyright 2012 Trend Micro Inc.   7
Check switch basic configuration
     SW1#sh ip interface brief
     Interface              IP-Address                        OK? Method Status   Protocol

     FastEthernet0/1                    unassigned            YES manual down     down

     FastEthernet0/2                    unassigned            YES manual down     down

     FastEthernet0/3                    unassigned            YES manual down     down

     FastEthernet0/4                    unassigned            YES manual down     down

     …
     FastEthernet0/20                   unassigned            YES manual down     down

     FastEthernet0/21                   unassigned            YES manual down     down

     FastEthernet0/22                   unassigned            YES manual down     down

     FastEthernet0/23                   unassigned            YES manual down     down

     FastEthernet0/24                   unassigned            YES manual down     down

     Vlan1                              10.100.1.253          YES manual up       down
     SW1#




3/6/2013     Confidential | Copyright 2012 Trend Micro Inc.        8
Check switch basic configuration
     SW1#sh vlan

     VLAN Name                             Status    Ports
     ---- -------------------------------- --------- -------------------------------
     1    default                          active    Fa0/1, Fa0/2, Fa0/3, Fa0/4
                                                     Fa0/5, Fa0/6, Fa0/7, Fa0/8
                                                     Fa0/9, Fa0/10, Fa0/11, Fa0/12
                                                     Fa0/13, Fa0/14, Fa0/15, Fa0/16
                                                     Fa0/17, Fa0/18, Fa0/19, Fa0/20
                                                     Fa0/21, Fa0/22, Fa0/23, Fa0/24
     1002 fddi-default                     act/unsup
     1003 token-ring-default               act/unsup
     1004 fddinet-default                  act/unsup
     1005 trnet-default                    act/unsup

     VLAN   Type    SAID                MTU       Parent       RingNo   BridgeNo   Stp    BrdgMode   Trans1   Trans2
     ----   -----   ----------          -----     ------       ------   --------   ----   --------   ------   ------
     1      enet    100001              1500      -            -        -          -      -          0        0
     1002   fddi    101002              1500      -            -        -          -      -          0        0
     1003   tr      101003              1500      -            -        -          -      -          0        0
     1004   fdnet   101004              1500      -            -        -          ieee   -          0        0
     1005   trnet   101005              1500      -            -        -          ibm    -          0        0

     Remote SPAN VLANs
     ------------------------------------------------------------------------------


     Primary Secondary Type              Ports
     ------- --------- ----------------- ------------------------------------------


3/6/2013      Confidential | Copyright 2012 Trend Micro Inc.              9
Check switch basic configuration
     SW1#sh run
     Building configuration…
     Current configuration : 1091 bytes
     !
     version 12.1
     no service timestamps log datetime msec
     no service timestamps debug datetime msec
     no service password-encryption
     !
     hostname SW1
     !
     interface FastEthernet0/1
     !
     interface FastEthernet0/2
     …
     interface Vlan1
       ip address 10.100.1.253 255.255.255.0
     !
     ip default-gateway 10.100.1.254
     !
     …

     SW1#




3/6/2013    Confidential | Copyright 2012 Trend Micro Inc.   10
Assign a port as an specific VLAN membership
Assign a port as an specific VLAN
     membership
     SW1#conf t
     Enter configuration commands, one per line. End with CNTL/Z.
     SW1(config)#int f0/1
     SW1(config-if)#switchport mode access
     SW1(config-if)#switchport access vlan 2
     SW1(config-if)#^Z
     SW1#
     %SYS-5-CONFIG_I: Configured from console by console
     SW1#sh vlan

     VLAN Name                             Status    Ports
     ---- -------------------------------- --------- -------------------------------
     1    default                          active    Fa0/2, Fa0/3, Fa0/4, Fa0/5
                                                     Fa0/6, Fa0/7, Fa0/8, Fa0/9
                                                     Fa0/10, Fa0/11, Fa0/12, Fa0/13
                                                     Fa0/14, Fa0/15, Fa0/16, Fa0/17
                                                     Fa0/18, Fa0/19, Fa0/20, Fa0/21
                                                     Fa0/22, Fa0/23, Fa0/24
     2    VLAN0002                         active    Fa0/1
     1002 fddi-default                     act/unsup
     1003 token-ring-default               act/unsup
     1004 fddinet-default                  act/unsup
     1005 trnet-default                    act/unsup




3/6/2013    Confidential | Copyright 2012 Trend Micro Inc.   12
Assign a port as an specific VLAN
     membership
     SW1#conf t
     Enter configuration commands, one per line. End with CNTL/Z.
     SW1(config)#int f0/2
     SW1(config-if)#switchport mode access
     SW1(config-if)#switchport access vlan 2
     SW1(config-if)#exit
     SW1(config)#exit
     SW1#
     %SYS-5-CONFIG_I: Configured from console by console

     SW1#sh vlan

     VLAN Name                             Status    Ports
     ---- -------------------------------- --------- -------------------------------
     1    default                          active    Fa0/3, Fa0/4, Fa0/5, Fa0/6
                                                     Fa0/7, Fa0/8, Fa0/9, Fa0/10
                                                     Fa0/11, Fa0/12, Fa0/13, Fa0/14
                                                     Fa0/15, Fa0/16, Fa0/17, Fa0/18
                                                     Fa0/19, Fa0/20, Fa0/21, Fa0/22
                                                     Fa0/23, Fa0/24
     2    VLAN0002                         active    Fa0/1, Fa0/2
     1002 fddi-default                     act/unsup
     1003 token-ring-default               act/unsup
     1004 fddinet-default                  act/unsup
     1005 trnet-default                    act/unsup




3/6/2013    Confidential | Copyright 2012 Trend Micro Inc.   13
Setup hosts in the same VLAN
Setup hosts in the same VLAN




3/6/2013   Confidential | Copyright 2012 Trend Micro Inc.   15
Setup hosts in the same VLAN
      • Now this Switch has two VLAN:
           – VLAN 1: Management VLAN (SVI: 10.100.1.253/24)
           – VLAN 2: For hosts PC0 and PC1 communicates to each other (10.100.2.0/24)
      • Now PC0 can ping PC1, but PC0 and PC1 cannot ping Switch SVI interface
        (10.100.1.253/24), its normal and it was due to they belong to different subnet.
      • Switch cannot route different subnet traffic, even all hosts connect to the same Switch
        but belong to different VLAN. (We need a layer 3 device to route Inter-VLAN traffic)




3/6/2013      Confidential | Copyright 2012 Trend Micro Inc.   16
Power on another new switch
Power on another new switch




3/6/2013   Confidential | Copyright 2012 Trend Micro Inc.   18
Another new switch basic configuration

     Switch>en
     Switch#conf t
     Enter configuration commands, one per line.              End with CNTL/Z.
     Switch(config)#hostname SW2
     SW2(config)#
     SW2(config-if)#int vlan 1
     SW2(config-if)#no shutdown

     SW2(config-if)#
     %LINK-5-CHANGED: Interface Vlan1, changed state to up

     %LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan1, changed state to up

     SW2(config-if)#ip address 10.100.1.252 255.255.255.0
     SW2(config-if)#exit
     SW2(config)#ip default-gateway 10.100.1.254

     SW2(config)#int f0/1
     SW2(config-if)#switchport mode access
     SW2(config-if)#switchport access vlan 2
     % Access VLAN does not exist. Creating vlan 2




3/6/2013    Confidential | Copyright 2012 Trend Micro Inc.   19
Assign a port as an trunk interface to pass-
through different VLAN traffic over a single link
Setup trunk interconnection between two
     SW1 & SW2 F0/24
     SW1>en
     SW1#conf t
     Enter configuration commands, one per line. End with CNTL/Z.
     SW1(config)#int f0/24
     SW1(config-if)#switchport mode trunk
     SW1(config-if)#^Z
     SW1#
     %SYS-5-CONFIG_I: Configured from console by console


     SW2>en
     SW2#conf t
     Enter configuration commands, one per line. End with CNTL/Z.
     SW2(config)#int f0/24
     SW2(config-if)#switchport mode trunk
     SW2(config-if)#^Z
     SW2#
     %SYS-5-CONFIG_I: Configured from console by console

     •     Now SW2 can ping SW1 VLAN1 via Trunk interface(FastEthernet0/24)
     SW2#ping 10.100.1.253

     Type escape sequence to abort.
     Sending 5, 100-byte ICMP Echos to 10.100.1.253, timeout is 2 seconds:
     ..!!!
     Success rate is 60 percent (3/5), round-trip min/avg/max = 20/20/20 ms

3/6/2013       Confidential | Copyright 2012 Trend Micro Inc.   21
Switch Trunk allow VLAN1 & VLAN2 pass-
     through, but not for Inter-VLAN routing




3/6/2013   Confidential | Copyright 2012 Trend Micro Inc.   22
Enable a Inter-VLAN routing to route traffic
between different VLANs
Add a new Router to support Inter-VLAN
     routing




3/6/2013   Confidential | Copyright 2012 Trend Micro Inc.   24
Configure Router interface as VLAN1 &
     VLAN2 gateway
     Router>en
     Router#conf t
     Enter configuration commands, one per line. End with CNTL/Z.
     Router(config)#int f0/0
     Router(config-if)#no shutdown
     %LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up

     %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up

     Router(config-if)#int f0/0.1
     %LINK-5-CHANGED: Interface FastEthernet0/0.1, changed state to up

     %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0.1, changed state to up

     Router(config-subif)#encapsulation dot1Q 1 native
     Router(config-subif)#ip address 10.100.1.254 255.255.255.0


     Router(config-subif)#int f0/0.2
     %LINK-5-CHANGED: Interface FastEthernet0/0.2, changed state to up

     %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0.2, changed state to up

     Router(config-subif)#encapsulation dot1Q 2
     Router(config-subif)#ip address 10.100.2.254 255.255.255.0
     Router(config-subif)#exit
     Router(config)#exit
     Router#

3/6/2013    Confidential | Copyright 2012 Trend Micro Inc.   25
Configure SW1 F0/23 Trunk interface uplink
     to Router F0/0
     SW1>en
     SW1#conf t
     Enter configuration commands, one per line.                 End with CNTL/Z.
     SW1(config)#int f0/23
     SW1(config-if)#switchport mode trunk

     SW1(config-if)#exit
     %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/23, changed state to down

     %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/23, changed state to up

     SW1(config)#exit
     SW1#

     •     Now SW1 can ping Router F0/0.1 via Trunk interface(FastEthernet0/23)
     SW1#
     SW1#ping 10.100.1.254

     Type escape sequence to abort.
     Sending 5, 100-byte ICMP Echos to 10.100.1.254, timeout is 2 seconds:
     .!!!!
     Success rate is 80 percent (4/5), round-trip min/avg/max = 11/17/20 ms




3/6/2013       Confidential | Copyright 2012 Trend Micro Inc.   26
Now Router support Inter-VLAN routing to
     route VLAN1 to VLAN2 and vice versa
     PC>ping 10.100.1.254

     Pinging 10.100.1.254 with 32 bytes of data:

     Reply from 10.100.1.254: bytes=32 time=39ms TTL=255
     …

     PC>ping 10.100.2.254

     Pinging 10.100.2.254 with 32 bytes of data:

     Reply from 10.100.2.254: bytes=32 time=40ms TTL=255
     …


     PC>ping 10.100.2.1

     Pinging 10.100.2.1 with 32 bytes of data:

     Reply from 10.100.2.1: bytes=32 time=10ms TTL=128
     …




3/6/2013    Confidential | Copyright 2012 Trend Micro Inc.   27
Q&A


3/6/2013   Confidential | Copyright 2012 Trend Micro Inc.    28
Appendix




3/6/2013     Confidential | Copyright 2012 Trend Micro Inc.   29

Más contenido relacionado

La actualidad más candente

X Window System
X Window SystemX Window System
X Window SystemRon Bandes
 
Windows Server 2019.pptx
Windows Server 2019.pptxWindows Server 2019.pptx
Windows Server 2019.pptxmasbulosoke
 
2) VRP Basic Configuration.pdf
2) VRP Basic Configuration.pdf2) VRP Basic Configuration.pdf
2) VRP Basic Configuration.pdfRandyDookheran2
 
Network Address Translation (NAT)
Network Address Translation (NAT)Network Address Translation (NAT)
Network Address Translation (NAT)Joud Khattab
 
Packet tracer practical guide
Packet tracer practical guidePacket tracer practical guide
Packet tracer practical guideNishant Gandhi
 
Connection( less & oriented)
Connection( less & oriented)Connection( less & oriented)
Connection( less & oriented)ymghorpade
 
Cisco Packet Tracer Overview 20 Jul09
Cisco Packet Tracer Overview 20 Jul09Cisco Packet Tracer Overview 20 Jul09
Cisco Packet Tracer Overview 20 Jul09Tumennast Erdenebold
 
Vxlan deep dive session rev0.5 final
Vxlan deep dive session rev0.5   finalVxlan deep dive session rev0.5   final
Vxlan deep dive session rev0.5 finalKwonSun Bae
 
TCP/IP Protocol Architeture
TCP/IP Protocol ArchitetureTCP/IP Protocol Architeture
TCP/IP Protocol ArchitetureManoj Kumar
 
Cisco switch commands cheat sheet
Cisco switch commands cheat sheetCisco switch commands cheat sheet
Cisco switch commands cheat sheet3Anetwork com
 
iSCSI (Internet Small Computer System Interface)
iSCSI (Internet Small Computer System Interface)iSCSI (Internet Small Computer System Interface)
iSCSI (Internet Small Computer System Interface)Sayali Koranne
 
WAN (wide area network)
WAN (wide area network)WAN (wide area network)
WAN (wide area network)Netwax Lab
 
Cisco CCNA-Router on Stick
Cisco CCNA-Router on StickCisco CCNA-Router on Stick
Cisco CCNA-Router on StickHamed Moghaddam
 
VLAN Trunking Protocol (VTP)
VLAN Trunking Protocol (VTP)VLAN Trunking Protocol (VTP)
VLAN Trunking Protocol (VTP)Naveen Soni
 
Introduction to TCP/IP
Introduction to TCP/IPIntroduction to TCP/IP
Introduction to TCP/IPMichael Lamont
 
Deploying Carrier Ethernet Features on Cisco ASR 9000
Deploying Carrier Ethernet Features on Cisco ASR 9000Deploying Carrier Ethernet Features on Cisco ASR 9000
Deploying Carrier Ethernet Features on Cisco ASR 9000Vinod Kumar Balasubramanyam
 

La actualidad más candente (20)

X Window System
X Window SystemX Window System
X Window System
 
Windows Server 2019.pptx
Windows Server 2019.pptxWindows Server 2019.pptx
Windows Server 2019.pptx
 
2) VRP Basic Configuration.pdf
2) VRP Basic Configuration.pdf2) VRP Basic Configuration.pdf
2) VRP Basic Configuration.pdf
 
Network Address Translation (NAT)
Network Address Translation (NAT)Network Address Translation (NAT)
Network Address Translation (NAT)
 
Packet tracer practical guide
Packet tracer practical guidePacket tracer practical guide
Packet tracer practical guide
 
Connection( less & oriented)
Connection( less & oriented)Connection( less & oriented)
Connection( less & oriented)
 
Virtual LAN
Virtual LANVirtual LAN
Virtual LAN
 
Cisco Packet Tracer Overview 20 Jul09
Cisco Packet Tracer Overview 20 Jul09Cisco Packet Tracer Overview 20 Jul09
Cisco Packet Tracer Overview 20 Jul09
 
Vxlan deep dive session rev0.5 final
Vxlan deep dive session rev0.5   finalVxlan deep dive session rev0.5   final
Vxlan deep dive session rev0.5 final
 
TCP/IP Protocol Architeture
TCP/IP Protocol ArchitetureTCP/IP Protocol Architeture
TCP/IP Protocol Architeture
 
Cisco switch commands cheat sheet
Cisco switch commands cheat sheetCisco switch commands cheat sheet
Cisco switch commands cheat sheet
 
iSCSI (Internet Small Computer System Interface)
iSCSI (Internet Small Computer System Interface)iSCSI (Internet Small Computer System Interface)
iSCSI (Internet Small Computer System Interface)
 
WAN (wide area network)
WAN (wide area network)WAN (wide area network)
WAN (wide area network)
 
Cisco CCNA-Router on Stick
Cisco CCNA-Router on StickCisco CCNA-Router on Stick
Cisco CCNA-Router on Stick
 
VLAN Trunking Protocol (VTP)
VLAN Trunking Protocol (VTP)VLAN Trunking Protocol (VTP)
VLAN Trunking Protocol (VTP)
 
Introduction to TCP/IP
Introduction to TCP/IPIntroduction to TCP/IP
Introduction to TCP/IP
 
OSI 7 Layer model
OSI 7 Layer modelOSI 7 Layer model
OSI 7 Layer model
 
CCNA Lab Guide
CCNA Lab GuideCCNA Lab Guide
CCNA Lab Guide
 
Deploying Carrier Ethernet Features on Cisco ASR 9000
Deploying Carrier Ethernet Features on Cisco ASR 9000Deploying Carrier Ethernet Features on Cisco ASR 9000
Deploying Carrier Ethernet Features on Cisco ASR 9000
 
Windows server
Windows serverWindows server
Windows server
 

Destacado

Dynamic data structures
Dynamic data structuresDynamic data structures
Dynamic data structures9020303098
 
KPUCC-Rs instructor ppt_chapter5_final
KPUCC-Rs instructor ppt_chapter5_finalKPUCC-Rs instructor ppt_chapter5_final
KPUCC-Rs instructor ppt_chapter5_finalFisal Anwari
 
CCNA2 Verson6 Chapter6
CCNA2 Verson6 Chapter6CCNA2 Verson6 Chapter6
CCNA2 Verson6 Chapter6Chaing Ravuth
 
At8000 s configurando vla_ns
At8000 s configurando vla_nsAt8000 s configurando vla_ns
At8000 s configurando vla_nsNetPlus
 
KPUCC-Rs instructor ppt_chapter3_final
KPUCC-Rs instructor ppt_chapter3_finalKPUCC-Rs instructor ppt_chapter3_final
KPUCC-Rs instructor ppt_chapter3_finalFisal Anwari
 
Lab practice 1 configuring basic routing and switching (with answer)
Lab practice 1   configuring basic routing and switching (with answer) Lab practice 1   configuring basic routing and switching (with answer)
Lab practice 1 configuring basic routing and switching (with answer) Arz Sy
 
Alphorm.com Support de la Formation Cisco CCNP SWITCH (examen 300-115)
Alphorm.com Support de la Formation Cisco CCNP SWITCH (examen 300-115)Alphorm.com Support de la Formation Cisco CCNP SWITCH (examen 300-115)
Alphorm.com Support de la Formation Cisco CCNP SWITCH (examen 300-115)Alphorm
 

Destacado (14)

Day 14.2 configuringvla ns
Day 14.2 configuringvla nsDay 14.2 configuringvla ns
Day 14.2 configuringvla ns
 
Dynamic data structures
Dynamic data structuresDynamic data structures
Dynamic data structures
 
KPUCC-Rs instructor ppt_chapter5_final
KPUCC-Rs instructor ppt_chapter5_finalKPUCC-Rs instructor ppt_chapter5_final
KPUCC-Rs instructor ppt_chapter5_final
 
VLAN
VLANVLAN
VLAN
 
CCNA2 Verson6 Chapter6
CCNA2 Verson6 Chapter6CCNA2 Verson6 Chapter6
CCNA2 Verson6 Chapter6
 
At8000 s configurando vla_ns
At8000 s configurando vla_nsAt8000 s configurando vla_ns
At8000 s configurando vla_ns
 
Lesson 16 vlan
Lesson 16   vlanLesson 16   vlan
Lesson 16 vlan
 
KPUCC-Rs instructor ppt_chapter3_final
KPUCC-Rs instructor ppt_chapter3_finalKPUCC-Rs instructor ppt_chapter3_final
KPUCC-Rs instructor ppt_chapter3_final
 
Virtuals LAN
Virtuals LANVirtuals LAN
Virtuals LAN
 
Ds 1
Ds 1Ds 1
Ds 1
 
Router commands
Router commandsRouter commands
Router commands
 
VLAN
VLANVLAN
VLAN
 
Lab practice 1 configuring basic routing and switching (with answer)
Lab practice 1   configuring basic routing and switching (with answer) Lab practice 1   configuring basic routing and switching (with answer)
Lab practice 1 configuring basic routing and switching (with answer)
 
Alphorm.com Support de la Formation Cisco CCNP SWITCH (examen 300-115)
Alphorm.com Support de la Formation Cisco CCNP SWITCH (examen 300-115)Alphorm.com Support de la Formation Cisco CCNP SWITCH (examen 300-115)
Alphorm.com Support de la Formation Cisco CCNP SWITCH (examen 300-115)
 

Similar a Packet Tracer Simulation Lab Layer 2 Switching

Ccn pv6 switch_lab1-2_clearing_attached_switches_student
Ccn pv6 switch_lab1-2_clearing_attached_switches_studentCcn pv6 switch_lab1-2_clearing_attached_switches_student
Ccn pv6 switch_lab1-2_clearing_attached_switches_studentmart_ixu
 
Configurando vlan, vtp, trunking e vmps em cisco catalyst switches comandos
Configurando vlan, vtp, trunking e vmps em cisco catalyst switches comandosConfigurando vlan, vtp, trunking e vmps em cisco catalyst switches comandos
Configurando vlan, vtp, trunking e vmps em cisco catalyst switches comandos1 2d
 
Free CCNP switching workbook by networkershome pdf
Free CCNP switching workbook by networkershome pdfFree CCNP switching workbook by networkershome pdf
Free CCNP switching workbook by networkershome pdfNetworkershome
 
Ccna 4 final lab switchi
Ccna 4 final lab switchiCcna 4 final lab switchi
Ccna 4 final lab switchiLeandro Uglar
 
Lab 6.4.1 InterVLAN routing
Lab 6.4.1 InterVLAN routingLab 6.4.1 InterVLAN routing
Lab 6.4.1 InterVLAN routingMuhd Mu'izuddin
 
CCIE R&S Real Lab Workbbok 2018 updated
CCIE R&S Real Lab Workbbok 2018 updatedCCIE R&S Real Lab Workbbok 2018 updated
CCIE R&S Real Lab Workbbok 2018 updatedCCIERNSTRICKS.COM
 
Лекц 9
Лекц 9Лекц 9
Лекц 9Muuluu
 
Cisco how to configure vlan
Cisco how to configure vlanCisco how to configure vlan
Cisco how to configure vlan1 2d
 
Cisco how to configure vlan
Cisco how to configure vlanCisco how to configure vlan
Cisco how to configure vlan1 2d
 
Vlan lab
Vlan labVlan lab
Vlan labtmim8
 
CCN3Switching_lab_5_5_2
CCN3Switching_lab_5_5_2CCN3Switching_lab_5_5_2
CCN3Switching_lab_5_5_2alan moreno
 

Similar a Packet Tracer Simulation Lab Layer 2 Switching (20)

Ccn pv6 switch_lab1-2_clearing_attached_switches_student
Ccn pv6 switch_lab1-2_clearing_attached_switches_studentCcn pv6 switch_lab1-2_clearing_attached_switches_student
Ccn pv6 switch_lab1-2_clearing_attached_switches_student
 
Configurando vlan, vtp, trunking e vmps em cisco catalyst switches comandos
Configurando vlan, vtp, trunking e vmps em cisco catalyst switches comandosConfigurando vlan, vtp, trunking e vmps em cisco catalyst switches comandos
Configurando vlan, vtp, trunking e vmps em cisco catalyst switches comandos
 
Free CCNP switching workbook by networkershome pdf
Free CCNP switching workbook by networkershome pdfFree CCNP switching workbook by networkershome pdf
Free CCNP switching workbook by networkershome pdf
 
Ccna 4 final lab switchi
Ccna 4 final lab switchiCcna 4 final lab switchi
Ccna 4 final lab switchi
 
portfolio2
portfolio2portfolio2
portfolio2
 
PROYECTO VLANS
PROYECTO VLANSPROYECTO VLANS
PROYECTO VLANS
 
Lab 6.4.1 InterVLAN routing
Lab 6.4.1 InterVLAN routingLab 6.4.1 InterVLAN routing
Lab 6.4.1 InterVLAN routing
 
CCIE R&S Real Lab Workbbok 2018 updated
CCIE R&S Real Lab Workbbok 2018 updatedCCIE R&S Real Lab Workbbok 2018 updated
CCIE R&S Real Lab Workbbok 2018 updated
 
CCIE R&S Real Lab H1 Config
CCIE R&S Real Lab H1 ConfigCCIE R&S Real Lab H1 Config
CCIE R&S Real Lab H1 Config
 
CCIE R&S Real Lab H2 Config
CCIE R&S Real Lab H2 ConfigCCIE R&S Real Lab H2 Config
CCIE R&S Real Lab H2 Config
 
CCIE R&S Real TS-1 Config
CCIE R&S Real TS-1 ConfigCCIE R&S Real TS-1 Config
CCIE R&S Real TS-1 Config
 
CCIE R&S Real Lab H3 Config
CCIE R&S Real Lab H3 ConfigCCIE R&S Real Lab H3 Config
CCIE R&S Real Lab H3 Config
 
Лекц 9
Лекц 9Лекц 9
Лекц 9
 
Ccnp3 lab 3_4_en
Ccnp3 lab 3_4_enCcnp3 lab 3_4_en
Ccnp3 lab 3_4_en
 
Ccnp3 lab 3_4_en
Ccnp3 lab 3_4_enCcnp3 lab 3_4_en
Ccnp3 lab 3_4_en
 
Cisco how to configure vlan
Cisco how to configure vlanCisco how to configure vlan
Cisco how to configure vlan
 
Cisco how to configure vlan
Cisco how to configure vlanCisco how to configure vlan
Cisco how to configure vlan
 
Icnd210 s02l01
Icnd210 s02l01Icnd210 s02l01
Icnd210 s02l01
 
Vlan lab
Vlan labVlan lab
Vlan lab
 
CCN3Switching_lab_5_5_2
CCN3Switching_lab_5_5_2CCN3Switching_lab_5_5_2
CCN3Switching_lab_5_5_2
 

Más de Johnson Liu

Packet Tracer Simulation Lab Layer3 Routing
Packet Tracer Simulation Lab Layer3 RoutingPacket Tracer Simulation Lab Layer3 Routing
Packet Tracer Simulation Lab Layer3 RoutingJohnson Liu
 
Olive Introduction for TOI
Olive Introduction for TOIOlive Introduction for TOI
Olive Introduction for TOIJohnson Liu
 
MC-LAG Configuration with BGP-base VPLS
MC-LAG Configuration with BGP-base VPLSMC-LAG Configuration with BGP-base VPLS
MC-LAG Configuration with BGP-base VPLSJohnson Liu
 
Mobile 2G/3G Workshop
Mobile 2G/3G WorkshopMobile 2G/3G Workshop
Mobile 2G/3G WorkshopJohnson Liu
 
2011 TWNIC SP IPv6 Transition
2011 TWNIC SP IPv6 Transition2011 TWNIC SP IPv6 Transition
2011 TWNIC SP IPv6 TransitionJohnson Liu
 
CALM DURING THE STORM:Best Practices in Multicast Security
CALM DURING THE STORM:Best Practices in Multicast SecurityCALM DURING THE STORM:Best Practices in Multicast Security
CALM DURING THE STORM:Best Practices in Multicast SecurityJohnson Liu
 
ISSU A PLANNED UPGRADE TOOL
ISSU A PLANNED UPGRADE TOOLISSU A PLANNED UPGRADE TOOL
ISSU A PLANNED UPGRADE TOOLJohnson Liu
 
CONTINUOUS SYSTEMS, NONSTOP OPERATIONS WITH JUNOS
CONTINUOUS SYSTEMS, NONSTOP OPERATIONS WITH JUNOSCONTINUOUS SYSTEMS, NONSTOP OPERATIONS WITH JUNOS
CONTINUOUS SYSTEMS, NONSTOP OPERATIONS WITH JUNOSJohnson Liu
 
NG MVPN BGP ROUTE TYPES AND ENCODINGS
NG  MVPN BGP ROUTE TYPES AND ENCODINGSNG  MVPN BGP ROUTE TYPES AND ENCODINGS
NG MVPN BGP ROUTE TYPES AND ENCODINGSJohnson Liu
 
Emerging Multicast VPN Applications
Emerging  Multicast  VPN  ApplicationsEmerging  Multicast  VPN  Applications
Emerging Multicast VPN ApplicationsJohnson Liu
 
Introduction to IGMP for IPTV Networks
Introduction to IGMP for IPTV NetworksIntroduction to IGMP for IPTV Networks
Introduction to IGMP for IPTV NetworksJohnson Liu
 
Virtual Private LAN Service (VPLS)
Virtual Private LAN Service (VPLS)Virtual Private LAN Service (VPLS)
Virtual Private LAN Service (VPLS)Johnson Liu
 
R C S P Study Guide 199 01 V2.0.1
R C S P  Study Guide 199 01 V2.0.1R C S P  Study Guide 199 01 V2.0.1
R C S P Study Guide 199 01 V2.0.1Johnson Liu
 
術業有專攻,認證會說話
術業有專攻,認證會說話術業有專攻,認證會說話
術業有專攻,認證會說話Johnson Liu
 
Cisco專業認證介紹
Cisco專業認證介紹Cisco專業認證介紹
Cisco專業認證介紹Johnson Liu
 

Más de Johnson Liu (16)

Packet Tracer Simulation Lab Layer3 Routing
Packet Tracer Simulation Lab Layer3 RoutingPacket Tracer Simulation Lab Layer3 Routing
Packet Tracer Simulation Lab Layer3 Routing
 
Olive Introduction for TOI
Olive Introduction for TOIOlive Introduction for TOI
Olive Introduction for TOI
 
MC-LAG Configuration with BGP-base VPLS
MC-LAG Configuration with BGP-base VPLSMC-LAG Configuration with BGP-base VPLS
MC-LAG Configuration with BGP-base VPLS
 
Mobile 2G/3G Workshop
Mobile 2G/3G WorkshopMobile 2G/3G Workshop
Mobile 2G/3G Workshop
 
2011 TWNIC SP IPv6 Transition
2011 TWNIC SP IPv6 Transition2011 TWNIC SP IPv6 Transition
2011 TWNIC SP IPv6 Transition
 
CALM DURING THE STORM:Best Practices in Multicast Security
CALM DURING THE STORM:Best Practices in Multicast SecurityCALM DURING THE STORM:Best Practices in Multicast Security
CALM DURING THE STORM:Best Practices in Multicast Security
 
SEAMLESS MPLS
SEAMLESS MPLSSEAMLESS MPLS
SEAMLESS MPLS
 
ISSU A PLANNED UPGRADE TOOL
ISSU A PLANNED UPGRADE TOOLISSU A PLANNED UPGRADE TOOL
ISSU A PLANNED UPGRADE TOOL
 
CONTINUOUS SYSTEMS, NONSTOP OPERATIONS WITH JUNOS
CONTINUOUS SYSTEMS, NONSTOP OPERATIONS WITH JUNOSCONTINUOUS SYSTEMS, NONSTOP OPERATIONS WITH JUNOS
CONTINUOUS SYSTEMS, NONSTOP OPERATIONS WITH JUNOS
 
NG MVPN BGP ROUTE TYPES AND ENCODINGS
NG  MVPN BGP ROUTE TYPES AND ENCODINGSNG  MVPN BGP ROUTE TYPES AND ENCODINGS
NG MVPN BGP ROUTE TYPES AND ENCODINGS
 
Emerging Multicast VPN Applications
Emerging  Multicast  VPN  ApplicationsEmerging  Multicast  VPN  Applications
Emerging Multicast VPN Applications
 
Introduction to IGMP for IPTV Networks
Introduction to IGMP for IPTV NetworksIntroduction to IGMP for IPTV Networks
Introduction to IGMP for IPTV Networks
 
Virtual Private LAN Service (VPLS)
Virtual Private LAN Service (VPLS)Virtual Private LAN Service (VPLS)
Virtual Private LAN Service (VPLS)
 
R C S P Study Guide 199 01 V2.0.1
R C S P  Study Guide 199 01 V2.0.1R C S P  Study Guide 199 01 V2.0.1
R C S P Study Guide 199 01 V2.0.1
 
術業有專攻,認證會說話
術業有專攻,認證會說話術業有專攻,認證會說話
術業有專攻,認證會說話
 
Cisco專業認證介紹
Cisco專業認證介紹Cisco專業認證介紹
Cisco專業認證介紹
 

Último

DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 

Último (20)

DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 

Packet Tracer Simulation Lab Layer 2 Switching

  • 1. Packet Tracer Simulation Lab L2 Switching Johnson Liu CCIE#11440(R&S, SP) CCSI#31346
  • 2. Agenda Slide • Power on a new switch • Assign a port as an specific VLAN membership • Setup hosts in the same VLAN • Power on another new switch • Assign a port as an trunk interface to pass-through different VLAN traffic over a single link • Enable a Inter-VLAN routing to route traffic between different VLANs 3/6/2013 Confidential | Copyright 2012 Trend Micro Inc.
  • 3. Power on a new switch
  • 4. Power on a new Switch 3/6/2013 Confidential | Copyright 2012 Trend Micro Inc. 4
  • 5. Power on a new Switch 3/6/2013 Confidential | Copyright 2012 Trend Micro Inc. 5
  • 6. Power on a new Switch 3/6/2013 Confidential | Copyright 2012 Trend Micro Inc. 6
  • 7. Switch basic configuration Switch>enable Switch#conf t Enter configuration commands, one per line. End with CNTL/Z. Switch(config)#hostname SW1 SW1(config)#interface vlan 1 SW1(config-if)#no shutdown %LINK-5-CHANGED: Interface Vlan1, changed state to up SW1(config-if)#ip address 10.100.1.253 255.255.255.0 SW1(config-if)#exit SW1(config)#ip default-gateway 10.100.1.254 SW1(config)#exit SW1# %SYS-5-CONFIG_I: Configured from console by console SW1#copy running-config startup-config Destination filename [startup-config]? Building configuration... [OK] 3/6/2013 Confidential | Copyright 2012 Trend Micro Inc. 7
  • 8. Check switch basic configuration SW1#sh ip interface brief Interface IP-Address OK? Method Status Protocol FastEthernet0/1 unassigned YES manual down down FastEthernet0/2 unassigned YES manual down down FastEthernet0/3 unassigned YES manual down down FastEthernet0/4 unassigned YES manual down down … FastEthernet0/20 unassigned YES manual down down FastEthernet0/21 unassigned YES manual down down FastEthernet0/22 unassigned YES manual down down FastEthernet0/23 unassigned YES manual down down FastEthernet0/24 unassigned YES manual down down Vlan1 10.100.1.253 YES manual up down SW1# 3/6/2013 Confidential | Copyright 2012 Trend Micro Inc. 8
  • 9. Check switch basic configuration SW1#sh vlan VLAN Name Status Ports ---- -------------------------------- --------- ------------------------------- 1 default active Fa0/1, Fa0/2, Fa0/3, Fa0/4 Fa0/5, Fa0/6, Fa0/7, Fa0/8 Fa0/9, Fa0/10, Fa0/11, Fa0/12 Fa0/13, Fa0/14, Fa0/15, Fa0/16 Fa0/17, Fa0/18, Fa0/19, Fa0/20 Fa0/21, Fa0/22, Fa0/23, Fa0/24 1002 fddi-default act/unsup 1003 token-ring-default act/unsup 1004 fddinet-default act/unsup 1005 trnet-default act/unsup VLAN Type SAID MTU Parent RingNo BridgeNo Stp BrdgMode Trans1 Trans2 ---- ----- ---------- ----- ------ ------ -------- ---- -------- ------ ------ 1 enet 100001 1500 - - - - - 0 0 1002 fddi 101002 1500 - - - - - 0 0 1003 tr 101003 1500 - - - - - 0 0 1004 fdnet 101004 1500 - - - ieee - 0 0 1005 trnet 101005 1500 - - - ibm - 0 0 Remote SPAN VLANs ------------------------------------------------------------------------------ Primary Secondary Type Ports ------- --------- ----------------- ------------------------------------------ 3/6/2013 Confidential | Copyright 2012 Trend Micro Inc. 9
  • 10. Check switch basic configuration SW1#sh run Building configuration… Current configuration : 1091 bytes ! version 12.1 no service timestamps log datetime msec no service timestamps debug datetime msec no service password-encryption ! hostname SW1 ! interface FastEthernet0/1 ! interface FastEthernet0/2 … interface Vlan1 ip address 10.100.1.253 255.255.255.0 ! ip default-gateway 10.100.1.254 ! … SW1# 3/6/2013 Confidential | Copyright 2012 Trend Micro Inc. 10
  • 11. Assign a port as an specific VLAN membership
  • 12. Assign a port as an specific VLAN membership SW1#conf t Enter configuration commands, one per line. End with CNTL/Z. SW1(config)#int f0/1 SW1(config-if)#switchport mode access SW1(config-if)#switchport access vlan 2 SW1(config-if)#^Z SW1# %SYS-5-CONFIG_I: Configured from console by console SW1#sh vlan VLAN Name Status Ports ---- -------------------------------- --------- ------------------------------- 1 default active Fa0/2, Fa0/3, Fa0/4, Fa0/5 Fa0/6, Fa0/7, Fa0/8, Fa0/9 Fa0/10, Fa0/11, Fa0/12, Fa0/13 Fa0/14, Fa0/15, Fa0/16, Fa0/17 Fa0/18, Fa0/19, Fa0/20, Fa0/21 Fa0/22, Fa0/23, Fa0/24 2 VLAN0002 active Fa0/1 1002 fddi-default act/unsup 1003 token-ring-default act/unsup 1004 fddinet-default act/unsup 1005 trnet-default act/unsup 3/6/2013 Confidential | Copyright 2012 Trend Micro Inc. 12
  • 13. Assign a port as an specific VLAN membership SW1#conf t Enter configuration commands, one per line. End with CNTL/Z. SW1(config)#int f0/2 SW1(config-if)#switchport mode access SW1(config-if)#switchport access vlan 2 SW1(config-if)#exit SW1(config)#exit SW1# %SYS-5-CONFIG_I: Configured from console by console SW1#sh vlan VLAN Name Status Ports ---- -------------------------------- --------- ------------------------------- 1 default active Fa0/3, Fa0/4, Fa0/5, Fa0/6 Fa0/7, Fa0/8, Fa0/9, Fa0/10 Fa0/11, Fa0/12, Fa0/13, Fa0/14 Fa0/15, Fa0/16, Fa0/17, Fa0/18 Fa0/19, Fa0/20, Fa0/21, Fa0/22 Fa0/23, Fa0/24 2 VLAN0002 active Fa0/1, Fa0/2 1002 fddi-default act/unsup 1003 token-ring-default act/unsup 1004 fddinet-default act/unsup 1005 trnet-default act/unsup 3/6/2013 Confidential | Copyright 2012 Trend Micro Inc. 13
  • 14. Setup hosts in the same VLAN
  • 15. Setup hosts in the same VLAN 3/6/2013 Confidential | Copyright 2012 Trend Micro Inc. 15
  • 16. Setup hosts in the same VLAN • Now this Switch has two VLAN: – VLAN 1: Management VLAN (SVI: 10.100.1.253/24) – VLAN 2: For hosts PC0 and PC1 communicates to each other (10.100.2.0/24) • Now PC0 can ping PC1, but PC0 and PC1 cannot ping Switch SVI interface (10.100.1.253/24), its normal and it was due to they belong to different subnet. • Switch cannot route different subnet traffic, even all hosts connect to the same Switch but belong to different VLAN. (We need a layer 3 device to route Inter-VLAN traffic) 3/6/2013 Confidential | Copyright 2012 Trend Micro Inc. 16
  • 17. Power on another new switch
  • 18. Power on another new switch 3/6/2013 Confidential | Copyright 2012 Trend Micro Inc. 18
  • 19. Another new switch basic configuration Switch>en Switch#conf t Enter configuration commands, one per line. End with CNTL/Z. Switch(config)#hostname SW2 SW2(config)# SW2(config-if)#int vlan 1 SW2(config-if)#no shutdown SW2(config-if)# %LINK-5-CHANGED: Interface Vlan1, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan1, changed state to up SW2(config-if)#ip address 10.100.1.252 255.255.255.0 SW2(config-if)#exit SW2(config)#ip default-gateway 10.100.1.254 SW2(config)#int f0/1 SW2(config-if)#switchport mode access SW2(config-if)#switchport access vlan 2 % Access VLAN does not exist. Creating vlan 2 3/6/2013 Confidential | Copyright 2012 Trend Micro Inc. 19
  • 20. Assign a port as an trunk interface to pass- through different VLAN traffic over a single link
  • 21. Setup trunk interconnection between two SW1 & SW2 F0/24 SW1>en SW1#conf t Enter configuration commands, one per line. End with CNTL/Z. SW1(config)#int f0/24 SW1(config-if)#switchport mode trunk SW1(config-if)#^Z SW1# %SYS-5-CONFIG_I: Configured from console by console SW2>en SW2#conf t Enter configuration commands, one per line. End with CNTL/Z. SW2(config)#int f0/24 SW2(config-if)#switchport mode trunk SW2(config-if)#^Z SW2# %SYS-5-CONFIG_I: Configured from console by console • Now SW2 can ping SW1 VLAN1 via Trunk interface(FastEthernet0/24) SW2#ping 10.100.1.253 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 10.100.1.253, timeout is 2 seconds: ..!!! Success rate is 60 percent (3/5), round-trip min/avg/max = 20/20/20 ms 3/6/2013 Confidential | Copyright 2012 Trend Micro Inc. 21
  • 22. Switch Trunk allow VLAN1 & VLAN2 pass- through, but not for Inter-VLAN routing 3/6/2013 Confidential | Copyright 2012 Trend Micro Inc. 22
  • 23. Enable a Inter-VLAN routing to route traffic between different VLANs
  • 24. Add a new Router to support Inter-VLAN routing 3/6/2013 Confidential | Copyright 2012 Trend Micro Inc. 24
  • 25. Configure Router interface as VLAN1 & VLAN2 gateway Router>en Router#conf t Enter configuration commands, one per line. End with CNTL/Z. Router(config)#int f0/0 Router(config-if)#no shutdown %LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up Router(config-if)#int f0/0.1 %LINK-5-CHANGED: Interface FastEthernet0/0.1, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0.1, changed state to up Router(config-subif)#encapsulation dot1Q 1 native Router(config-subif)#ip address 10.100.1.254 255.255.255.0 Router(config-subif)#int f0/0.2 %LINK-5-CHANGED: Interface FastEthernet0/0.2, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0.2, changed state to up Router(config-subif)#encapsulation dot1Q 2 Router(config-subif)#ip address 10.100.2.254 255.255.255.0 Router(config-subif)#exit Router(config)#exit Router# 3/6/2013 Confidential | Copyright 2012 Trend Micro Inc. 25
  • 26. Configure SW1 F0/23 Trunk interface uplink to Router F0/0 SW1>en SW1#conf t Enter configuration commands, one per line. End with CNTL/Z. SW1(config)#int f0/23 SW1(config-if)#switchport mode trunk SW1(config-if)#exit %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/23, changed state to down %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/23, changed state to up SW1(config)#exit SW1# • Now SW1 can ping Router F0/0.1 via Trunk interface(FastEthernet0/23) SW1# SW1#ping 10.100.1.254 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 10.100.1.254, timeout is 2 seconds: .!!!! Success rate is 80 percent (4/5), round-trip min/avg/max = 11/17/20 ms 3/6/2013 Confidential | Copyright 2012 Trend Micro Inc. 26
  • 27. Now Router support Inter-VLAN routing to route VLAN1 to VLAN2 and vice versa PC>ping 10.100.1.254 Pinging 10.100.1.254 with 32 bytes of data: Reply from 10.100.1.254: bytes=32 time=39ms TTL=255 … PC>ping 10.100.2.254 Pinging 10.100.2.254 with 32 bytes of data: Reply from 10.100.2.254: bytes=32 time=40ms TTL=255 … PC>ping 10.100.2.1 Pinging 10.100.2.1 with 32 bytes of data: Reply from 10.100.2.1: bytes=32 time=10ms TTL=128 … 3/6/2013 Confidential | Copyright 2012 Trend Micro Inc. 27
  • 28. Q&A 3/6/2013 Confidential | Copyright 2012 Trend Micro Inc. 28
  • 29. Appendix 3/6/2013 Confidential | Copyright 2012 Trend Micro Inc. 29