Introduction to Networking

Slides:



Advertisements
Similar presentations
Access Control List (ACL)
Advertisements

© 2006 Cisco Systems, Inc. All rights reserved.Cisco PublicITE I Chapter 6 1 Implement Inter- VLAN Routing LAN Switching and Wireless – Chapter 6.
CISCO NETWORKING ACADEMY Chabot College ELEC Address Resolution Protocol.
Switching Topic 4 Inter-VLAN routing. Agenda Routing process Routing VLANs – Traditional model – Router-on-a-stick – Multilayer switches EtherChannel.
CCNPv5 Minimizing Service Loss and Data Theft in a Campus Network 1 Minimizing Service Loss and Data Theft in a Switched BCMSN Module 8 – Sec 2.
Cisco 3 - Switch Perrine. J Page 15/8/2015 Chapter 8 What happens to the member ports of a VLAN when the VLAN is deleted? 1.They become inactive. 2.They.
Instructor & Todd Lammle
© 2008 Cisco Systems, Inc. All rights reserved.Cisco ConfidentialPresentation_ID 1 W. Schulte Chapter 5: Inter-VLAN Routing Routing And Switching.
© 2008 Cisco Systems, Inc. All rights reserved.Cisco ConfidentialPresentation_ID 1 Chapter 5: Inter-VLAN Routing Routing & Switching.
Sybex CCENT Chapter 10: Layer 2 Switching Instructor & Todd Lammle.
1 Version 3 Module 8 Ethernet Switching. 2 Version 3 Ethernet Switching Ethernet is a shared media –One node can transmit data at a time More nodes increases.
1 © 2005 Cisco Systems, Inc. All rights reserved. 111 © 2004, Cisco Systems, Inc. All rights reserved.
IP Routing: an Introduction. Quiz
(part 3).  Switches, also known as switching hubs, have become an increasingly important part of our networking today, because when working with hubs,
© 2008 Cisco Systems, Inc. All rights reserved.Cisco ConfidentialPresentation_ID 1 Chapter 5: Inter-VLAN Routing Routing And Switching.
Network Redundancy Multiple paths may exist between systems. Redundancy is not a requirement of a packet switching network. Redundancy was part of the.
1 Routing Introduction to Routing Static Routing.
ARP Scenarios CIS 81 and CST 311 Rick Graziani Fall 2005.
VLAN V irtual L ocal A rea N etwork VLAN Network performance is a key factor in the productivity of an organization. One of the technologies used to.
Hubs to VLANs Cisco Networking Academy Program © Cisco Systems, Inc From Hubs to VLANs.
Access Control List (ACL) W.lilakiatsakun. ACL Fundamental ► Introduction to ACLs ► How ACLs work ► Creating ACLs ► The function of a wildcard mask.
Switches 1RD-CSY  In this lecture, we will learn about  Collision Domain and Microsegmentation  Switches – a layer two device ◦ MAC address.
Discovery 2 Internetworking Module 5 JEOPARDY John Celum.
Switches 1RD-CSY  In this lecture, we will learn about  Collision Domain and Microsegmentation  Switches – a layer two device ◦ MAC address.
1 © 2003, Cisco Systems, Inc. All rights reserved. CCNA 3 v3.0 Module 9 Virtual Trunking Protocol.
© 2006 Cisco Systems, Inc. All rights reserved.Cisco PublicITE I Chapter 6 1 Basic Switch Configurations.
The University of Bolton School of Games Computing & Creative Technologies LCT2516 Network Architecture CCNA Exploration LAN Switching and Wireless Chapter.
Identify basic switching concepts and the operation of Cisco switches.
+ Routing Concepts 1 st semester Objectives  Describe the primary functions and features of a router.  Explain how routers use information.
Cisco 3 - Switch Perrine. J Page 12/4/2016 Chapter 9 Which protocol is Cisco proprietary and designed to carry traffic from multiple VLANs? A Q.
 Router Configurations part2 2 nd semester
Virtual Local Area Networks In Security By Mark Reed.
Introduction to Networks v6.0
IP Routing using Packet Tracer Simulator
Connecting Four PCs using a Hub and a Switch
Instructor & Todd Lammle
Instructor Materials Chapter 7: Access Control Lists
Chapter 10 Layer 2 Switching
Routing and routing tables
MAC Address Tables on Connected Switches
Switching and VLANs.
Chapter 11 VLANs and Inter-VLAN Routing
Virtual Local Area Networks or VLANs
Instructor Materials Chapter 5: Ethernet
Introduction to Cisco IOS -(Internetwork Operating System)
Chapter 6 – Routing.
– Chapter 5 – Secure LAN Switching
Chapter 4: Routing Concepts
Cisco Switching Basics
Routing and routing tables
Chapter 5: Inter-VLAN Routing
Introduction to Networking
Introduction to Networking
Introducing To Networking
Chapter 6: Network Layer
Chapter 2: Basic Switching Concepts and Configuration
Introduction to Networking
CT1403 Lecture #3 Peer to Peer NWs
Instructor: Mr Malik Zaib
Virtual LANs.
Instructor & Todd Lammle
VLAN BASIC
Net 412 (Practical Part) LAB 5-port security
Chapter 4: Switched Networks
Switching and VLANs.
2 - IP Routing.
© 2002, Cisco Systems, Inc. All rights reserved.
Routing Protocols and Concepts – Chapter 2
© 2002, Cisco Systems, Inc. All rights reserved.
CCE1030 Computer Networking
Presentation transcript:

Introduction to Networking Switch Operations

Setting IP Address and Default Gateway We need to configure the switch with an IP address to be able to remotely access it We also need to configure the switch with a default gateway if we want to be able to remotely login and manage the switch from outside the subnet it is on We store the IP address information as VLAN1, but the default gateway is universal If we plan to only access the switch through the command port, we don’t need to assign it an IP address, since it can perform its function without one

Commands to set IP Address and Default Gateway switch#config terminal (to enter terminal configuration) switch(config)#interface vlan 1 (to enter vlan 1 configuration) switch(config-if)#ip address (IP ADDRESS) (SUBNET MASK) (This is the command that sets the IP address and subnet mask. Replace (IP ADDRESS) (SUBNET MASK) with their actual values switch(config-if)#no shutdown (This activates the interface) switch(config)#ip default-gateway (IP ADDRESS) (This sets the ip address of the default gateway by substituting (IP ADDRESS) with the proper value. Also no that it is config, not config-if, since it is changing the default gateway for all interfaces, you must be in terminal configuration mode

CAM Tables Switches have a table in memory called the Content Addressable Memory (CAM) table The CAM table stores the relationship between MAC address on the network and what port each one is connected to Switches start with an empty CAM and must learn where devices are to build up its table The process of building up and utilizing the CAM table can be encapsulated into three processes: learning, forwarding and filtering

Learning Let’s say we have a host trying to send a frame to another host on the subnet the switch is on The first this the switch does is to compare the sender MAC address to its entry on the CAM table. If the entry isn’t there, or if it doesn’t match the port (if a cable is moved for example) then the MAC address and port are stored in the CAM table. The switch now knows to send frames addressed to that MAC address down that port The switch then looks at the destination MAC address. If the switch hasn’t built up its CAM table yet and the MAC address is not there, then it has to flood the rest of the ports with the frame to ensure that the host gets it. The hosts that this message is not addressed to will discard it

Forwarding The switch will only have a full CAM table once every host has sent out a message or replied to a message sent to it Once it has a host’s MAC address and port assignment in its CAM table, then it can intelligently forward data where it needs to go, and will no longer flood the ports with messages addressed to that MAC address

Filtering CAM table entries are not one-to-one. If a hub is connected to a port on the switch, multiple MAC address may be assigned to one port If this happens, the switch will use intelligent filtering to prevent excess network communication Let’s say a host connected to a hub (which is connected to a switch) wants to communicate to another host on that hub If the MAC addresses of both hosts are stored on the switch’s CAM table, it will recognize that the destination port and sending port match, and it will assume that the host got the message already and discard it

Switch Commands Here is a table of basic commands to configure a Cisco Switch