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 private network
Virtual private networkVirtual private network
Virtual private network
Sowmia Sathyan
 

What's hot (20)

Maximizing SD-WAN Architecture with Service Chaining - VeloCloud
Maximizing SD-WAN Architecture with Service Chaining - VeloCloudMaximizing SD-WAN Architecture with Service Chaining - VeloCloud
Maximizing SD-WAN Architecture with Service Chaining - VeloCloud
 
Why sdn
Why sdnWhy sdn
Why sdn
 
Ch 02 --- sdn and openflow architecture
Ch 02 --- sdn and openflow architectureCh 02 --- sdn and openflow architecture
Ch 02 --- sdn and openflow architecture
 
Understanding Cisco’ Next Generation SD-WAN Technology
Understanding Cisco’ Next Generation SD-WAN TechnologyUnderstanding Cisco’ Next Generation SD-WAN Technology
Understanding Cisco’ Next Generation SD-WAN Technology
 
Meraki Overview
Meraki OverviewMeraki Overview
Meraki Overview
 
Virtual private network
Virtual private networkVirtual private network
Virtual private network
 
Cisco SDWAN - Components Deployment Workflow
Cisco SDWAN - Components Deployment WorkflowCisco SDWAN - Components Deployment Workflow
Cisco SDWAN - Components Deployment Workflow
 
VirtuaL area network (VLAN)
VirtuaL area network (VLAN)  VirtuaL area network (VLAN)
VirtuaL area network (VLAN)
 
Introduction to Software Defined WANs
Introduction to Software Defined WANsIntroduction to Software Defined WANs
Introduction to Software Defined WANs
 
Avaya Session Border Controller (SBC)
Avaya Session Border Controller (SBC)Avaya Session Border Controller (SBC)
Avaya Session Border Controller (SBC)
 
Software Defined Network (SDN)
Software Defined Network (SDN)Software Defined Network (SDN)
Software Defined Network (SDN)
 
NFV +SDN (Network Function Virtualization)
NFV +SDN (Network Function Virtualization)NFV +SDN (Network Function Virtualization)
NFV +SDN (Network Function Virtualization)
 
VOIP
VOIPVOIP
VOIP
 
Software Defined Networks
Software Defined NetworksSoftware Defined Networks
Software Defined Networks
 
OSI Model
OSI ModelOSI Model
OSI Model
 
Ericsson и Openstack
Ericsson и OpenstackEricsson и Openstack
Ericsson и Openstack
 
RA TechED 2019 - NT03 - Building Converged Plantwide Ethernet Architectures
RA TechED 2019 - NT03 - Building Converged Plantwide Ethernet ArchitecturesRA TechED 2019 - NT03 - Building Converged Plantwide Ethernet Architectures
RA TechED 2019 - NT03 - Building Converged Plantwide Ethernet Architectures
 
5g wireless technology ece
5g wireless technology   ece5g wireless technology   ece
5g wireless technology ece
 
Introduction to virtualization
Introduction to virtualizationIntroduction to virtualization
Introduction to virtualization
 
VLAN
VLANVLAN
VLAN
 

Similar to Presentation

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
 
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
 
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
robertoxe
 
VIRTUAL LANS
VIRTUAL LANSVIRTUAL LANS
VIRTUAL LANS
anilinvns
 

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
 
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
 
ccna (vlanning exam)
ccna (vlanning  exam) ccna (vlanning  exam)
ccna (vlanning exam)
 

Recently uploaded

National-Learning-Camp 2024 deped....pptx
National-Learning-Camp 2024 deped....pptxNational-Learning-Camp 2024 deped....pptx
National-Learning-Camp 2024 deped....pptx
AlecAnidul
 
Transforming Brand Perception and Boosting Profitability
Transforming Brand Perception and Boosting ProfitabilityTransforming Brand Perception and Boosting Profitability
Transforming Brand Perception and Boosting Profitability
aaryangarg12
 

Recently uploaded (13)

National-Learning-Camp 2024 deped....pptx
National-Learning-Camp 2024 deped....pptxNational-Learning-Camp 2024 deped....pptx
National-Learning-Camp 2024 deped....pptx
 
Expert Accessory Dwelling Unit (ADU) Drafting Services
Expert Accessory Dwelling Unit (ADU) Drafting ServicesExpert Accessory Dwelling Unit (ADU) Drafting Services
Expert Accessory Dwelling Unit (ADU) Drafting Services
 
Transforming Brand Perception and Boosting Profitability
Transforming Brand Perception and Boosting ProfitabilityTransforming Brand Perception and Boosting Profitability
Transforming Brand Perception and Boosting Profitability
 
The Design Code Google Developer Student Club.pptx
The Design Code Google Developer Student Club.pptxThe Design Code Google Developer Student Club.pptx
The Design Code Google Developer Student Club.pptx
 
Top 5 Indian Style Modular Kitchen Designs
Top 5 Indian Style Modular Kitchen DesignsTop 5 Indian Style Modular Kitchen Designs
Top 5 Indian Style Modular Kitchen Designs
 
The Evolution of Fashion Trends: History to Fashion
The Evolution of Fashion Trends: History to FashionThe Evolution of Fashion Trends: History to Fashion
The Evolution of Fashion Trends: History to Fashion
 
Art Nouveau Movement Presentation for Art History.
Art Nouveau Movement Presentation for Art History.Art Nouveau Movement Presentation for Art History.
Art Nouveau Movement Presentation for Art History.
 
Book Formatting: Quality Control Checks for Designers
Book Formatting: Quality Control Checks for DesignersBook Formatting: Quality Control Checks for Designers
Book Formatting: Quality Control Checks for Designers
 
Top Israeli Products and Brands - Plan it israel.pdf
Top Israeli Products and Brands - Plan it israel.pdfTop Israeli Products and Brands - Plan it israel.pdf
Top Israeli Products and Brands - Plan it israel.pdf
 
Common Designing Mistakes and How to avoid them
Common Designing Mistakes and How to avoid themCommon Designing Mistakes and How to avoid them
Common Designing Mistakes and How to avoid them
 
CA OFFICE office office office _VIEWS.pdf
CA OFFICE office office office _VIEWS.pdfCA OFFICE office office office _VIEWS.pdf
CA OFFICE office office office _VIEWS.pdf
 
PORTFOLIO FABIANA VILLANI ARCHITECTURE.pdf
PORTFOLIO FABIANA VILLANI ARCHITECTURE.pdfPORTFOLIO FABIANA VILLANI ARCHITECTURE.pdf
PORTFOLIO FABIANA VILLANI ARCHITECTURE.pdf
 
Borys Sutkowski portfolio interior design
Borys Sutkowski portfolio interior designBorys Sutkowski portfolio interior design
Borys Sutkowski portfolio interior design
 

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!