Fundamentals of Computer Networks

Slides:



Advertisements
Similar presentations
Virtual Trunk Protocol
Advertisements

LAN Segmentation Virtual LAN (VLAN).
CCNA3: Switching Basics and Intermediate Routing v3.0 CISCO NETWORKING ACADEMY PROGRAM Chapter 6 – Switch Configuration Switch Configuration Starting the.
/30 Host Name : R1 Serial 0/0/0.1.2 Host Name : R2 Router Lab 3 : 2 - Routers Connection DTE DCE.
CCNA2-1 Chapter 1 Introduction to Routing and Packet Forwarding CLI Configuration and Addressing.
Virtual LAN Számítógép hálózatok gyakorlata ÓBUDAI EGYETEM 2011 TAVASZI FÉLÉV 9. LABORGYAKORLAT PRÉM DÁNIEL.
Ver AB Terms Host: The computer to be tested Gateway: The router connected to that part of the network PDU: Protocol Data Unit Perform Network Fault.
VLAN ROUTING How can we route traffic between vlans ? By Default Vlans isolate them selves. To Route Traffic we can use: 1. Router: A Router connected.
RADIUS Server (Brocade Controller)
Creating VLANs  Create the VLAN: Switch#vlan database Switch(vlan)#vlan vlan_number Switch(vlan)#exit  Assign ports to the VLAN (in configuration mode):
Advanced Computer Networks
Author: Bill Buchanan. Module Descriptor Author: Bill Buchanan.
TRUNKS TRUNK: Trunking is a layer 2 feature.
Building Cisco Multilayer Switched Networks (BCMSN)
NETWORKING PRACTICAL EXAMPLE. REQUIRED HARDWARE BASICS Network Interface Card Ethernet Cable Client Server.
 CHAPTER 3 & 4  Understanding the Cisco IP Phone Concepts and Registration  Getting Familiar with CME Administration.
Version How to Use Packet Tracer MarinaMD.
Command line Interface LA 1 LnP : are/release/12.1_11_yj4/command/reference/intro.html.
CCNP Network Part-I SWITCH Switch is a piece of hardware which joins multiple devices such as computers to make a Network. Switch operates at layer 2 which.
The University of Bolton School of Games Computing & Creative Technologies LCT2516 Network Architecture CCNA Exploration LAN Switching and Wireless Chapter.
Layer-2 Switching and STP
Lab6 Configure Dynamic route.  RIP(Routing information protocol)  IGRP(interior gate way routing protocol)
1 Version 3.0 Module 8 Virtual LANs. 2 Version 3.0.
W&L Page 1 CCNA CCNA Training 2.6 Configure and verify VLANs Jose Luis Flores / Amel Walkinshaw Aug, 2015.
Chapter 6.  Upon completion of this chapter, you should be able to:  Configure switches  Configure VLANs  Verify configuration settings  Troubleshoot.
Building a Network. Introduction A local company has hired you as a network administrator. Your first assignment is to setup the local network and make.
CCNA3: Switching Basics and Intermediate Routing v3.0 CISCO NETWORKING ACADEMY PROGRAM Chapter 8 – Virtual LANs Virtual LANs VLAN Concepts VLAN Configuration.
How to Configure VLAN Hopping for Cisco Switch
Cisco Routers & IOS Introduction. Router Interface ● Serial cable ● Command line interface ● Efficient ● Fast ● Universal across all Cisco equipment ●
LAN Connections.
Instructor Materials Chapter 2: Scaling VLANs
Using a Cisco Router as a DHCP Server
Chap 3 – Virtual LANs (VLANs) Learning Objectives
WAN Connections.
Connecting Four PCs using a Hub and a Switch
Instructor & Todd Lammle
Instructor Materials Chapter 2: Configure a Network Operating System
Chapter 10 Layer 2 Switching
Basic router configuration
Switching and VLANs.
Chapter 11 VLANs and Inter-VLAN Routing
Virtual Local Area Networks or VLANs
Switch Commands.
Instructor & Todd Lammle
Switching and VLANs.
Switch Commands Exec Commands Switch#? exec Commands
Welcome! Thank you for joining us. We’ll get started in a few minutes.
Chapter 10: DHCP Routing & Switching Chapter 10: DHCP
VLANs: Virtual Local Area Networks
Introduction to Networking
Basic configuration of a switch in packet tracer
Instructor: Mr Malik Zaib
Chapter 2: Scaling VLANs
NOV –
Inter-VLAN Routing.
e-business and Information Systems
VLAN BASIC
Net 412 (Practical Part) Networks and Communication Department LAB 2.
Routing and Switching Essentials v6.0
Net 412 (Practical Part) LAB 5-port security
Switching and VLANs.
2 - IP Routing.
Medium-Sized Switched Network Construction
Switching and VLANs.
Fundamentals of Computer Networks
Chapter 2: Scaling VLANs
Fundamentals of Computer Networks
Fundamentals of Computer Networks
Fundamentals of Computer Networks
Fundamentals of Computer Networks
Presentation transcript:

Fundamentals of Computer Networks Lab Seven VLAN configuration 2/23/2019 Eng. .Haya Radwan Ghsoon

Goal Build the following network and try to send message from pc to another pc among network. Transmission Air Coaxial cable Coaxial cable Ca 2/23/2019 Eng .Haya Radwan Ghsoon

Network Graphical Interface 2/23/2019 Eng .Haya Radwan Ghsoon

Switch0 Configuration (1) You can configure switch to create vlan10 and vlan 20 in the following steps : Create vlan 10 and called it emp : Switch>enable Switch# config t Switch(config)#vlan 10 Switch(config-vlan)# name emp Switch(config-vlan)# exit 2/23/2019 Eng .Haya Radwan Ghsoon

Cont Create vlan 20 in the same switch : Switch(config)#vlan 20 Switch(config-vlan)#name course Switch(config-vlan)#exit Switch(config)# 2/23/2019 Eng .Haya Radwan Ghsoon

Cont Now we will define both ports in both virtual networks Switch(config)#interface range f0/2-3 Switch(config-if-range)#switchport mode access Switch(config-if-range)#switchport access vlan 20 Switch(config-if-range)#exit Switch(config)# Switch(config)#interface range f0/4 - 5 Switch(config-if-range)#switchport access vlan 10 2/23/2019 Eng .Haya Radwan Ghsoon

cont Now we will define both ports in both virtual networks in switch1 : Switch>enable Switch#config t Enter configuration commands, one per line. End with CNTL/Z. Switch(config)#vlan 10 Switch(config-vlan)#name emp Switch(config-vlan)#exit Switch(config)#vlan 20 Switch(config-vlan)#name course Switch(config)# 2/23/2019 Eng .Haya Radwan Ghsoon

cont Switch(config)#interface range f0/2 - 3 Switch(config-if-range)#switchport mode access Switch(config-if-range)#switchport access vlan 10 Switch(config-if-range)#exit Switch(config)#interface range f0/4 - 5 Switch(config-if-range)#switchport access vlan 20 Switch(config)#exit 2/23/2019 Eng .Haya Radwan Ghsoon

Cont. Switch(config)#interface f0/1 Switch(config-if)#switchport mode trunk Switch(config-if)# %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to down %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up Switch(config-if)#exit 2/23/2019 Eng .Haya Radwan Ghsoon

Send message to identify IP address for pc do the following step: Click on pc Go to config Then insert the 160.60.60.0 as gatway for this pc0 . Then go to FastEthernet and insert the IP address and mask .//for example 160.60.60.1 mask already will be defined. Do the same thing for all pc but with differnce IP and according to pc gateway (FastEthernet interface ip). 2/23/2019 Eng .Haya Radwan Ghsoon

Send message // In Real Time do the following : Click on add message button . Click on PC0 then PC6 To Click on PC 3 then Click on PC4. You can run the network in simulation mod as privies tutorial. 2/23/2019 Eng .Haya Radwan Ghsoon