SlideShare a Scribd company logo
CSE 496 Project and Thesis 
Design and implementation of VLAN of a 
University campus 
Presented by 
Md. Ismail Miah (ID-100302014) 
Jannatul Ferdous (ID- 110202001) 
CSE Department
Well Come 
To 
Our Presentation
Objectives 
Introduction to Local 
Area Network (LAN) 
Topics: 
 Defining LAN 
 Characteristics of LAN 
 Types of LAN 
 OSI model of Networking 
 Ethernet Cabling 
 Problems in LAN 
Introduction to Virtual Local 
Area Network (VLAN) 
Topics: 
Defining VLAN 
Collision domain and Broadcast Domain 
Types of VLAN connection Link 
Establishing VLAN membership 
Benefits of VLAN 
Security Required in VLAN 
VLAN implementation 
Topics: 
 IP diagram 
VLAN designed for GUB 
VLAN designed by Cisco Packet Tracer 
Modes of Router and Switch 
Ways of getting connection into User mode 
VLAN configuration step by step
Introduction to Local Area Network (LAN) 
Defining of LAN 
Figure: Diagram of LAN
Introduction to Local Area Network (LAN) 
Characteristics of LAN 
Easily resource sharing 
Data transfer rate are high 
Small area covered by LAN 
Cost of setting up the network is usually low 
Flexibility, low error rates and reliability of operation and 
simple maintenance
Introduction to Local Area Network (LAN) 
Types of LAN 
Figure: Star Topology 
Figure: Ring Topology 
Figure: Bus Topology
Introduction to Local Area Network (LAN) 
OSI model of Networking 
Figure: OSI model of Networking
Introduction to Local Area Network (LAN) 
Ethernet Cabling 
Figure: Straight-Through cable Figure: Cross Over cable 
Figure: Rolled cable
Introduction to Local Area Network (LAN) 
Problems in LAN 
 To create group of users by department that work together instead of by 
physical location is impossible in LAN 
 Cannot reduce broadcast domain 
 Cannot enforce security by group wise 
 Overall performance is not good 
 Impossible to design a network using more than 300 computers 
 Need more Network administrators 
 To increase the number of host is complex 
 Maintenance cost is high
Introduction to Virtual Local Area Network (VLAN) 
Defining VLAN 
A Virtual Local Area Network (VLAN)is a group of devices that function as a single 
Figure: Without VLAN broadcast sent from 
host A to host B 
Figure: In VLAN broadcast sent from 
host A to host B 
Local Area Network segment (broadcast domain).
Introduction to Virtual Local Area Network (VLAN) 
Collision domain and Broadcast domain 
Figure: Collision domain 
Figure: Broadcast domain
Introduction to Virtual Local Area Network (VLAN) 
Types of VLAN connection Link 
There are two types of VLAN connection links and they are Access 
link and Trunk link- 
Access Links/Ports: Access Ports: An access port belongs to 
and carries the traffic of only one VLAN 
Trunk Links/Ports: Trunk ports can carry multiple VLANs at 
a time. A trunk link is 100 or 1000Mbps point-to-point link 
between two switches, between a switch and router, or even 
between a switch and server, and it carries the traffic of 
multiple VLANs from 1 to 4094 at a time.
Introduction to Virtual Local Area Network (VLAN) 
Establishing VLAN membership 
The two common approaches to assigning VLAN membership 
are as follows: 
Static VLANs 
Dynamic VLANs 
Figure: Static VLAN Figure: Dynamic VLAN
Introduction to Virtual Local Area Network (VLAN) 
Benefits of VLAN 
Increased performance 
 Improved manageability 
 Simplification of software configurations 
 Increased security options
Introduction to VLAN 
Security Required in VLAN 
The following security requires for a good VLAN: 
Authentication 
Access Control 
Confidentiality 
Integrity 
Non repudiation
Implementation of VLAN 
IP diagram 
Table: IP diagram for VLAN
Implementation of VLAN 
VLAN designed for GUB 
Real IP Switch 
MIKROTIK ROUTER 
Figure: VLAN diagram 
ANNEX BUILDING 
Netgear Switch 
SCIENCE CAMPUS 
Cisco Switch-C 
VLAN 
CISCO 
ROUTER 
CISCO VLAN SWITCH-A 
URMS Server 
Proxy Server 
KOHA Server 
Tally Server 
Netgear 
Switch 
CISCO SWITCH-B 
Domain Server 
MC 
Netgear 
Switch 
Netgear 
Switch 
Netgear Switch Netgear Switch 
Netgear Switch Netgear Switch 
Netgear Switch Netgear Switch 
Trunk 
Trunk 
Netgear 
Switch 
Netgear 
Switch 
Trunk
Implementation of VLAN 
VLAN designed by Cisco Packet Tracer 
Figure: VLAN diagram
Implementation of VLAN 
Modes of Router and Switch 
User Mode 
Privilege Mode 
Config Mode 
Example 
Router> (user mode) 
Router # (privilege mode) 
Router(Config)# (Config Mode )
Implementation of VLAN 
Ways of getting connection into User mode 
Console: An RJ-45 connection on all Cisco routers allows full 
access to the router if no passwords are set. 
Aux: An RJ-45 connection on most routers allows to connect a 
modem to the port, dial in to the router, and make a console 
connection. 
VTY: Virtual Teletype is used to allow a Telnet connection to 
the router, which will then work like a console port. It must 
have an active interface on the router for Telnet to connect to 
the router.
Implementation of VLAN 
VLAN configuration step by step 
Router configuration 
Switch configuration 
 Host configuration
Implementation of VLAN 
Router configuration 
Figure: Router connection to PC 
Rolled 
Cable 
To set the host name we use the following commands 
Router>enable 
Router#configure terminal 
Router(config) #hostname GRouter 
To set the password at the console port we use the following commands 
GRouter(config)#line vty 0 4 
GRouter(config-line)#login 
GRouter(config-line)#password 123 
GRouter(config-line)#exit 
GRouter(config)#
Implementation of VLAN 
To set the IP address and subnet mask by using the following commands 
GRouter(config)# interface g0/1 
GRouter(config-if)# ip address 172.16.1.1 255.255.255.0 
GRouter(config-if)#duplex auto 
GRouter(config-if)#speed auto 
GRouter(config-if)# no shutdown 
GRouter(config-if)# exit 
GRouter(config)# ^z 
GRouter# write 
GRouter#disable 
GRouter> 
To configure the inter VLAN by using the following commands(This step should be done by telnet after all 
the switches configure) 
GRouter>enable 
GRouter# 
GRouter(config)#interface g0/1.3(creating sub interface) 
GRouter(config-subif)#encapsulation dot1q 3(3 for VLAN 3) 
GRouter(config-subif)#ip address 172.16.3.1 255.255.255.0 
GRouter(config-subif)#no shutdown 
GRouter(config-subif)#exit 
GRouter(config)#interface g0/1.4 
GRouter(config-subif)#encapsulation dot1q 4(4 for VLAN 4) 
GRouter(config-subif)#ip address 172.16.4.1 255.255.255.0 
GRouter(config-subif)#no shutdown 
GRouter(config-subif)#exit 
GRouter(config)# 
GRouter(config)# ^z 
GRouter# write 
GRouter#
Implementation of VLAN 
Switch configuration 
Cisco Switch 
Rolled 
cable 
Power cable 
Figure: Switch connection to PC 
To set the host name we use the following commands 
Switch>enable 
Switch #config t 
Switch-A(config) #hostname Switch-A 
Switch-A (config) # 
To set the password we use the following commands 
Switch-A(config)#line vty 0 4 
Switch-A(config-line)#login 
Switch-A(config-line)#password 123 
Switch-A (config-line)#exit 
Switch-A (config)#
Implementation of VLAN 
To set the IP address and subnet mask by using the following commands 
Switch(config)# interface vlan 1 
Switch-A(config-if)# ip address 172.16.1.2 255.255.255.0 
Switch-A(config-if)# no shutdown 
Switch-A(config-if)# exit 
Switch-A (config)# 
Switch-A(config)#ctrl+z 
Switch-A#write 
To configure the name of VLANs by using the following commands 
Switch-A#config t 
Switch-A(config)#vlan 3 
Switch-A(config-vlan)#name Registrar 
Switch-A(config)#exit 
Switch-A(config)#vlan 4
Implementation of VLAN 
To configure the ports by using the following commands 
Switch-A #config t 
Switch-A (config)#interface g1/1 
Switch-A (config-if)# switchport mode trunk 
Switch-A (config-if)#exit 
Switch-A(config)#interface f0/1 
Switch-A (config-if)# switchport trunk allowed vlan 1-20 
Switch-A (config-if)# switchport mode trunk 
Switch-A (config-if)# exit 
Switch-A(config)#interface f0/2 
Switch-A (config-if)# switchport trunk allowed vlan 1-20 
Switch-A (config-if)# switchport mode trunk 
Switch-A (config-if)# exit 
Switch-A(config)#interface f0/6 
Switch-A (config-if)# switchport access vlan 6 
Switch-A (config-if)# exit 
Switch-A(config)#interface f0/7 
Switch-A (config-if)# switchport access vlan 7 
Switch-A (config-if)# exit 
Switch-A (config)# 
Switch-A (config)# ctrl+z 
Switch-A# write 
Switch-A# disable 
Switch-A>
Implementation of VLAN 
Host configuration 
For the computers under VLAN 3 
IP address- 172.16.3.11-254 
Subnet mask-255.255.255.0 
Default gateway-172.16.3.1 
Preferred DNS-202.191.120.2 
Alternate DNS-2-202.191.127.3
Thank you for your 
attention!

More Related Content

What's hot

Virtual LAN
Virtual LANVirtual LAN
Virtual LAN
Darshan Dalwadi
 
Virtual LAN
Virtual LANVirtual LAN
Virtual LAN
Lilesh Pathe
 
Vlans and inter vlan routing
Vlans and inter vlan routingVlans and inter vlan routing
Vlans and inter vlan routing
Mohammedseleim
 
Virtual local area networks
Virtual local area networksVirtual local area networks
Virtual local area networks
Anonymouscb2blyVKFr
 
Vlan
VlanVlan
Vlans
VlansVlans
Benefits of vlan
Benefits of vlanBenefits of vlan
Benefits of vlan
Logitrain
 
VLAN Virtual Area Network ,Switch,Ethernet ,VIkram Snehi
VLAN Virtual Area Network ,Switch,Ethernet ,VIkram SnehiVLAN Virtual Area Network ,Switch,Ethernet ,VIkram Snehi
VLAN Virtual Area Network ,Switch,Ethernet ,VIkram Snehi
MR. VIKRAM SNEHI
 
Advantages of VLAN
Advantages of VLANAdvantages of VLAN
Advantages of VLAN
NetProtocol Xpert
 
Vlan
VlanVlan
vlan
vlanvlan
Vlan
VlanVlan
Switching & VLAN(4knet.ir)
Switching & VLAN(4knet.ir)Switching & VLAN(4knet.ir)
Switching & VLAN(4knet.ir)
Azad Kaki
 
Vlans
VlansVlans
Vlans (virtual local area networks)
Vlans (virtual local area networks)Vlans (virtual local area networks)
Vlans (virtual local area networks)
Kanishk Raj
 
Vlan
VlanVlan
Vlan
Vlan Vlan
VLAN
VLANVLAN
VLAN Network for Extreme Networks
VLAN Network for Extreme NetworksVLAN Network for Extreme Networks
VLAN Network for Extreme Networks
Dani Royman Simanjuntak
 
Vlan Types
Vlan TypesVlan Types
Vlan Types
IT Tech
 

What's hot (20)

Virtual LAN
Virtual LANVirtual LAN
Virtual LAN
 
Virtual LAN
Virtual LANVirtual LAN
Virtual LAN
 
Vlans and inter vlan routing
Vlans and inter vlan routingVlans and inter vlan routing
Vlans and inter vlan routing
 
Virtual local area networks
Virtual local area networksVirtual local area networks
Virtual local area networks
 
Vlan
VlanVlan
Vlan
 
Vlans
VlansVlans
Vlans
 
Benefits of vlan
Benefits of vlanBenefits of vlan
Benefits of vlan
 
VLAN Virtual Area Network ,Switch,Ethernet ,VIkram Snehi
VLAN Virtual Area Network ,Switch,Ethernet ,VIkram SnehiVLAN Virtual Area Network ,Switch,Ethernet ,VIkram Snehi
VLAN Virtual Area Network ,Switch,Ethernet ,VIkram Snehi
 
Advantages of VLAN
Advantages of VLANAdvantages of VLAN
Advantages of VLAN
 
Vlan
VlanVlan
Vlan
 
vlan
vlanvlan
vlan
 
Vlan
VlanVlan
Vlan
 
Switching & VLAN(4knet.ir)
Switching & VLAN(4knet.ir)Switching & VLAN(4knet.ir)
Switching & VLAN(4knet.ir)
 
Vlans
VlansVlans
Vlans
 
Vlans (virtual local area networks)
Vlans (virtual local area networks)Vlans (virtual local area networks)
Vlans (virtual local area networks)
 
Vlan
VlanVlan
Vlan
 
Vlan
Vlan Vlan
Vlan
 
VLAN
VLANVLAN
VLAN
 
VLAN Network for Extreme Networks
VLAN Network for Extreme NetworksVLAN Network for Extreme Networks
VLAN Network for Extreme Networks
 
Vlan Types
Vlan TypesVlan Types
Vlan Types
 

Viewers also liked

Creating a Collaborative Workplace Culture Webinar Series: “How can remote wo...
Creating a Collaborative Workplace Culture Webinar Series: “How can remote wo...Creating a Collaborative Workplace Culture Webinar Series: “How can remote wo...
Creating a Collaborative Workplace Culture Webinar Series: “How can remote wo...
Cisco Canada
 
The right Wireless Architecture for you
The right Wireless Architecture for youThe right Wireless Architecture for you
The right Wireless Architecture for you
Cisco Canada
 
The Future Workplace
The Future WorkplaceThe Future Workplace
The Future Workplace
Päivi Hietanen
 
Building the Next Generation Workplace
Building the Next Generation Workplace Building the Next Generation Workplace
Building the Next Generation Workplace
Cisco Canada
 
Cisco Unified Wireless Network and Converged access – Design session
Cisco Unified Wireless Network and Converged access – Design sessionCisco Unified Wireless Network and Converged access – Design session
Cisco Unified Wireless Network and Converged access – Design session
Cisco Russia
 
Design and Deployment of Enterprise Wirlesss Networks
Design and Deployment of Enterprise Wirlesss NetworksDesign and Deployment of Enterprise Wirlesss Networks
Design and Deployment of Enterprise Wirlesss Networks
Cisco Mobility
 
Introduction to cisco wireless
Introduction to  cisco wirelessIntroduction to  cisco wireless
Introduction to cisco wireless
Able George
 
Wireless LAN Security, Policy, and Deployment Best Practices
Wireless LAN Security, Policy, and Deployment Best PracticesWireless LAN Security, Policy, and Deployment Best Practices
Wireless LAN Security, Policy, and Deployment Best Practices
Cisco Mobility
 
Network Design on cisco packet tracer 6.0
Network Design on cisco packet tracer 6.0Network Design on cisco packet tracer 6.0
Network Design on cisco packet tracer 6.0
Saurav Pandey
 
Step by Step guide to set up a simple network in Packet Tracer
Step by Step guide to set up a simple network in Packet TracerStep by Step guide to set up a simple network in Packet Tracer
Step by Step guide to set up a simple network in Packet Tracer
Sorath Asnani
 
Data communication - Lecture-01
Data communication - Lecture-01 Data communication - Lecture-01
Data communication - Lecture-01
Sehrish Rafiq
 
Future of Work - Cisco Connected Workplace - Office Experience Design
Future of Work - Cisco Connected Workplace - Office Experience DesignFuture of Work - Cisco Connected Workplace - Office Experience Design
Future of Work - Cisco Connected Workplace - Office Experience Design
Myndi Garrett
 
Network topology.ppt
Network topology.pptNetwork topology.ppt
Network topology.ppt
Siddique Ibrahim
 
Cisco Case Analysis
Cisco Case AnalysisCisco Case Analysis
Cisco Case Analysis
perk2624
 

Viewers also liked (14)

Creating a Collaborative Workplace Culture Webinar Series: “How can remote wo...
Creating a Collaborative Workplace Culture Webinar Series: “How can remote wo...Creating a Collaborative Workplace Culture Webinar Series: “How can remote wo...
Creating a Collaborative Workplace Culture Webinar Series: “How can remote wo...
 
The right Wireless Architecture for you
The right Wireless Architecture for youThe right Wireless Architecture for you
The right Wireless Architecture for you
 
The Future Workplace
The Future WorkplaceThe Future Workplace
The Future Workplace
 
Building the Next Generation Workplace
Building the Next Generation Workplace Building the Next Generation Workplace
Building the Next Generation Workplace
 
Cisco Unified Wireless Network and Converged access – Design session
Cisco Unified Wireless Network and Converged access – Design sessionCisco Unified Wireless Network and Converged access – Design session
Cisco Unified Wireless Network and Converged access – Design session
 
Design and Deployment of Enterprise Wirlesss Networks
Design and Deployment of Enterprise Wirlesss NetworksDesign and Deployment of Enterprise Wirlesss Networks
Design and Deployment of Enterprise Wirlesss Networks
 
Introduction to cisco wireless
Introduction to  cisco wirelessIntroduction to  cisco wireless
Introduction to cisco wireless
 
Wireless LAN Security, Policy, and Deployment Best Practices
Wireless LAN Security, Policy, and Deployment Best PracticesWireless LAN Security, Policy, and Deployment Best Practices
Wireless LAN Security, Policy, and Deployment Best Practices
 
Network Design on cisco packet tracer 6.0
Network Design on cisco packet tracer 6.0Network Design on cisco packet tracer 6.0
Network Design on cisco packet tracer 6.0
 
Step by Step guide to set up a simple network in Packet Tracer
Step by Step guide to set up a simple network in Packet TracerStep by Step guide to set up a simple network in Packet Tracer
Step by Step guide to set up a simple network in Packet Tracer
 
Data communication - Lecture-01
Data communication - Lecture-01 Data communication - Lecture-01
Data communication - Lecture-01
 
Future of Work - Cisco Connected Workplace - Office Experience Design
Future of Work - Cisco Connected Workplace - Office Experience DesignFuture of Work - Cisco Connected Workplace - Office Experience Design
Future of Work - Cisco Connected Workplace - Office Experience Design
 
Network topology.ppt
Network topology.pptNetwork topology.ppt
Network topology.ppt
 
Cisco Case Analysis
Cisco Case AnalysisCisco Case Analysis
Cisco Case Analysis
 

Similar to Presentation

How to Configure QinQ?
How to Configure QinQ?How to Configure QinQ?
How to Configure QinQ?
Huanetwork
 
Virtual Local Area Network
Virtual Local Area NetworkVirtual Local Area Network
Virtual Local Area Network
Atakan ATAK
 
3.4.6-lab---configure-vlans-and-trunking.pdf
3.4.6-lab---configure-vlans-and-trunking.pdf3.4.6-lab---configure-vlans-and-trunking.pdf
3.4.6-lab---configure-vlans-and-trunking.pdf
arif hamidi
 
labffbhhhhjjjjjjjjj bnbbnv material.pptx
labffbhhhhjjjjjjjjj bnbbnv material.pptxlabffbhhhhjjjjjjjjj bnbbnv material.pptx
labffbhhhhjjjjjjjjj bnbbnv material.pptx
BinyamBekeleMoges
 
Chapter 05 - Inter-VLAN Routing
Chapter 05 - Inter-VLAN RoutingChapter 05 - Inter-VLAN Routing
Chapter 05 - Inter-VLAN Routing
Yaser Rahmati
 
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
 
CCNAv5 - S2: Chapter5 Inter Vlan Routing
CCNAv5 - S2: Chapter5 Inter Vlan RoutingCCNAv5 - S2: Chapter5 Inter Vlan Routing
CCNAv5 - S2: Chapter5 Inter Vlan Routing
Vuz Dở Hơi
 
Chapter 16 : inter-vlan routing
Chapter 16 : inter-vlan routingChapter 16 : inter-vlan routing
Chapter 16 : inter-vlan routing
teknetir
 
CCNA3 Verson6 Chapter2
CCNA3 Verson6 Chapter2CCNA3 Verson6 Chapter2
CCNA3 Verson6 Chapter2
Chaing Ravuth
 
Chapter 1 Switch Network Device (1).ppt
Chapter 1  Switch Network Device (1).pptChapter 1  Switch Network Device (1).ppt
Chapter 1 Switch Network Device (1).ppt
desalewminale
 
CCNA 2 Routing and Switching v5.0 Chapter 3
CCNA 2 Routing and Switching v5.0 Chapter 3CCNA 2 Routing and Switching v5.0 Chapter 3
CCNA 2 Routing and Switching v5.0 Chapter 3
Nil Menon
 
Chapter 14 : vlan
Chapter 14 : vlanChapter 14 : vlan
Chapter 14 : vlan
teknetir
 
Chapter 03 - VLANs
Chapter 03 - VLANsChapter 03 - VLANs
Chapter 03 - VLANs
Yaser Rahmati
 
CCNAv5 - S2: Chapter3 Vlans
CCNAv5 - S2: Chapter3 VlansCCNAv5 - S2: Chapter3 Vlans
CCNAv5 - S2: Chapter3 Vlans
Vuz Dở Hơi
 
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
 
Chapter9ccna
Chapter9ccnaChapter9ccna
Chapter9ccna
ernestlithur
 
Chapter9ccna
Chapter9ccnaChapter9ccna
Chapter9ccna
robertoxe
 
VIRTUAL LANS
VIRTUAL LANSVIRTUAL LANS
VIRTUAL LANS
anilinvns
 
Day 5 VIRTUAL LANS
Day 5 VIRTUAL LANSDay 5 VIRTUAL LANS
Day 5 VIRTUAL LANS
anilinvns
 
CCNA2 Verson6 Chapter6
CCNA2 Verson6 Chapter6CCNA2 Verson6 Chapter6
CCNA2 Verson6 Chapter6
Chaing Ravuth
 

Similar to Presentation (20)

How to Configure QinQ?
How to Configure QinQ?How to Configure QinQ?
How to Configure QinQ?
 
Virtual Local Area Network
Virtual Local Area NetworkVirtual Local Area Network
Virtual Local Area Network
 
3.4.6-lab---configure-vlans-and-trunking.pdf
3.4.6-lab---configure-vlans-and-trunking.pdf3.4.6-lab---configure-vlans-and-trunking.pdf
3.4.6-lab---configure-vlans-and-trunking.pdf
 
labffbhhhhjjjjjjjjj bnbbnv material.pptx
labffbhhhhjjjjjjjjj bnbbnv material.pptxlabffbhhhhjjjjjjjjj bnbbnv material.pptx
labffbhhhhjjjjjjjjj bnbbnv material.pptx
 
Chapter 05 - Inter-VLAN Routing
Chapter 05 - Inter-VLAN RoutingChapter 05 - Inter-VLAN Routing
Chapter 05 - Inter-VLAN Routing
 
KPUCC-Rs instructor ppt_chapter5_final
KPUCC-Rs instructor ppt_chapter5_finalKPUCC-Rs instructor ppt_chapter5_final
KPUCC-Rs instructor ppt_chapter5_final
 
CCNAv5 - S2: Chapter5 Inter Vlan Routing
CCNAv5 - S2: Chapter5 Inter Vlan RoutingCCNAv5 - S2: Chapter5 Inter Vlan Routing
CCNAv5 - S2: Chapter5 Inter Vlan Routing
 
Chapter 16 : inter-vlan routing
Chapter 16 : inter-vlan routingChapter 16 : inter-vlan routing
Chapter 16 : inter-vlan routing
 
CCNA3 Verson6 Chapter2
CCNA3 Verson6 Chapter2CCNA3 Verson6 Chapter2
CCNA3 Verson6 Chapter2
 
Chapter 1 Switch Network Device (1).ppt
Chapter 1  Switch Network Device (1).pptChapter 1  Switch Network Device (1).ppt
Chapter 1 Switch Network Device (1).ppt
 
CCNA 2 Routing and Switching v5.0 Chapter 3
CCNA 2 Routing and Switching v5.0 Chapter 3CCNA 2 Routing and Switching v5.0 Chapter 3
CCNA 2 Routing and Switching v5.0 Chapter 3
 
Chapter 14 : vlan
Chapter 14 : vlanChapter 14 : vlan
Chapter 14 : vlan
 
Chapter 03 - VLANs
Chapter 03 - VLANsChapter 03 - VLANs
Chapter 03 - VLANs
 
CCNAv5 - S2: Chapter3 Vlans
CCNAv5 - S2: Chapter3 VlansCCNAv5 - S2: Chapter3 Vlans
CCNAv5 - S2: Chapter3 Vlans
 
KPUCC-Rs instructor ppt_chapter3_final
KPUCC-Rs instructor ppt_chapter3_finalKPUCC-Rs instructor ppt_chapter3_final
KPUCC-Rs instructor ppt_chapter3_final
 
Chapter9ccna
Chapter9ccnaChapter9ccna
Chapter9ccna
 
Chapter9ccna
Chapter9ccnaChapter9ccna
Chapter9ccna
 
VIRTUAL LANS
VIRTUAL LANSVIRTUAL LANS
VIRTUAL LANS
 
Day 5 VIRTUAL LANS
Day 5 VIRTUAL LANSDay 5 VIRTUAL LANS
Day 5 VIRTUAL LANS
 
CCNA2 Verson6 Chapter6
CCNA2 Verson6 Chapter6CCNA2 Verson6 Chapter6
CCNA2 Verson6 Chapter6
 

Recently uploaded

BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
Katrina Pritchard
 
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
สมใจ จันสุกสี
 
How to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP ModuleHow to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP Module
Celine George
 
PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.
Dr. Shivangi Singh Parihar
 
clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
Priyankaranawat4
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
adhitya5119
 
How to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 InventoryHow to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 Inventory
Celine George
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Fajar Baskoro
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
PECB
 
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective UpskillingYour Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Excellence Foundation for South Sudan
 
PIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf IslamabadPIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf Islamabad
AyyanKhan40
 
How to Manage Your Lost Opportunities in Odoo 17 CRM
How to Manage Your Lost Opportunities in Odoo 17 CRMHow to Manage Your Lost Opportunities in Odoo 17 CRM
How to Manage Your Lost Opportunities in Odoo 17 CRM
Celine George
 
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
heathfieldcps1
 
MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
Colégio Santa Teresinha
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
Dr. Mulla Adam Ali
 
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem studentsRHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
Himanshu Rai
 
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
Nguyen Thanh Tu Collection
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
Nicholas Montgomery
 
How to deliver Powerpoint Presentations.pptx
How to deliver Powerpoint  Presentations.pptxHow to deliver Powerpoint  Presentations.pptx
How to deliver Powerpoint Presentations.pptx
HajraNaeem15
 
Leveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit InnovationLeveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit Innovation
TechSoup
 

Recently uploaded (20)

BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
 
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
 
How to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP ModuleHow to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP Module
 
PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.
 
clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
 
How to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 InventoryHow to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 Inventory
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
 
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective UpskillingYour Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective Upskilling
 
PIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf IslamabadPIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf Islamabad
 
How to Manage Your Lost Opportunities in Odoo 17 CRM
How to Manage Your Lost Opportunities in Odoo 17 CRMHow to Manage Your Lost Opportunities in Odoo 17 CRM
How to Manage Your Lost Opportunities in Odoo 17 CRM
 
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
 
MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
 
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem studentsRHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
 
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
 
How to deliver Powerpoint Presentations.pptx
How to deliver Powerpoint  Presentations.pptxHow to deliver Powerpoint  Presentations.pptx
How to deliver Powerpoint Presentations.pptx
 
Leveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit InnovationLeveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit Innovation
 

Presentation

  • 1. CSE 496 Project and Thesis Design and implementation of VLAN of a University campus Presented by Md. Ismail Miah (ID-100302014) Jannatul Ferdous (ID- 110202001) CSE Department
  • 2. Well Come To Our Presentation
  • 3. Objectives Introduction to Local Area Network (LAN) Topics:  Defining LAN  Characteristics of LAN  Types of LAN  OSI model of Networking  Ethernet Cabling  Problems in LAN Introduction to Virtual Local Area Network (VLAN) Topics: Defining VLAN Collision domain and Broadcast Domain Types of VLAN connection Link Establishing VLAN membership Benefits of VLAN Security Required in VLAN VLAN implementation Topics:  IP diagram VLAN designed for GUB VLAN designed by Cisco Packet Tracer Modes of Router and Switch Ways of getting connection into User mode VLAN configuration step by step
  • 4. Introduction to Local Area Network (LAN) Defining of LAN Figure: Diagram of LAN
  • 5. Introduction to Local Area Network (LAN) Characteristics of LAN Easily resource sharing Data transfer rate are high Small area covered by LAN Cost of setting up the network is usually low Flexibility, low error rates and reliability of operation and simple maintenance
  • 6. Introduction to Local Area Network (LAN) Types of LAN Figure: Star Topology Figure: Ring Topology Figure: Bus Topology
  • 7. Introduction to Local Area Network (LAN) OSI model of Networking Figure: OSI model of Networking
  • 8. Introduction to Local Area Network (LAN) Ethernet Cabling Figure: Straight-Through cable Figure: Cross Over cable Figure: Rolled cable
  • 9. Introduction to Local Area Network (LAN) Problems in LAN  To create group of users by department that work together instead of by physical location is impossible in LAN  Cannot reduce broadcast domain  Cannot enforce security by group wise  Overall performance is not good  Impossible to design a network using more than 300 computers  Need more Network administrators  To increase the number of host is complex  Maintenance cost is high
  • 10. Introduction to Virtual Local Area Network (VLAN) Defining VLAN A Virtual Local Area Network (VLAN)is a group of devices that function as a single Figure: Without VLAN broadcast sent from host A to host B Figure: In VLAN broadcast sent from host A to host B Local Area Network segment (broadcast domain).
  • 11. Introduction to Virtual Local Area Network (VLAN) Collision domain and Broadcast domain Figure: Collision domain Figure: Broadcast domain
  • 12. Introduction to Virtual Local Area Network (VLAN) Types of VLAN connection Link There are two types of VLAN connection links and they are Access link and Trunk link- Access Links/Ports: Access Ports: An access port belongs to and carries the traffic of only one VLAN Trunk Links/Ports: Trunk ports can carry multiple VLANs at a time. A trunk link is 100 or 1000Mbps point-to-point link between two switches, between a switch and router, or even between a switch and server, and it carries the traffic of multiple VLANs from 1 to 4094 at a time.
  • 13. Introduction to Virtual Local Area Network (VLAN) Establishing VLAN membership The two common approaches to assigning VLAN membership are as follows: Static VLANs Dynamic VLANs Figure: Static VLAN Figure: Dynamic VLAN
  • 14. Introduction to Virtual Local Area Network (VLAN) Benefits of VLAN Increased performance  Improved manageability  Simplification of software configurations  Increased security options
  • 15. Introduction to VLAN Security Required in VLAN The following security requires for a good VLAN: Authentication Access Control Confidentiality Integrity Non repudiation
  • 16. Implementation of VLAN IP diagram Table: IP diagram for VLAN
  • 17. Implementation of VLAN VLAN designed for GUB Real IP Switch MIKROTIK ROUTER Figure: VLAN diagram ANNEX BUILDING Netgear Switch SCIENCE CAMPUS Cisco Switch-C VLAN CISCO ROUTER CISCO VLAN SWITCH-A URMS Server Proxy Server KOHA Server Tally Server Netgear Switch CISCO SWITCH-B Domain Server MC Netgear Switch Netgear Switch Netgear Switch Netgear Switch Netgear Switch Netgear Switch Netgear Switch Netgear Switch Trunk Trunk Netgear Switch Netgear Switch Trunk
  • 18. Implementation of VLAN VLAN designed by Cisco Packet Tracer Figure: VLAN diagram
  • 19. Implementation of VLAN Modes of Router and Switch User Mode Privilege Mode Config Mode Example Router> (user mode) Router # (privilege mode) Router(Config)# (Config Mode )
  • 20. Implementation of VLAN Ways of getting connection into User mode Console: An RJ-45 connection on all Cisco routers allows full access to the router if no passwords are set. Aux: An RJ-45 connection on most routers allows to connect a modem to the port, dial in to the router, and make a console connection. VTY: Virtual Teletype is used to allow a Telnet connection to the router, which will then work like a console port. It must have an active interface on the router for Telnet to connect to the router.
  • 21. Implementation of VLAN VLAN configuration step by step Router configuration Switch configuration  Host configuration
  • 22. Implementation of VLAN Router configuration Figure: Router connection to PC Rolled Cable To set the host name we use the following commands Router>enable Router#configure terminal Router(config) #hostname GRouter To set the password at the console port we use the following commands GRouter(config)#line vty 0 4 GRouter(config-line)#login GRouter(config-line)#password 123 GRouter(config-line)#exit GRouter(config)#
  • 23. Implementation of VLAN To set the IP address and subnet mask by using the following commands GRouter(config)# interface g0/1 GRouter(config-if)# ip address 172.16.1.1 255.255.255.0 GRouter(config-if)#duplex auto GRouter(config-if)#speed auto GRouter(config-if)# no shutdown GRouter(config-if)# exit GRouter(config)# ^z GRouter# write GRouter#disable GRouter> To configure the inter VLAN by using the following commands(This step should be done by telnet after all the switches configure) GRouter>enable GRouter# GRouter(config)#interface g0/1.3(creating sub interface) GRouter(config-subif)#encapsulation dot1q 3(3 for VLAN 3) GRouter(config-subif)#ip address 172.16.3.1 255.255.255.0 GRouter(config-subif)#no shutdown GRouter(config-subif)#exit GRouter(config)#interface g0/1.4 GRouter(config-subif)#encapsulation dot1q 4(4 for VLAN 4) GRouter(config-subif)#ip address 172.16.4.1 255.255.255.0 GRouter(config-subif)#no shutdown GRouter(config-subif)#exit GRouter(config)# GRouter(config)# ^z GRouter# write GRouter#
  • 24. Implementation of VLAN Switch configuration Cisco Switch Rolled cable Power cable Figure: Switch connection to PC To set the host name we use the following commands Switch>enable Switch #config t Switch-A(config) #hostname Switch-A Switch-A (config) # To set the password we use the following commands Switch-A(config)#line vty 0 4 Switch-A(config-line)#login Switch-A(config-line)#password 123 Switch-A (config-line)#exit Switch-A (config)#
  • 25. Implementation of VLAN To set the IP address and subnet mask by using the following commands Switch(config)# interface vlan 1 Switch-A(config-if)# ip address 172.16.1.2 255.255.255.0 Switch-A(config-if)# no shutdown Switch-A(config-if)# exit Switch-A (config)# Switch-A(config)#ctrl+z Switch-A#write To configure the name of VLANs by using the following commands Switch-A#config t Switch-A(config)#vlan 3 Switch-A(config-vlan)#name Registrar Switch-A(config)#exit Switch-A(config)#vlan 4
  • 26. Implementation of VLAN To configure the ports by using the following commands Switch-A #config t Switch-A (config)#interface g1/1 Switch-A (config-if)# switchport mode trunk Switch-A (config-if)#exit Switch-A(config)#interface f0/1 Switch-A (config-if)# switchport trunk allowed vlan 1-20 Switch-A (config-if)# switchport mode trunk Switch-A (config-if)# exit Switch-A(config)#interface f0/2 Switch-A (config-if)# switchport trunk allowed vlan 1-20 Switch-A (config-if)# switchport mode trunk Switch-A (config-if)# exit Switch-A(config)#interface f0/6 Switch-A (config-if)# switchport access vlan 6 Switch-A (config-if)# exit Switch-A(config)#interface f0/7 Switch-A (config-if)# switchport access vlan 7 Switch-A (config-if)# exit Switch-A (config)# Switch-A (config)# ctrl+z Switch-A# write Switch-A# disable Switch-A>
  • 27. Implementation of VLAN Host configuration For the computers under VLAN 3 IP address- 172.16.3.11-254 Subnet mask-255.255.255.0 Default gateway-172.16.3.1 Preferred DNS-202.191.120.2 Alternate DNS-2-202.191.127.3
  • 28. Thank you for your attention!