SlideShare a Scribd company logo
欧洲杯比赛投注官网-欧洲杯比赛投注官网网站-欧洲杯比赛投注官网|【​网址​🎉ac123.net🎉​】
欧洲杯比赛投注官网-欧洲杯比赛投注官网网站-欧洲杯比赛投注官网|【​网址​🎉ac123.net🎉​】
0000.0000.0001 F0/1
0000.0000.0002 F0/1
0000.0000.0003 F0/3
0000.0000.0004 F0/2
· Foreword
Ethernet is a communication technology that features a shared communication
medium. When the number of hosts is too large, problems such as can occur,
which can lead to degraded network communication performance.
The VLAN technology can solve the above problems. This section will introduce the concepts
related to VLANs as well as the data forwarding principles and related configurations of VLANs.
· Broadcast Storm
In the following scenarios, the company's internal network is
as the number of hosts increases.
• Layer 2 switches form a
• Switch packets from all interfaces
• Broadcast data floods in the broadcast domain, consuming network bandwidth, degrading equipment
performance and leading to security risks
Layer 2 Switches
Layer 2 Switches
Layer 2 Switches
Technology Finance
Technology
Broadcast Frame
Technology Finance Finance
· Router Isolation Broadcast Domain
The can isolate the broadcast domain and reduce the range of the broadcast domain.
Layer 2 Switches
Layer 2 Switches
Router
Technology Finance
Technology Technology Finance Finance
Broadcast Frame
· VLAN Scenario
There are offices for the technical and financial departments on the fifth and sixth floors of the company
building.
The customer requires that departments can communicate with each other, but different departments
are isolated from each other.
By using the way of dividing VLAN to achieve and can be
with effective
Technology
Department
Finance
Department
· VLAN Standard
Switches use to distinguish between Ethernet frames of different VLANs
· 802.1Q Standard Encapsulation
• Fixed value , indicating that the frame contains 802.1Q tag information.
• , indicating VID, available range 1-4094, used to uniquely identify a VLAN.
• , indicating the priority level, used for QoS.
• Canonical format indicator: 1 bit, indicating bus-type Ethernet, FDDI, token ring network.
TPID
0x8100
Priority
0-7
CFI
0/1
VID
0-4095
· Single-Switch VLAN Tag Operation
Adding default VLAN tag when entering switch port.
Untagging VLANs when leaving a switch port.
· Access Port
Allow to pass and receive and send data frames for only one VLAN.
Generally used to connect
· Cross-switch VLAN Tag Operations
Support for Ethernet frames carrying VLAN tags to be passed between switches.
?
Vlan 10
Vlan 20
Vlan 20
Vlan 10
Gi0/1
G0/2
Gi0/1
G0/2
G0/24 G0/24
· Trunk Port
Allows to pass through, and can receive and send data frames for multiple VLANs.
Ethernet frames without tags for the default VLAN.
Generally used to connect between
Vlan 10
Vlan 20
Vlan 20
Vlan 10
Gi0/1
G0/2
Gi0/1
G0/2
G0/24 G0/24
· Configuration Steps for VLAN
• Creating the corresponding VLAN on each switch.
• Dividing the corresponding hosts into VLANs based on their interfaces.
• Interconnected interfaces of the switch configure Trunk interfaces.
Vlan 10 Vlan 20
Technology Finance
· Basic Configuration of VLAN
• Step 1: Create VLAN
Switch(config)#vlan vlan-id
• Step 2: Name VLAN
Switch(config-vlan)#name vlan-name
switch(config)#vlan 10 // Create VLAN
switch(config-vlan)# name IT //Naming of VLANs for easy O&M
switch(config)#vlan 20
switch(config-vlan)# name finance
· Basic Configuration of VLAN
• Step 1: Enter the port configuration mode
Swtich(config)#interface interface
• Step 2: Set the port mode to access port
Switch(config-if)#switchport mode access
switch(config)#interface range f0/1-2
switch(config-if-range)#switchport access vlan 10 //Interface is partitioned to VLAN 10
switch(config)#interface f0/3
switch(config-if)#switchport access vlan 20
• Step 3: Add the port to a specific VLAN
Switch(config-if)#switchport access vlan vlan-id
· Basic Configuration of VLAN
• Step 1: Enter the port to be configured
swtich(config)#interface interface
• Step 2: Set the mode of the port to Trunk
Switch(config-if)#switchport mode trunk
switch(config)#interface range GigabitEthernet 0/2-4
switch(config-if-range)#switchport mode trunk
switch(config-if-range)#exit
switch(config)#interface GigabitEthernet 0/2
switch(config-if-GigabitEthernet 0/2)#switchport trunk allowed vlan remove 1-4094
switch(config-if-GigabitEthernet 0/2)#switchport trunk allowed vlan add 10,20
• Step 3: Modify the port default VLAN, the default is VLAN 1
Switch(config-if)#switchport trunk native vlan vlan-id
• Step 4: Define a list of VLAN control behaviors for Trunk links (VLAN pruning, etc.) (optional, and use with caution)
Switch(config-if)#switchport trunk allowed vlan { all | [ add | remove | except | only ] } vlan-list
· Basic Configuration of VLAN
• Delete VLAN
Switch(config)#no vlan VLAN-id
• View configuration information
Switch# show vlan
Ruijie#show vlan
VLAN Name Status Ports
---- -------------------------------- --------- ----------------------------
1 VLAN0001 STATIC 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, Gi0/25, Gi0/26
10 VLAN0010 STATIC Fa0/1, Fa0/2
20 VLAN0020 STATIC Fa0/3
· VLAN Configuration Example
Ruijie-SW(config)#vlan 10
Ruijie-SW(config-vlan)#add interface gigabitEthernet 0/1
Ruijie-SW(config-vlan)#exit
Ruijie-SW(config)#vlan 20
Ruijie-SW(config-vlan)#add interface gigabitEthernet 0/2
Ruijie-SW(config-vlan)#exit
Ruijie-SW1(config)#interface gigabitEthernet 0/24
Ruijie-SW2(config-if-GigabitEthernet 0/0)#switchport mode trunk
Ruijie-SW2(config-if-GigabitEthernet 0/0)#switchport trunk allowed vlan
only 10,20
Vlan 10
Vlan 20
Vlan 20
Vlan 10
Gi0/1
G0/2
Gi0/1
G0/2
G0/24 G0/24
Ruijie-SW(config)#vlan 10
Ruijie-SW(config-vlan)#add interface gigabitEthernet 0/1
Ruijie-SW(config-vlan)#exit
Ruijie-SW(config)#vlan 20
Ruijie-SW(config-vlan)#add interface gigabitEthernet 0/2
Ruijie-SW(config-vlan)#exit
Ruijie-SW1(config)#interface gigabitEthernet 0/24
Ruijie-SW2(config-if-GigabitEthernet 0/0)#switchport mode trunk
Ruijie-SW2(config-if-GigabitEthernet 0/0)#switchport trunk allowed vlan
only 10,20
Logical-based grouping, which can be grouped according to services or functions
More flexible networking regardless of physical location
Reduces the management costs associated with node movement in the network
Users in different VLANs need to use Layer 3 devices to communicate
PC1 and PC4
PC2 and PC5
PC3 and PC5
PC1 and PC5

More Related Content

PPTX
VLAN (Virtual Local Area Network) Full details.pptx
PDF
Vlan.pdf
PPT
VLAN Virtual Area Network ,Switch,Ethernet ,VIkram Snehi
PDF
Switch inter vlan_routing
PPTX
Virtual Local Area Network
PPTX
Vla ns
PPT
Vlan
PPT
mod8-VLANs.ppt
VLAN (Virtual Local Area Network) Full details.pptx
Vlan.pdf
VLAN Virtual Area Network ,Switch,Ethernet ,VIkram Snehi
Switch inter vlan_routing
Virtual Local Area Network
Vla ns
Vlan
mod8-VLANs.ppt

Similar to 欧洲杯比赛投注官网-欧洲杯比赛投注官网网站-欧洲杯比赛投注官网|【​网址​🎉ac123.net🎉​】 (20)

PPTX
Week 9 VLAN, SISTIM INFORMASI MANAGEMEN
PPTX
VLANS Routing and Protocols Chapter 12 of Routing
PPT
vlaN.pptgfggdfgdrgsegtrgthyrtewgsrdhftjf
PPT
Vlan final
PPT
Virtual local area network
PPT
VLAN Network for Extreme Networks
PPT
Mod8 vlans
PPT
PDF
Day 5 VIRTUAL LANS
PPTX
VIRTUAL LANS
PPTX
PDF
Cisco labs practical7
PDF
PDF
Vlan lab
PPTX
08 VLAN Prىلتانىنinciples and Configuration.pptx
PPT
07 module extending switched netwroks with virtual la ns
PDF
Ccna3 lab 9_1_5b_en
DOCX
How to configure vlan, stp, dtp step by step guide
DOCX
Ccna 4 final lab switchi
Week 9 VLAN, SISTIM INFORMASI MANAGEMEN
VLANS Routing and Protocols Chapter 12 of Routing
vlaN.pptgfggdfgdrgsegtrgthyrtewgsrdhftjf
Vlan final
Virtual local area network
VLAN Network for Extreme Networks
Mod8 vlans
Day 5 VIRTUAL LANS
VIRTUAL LANS
Cisco labs practical7
Vlan lab
08 VLAN Prىلتانىنinciples and Configuration.pptx
07 module extending switched netwroks with virtual la ns
Ccna3 lab 9_1_5b_en
How to configure vlan, stp, dtp step by step guide
Ccna 4 final lab switchi
Ad

Recently uploaded (20)

PPTX
PPH.pptx obstetrics and gynecology in nursing
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PPTX
Cell Types and Its function , kingdom of life
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PDF
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
PDF
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
PDF
O7-L3 Supply Chain Operations - ICLT Program
PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
PPTX
Institutional Correction lecture only . . .
PDF
RMMM.pdf make it easy to upload and study
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PPTX
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
PDF
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
PPTX
Microbial diseases, their pathogenesis and prophylaxis
PPTX
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PDF
Computing-Curriculum for Schools in Ghana
PPH.pptx obstetrics and gynecology in nursing
Pharmacology of Heart Failure /Pharmacotherapy of CHF
Cell Types and Its function , kingdom of life
102 student loan defaulters named and shamed – Is someone you know on the list?
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
O7-L3 Supply Chain Operations - ICLT Program
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
Institutional Correction lecture only . . .
RMMM.pdf make it easy to upload and study
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
Abdominal Access Techniques with Prof. Dr. R K Mishra
Microbial diseases, their pathogenesis and prophylaxis
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
Computing-Curriculum for Schools in Ghana
Ad

欧洲杯比赛投注官网-欧洲杯比赛投注官网网站-欧洲杯比赛投注官网|【​网址​🎉ac123.net🎉​】

  • 4. · Foreword Ethernet is a communication technology that features a shared communication medium. When the number of hosts is too large, problems such as can occur, which can lead to degraded network communication performance. The VLAN technology can solve the above problems. This section will introduce the concepts related to VLANs as well as the data forwarding principles and related configurations of VLANs.
  • 5. · Broadcast Storm In the following scenarios, the company's internal network is as the number of hosts increases. • Layer 2 switches form a • Switch packets from all interfaces • Broadcast data floods in the broadcast domain, consuming network bandwidth, degrading equipment performance and leading to security risks Layer 2 Switches Layer 2 Switches Layer 2 Switches Technology Finance Technology Broadcast Frame Technology Finance Finance
  • 6. · Router Isolation Broadcast Domain The can isolate the broadcast domain and reduce the range of the broadcast domain. Layer 2 Switches Layer 2 Switches Router Technology Finance Technology Technology Finance Finance Broadcast Frame
  • 7. · VLAN Scenario There are offices for the technical and financial departments on the fifth and sixth floors of the company building. The customer requires that departments can communicate with each other, but different departments are isolated from each other. By using the way of dividing VLAN to achieve and can be with effective Technology Department Finance Department
  • 8. · VLAN Standard Switches use to distinguish between Ethernet frames of different VLANs
  • 9. · 802.1Q Standard Encapsulation • Fixed value , indicating that the frame contains 802.1Q tag information. • , indicating VID, available range 1-4094, used to uniquely identify a VLAN. • , indicating the priority level, used for QoS. • Canonical format indicator: 1 bit, indicating bus-type Ethernet, FDDI, token ring network. TPID 0x8100 Priority 0-7 CFI 0/1 VID 0-4095
  • 10. · Single-Switch VLAN Tag Operation Adding default VLAN tag when entering switch port. Untagging VLANs when leaving a switch port.
  • 11. · Access Port Allow to pass and receive and send data frames for only one VLAN. Generally used to connect
  • 12. · Cross-switch VLAN Tag Operations Support for Ethernet frames carrying VLAN tags to be passed between switches. ? Vlan 10 Vlan 20 Vlan 20 Vlan 10 Gi0/1 G0/2 Gi0/1 G0/2 G0/24 G0/24
  • 13. · Trunk Port Allows to pass through, and can receive and send data frames for multiple VLANs. Ethernet frames without tags for the default VLAN. Generally used to connect between Vlan 10 Vlan 20 Vlan 20 Vlan 10 Gi0/1 G0/2 Gi0/1 G0/2 G0/24 G0/24
  • 14. · Configuration Steps for VLAN • Creating the corresponding VLAN on each switch. • Dividing the corresponding hosts into VLANs based on their interfaces. • Interconnected interfaces of the switch configure Trunk interfaces. Vlan 10 Vlan 20 Technology Finance
  • 15. · Basic Configuration of VLAN • Step 1: Create VLAN Switch(config)#vlan vlan-id • Step 2: Name VLAN Switch(config-vlan)#name vlan-name switch(config)#vlan 10 // Create VLAN switch(config-vlan)# name IT //Naming of VLANs for easy O&M switch(config)#vlan 20 switch(config-vlan)# name finance
  • 16. · Basic Configuration of VLAN • Step 1: Enter the port configuration mode Swtich(config)#interface interface • Step 2: Set the port mode to access port Switch(config-if)#switchport mode access switch(config)#interface range f0/1-2 switch(config-if-range)#switchport access vlan 10 //Interface is partitioned to VLAN 10 switch(config)#interface f0/3 switch(config-if)#switchport access vlan 20 • Step 3: Add the port to a specific VLAN Switch(config-if)#switchport access vlan vlan-id
  • 17. · Basic Configuration of VLAN • Step 1: Enter the port to be configured swtich(config)#interface interface • Step 2: Set the mode of the port to Trunk Switch(config-if)#switchport mode trunk switch(config)#interface range GigabitEthernet 0/2-4 switch(config-if-range)#switchport mode trunk switch(config-if-range)#exit switch(config)#interface GigabitEthernet 0/2 switch(config-if-GigabitEthernet 0/2)#switchport trunk allowed vlan remove 1-4094 switch(config-if-GigabitEthernet 0/2)#switchport trunk allowed vlan add 10,20 • Step 3: Modify the port default VLAN, the default is VLAN 1 Switch(config-if)#switchport trunk native vlan vlan-id • Step 4: Define a list of VLAN control behaviors for Trunk links (VLAN pruning, etc.) (optional, and use with caution) Switch(config-if)#switchport trunk allowed vlan { all | [ add | remove | except | only ] } vlan-list
  • 18. · Basic Configuration of VLAN • Delete VLAN Switch(config)#no vlan VLAN-id • View configuration information Switch# show vlan Ruijie#show vlan VLAN Name Status Ports ---- -------------------------------- --------- ---------------------------- 1 VLAN0001 STATIC 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, Gi0/25, Gi0/26 10 VLAN0010 STATIC Fa0/1, Fa0/2 20 VLAN0020 STATIC Fa0/3
  • 19. · VLAN Configuration Example Ruijie-SW(config)#vlan 10 Ruijie-SW(config-vlan)#add interface gigabitEthernet 0/1 Ruijie-SW(config-vlan)#exit Ruijie-SW(config)#vlan 20 Ruijie-SW(config-vlan)#add interface gigabitEthernet 0/2 Ruijie-SW(config-vlan)#exit Ruijie-SW1(config)#interface gigabitEthernet 0/24 Ruijie-SW2(config-if-GigabitEthernet 0/0)#switchport mode trunk Ruijie-SW2(config-if-GigabitEthernet 0/0)#switchport trunk allowed vlan only 10,20 Vlan 10 Vlan 20 Vlan 20 Vlan 10 Gi0/1 G0/2 Gi0/1 G0/2 G0/24 G0/24 Ruijie-SW(config)#vlan 10 Ruijie-SW(config-vlan)#add interface gigabitEthernet 0/1 Ruijie-SW(config-vlan)#exit Ruijie-SW(config)#vlan 20 Ruijie-SW(config-vlan)#add interface gigabitEthernet 0/2 Ruijie-SW(config-vlan)#exit Ruijie-SW1(config)#interface gigabitEthernet 0/24 Ruijie-SW2(config-if-GigabitEthernet 0/0)#switchport mode trunk Ruijie-SW2(config-if-GigabitEthernet 0/0)#switchport trunk allowed vlan only 10,20
  • 20. Logical-based grouping, which can be grouped according to services or functions More flexible networking regardless of physical location Reduces the management costs associated with node movement in the network Users in different VLANs need to use Layer 3 devices to communicate
  • 21. PC1 and PC4 PC2 and PC5 PC3 and PC5 PC1 and PC5