SlideShare ist ein Scribd-Unternehmen logo
1 von 25
14-Aug-15 1
Network Communication
Icons Used in this project
S.No. Contents Page No.
01 Project Title 02
02 Abstract 03
03 VLAN & Routing Algorithm 05
04 Software Requirement Specification 06
05 Software Engg. Model Used 09
06 System Flow Chart / Model/ UML Diagram 17
07 Conclusion 20
08 Future Scope 22
09 References & Bibliography 23
Table of Contents
14-Aug-15 2
Implementation on VLAN
& Routing Algorithm
14-Aug-15 3
Abstract
14-Aug-15 4
Abstract
14-Aug-15 5
Network is a collection of two or more computers which are connected to each other for sharing resources, media information.
Connected computers can share resources which include information's, software's, peripheral devices.
VLAN communication experiment is one of the most important teaching difficult points of Computer Network Technology Courses, in the
circumstance of lacking of the experiment equipments, traditional experimental teaching method can not fulfill the learning needs of related
personnel. However, virtual demonstration experiment generates to solve this problem. In this paper, a design of VLAN communication
experiment with virtual demonstration mode is shown. The realization of the practical project both in software and hardware aspects is also
presented and its characters and practical values are emphasized. At last, an analysis has been made for several involved factors that exist in
this experimental teaching mode.
In computer networking, a single layer-2 network may be partitioned to create multiple distinct broadcast domains, which are mutually isolated so
that packets can only pass between them via one or more routers; such a domain is referred to as a virtual local area network, virtual
LAN or VLAN.
This is usually achieved on switch or router devices. Simpler devices only support partitioning on a port level (if at all), so sharing VLANs across
devices requires running dedicated cabling for each VLAN. More sophisticated devices can mark packets through tagging, so that a single
interconnect (trunk) may be used to transport data for multiple VLANs.
Grouping hosts with a common set of requirements regardless of their physical location by VLAN can greatly simplify network design. A VLAN
has the same attributes as a physical local area network (LAN), but it allows for end stations to be grouped together more easily even if they are
not on the same network switch. VLAN membership can be configured through software instead of physically relocating devices or connections.
Most enterprise-level networks today use the concept of virtual LANs. Without VLANs, a switch considers all interfaces on the switch to be in the
same broadcast domain.
To physically replicate the functions of a VLAN would require a separate, parallel collection of network cables and equipment separate from the
primary network. However, unlike physically separate networks, VLANs share bandwidth, so VLAN trunks may require aggregated
links and/or quality of service prioritization.
VLAN & Routing Algorithm
14-Aug-15 6
Implementing VLANs
ØA VLAN allows a network administrator to create groups of logically networked devices that act as if they
are on their own independent network, even if they share a common infrastructure with other VLANs.
Using VLANs, you can logically segment switched networks based on functions, departments, or project
teams.
These VLANs allow the network administrator to implement access and security policies to particular groups
of users.
Virtual-LAN
 Remember, just because two computers are physically connected to the same switch does not mean
that they can communicate.
VLAN CONFIGURATION
 Devices on two separate networks and subnets must communicate via a router (Layer 3) whether or
not VLANs are used. VLAN reduce the size of broadcast domain but increases the no of broadcast
domain depends on VLAN
14-Aug-15 7
VLAN Overview
Layer 2 connectivity
◦ Logical organizational flexibility
◦ Single broadcast domain
◦ Management
◦ Basic security
A VLAN = A Broadcast Domain = Logical Network (Subnet)
14-Aug-15 8
14-Aug-15 9
How to Create a VLAN
 Switch(config)#vlan ?
<1-1005> ISL VLAN IDs 1-1005
 Switch(config)#vlan 2
 Switch(config-vlan)#name accounts
 Switch(config)#vlan 3
 Switch(config-vlan)#name sales
 Switch(config-vlan)#do wr
How to Assign ports into VLAN
 Assigning single ports into VLAN:-
Switch(config)#interface fastEthernet 0/1
Switch(config-if)#switchport mode access
Switch(config-if)#switchport access vlan 2
 If you have to assign multiple ports at a time into VLAN:-
Switch(config)#interface range fa 0/3 - fa 0/4
Switch(config-if-range)#switchport mode access
 Switch(config-if-range)#switchport access vlan 3
 Switch(config-if-range)#do wr
14-Aug-15 10
Check VLAN Configuration
 Switch#show vlan ?
brief VTP all VLAN status in brief
id VTP VLAN status by VLAN id
name VTP VLAN status by VLAN
name
14-Aug-15 11
Verifying the VLAN configuration
14-Aug-15 12
VLAN TRUNK
 A trunk is a point-to-point link between one or more Ethernet switch
interfaces and another networking device, such as a router or a switch.
 Ethernet trunks carry the traffic of multiple VLANs over a single link.
 A VLAN trunk allows you to extend the VLANs across an entire
network.
 Cisco supports IEEE 802.1Q for coordinating trunks on Fast Ethernet
and Gigabit Ethernet interfaces.
14-Aug-15 13
Routing Algorithm
14-Aug-15 14
ROUTER
14-Aug-15 15
ROUTER
Router is an internetworking component, that connects networks which are at different geographical locations.
Main function of Router is to filtering, switching, forwarding the packets.
Router break the broadcast domain.
Router create the Routing table on the basis of IP address and share with the neighbor routers.
Router Work on layer 3 of OSI Model.
14-Aug-15 16
ØWhen the destination is known, static and dynamic routing is done. For unknown destinations, default routing is employed.
ØIn dynamic routing, the path is fixed by the protocol. The paths will be changing depending on the length of the path. Always the shortest path
is preferred. Static routing is done by the users. These paths are stored in the routing table.
Example:
Switch/hub Switch/hub
E 0 E 0
S 0
S 0
192.168.1.0/24 192.168.2.0/24
192.168.1.150/24 192.168.2.150/24
10.0.0.1/8
10.0.0.2/8
Location A
Location B
14-Aug-15 17
14-Aug-15 18
Configurations
 On R1 router
R1(c)#ip route 192.168.30.0 255.255.255.0 192.168.20.2
R1(c)#ip route 192.168.40.0 255.255.255.0 192.168.20.2
R1(c)#ip route 192.168.50.0 255.255.255.0 192.168.20.2
 On R2 router
R2(c)#ip route 192.168.10.0 255.255.255.0 192.168.20.1
R2(c)#ip route 192.168.50.0 255.255.255.0 192.168.40.2
 On R3 Router
R3(c)#ip route 192.168.10.0 255.255.255.0 192.168.40.1
R3(c)#ip route 192.168.20.0 255.255.255.0 192.168.40.1
R3(c)#ip route 192.168.30.0 255.255.255.0 192.168.40.1
14-Aug-15 19
Distance Vector Routing
14-Aug-15 20
CONCLUSION
14-Aug-15 21
CONCLUSION
Network is a collection of two or more computers which are connected to each other for sharing
resources, media information.
—Connected computers can share resources which include information's, software's, peripheral
devices.
14-Aug-15 22
BIBLIOGRAPHY
14-Aug-15 23
BIBLIOGRAPH
• Internet From Google Server
• A Text Book on Computer Network By Andrew S. Tanenbaum
• Faculty By Prof. Rakesh kumar Singh
&
By Asst. Prof. CSE dept. VIII sem
14-Aug-15 24
THANK YOU
14-Aug-15 25

Weitere ähnliche Inhalte

Was ist angesagt?

Mpls Traffic Engineering ppt
Mpls Traffic Engineering pptMpls Traffic Engineering ppt
Mpls Traffic Engineering pptNitin Gehlot
 
Multi-Protocol Label Switching
Multi-Protocol Label SwitchingMulti-Protocol Label Switching
Multi-Protocol Label Switchingseanraz
 
Multi-Protocol Label Switching
Multi-Protocol Label SwitchingMulti-Protocol Label Switching
Multi-Protocol Label SwitchingJay Patel
 
Internet Traffic Engineering
Internet Traffic EngineeringInternet Traffic Engineering
Internet Traffic Engineeringjonassm
 
Difference between a layer 3 switch and a router
Difference between a layer 3 switch and a routerDifference between a layer 3 switch and a router
Difference between a layer 3 switch and a routerIT Tech
 
LiveAction Spanning Tree Protocol (STP) Application Note
LiveAction Spanning Tree Protocol (STP) Application NoteLiveAction Spanning Tree Protocol (STP) Application Note
LiveAction Spanning Tree Protocol (STP) Application NoteActionPacked Networks
 
Multiprotocol label switching (mpls) - Networkshop44
Multiprotocol label switching (mpls)  - Networkshop44Multiprotocol label switching (mpls)  - Networkshop44
Multiprotocol label switching (mpls) - Networkshop44Jisc
 
Vlan configuration in medium sized network
Vlan configuration in medium sized networkVlan configuration in medium sized network
Vlan configuration in medium sized networkArnold Derrick Kinney
 
CCNA Network Devices
CCNA Network DevicesCCNA Network Devices
CCNA Network DevicesDsunte Wilson
 
Imperfection_Is_Beautiful.111_2016_04_13_19_07_54_722
Imperfection_Is_Beautiful.111_2016_04_13_19_07_54_722Imperfection_Is_Beautiful.111_2016_04_13_19_07_54_722
Imperfection_Is_Beautiful.111_2016_04_13_19_07_54_722Prince Mishra
 
Overview of Spanning Tree Protocol
Overview of Spanning Tree ProtocolOverview of Spanning Tree Protocol
Overview of Spanning Tree ProtocolArash Foroughi
 
MPLS
MPLSMPLS
MPLSKHNOG
 

Was ist angesagt? (20)

MPLS Tutorial
MPLS TutorialMPLS Tutorial
MPLS Tutorial
 
Mpls Traffic Engineering ppt
Mpls Traffic Engineering pptMpls Traffic Engineering ppt
Mpls Traffic Engineering ppt
 
Multi-Protocol Label Switching
Multi-Protocol Label SwitchingMulti-Protocol Label Switching
Multi-Protocol Label Switching
 
MPLS ppt
MPLS pptMPLS ppt
MPLS ppt
 
Multi-Protocol Label Switching
Multi-Protocol Label SwitchingMulti-Protocol Label Switching
Multi-Protocol Label Switching
 
Internet Traffic Engineering
Internet Traffic EngineeringInternet Traffic Engineering
Internet Traffic Engineering
 
Difference between a layer 3 switch and a router
Difference between a layer 3 switch and a routerDifference between a layer 3 switch and a router
Difference between a layer 3 switch and a router
 
MPLS VPN
MPLS VPNMPLS VPN
MPLS VPN
 
LiveAction Spanning Tree Protocol (STP) Application Note
LiveAction Spanning Tree Protocol (STP) Application NoteLiveAction Spanning Tree Protocol (STP) Application Note
LiveAction Spanning Tree Protocol (STP) Application Note
 
Multiprotocol label switching (mpls) - Networkshop44
Multiprotocol label switching (mpls)  - Networkshop44Multiprotocol label switching (mpls)  - Networkshop44
Multiprotocol label switching (mpls) - Networkshop44
 
Vlan configuration in medium sized network
Vlan configuration in medium sized networkVlan configuration in medium sized network
Vlan configuration in medium sized network
 
MPLS
MPLSMPLS
MPLS
 
Wide area networks
Wide area networksWide area networks
Wide area networks
 
CCNA Network Devices
CCNA Network DevicesCCNA Network Devices
CCNA Network Devices
 
Imperfection_Is_Beautiful.111_2016_04_13_19_07_54_722
Imperfection_Is_Beautiful.111_2016_04_13_19_07_54_722Imperfection_Is_Beautiful.111_2016_04_13_19_07_54_722
Imperfection_Is_Beautiful.111_2016_04_13_19_07_54_722
 
Mpls 1
Mpls 1Mpls 1
Mpls 1
 
Switching seminar ppt
Switching seminar pptSwitching seminar ppt
Switching seminar ppt
 
Overview of Spanning Tree Protocol
Overview of Spanning Tree ProtocolOverview of Spanning Tree Protocol
Overview of Spanning Tree Protocol
 
MPLS
MPLSMPLS
MPLS
 
Mpls
MplsMpls
Mpls
 

Andere mochten auch

A presentation on networking and ccna
A presentation on networking and ccnaA presentation on networking and ccna
A presentation on networking and ccnavivek kumar
 
Principios de quimica y estructura ena2 - ejercicio 01 cambio del v de un ...
Principios de quimica y estructura    ena2 - ejercicio 01 cambio del v de un ...Principios de quimica y estructura    ena2 - ejercicio 01 cambio del v de un ...
Principios de quimica y estructura ena2 - ejercicio 01 cambio del v de un ...Triplenlace Química
 
CCNA 1 Routing and Switching v5.0 Chapter 8
CCNA 1 Routing and Switching v5.0 Chapter 8CCNA 1 Routing and Switching v5.0 Chapter 8
CCNA 1 Routing and Switching v5.0 Chapter 8Nil Menon
 
CCNA 1 Routing and Switching v5.0 Chapter 3
CCNA 1 Routing and Switching v5.0 Chapter 3CCNA 1 Routing and Switching v5.0 Chapter 3
CCNA 1 Routing and Switching v5.0 Chapter 3Nil Menon
 
Ccna Presentation
Ccna PresentationCcna Presentation
Ccna Presentationbcdran
 
ccna summer training ppt ( Cisco certified network analysis) ppt. by Traun k...
ccna summer training ppt ( Cisco certified network analysis) ppt.  by Traun k...ccna summer training ppt ( Cisco certified network analysis) ppt.  by Traun k...
ccna summer training ppt ( Cisco certified network analysis) ppt. by Traun k...Tarun Khaneja
 
CCNA Basic Switching and Switch Configuration
CCNA Basic Switching and Switch ConfigurationCCNA Basic Switching and Switch Configuration
CCNA Basic Switching and Switch ConfigurationDsunte Wilson
 
CCNA 1 Routing and Switching v5.0 Chapter 1
CCNA 1 Routing and Switching v5.0 Chapter 1CCNA 1 Routing and Switching v5.0 Chapter 1
CCNA 1 Routing and Switching v5.0 Chapter 1Nil Menon
 

Andere mochten auch (10)

A presentation on networking and ccna
A presentation on networking and ccnaA presentation on networking and ccna
A presentation on networking and ccna
 
Ccna introduction
Ccna introductionCcna introduction
Ccna introduction
 
Principios de quimica y estructura ena2 - ejercicio 01 cambio del v de un ...
Principios de quimica y estructura    ena2 - ejercicio 01 cambio del v de un ...Principios de quimica y estructura    ena2 - ejercicio 01 cambio del v de un ...
Principios de quimica y estructura ena2 - ejercicio 01 cambio del v de un ...
 
CCNA 1 Routing and Switching v5.0 Chapter 8
CCNA 1 Routing and Switching v5.0 Chapter 8CCNA 1 Routing and Switching v5.0 Chapter 8
CCNA 1 Routing and Switching v5.0 Chapter 8
 
CCNA 1 Routing and Switching v5.0 Chapter 3
CCNA 1 Routing and Switching v5.0 Chapter 3CCNA 1 Routing and Switching v5.0 Chapter 3
CCNA 1 Routing and Switching v5.0 Chapter 3
 
Ccna Presentation
Ccna PresentationCcna Presentation
Ccna Presentation
 
CCNA IP Addressing
CCNA IP AddressingCCNA IP Addressing
CCNA IP Addressing
 
ccna summer training ppt ( Cisco certified network analysis) ppt. by Traun k...
ccna summer training ppt ( Cisco certified network analysis) ppt.  by Traun k...ccna summer training ppt ( Cisco certified network analysis) ppt.  by Traun k...
ccna summer training ppt ( Cisco certified network analysis) ppt. by Traun k...
 
CCNA Basic Switching and Switch Configuration
CCNA Basic Switching and Switch ConfigurationCCNA Basic Switching and Switch Configuration
CCNA Basic Switching and Switch Configuration
 
CCNA 1 Routing and Switching v5.0 Chapter 1
CCNA 1 Routing and Switching v5.0 Chapter 1CCNA 1 Routing and Switching v5.0 Chapter 1
CCNA 1 Routing and Switching v5.0 Chapter 1
 

Ähnlich wie Presentation on ccna

Design and Implementation of Network Security using Inter-VLAN-Routing and DHCP
Design and Implementation of Network Security using Inter-VLAN-Routing and DHCPDesign and Implementation of Network Security using Inter-VLAN-Routing and DHCP
Design and Implementation of Network Security using Inter-VLAN-Routing and DHCPAssociate Professor in VSB Coimbatore
 
CCNP Switching Chapter 3
CCNP Switching Chapter 3CCNP Switching Chapter 3
CCNP Switching Chapter 3Chaing Ravuth
 
Week 9 VLAN, SISTIM INFORMASI MANAGEMEN
Week 9   VLAN, SISTIM INFORMASI MANAGEMENWeek 9   VLAN, SISTIM INFORMASI MANAGEMEN
Week 9 VLAN, SISTIM INFORMASI MANAGEMENSetyady Peace
 
Local Restoration in Metro Ethernet Networks for Multiple Link Failures
Local Restoration in Metro Ethernet Networks for Multiple Link FailuresLocal Restoration in Metro Ethernet Networks for Multiple Link Failures
Local Restoration in Metro Ethernet Networks for Multiple Link FailuresEditor IJCATR
 
Virtual Local Area Network
Virtual Local Area NetworkVirtual Local Area Network
Virtual Local Area NetworkAtakan ATAK
 
Branching out with SDN
Branching out with SDNBranching out with SDN
Branching out with SDNAPNIC
 
Encor chapter 1_packet forwarding
Encor chapter 1_packet forwardingEncor chapter 1_packet forwarding
Encor chapter 1_packet forwardingmerhatsidikmelke
 
Network Connecting Devices UNIT 5
Network Connecting Devices UNIT 5Network Connecting Devices UNIT 5
Network Connecting Devices UNIT 5Raj vardhan
 
VirtuaL area network (VLAN)
VirtuaL area network (VLAN)  VirtuaL area network (VLAN)
VirtuaL area network (VLAN) VipulSharma328
 
Virtual local area networks
Virtual local area networksVirtual local area networks
Virtual local area networksRavi Kodoli
 
configuration of switch campus network
configuration of switch campus networkconfiguration of switch campus network
configuration of switch campus networksubhash subbu
 

Ähnlich wie Presentation on ccna (20)

Design and Implementation of Network Security using Inter-VLAN-Routing and DHCP
Design and Implementation of Network Security using Inter-VLAN-Routing and DHCPDesign and Implementation of Network Security using Inter-VLAN-Routing and DHCP
Design and Implementation of Network Security using Inter-VLAN-Routing and DHCP
 
Virtual lan
Virtual lanVirtual lan
Virtual lan
 
CCNP Switching Chapter 3
CCNP Switching Chapter 3CCNP Switching Chapter 3
CCNP Switching Chapter 3
 
Week 9 VLAN, SISTIM INFORMASI MANAGEMEN
Week 9   VLAN, SISTIM INFORMASI MANAGEMENWeek 9   VLAN, SISTIM INFORMASI MANAGEMEN
Week 9 VLAN, SISTIM INFORMASI MANAGEMEN
 
Lesson 2 slideshow
Lesson 2 slideshowLesson 2 slideshow
Lesson 2 slideshow
 
Local Restoration in Metro Ethernet Networks for Multiple Link Failures
Local Restoration in Metro Ethernet Networks for Multiple Link FailuresLocal Restoration in Metro Ethernet Networks for Multiple Link Failures
Local Restoration in Metro Ethernet Networks for Multiple Link Failures
 
Virtual lan
Virtual lanVirtual lan
Virtual lan
 
CCNA 1
CCNA 1CCNA 1
CCNA 1
 
Lecture10
Lecture10Lecture10
Lecture10
 
Virtual Local Area Network
Virtual Local Area NetworkVirtual Local Area Network
Virtual Local Area Network
 
Ccna 9
Ccna  9Ccna  9
Ccna 9
 
Branching out with SDN
Branching out with SDNBranching out with SDN
Branching out with SDN
 
Encor chapter 1_packet forwarding
Encor chapter 1_packet forwardingEncor chapter 1_packet forwarding
Encor chapter 1_packet forwarding
 
unit5-190409094326.pdf
unit5-190409094326.pdfunit5-190409094326.pdf
unit5-190409094326.pdf
 
Network Connecting Devices UNIT 5
Network Connecting Devices UNIT 5Network Connecting Devices UNIT 5
Network Connecting Devices UNIT 5
 
VirtuaL area network (VLAN)
VirtuaL area network (VLAN)  VirtuaL area network (VLAN)
VirtuaL area network (VLAN)
 
Vlan
VlanVlan
Vlan
 
Vlan
Vlan Vlan
Vlan
 
Virtual local area networks
Virtual local area networksVirtual local area networks
Virtual local area networks
 
configuration of switch campus network
configuration of switch campus networkconfiguration of switch campus network
configuration of switch campus network
 

Presentation on ccna

  • 2. S.No. Contents Page No. 01 Project Title 02 02 Abstract 03 03 VLAN & Routing Algorithm 05 04 Software Requirement Specification 06 05 Software Engg. Model Used 09 06 System Flow Chart / Model/ UML Diagram 17 07 Conclusion 20 08 Future Scope 22 09 References & Bibliography 23 Table of Contents 14-Aug-15 2
  • 3. Implementation on VLAN & Routing Algorithm 14-Aug-15 3
  • 5. Abstract 14-Aug-15 5 Network is a collection of two or more computers which are connected to each other for sharing resources, media information. Connected computers can share resources which include information's, software's, peripheral devices. VLAN communication experiment is one of the most important teaching difficult points of Computer Network Technology Courses, in the circumstance of lacking of the experiment equipments, traditional experimental teaching method can not fulfill the learning needs of related personnel. However, virtual demonstration experiment generates to solve this problem. In this paper, a design of VLAN communication experiment with virtual demonstration mode is shown. The realization of the practical project both in software and hardware aspects is also presented and its characters and practical values are emphasized. At last, an analysis has been made for several involved factors that exist in this experimental teaching mode. In computer networking, a single layer-2 network may be partitioned to create multiple distinct broadcast domains, which are mutually isolated so that packets can only pass between them via one or more routers; such a domain is referred to as a virtual local area network, virtual LAN or VLAN. This is usually achieved on switch or router devices. Simpler devices only support partitioning on a port level (if at all), so sharing VLANs across devices requires running dedicated cabling for each VLAN. More sophisticated devices can mark packets through tagging, so that a single interconnect (trunk) may be used to transport data for multiple VLANs. Grouping hosts with a common set of requirements regardless of their physical location by VLAN can greatly simplify network design. A VLAN has the same attributes as a physical local area network (LAN), but it allows for end stations to be grouped together more easily even if they are not on the same network switch. VLAN membership can be configured through software instead of physically relocating devices or connections. Most enterprise-level networks today use the concept of virtual LANs. Without VLANs, a switch considers all interfaces on the switch to be in the same broadcast domain. To physically replicate the functions of a VLAN would require a separate, parallel collection of network cables and equipment separate from the primary network. However, unlike physically separate networks, VLANs share bandwidth, so VLAN trunks may require aggregated links and/or quality of service prioritization.
  • 6. VLAN & Routing Algorithm 14-Aug-15 6
  • 7. Implementing VLANs ØA VLAN allows a network administrator to create groups of logically networked devices that act as if they are on their own independent network, even if they share a common infrastructure with other VLANs. Using VLANs, you can logically segment switched networks based on functions, departments, or project teams. These VLANs allow the network administrator to implement access and security policies to particular groups of users. Virtual-LAN  Remember, just because two computers are physically connected to the same switch does not mean that they can communicate. VLAN CONFIGURATION  Devices on two separate networks and subnets must communicate via a router (Layer 3) whether or not VLANs are used. VLAN reduce the size of broadcast domain but increases the no of broadcast domain depends on VLAN 14-Aug-15 7
  • 8. VLAN Overview Layer 2 connectivity ◦ Logical organizational flexibility ◦ Single broadcast domain ◦ Management ◦ Basic security A VLAN = A Broadcast Domain = Logical Network (Subnet) 14-Aug-15 8
  • 10. How to Create a VLAN  Switch(config)#vlan ? <1-1005> ISL VLAN IDs 1-1005  Switch(config)#vlan 2  Switch(config-vlan)#name accounts  Switch(config)#vlan 3  Switch(config-vlan)#name sales  Switch(config-vlan)#do wr How to Assign ports into VLAN  Assigning single ports into VLAN:- Switch(config)#interface fastEthernet 0/1 Switch(config-if)#switchport mode access Switch(config-if)#switchport access vlan 2  If you have to assign multiple ports at a time into VLAN:- Switch(config)#interface range fa 0/3 - fa 0/4 Switch(config-if-range)#switchport mode access  Switch(config-if-range)#switchport access vlan 3  Switch(config-if-range)#do wr 14-Aug-15 10
  • 11. Check VLAN Configuration  Switch#show vlan ? brief VTP all VLAN status in brief id VTP VLAN status by VLAN id name VTP VLAN status by VLAN name 14-Aug-15 11
  • 12. Verifying the VLAN configuration 14-Aug-15 12
  • 13. VLAN TRUNK  A trunk is a point-to-point link between one or more Ethernet switch interfaces and another networking device, such as a router or a switch.  Ethernet trunks carry the traffic of multiple VLANs over a single link.  A VLAN trunk allows you to extend the VLANs across an entire network.  Cisco supports IEEE 802.1Q for coordinating trunks on Fast Ethernet and Gigabit Ethernet interfaces. 14-Aug-15 13
  • 16. ROUTER Router is an internetworking component, that connects networks which are at different geographical locations. Main function of Router is to filtering, switching, forwarding the packets. Router break the broadcast domain. Router create the Routing table on the basis of IP address and share with the neighbor routers. Router Work on layer 3 of OSI Model. 14-Aug-15 16
  • 17. ØWhen the destination is known, static and dynamic routing is done. For unknown destinations, default routing is employed. ØIn dynamic routing, the path is fixed by the protocol. The paths will be changing depending on the length of the path. Always the shortest path is preferred. Static routing is done by the users. These paths are stored in the routing table. Example: Switch/hub Switch/hub E 0 E 0 S 0 S 0 192.168.1.0/24 192.168.2.0/24 192.168.1.150/24 192.168.2.150/24 10.0.0.1/8 10.0.0.2/8 Location A Location B 14-Aug-15 17
  • 19. Configurations  On R1 router R1(c)#ip route 192.168.30.0 255.255.255.0 192.168.20.2 R1(c)#ip route 192.168.40.0 255.255.255.0 192.168.20.2 R1(c)#ip route 192.168.50.0 255.255.255.0 192.168.20.2  On R2 router R2(c)#ip route 192.168.10.0 255.255.255.0 192.168.20.1 R2(c)#ip route 192.168.50.0 255.255.255.0 192.168.40.2  On R3 Router R3(c)#ip route 192.168.10.0 255.255.255.0 192.168.40.1 R3(c)#ip route 192.168.20.0 255.255.255.0 192.168.40.1 R3(c)#ip route 192.168.30.0 255.255.255.0 192.168.40.1 14-Aug-15 19
  • 22. CONCLUSION Network is a collection of two or more computers which are connected to each other for sharing resources, media information. —Connected computers can share resources which include information's, software's, peripheral devices. 14-Aug-15 22
  • 24. BIBLIOGRAPH • Internet From Google Server • A Text Book on Computer Network By Andrew S. Tanenbaum • Faculty By Prof. Rakesh kumar Singh & By Asst. Prof. CSE dept. VIII sem 14-Aug-15 24