SlideShare une entreprise Scribd logo
1  sur  28
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!

Contenu connexe

Tendances (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
 

En vedette

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 youCisco Canada
 
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 sessionCisco 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 NetworksCisco Mobility
 
Introduction to cisco wireless
Introduction to  cisco wirelessIntroduction to  cisco wireless
Introduction to cisco wirelessAble 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 PracticesCisco 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.0Saurav 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 TracerSorath 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 DesignMyndi Garrett
 
Cisco Case Analysis
Cisco Case AnalysisCisco Case Analysis
Cisco Case Analysisperk2624
 

En vedette (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
 

Similaire à 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 NetworkAtakan 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.pdfarif hamidi
 
labffbhhhhjjjjjjjjj bnbbnv material.pptx
labffbhhhhjjjjjjjjj bnbbnv material.pptxlabffbhhhhjjjjjjjjj bnbbnv material.pptx
labffbhhhhjjjjjjjjj bnbbnv material.pptxBinyamBekeleMoges
 
Chapter 05 - Inter-VLAN Routing
Chapter 05 - Inter-VLAN RoutingChapter 05 - Inter-VLAN Routing
Chapter 05 - Inter-VLAN RoutingYaser Rahmati
 
CCNAv5 - S2: Chapter5 Inter Vlan Routing
CCNAv5 - S2: Chapter5 Inter Vlan RoutingCCNAv5 - S2: Chapter5 Inter Vlan Routing
CCNAv5 - S2: Chapter5 Inter Vlan RoutingVuz Dở Hơi
 
KPUCC-Rs instructor ppt_chapter5_final
KPUCC-Rs instructor ppt_chapter5_finalKPUCC-Rs instructor ppt_chapter5_final
KPUCC-Rs instructor ppt_chapter5_finalFisal Anwari
 
Chapter 16 : inter-vlan routing
Chapter 16 : inter-vlan routingChapter 16 : inter-vlan routing
Chapter 16 : inter-vlan routingteknetir
 
CCNA3 Verson6 Chapter2
CCNA3 Verson6 Chapter2CCNA3 Verson6 Chapter2
CCNA3 Verson6 Chapter2Chaing Ravuth
 
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 3Nil Menon
 
Chapter 14 : vlan
Chapter 14 : vlanChapter 14 : vlan
Chapter 14 : vlanteknetir
 
KPUCC-Rs instructor ppt_chapter3_final
KPUCC-Rs instructor ppt_chapter3_finalKPUCC-Rs instructor ppt_chapter3_final
KPUCC-Rs instructor ppt_chapter3_finalFisal Anwari
 
CCNAv5 - S2: Chapter3 Vlans
CCNAv5 - S2: Chapter3 VlansCCNAv5 - S2: Chapter3 Vlans
CCNAv5 - S2: Chapter3 VlansVuz Dở Hơi
 
Chapter9ccna
Chapter9ccnaChapter9ccna
Chapter9ccnarobertoxe
 
Day 5 VIRTUAL LANS
Day 5 VIRTUAL LANSDay 5 VIRTUAL LANS
Day 5 VIRTUAL LANSanilinvns
 
VIRTUAL LANS
VIRTUAL LANSVIRTUAL LANS
VIRTUAL LANSanilinvns
 
CCNA2 Verson6 Chapter6
CCNA2 Verson6 Chapter6CCNA2 Verson6 Chapter6
CCNA2 Verson6 Chapter6Chaing Ravuth
 

Similaire à 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
 
CCNAv5 - S2: Chapter5 Inter Vlan Routing
CCNAv5 - S2: Chapter5 Inter Vlan RoutingCCNAv5 - S2: Chapter5 Inter Vlan Routing
CCNAv5 - S2: Chapter5 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
 
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
 
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
 
KPUCC-Rs instructor ppt_chapter3_final
KPUCC-Rs instructor ppt_chapter3_finalKPUCC-Rs instructor ppt_chapter3_final
KPUCC-Rs instructor ppt_chapter3_final
 
CCNAv5 - S2: Chapter3 Vlans
CCNAv5 - S2: Chapter3 VlansCCNAv5 - S2: Chapter3 Vlans
CCNAv5 - S2: Chapter3 Vlans
 
Chapter9ccna
Chapter9ccnaChapter9ccna
Chapter9ccna
 
Chapter9ccna
Chapter9ccnaChapter9ccna
Chapter9ccna
 
Day 5 VIRTUAL LANS
Day 5 VIRTUAL LANSDay 5 VIRTUAL LANS
Day 5 VIRTUAL LANS
 
VIRTUAL LANS
VIRTUAL LANSVIRTUAL LANS
VIRTUAL LANS
 
CCNA2 Verson6 Chapter6
CCNA2 Verson6 Chapter6CCNA2 Verson6 Chapter6
CCNA2 Verson6 Chapter6
 
ccna (vlanning exam)
ccna (vlanning  exam) ccna (vlanning  exam)
ccna (vlanning exam)
 

Dernier

Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Pooja Bhuva
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - Englishneillewis46
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSCeline George
 
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...Amil baba
 
How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17Celine George
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structuredhanjurrannsibayan2
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.pptRamjanShidvankar
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxJisc
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxPooja Bhuva
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibitjbellavia9
 
Plant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptxPlant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptxUmeshTimilsina1
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...Nguyen Thanh Tu Collection
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jisc
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.christianmathematics
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...Poonam Aher Patil
 
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptxOn_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptxPooja Bhuva
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 

Dernier (20)

Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
 
How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptx
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Plant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptxPlant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptx
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptxOn_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 

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!