SlideShare a Scribd company logo
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
Ad

More Related Content

What's hot (20)

Ccna command
Ccna commandCcna command
Ccna command
Siddhartha Rajbhatt
 
Cisco commands List for Beginners (CCNA, CCNP)
Cisco commands List for Beginners (CCNA, CCNP)Cisco commands List for Beginners (CCNA, CCNP)
Cisco commands List for Beginners (CCNA, CCNP)
DH Da Lat
 
Cisco router command configuration overview
Cisco router command configuration overviewCisco router command configuration overview
Cisco router command configuration overview
3Anetwork com
 
Huawei switch configuration commands
Huawei switch configuration commandsHuawei switch configuration commands
Huawei switch configuration commands
Huanetwork
 
CCNA Basic Switching and Switch Configuration
CCNA Basic Switching and Switch ConfigurationCCNA Basic Switching and Switch Configuration
CCNA Basic Switching and Switch Configuration
Dsunte Wilson
 
Huawei S5700 Basic Configuration Command
Huawei S5700 Basic Configuration CommandHuawei S5700 Basic Configuration Command
Huawei S5700 Basic Configuration Command
Huanetwork
 
VLAN
VLANVLAN
VLAN
Alberto Jimenez
 
Vlans (virtual local area networks)
Vlans (virtual local area networks)Vlans (virtual local area networks)
Vlans (virtual local area networks)
Kanishk Raj
 
Composants et fonctionnement d'un Switch Cisco
Composants et fonctionnement d'un Switch Cisco Composants et fonctionnement d'un Switch Cisco
Composants et fonctionnement d'un Switch Cisco
DJENNA AMIR
 
CCNAv5 - S2: Chapter3 Vlans
CCNAv5 - S2: Chapter3 VlansCCNAv5 - S2: Chapter3 Vlans
CCNAv5 - S2: Chapter3 Vlans
Vuz Dở Hơi
 
Juniper mpls best practice part 1
Juniper mpls best practice   part 1Juniper mpls best practice   part 1
Juniper mpls best practice part 1
Febrian ‎
 
How to configure vlan, stp, dtp step by step guide
How to configure vlan, stp, dtp step by step guideHow to configure vlan, stp, dtp step by step guide
How to configure vlan, stp, dtp step by step guide
IT Tech
 
Switch
SwitchSwitch
Switch
Gaurav Juneja
 
Cisco router-commands
Cisco router-commandsCisco router-commands
Cisco router-commands
Robin Rohit
 
CCNA- Router on stick, VLAN and Trunking
CCNA- Router on stick, VLAN and TrunkingCCNA- Router on stick, VLAN and Trunking
CCNA- Router on stick, VLAN and Trunking
Rafat Khandaker
 
Cisco Commands
Cisco CommandsCisco Commands
Cisco Commands
Fredrick Hall
 
Huawei Router Basic Configuration Command
Huawei Router Basic Configuration CommandHuawei Router Basic Configuration Command
Huawei Router Basic Configuration Command
Huanetwork
 
Cisco CCNA-Router on Stick
Cisco CCNA-Router on StickCisco CCNA-Router on Stick
Cisco CCNA-Router on Stick
Hamed Moghaddam
 
Ether channel fundamentals
Ether channel fundamentalsEther channel fundamentals
Ether channel fundamentals
Edgardo Scrimaglia
 
Cisco commands List for Beginners (CCNA, CCNP)
Cisco commands List for Beginners (CCNA, CCNP)Cisco commands List for Beginners (CCNA, CCNP)
Cisco commands List for Beginners (CCNA, CCNP)
DH Da Lat
 
Cisco router command configuration overview
Cisco router command configuration overviewCisco router command configuration overview
Cisco router command configuration overview
3Anetwork com
 
Huawei switch configuration commands
Huawei switch configuration commandsHuawei switch configuration commands
Huawei switch configuration commands
Huanetwork
 
CCNA Basic Switching and Switch Configuration
CCNA Basic Switching and Switch ConfigurationCCNA Basic Switching and Switch Configuration
CCNA Basic Switching and Switch Configuration
Dsunte Wilson
 
Huawei S5700 Basic Configuration Command
Huawei S5700 Basic Configuration CommandHuawei S5700 Basic Configuration Command
Huawei S5700 Basic Configuration Command
Huanetwork
 
Vlans (virtual local area networks)
Vlans (virtual local area networks)Vlans (virtual local area networks)
Vlans (virtual local area networks)
Kanishk Raj
 
Composants et fonctionnement d'un Switch Cisco
Composants et fonctionnement d'un Switch Cisco Composants et fonctionnement d'un Switch Cisco
Composants et fonctionnement d'un Switch Cisco
DJENNA AMIR
 
CCNAv5 - S2: Chapter3 Vlans
CCNAv5 - S2: Chapter3 VlansCCNAv5 - S2: Chapter3 Vlans
CCNAv5 - S2: Chapter3 Vlans
Vuz Dở Hơi
 
Juniper mpls best practice part 1
Juniper mpls best practice   part 1Juniper mpls best practice   part 1
Juniper mpls best practice part 1
Febrian ‎
 
How to configure vlan, stp, dtp step by step guide
How to configure vlan, stp, dtp step by step guideHow to configure vlan, stp, dtp step by step guide
How to configure vlan, stp, dtp step by step guide
IT Tech
 
Cisco router-commands
Cisco router-commandsCisco router-commands
Cisco router-commands
Robin Rohit
 
CCNA- Router on stick, VLAN and Trunking
CCNA- Router on stick, VLAN and TrunkingCCNA- Router on stick, VLAN and Trunking
CCNA- Router on stick, VLAN and Trunking
Rafat Khandaker
 
Huawei Router Basic Configuration Command
Huawei Router Basic Configuration CommandHuawei Router Basic Configuration Command
Huawei Router Basic Configuration Command
Huanetwork
 
Cisco CCNA-Router on Stick
Cisco CCNA-Router on StickCisco CCNA-Router on Stick
Cisco CCNA-Router on Stick
Hamed Moghaddam
 

Viewers also liked (14)

Day 14.2 configuringvla ns
Day 14.2 configuringvla nsDay 14.2 configuringvla ns
Day 14.2 configuringvla ns
CYBERINTELLIGENTS
 
Dynamic data structures
Dynamic data structuresDynamic data structures
Dynamic data structures
9020303098
 
KPUCC-Rs instructor ppt_chapter5_final
KPUCC-Rs instructor ppt_chapter5_finalKPUCC-Rs instructor ppt_chapter5_final
KPUCC-Rs instructor ppt_chapter5_final
Fisal Anwari
 
VLAN
VLANVLAN
VLAN
Alison Mendoza
 
CCNA2 Verson6 Chapter6
CCNA2 Verson6 Chapter6CCNA2 Verson6 Chapter6
CCNA2 Verson6 Chapter6
Chaing Ravuth
 
At8000 s configurando vla_ns
At8000 s configurando vla_nsAt8000 s configurando vla_ns
At8000 s configurando vla_ns
NetPlus
 
Lesson 16 vlan
Lesson 16   vlanLesson 16   vlan
Lesson 16 vlan
Anisur Rahman
 
KPUCC-Rs instructor ppt_chapter3_final
KPUCC-Rs instructor ppt_chapter3_finalKPUCC-Rs instructor ppt_chapter3_final
KPUCC-Rs instructor ppt_chapter3_final
Fisal Anwari
 
Virtuals LAN
Virtuals LANVirtuals LAN
Virtuals LAN
Thomas Moegli
 
Ds 1
Ds 1Ds 1
Ds 1
Niit Care
 
Vlan
Vlan Vlan
Vlan
sanss40
 
Router commands
Router commandsRouter commands
Router commands
Akshay Bhardwaj
 
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
 
Dynamic data structures
Dynamic data structuresDynamic data structures
Dynamic data structures
9020303098
 
KPUCC-Rs instructor ppt_chapter5_final
KPUCC-Rs instructor ppt_chapter5_finalKPUCC-Rs instructor ppt_chapter5_final
KPUCC-Rs instructor ppt_chapter5_final
Fisal Anwari
 
CCNA2 Verson6 Chapter6
CCNA2 Verson6 Chapter6CCNA2 Verson6 Chapter6
CCNA2 Verson6 Chapter6
Chaing Ravuth
 
At8000 s configurando vla_ns
At8000 s configurando vla_nsAt8000 s configurando vla_ns
At8000 s configurando vla_ns
NetPlus
 
KPUCC-Rs instructor ppt_chapter3_final
KPUCC-Rs instructor ppt_chapter3_finalKPUCC-Rs instructor ppt_chapter3_final
KPUCC-Rs instructor ppt_chapter3_final
Fisal 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
 
Ad

Similar to 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
mart_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 comandos
1 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 pdf
Networkershome
 
Ccna 4 final lab switchi
Ccna 4 final lab switchiCcna 4 final lab switchi
Ccna 4 final lab switchi
Leandro Uglar
 
portfolio2
portfolio2portfolio2
portfolio2
Joseph Alcantara
 
PROYECTO VLANS
PROYECTO VLANSPROYECTO VLANS
PROYECTO VLANS
rubendavidsuarez
 
Lab 6.4.1 InterVLAN routing
Lab 6.4.1 InterVLAN routingLab 6.4.1 InterVLAN routing
Lab 6.4.1 InterVLAN routing
Muhd 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 updated
CCIERNSTRICKS.COM
 
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
CCIERNSTRICKS.COM
 
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
CCIERNSTRICKS.COM
 
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
CCIERNSTRICKS.COM
 
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
CCIERNSTRICKS.COM
 
Лекц 9
Лекц 9Лекц 9
Лекц 9
Muuluu
 
Ccnp3 lab 3_4_en
Ccnp3 lab 3_4_enCcnp3 lab 3_4_en
Ccnp3 lab 3_4_en
Omar Herrera
 
Ccnp3 lab 3_4_en
Ccnp3 lab 3_4_enCcnp3 lab 3_4_en
Ccnp3 lab 3_4_en
Omar Herrera
 
Cisco how to configure vlan
Cisco how to configure vlanCisco how to configure vlan
Cisco how to configure vlan
1 2d
 
Cisco how to configure vlan
Cisco how to configure vlanCisco how to configure vlan
Cisco how to configure vlan
1 2d
 
Icnd210 s02l01
Icnd210 s02l01Icnd210 s02l01
Icnd210 s02l01
computerlenguyen
 
Vlan lab
Vlan labVlan lab
Vlan lab
tmim8
 
欧洲杯投注app-欧洲杯投注app推荐-欧洲杯投注app| 立即访问【ac123.net】
欧洲杯投注app-欧洲杯投注app推荐-欧洲杯投注app| 立即访问【ac123.net】欧洲杯投注app-欧洲杯投注app推荐-欧洲杯投注app| 立即访问【ac123.net】
欧洲杯投注app-欧洲杯投注app推荐-欧洲杯投注app| 立即访问【ac123.net】
foismail170
 
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
mart_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 comandos
1 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 pdf
Networkershome
 
Ccna 4 final lab switchi
Ccna 4 final lab switchiCcna 4 final lab switchi
Ccna 4 final lab switchi
Leandro Uglar
 
Lab 6.4.1 InterVLAN routing
Lab 6.4.1 InterVLAN routingLab 6.4.1 InterVLAN routing
Lab 6.4.1 InterVLAN routing
Muhd 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 updated
CCIERNSTRICKS.COM
 
Лекц 9
Лекц 9Лекц 9
Лекц 9
Muuluu
 
Cisco how to configure vlan
Cisco how to configure vlanCisco how to configure vlan
Cisco how to configure vlan
1 2d
 
Cisco how to configure vlan
Cisco how to configure vlanCisco how to configure vlan
Cisco how to configure vlan
1 2d
 
Vlan lab
Vlan labVlan lab
Vlan lab
tmim8
 
欧洲杯投注app-欧洲杯投注app推荐-欧洲杯投注app| 立即访问【ac123.net】
欧洲杯投注app-欧洲杯投注app推荐-欧洲杯投注app| 立即访问【ac123.net】欧洲杯投注app-欧洲杯投注app推荐-欧洲杯投注app| 立即访问【ac123.net】
欧洲杯投注app-欧洲杯投注app推荐-欧洲杯投注app| 立即访问【ac123.net】
foismail170
 
Ad

More from 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
Johnson Liu
 
Olive Introduction for TOI
Olive Introduction for TOIOlive Introduction for TOI
Olive Introduction for TOI
Johnson 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 VPLS
Johnson Liu
 
Mobile 2G/3G Workshop
Mobile 2G/3G WorkshopMobile 2G/3G Workshop
Mobile 2G/3G Workshop
Johnson Liu
 
2011 TWNIC SP IPv6 Transition
2011 TWNIC SP IPv6 Transition2011 TWNIC SP IPv6 Transition
2011 TWNIC SP IPv6 Transition
Johnson 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 Security
Johnson Liu
 
SEAMLESS MPLS
SEAMLESS MPLSSEAMLESS MPLS
SEAMLESS MPLS
Johnson Liu
 
ISSU A PLANNED UPGRADE TOOL
ISSU A PLANNED UPGRADE TOOLISSU A PLANNED UPGRADE TOOL
ISSU A PLANNED UPGRADE TOOL
Johnson Liu
 
CONTINUOUS SYSTEMS, NONSTOP OPERATIONS WITH JUNOS
CONTINUOUS SYSTEMS, NONSTOP OPERATIONS WITH JUNOSCONTINUOUS SYSTEMS, NONSTOP OPERATIONS WITH JUNOS
CONTINUOUS SYSTEMS, NONSTOP OPERATIONS WITH JUNOS
Johnson 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 ENCODINGS
Johnson Liu
 
Emerging Multicast VPN Applications
Emerging  Multicast  VPN  ApplicationsEmerging  Multicast  VPN  Applications
Emerging Multicast VPN Applications
Johnson Liu
 
Introduction to IGMP for IPTV Networks
Introduction to IGMP for IPTV NetworksIntroduction to IGMP for IPTV Networks
Introduction to IGMP for IPTV Networks
Johnson 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.1
Johnson Liu
 
術業有專攻,認證會說話
術業有專攻,認證會說話術業有專攻,認證會說話
術業有專攻,認證會說話
Johnson Liu
 
Cisco專業認證介紹
Cisco專業認證介紹Cisco專業認證介紹
Cisco專業認證介紹
Johnson Liu
 
Packet Tracer Simulation Lab Layer3 Routing
Packet Tracer Simulation Lab Layer3 RoutingPacket Tracer Simulation Lab Layer3 Routing
Packet Tracer Simulation Lab Layer3 Routing
Johnson Liu
 
Olive Introduction for TOI
Olive Introduction for TOIOlive Introduction for TOI
Olive Introduction for TOI
Johnson 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 VPLS
Johnson Liu
 
Mobile 2G/3G Workshop
Mobile 2G/3G WorkshopMobile 2G/3G Workshop
Mobile 2G/3G Workshop
Johnson Liu
 
2011 TWNIC SP IPv6 Transition
2011 TWNIC SP IPv6 Transition2011 TWNIC SP IPv6 Transition
2011 TWNIC SP IPv6 Transition
Johnson 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 Security
Johnson Liu
 
ISSU A PLANNED UPGRADE TOOL
ISSU A PLANNED UPGRADE TOOLISSU A PLANNED UPGRADE TOOL
ISSU A PLANNED UPGRADE TOOL
Johnson Liu
 
CONTINUOUS SYSTEMS, NONSTOP OPERATIONS WITH JUNOS
CONTINUOUS SYSTEMS, NONSTOP OPERATIONS WITH JUNOSCONTINUOUS SYSTEMS, NONSTOP OPERATIONS WITH JUNOS
CONTINUOUS SYSTEMS, NONSTOP OPERATIONS WITH JUNOS
Johnson 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 ENCODINGS
Johnson Liu
 
Emerging Multicast VPN Applications
Emerging  Multicast  VPN  ApplicationsEmerging  Multicast  VPN  Applications
Emerging Multicast VPN Applications
Johnson Liu
 
Introduction to IGMP for IPTV Networks
Introduction to IGMP for IPTV NetworksIntroduction to IGMP for IPTV Networks
Introduction to IGMP for IPTV Networks
Johnson 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.1
Johnson Liu
 
術業有專攻,認證會說話
術業有專攻,認證會說話術業有專攻,認證會說話
術業有專攻,認證會說話
Johnson Liu
 
Cisco專業認證介紹
Cisco專業認證介紹Cisco專業認證介紹
Cisco專業認證介紹
Johnson Liu
 

Recently uploaded (20)

Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.
hpbmnnxrvb
 
Mobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi ArabiaMobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi Arabia
Steve Jonas
 
Rusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond SparkRusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond Spark
carlyakerly1
 
Role of Data Annotation Services in AI-Powered Manufacturing
Role of Data Annotation Services in AI-Powered ManufacturingRole of Data Annotation Services in AI-Powered Manufacturing
Role of Data Annotation Services in AI-Powered Manufacturing
Andrew Leo
 
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
organizerofv
 
Linux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdfLinux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdf
RHCSA Guru
 
Cyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of securityCyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of security
riccardosl1
 
Generative Artificial Intelligence (GenAI) in Business
Generative Artificial Intelligence (GenAI) in BusinessGenerative Artificial Intelligence (GenAI) in Business
Generative Artificial Intelligence (GenAI) in Business
Dr. Tathagat Varma
 
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager APIUiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPathCommunity
 
HCL Nomad Web – Best Practices and Managing Multiuser Environments
HCL Nomad Web – Best Practices and Managing Multiuser EnvironmentsHCL Nomad Web – Best Practices and Managing Multiuser Environments
HCL Nomad Web – Best Practices and Managing Multiuser Environments
panagenda
 
tecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdftecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdf
fjgm517
 
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
Alan Dix
 
Drupalcamp Finland – Measuring Front-end Energy Consumption
Drupalcamp Finland – Measuring Front-end Energy ConsumptionDrupalcamp Finland – Measuring Front-end Energy Consumption
Drupalcamp Finland – Measuring Front-end Energy Consumption
Exove
 
AI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global TrendsAI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global Trends
InData Labs
 
How analogue intelligence complements AI
How analogue intelligence complements AIHow analogue intelligence complements AI
How analogue intelligence complements AI
Paul Rowe
 
Electronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploitElectronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploit
niftliyevhuseyn
 
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
SOFTTECHHUB
 
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc
 
Cybersecurity Identity and Access Solutions using Azure AD
Cybersecurity Identity and Access Solutions using Azure ADCybersecurity Identity and Access Solutions using Azure AD
Cybersecurity Identity and Access Solutions using Azure AD
VICTOR MAESTRE RAMIREZ
 
Technology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data AnalyticsTechnology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data Analytics
InData Labs
 
Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.
hpbmnnxrvb
 
Mobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi ArabiaMobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi Arabia
Steve Jonas
 
Rusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond SparkRusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond Spark
carlyakerly1
 
Role of Data Annotation Services in AI-Powered Manufacturing
Role of Data Annotation Services in AI-Powered ManufacturingRole of Data Annotation Services in AI-Powered Manufacturing
Role of Data Annotation Services in AI-Powered Manufacturing
Andrew Leo
 
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
organizerofv
 
Linux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdfLinux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdf
RHCSA Guru
 
Cyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of securityCyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of security
riccardosl1
 
Generative Artificial Intelligence (GenAI) in Business
Generative Artificial Intelligence (GenAI) in BusinessGenerative Artificial Intelligence (GenAI) in Business
Generative Artificial Intelligence (GenAI) in Business
Dr. Tathagat Varma
 
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager APIUiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPathCommunity
 
HCL Nomad Web – Best Practices and Managing Multiuser Environments
HCL Nomad Web – Best Practices and Managing Multiuser EnvironmentsHCL Nomad Web – Best Practices and Managing Multiuser Environments
HCL Nomad Web – Best Practices and Managing Multiuser Environments
panagenda
 
tecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdftecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdf
fjgm517
 
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
Alan Dix
 
Drupalcamp Finland – Measuring Front-end Energy Consumption
Drupalcamp Finland – Measuring Front-end Energy ConsumptionDrupalcamp Finland – Measuring Front-end Energy Consumption
Drupalcamp Finland – Measuring Front-end Energy Consumption
Exove
 
AI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global TrendsAI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global Trends
InData Labs
 
How analogue intelligence complements AI
How analogue intelligence complements AIHow analogue intelligence complements AI
How analogue intelligence complements AI
Paul Rowe
 
Electronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploitElectronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploit
niftliyevhuseyn
 
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
SOFTTECHHUB
 
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc
 
Cybersecurity Identity and Access Solutions using Azure AD
Cybersecurity Identity and Access Solutions using Azure ADCybersecurity Identity and Access Solutions using Azure AD
Cybersecurity Identity and Access Solutions using Azure AD
VICTOR MAESTRE RAMIREZ
 
Technology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data AnalyticsTechnology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data Analytics
InData Labs
 

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