SlideShare a Scribd company logo
1 of 17
VLAN, Trunk and 802.1q Router Configuration
Objectives
Topology
lab or you can download the l ab from
[email protected] in Content.
VLAN, Trunk and 802.1q Router Configuration
Step 1: Initial Switch Configuration
ches
as uwstout
vlans
StoutSW2 using the fa0/1 interfaces
and PC2 according to the topology
diagram
If you need help remembering the commands for the initial
configuration steps, try using ? or refer to the
previous labs.
Before moving to Step 2 verify your trunk and VLAN
configuration, PC IP addresses and that the switchports
for the PCs are in the correct vlans. Use “show” commands and
ipconfig to verify the initial configuration.
VLAN, Trunk and 802.1q Router Configuration
Step 2: Configure 802.1 trunk between Menomonie and
StoutSW1
Data from one vlan cannot cross into another vlan without the
help of a router to route the data. Currently
the PCs cannot successfully send to each other because they are
on different VLANs. In this step you will
configure a trunk between the Menomonie router and the
StoutSW1 switch. (This type of configuration is
referred to as “Router-on-a-Stick”) so the router can be used to
route traffic between the VLANs. The
physical interface on the router that is connected to StoutSW1 is
fastethernet0/1 so you will configure the
trunked sub-interfaces on the fastethernet0/1 interface. Then
configure fastethernet0/8 on StoutSW1 to trunk.
Configure the Router:
Configure the hostname on the router to Menomonie:
Configure the first sub-interface on Menomonie to route vlan 10
fastethernet0/1.10
encapsulation dot1q 10
Configure the second sub-interface on Menomonie to route vlan
20
fastethernet0/1.20
encapsulation dot1q 20
Configure the third sub-interface on Menomonie to route vlan
30
pe, interface
fastethernet0/1.30
encapsulation dot1q 30
Now that the virtual trunked interfaces have been configured
you can assign an IP address to the
interfaces. The addresses for each interface will be as follows,
with default subnet masks:
Fastethernet 0/1.10 : 192.168.10.1
Fastethernet 0/1.20 : 192.168.20.1
Fastethernet 0/1.30 : 192.168.30.1
on mode for fa0/1.10 type, ip
address 192.168.10.1 255.255.255.0
address 192.168.20.1 255.255.255.0
address 192.168.30.1 255.255.255.0
Configure StoutSW1:
VLAN, Trunk and 802.1q Router Configuration
The router is configured to trunk on the fastethernet0/1, now the
StoutSW1 port it connects to needs to be
configured to trunk in order to complete the link. Configure
fastethernet0/8 to trunk:
StoutSW1 type, switchport mode trunk
Step 3: Configure the Default Gateway on the PCs
In the initial configuration we are not using any routers to route
traffic on the network. In that configuration
the PCs are unable to communicate with each other because they
are in different VLANs and subnets. At
this point you have configured the router and switch so traffic
can pass to the router to be routed to the
other VLANs. The router is the default gateway, it is what is
being used when traffic needs to leave the
network from which it was sent. In this step you will configure
the PCs to use the router’s sub-interface IP
address as its default gateway, then verify you have
connectivity in the network.
Configure each PC with the proper default gateway.
PC1a default gateway 192.168.10.1
PC1b default gateway 192.168.20.1
PC2 default gateway 192.168.30.1
Verify network connectivity:
At this point your network is complete and you should be able
to communicate/ping to all PCs.
address, the pings should be successful.
VLAN, Trunk and 802.1q Router Configuration
Verify the router is being used to forward traffic between the
VLANs. You can use the tracert command on
the PCs to see the path the traffic is taking to get to its
destination. Review the path traffic is taking to get
from PC1a to PC1b, notice the first hop is the router sub-
interface and then it is forwarded to the PC.
Step 4: Saving the Configuration file to NVRAM
Now you need to save your configuration from RAM to
NVRAM using the command copy running-config
startup-config in Privileged Mode.
Now you need to save your configuration from RAM to
NVRAM. The configuration in RAM is called the running -
config,
the configuration in NVRAM is called startup-config. In order
to save our device configuration you need to copy from
RAM to NVRAM. Use the command: copy running-config
startup-config in Privileged Mode.
***Before completing a lab you must always issue this
command on each network device (router or switch) you have
configured. When you do that it saves the configuration you
did. When you issue the command once you have
completed the lab, that is the file I see as your final file
submitted. This is the configuration I will grade you on. You ca
n
issue the copy running-config startup-config command multiple
times while doing your lab (which is a good idea in
case you lose your internet connection or power), just be sure to
issue it one more time right before you have
completed the lab.
Static Routing
Objectives:
Topology
Enter Lab you will see the following:
to move around the topology.
lab or you can download the lab from
[email protected] in Content.
you will be configuring all of the
equipment in the topology
Static Routing
Step 1: Initial Router Configuration
Perform the initial router configurations on all routers. If you
have trouble recalling how to do each step
refer to the previous lab.
tnames according to the topology
all of the passwords to uwstout
according to the topology
CE interfaces to 128000
interfaces
Verify you have done the initial configuration correctly:
Before proceeding to the next step check that your interfaces
are up, once you have completed the initial
configuration on all routers all interfaces should be up. You
will use the show ip interfaces brief command
to see if your interfaces are up.
In user or privileged mode, type show ip interfaces brief and
press enter.
(It is okay that the BRI interfaces are down, we didn’t configure
them)
Notice that all of the interfaces configured show a status as up
and the protocol is up. At this point you are
ready to move to the next step. If your interfaces are not up you
will need to troubleshoot:
o Verify that you enabled the interfaces (no shutdown)
o Verify the IP address/subnet masks are correct—typos are
common
o Verify the clockrate and bandwidth on the DCE
o Make sure you configured the correct interfaces.
Static Routing
Step 2: Configuring the Static Routes
Now that you have completed the initial configuration you can
begin to configure routing. If you are not
using a Routing protocol to route the traffic you will use
administratively configure static routes to route
the traffic in your network. We will be configuring static routes
to route traffic in our network. When you
configure a static route you are simply writing a command that
says “if you want to send traffic to the
xxx.xxx.xxx.xxx network send it to the yyy.yyy.yyy.yyy
address” where yyy.yyy.yyy.yyy represents the
next hop address. You can also configure an outgoing interface
rather than a next hop address. Next
hop address is the prefer method for our use because it is a more
definite route—I can predict exactly
where my traffic will be going assuming that interface is up.
Configure the static routes on RemoteAZ:
Configure the static routes on RemoteAZ so traffic can get to
RemoteWI and Menomonie. Static routes
are only configured for networks that the router isn’t directly
connected to. Directly connect routes do not
need any routing, they are already in the routing table.
The form of the command is: ip route <destination prefix>
<prefix mask> <forwarding router’s address>
Remote AZ needs to get to the 10.10.2.0 and 192.168.2.0
networks on Menomonie and the
10.10.3.0 network on RemoteWI so we will configure a static
route to complete this task.
10.10.2.0 255.255.255.0 192.168.1.2 and
press enter.
10.10.3.0 255.255.255.0 192.168.3.1 and
press enter.
192.168.2.0 255.255.255.0 192.168.1.2
and press enter.
configuration using copy running-config
startup-config command.
Configure the static routes on Menomonie:
10.10.1.0 255.255.255.0 192.168.1.1 and
press enter.
10.10.3.0 255.255.255.0 192.168.2.2 and
press enter.
192.168.3.0 255.255.255.0 192.168.2.2
and press enter.
configuration using copy running-config
startup-config command.
Static Routing
Configure static routes on RemoteWI:
Configure the static routes on RemoteWI so traffic can get to
the Menomonie and RemoteAZ networks.
10.10.1.0 255.255.255.0 192.168.3.2 and
press enter.
10.10.2.0 255.255.255.0 192.168.2.1 and
press enter.
192.168.1.0 255.255.255.0 192.168.3.2
and press enter.
configuration using copy running-config
startup-config command.
Step 3: Verifying Connectivity
Use the command show ip route to review the routing table of
each router. If everything was done
correctly you will see routes to all networks in the topology in
the routing table, some will be
Connected and some will be Static. There are six networks in
the topology
In all routers:
to
view the routing table.
Static Routing
Next, use ping to verify the connectivity between all the routers
and hosts. To ping from the routers you will
go into privileged mode and type ping ip address, where ip
address is the IP address you are wanting to
ping, you are wanting to see if you have connectivity to. If your
ping is successful then you have
connectivity to that network and you have done the lab correctly
once you have ensured you have
connectivity to all networks.
l interfaces (ip addresses) from all routers
Example:
On RemoteAZ I pinged to the IP addresses on Menomonie that I
wasn’t directly connected to and it was
successful.
If you are unable to ping an interface or computer, verify your
configurations to make sure you entered
everything correctly.
VLAN, Trunk and 802.1q Router Configuration   Objectiv.docx

More Related Content

Similar to VLAN, Trunk and 802.1q Router Configuration Objectiv.docx

Intro to router_config
Intro to router_configIntro to router_config
Intro to router_config97148881557
 
Ccna 2 chapter 1 v4.0 answers 2011
Ccna 2 chapter 1 v4.0 answers 2011Ccna 2 chapter 1 v4.0 answers 2011
Ccna 2 chapter 1 v4.0 answers 2011Dân Chơi
 
Labpractice1 configuringbasicroutingandswitchingwithanswer-121214084802-phpapp02
Labpractice1 configuringbasicroutingandswitchingwithanswer-121214084802-phpapp02Labpractice1 configuringbasicroutingandswitchingwithanswer-121214084802-phpapp02
Labpractice1 configuringbasicroutingandswitchingwithanswer-121214084802-phpapp02Abhilash Kuniyil
 
How to Configure Routing Information Protocol (RIP)
How to Configure Routing Information Protocol (RIP)How to Configure Routing Information Protocol (RIP)
How to Configure Routing Information Protocol (RIP)IT Tech
 
Important cisco-chow-commands
Important cisco-chow-commandsImportant cisco-chow-commands
Important cisco-chow-commandsssusere31b5c
 
Ccna 2 rse practice skills assessment
Ccna 2 rse practice skills assessmentCcna 2 rse practice skills assessment
Ccna 2 rse practice skills assessmentfriv4schoolgames
 
Exercise 4c stp rapid pvst+ question
Exercise 4c   stp rapid pvst+ questionExercise 4c   stp rapid pvst+ question
Exercise 4c stp rapid pvst+ questionsufi1248
 
General lab documentation~cisco router configuration
General lab documentation~cisco router configurationGeneral lab documentation~cisco router configuration
General lab documentation~cisco router configurationsayedatif
 
Lab practice 1 configuring basic routing and switching (with answer)
Lab practice 1   configuring basic routing and switching (with answer) Lab practice 1   configuring basic routing and switching (with answer)
Lab practice 1 configuring basic routing and switching (with answer) Arz Sy
 
Ccna configuracion y comandos
Ccna configuracion y comandosCcna configuracion y comandos
Ccna configuracion y comandosAlfonso Saucedo
 
operating and configuring cisco a cisco IOS device
operating and configuring cisco a cisco IOS deviceoperating and configuring cisco a cisco IOS device
operating and configuring cisco a cisco IOS devicescooby_doo
 
Minilink TN Ethernet Config.pdf
Minilink TN Ethernet Config.pdfMinilink TN Ethernet Config.pdf
Minilink TN Ethernet Config.pdfFahruddinThaha
 
10 Command Line quan trọng để giao tiếp với Cisco IOs
10 Command Line quan trọng để giao tiếp với Cisco IOs10 Command Line quan trọng để giao tiếp với Cisco IOs
10 Command Line quan trọng để giao tiếp với Cisco IOsNhóc Nhóc
 
CCNA- Router on stick, VLAN and Trunking
CCNA- Router on stick, VLAN and TrunkingCCNA- Router on stick, VLAN and Trunking
CCNA- Router on stick, VLAN and TrunkingRafat Khandaker
 
introduction-to-cisco-routers basic .ppt
introduction-to-cisco-routers basic .pptintroduction-to-cisco-routers basic .ppt
introduction-to-cisco-routers basic .pptnazeem1977
 
introduction-to-cisco-routers.ppt
introduction-to-cisco-routers.pptintroduction-to-cisco-routers.ppt
introduction-to-cisco-routers.pptRobelTsada
 

Similar to VLAN, Trunk and 802.1q Router Configuration Objectiv.docx (20)

Intro to router_config
Intro to router_configIntro to router_config
Intro to router_config
 
Ccna 2 chapter 1 v4.0 answers 2011
Ccna 2 chapter 1 v4.0 answers 2011Ccna 2 chapter 1 v4.0 answers 2011
Ccna 2 chapter 1 v4.0 answers 2011
 
Labpractice1 configuringbasicroutingandswitchingwithanswer-121214084802-phpapp02
Labpractice1 configuringbasicroutingandswitchingwithanswer-121214084802-phpapp02Labpractice1 configuringbasicroutingandswitchingwithanswer-121214084802-phpapp02
Labpractice1 configuringbasicroutingandswitchingwithanswer-121214084802-phpapp02
 
How to Configure Routing Information Protocol (RIP)
How to Configure Routing Information Protocol (RIP)How to Configure Routing Information Protocol (RIP)
How to Configure Routing Information Protocol (RIP)
 
Important cisco-chow-commands
Important cisco-chow-commandsImportant cisco-chow-commands
Important cisco-chow-commands
 
Labmannual
LabmannualLabmannual
Labmannual
 
Exam viewer2
Exam viewer2Exam viewer2
Exam viewer2
 
Ccna 2 rse practice skills assessment
Ccna 2 rse practice skills assessmentCcna 2 rse practice skills assessment
Ccna 2 rse practice skills assessment
 
Exercise 4c stp rapid pvst+ question
Exercise 4c   stp rapid pvst+ questionExercise 4c   stp rapid pvst+ question
Exercise 4c stp rapid pvst+ question
 
Zxdsl 9210 guide
Zxdsl 9210 guideZxdsl 9210 guide
Zxdsl 9210 guide
 
General lab documentation~cisco router configuration
General lab documentation~cisco router configurationGeneral lab documentation~cisco router configuration
General lab documentation~cisco router configuration
 
Lab practice 1 configuring basic routing and switching (with answer)
Lab practice 1   configuring basic routing and switching (with answer) Lab practice 1   configuring basic routing and switching (with answer)
Lab practice 1 configuring basic routing and switching (with answer)
 
Ccna configuracion y comandos
Ccna configuracion y comandosCcna configuracion y comandos
Ccna configuracion y comandos
 
operating and configuring cisco a cisco IOS device
operating and configuring cisco a cisco IOS deviceoperating and configuring cisco a cisco IOS device
operating and configuring cisco a cisco IOS device
 
Router commands
Router commandsRouter commands
Router commands
 
Minilink TN Ethernet Config.pdf
Minilink TN Ethernet Config.pdfMinilink TN Ethernet Config.pdf
Minilink TN Ethernet Config.pdf
 
10 Command Line quan trọng để giao tiếp với Cisco IOs
10 Command Line quan trọng để giao tiếp với Cisco IOs10 Command Line quan trọng để giao tiếp với Cisco IOs
10 Command Line quan trọng để giao tiếp với Cisco IOs
 
CCNA- Router on stick, VLAN and Trunking
CCNA- Router on stick, VLAN and TrunkingCCNA- Router on stick, VLAN and Trunking
CCNA- Router on stick, VLAN and Trunking
 
introduction-to-cisco-routers basic .ppt
introduction-to-cisco-routers basic .pptintroduction-to-cisco-routers basic .ppt
introduction-to-cisco-routers basic .ppt
 
introduction-to-cisco-routers.ppt
introduction-to-cisco-routers.pptintroduction-to-cisco-routers.ppt
introduction-to-cisco-routers.ppt
 

More from dickonsondorris

Copyright © eContent Management Pty Ltd. Health Sociology Revi.docx
Copyright © eContent Management Pty Ltd. Health Sociology Revi.docxCopyright © eContent Management Pty Ltd. Health Sociology Revi.docx
Copyright © eContent Management Pty Ltd. Health Sociology Revi.docxdickonsondorris
 
Copyright © Pearson Education 2010 Digital Tools in Toda.docx
Copyright © Pearson Education 2010 Digital Tools in Toda.docxCopyright © Pearson Education 2010 Digital Tools in Toda.docx
Copyright © Pearson Education 2010 Digital Tools in Toda.docxdickonsondorris
 
Copyright © Jen-Wen Lin 2018 1 STA457 Time series .docx
Copyright © Jen-Wen Lin 2018   1 STA457 Time series .docxCopyright © Jen-Wen Lin 2018   1 STA457 Time series .docx
Copyright © Jen-Wen Lin 2018 1 STA457 Time series .docxdickonsondorris
 
Copyright © John Wiley & Sons, Inc. All rights reserved..docx
Copyright © John Wiley & Sons, Inc. All rights reserved..docxCopyright © John Wiley & Sons, Inc. All rights reserved..docx
Copyright © John Wiley & Sons, Inc. All rights reserved..docxdickonsondorris
 
Copyright © by The McGraw-Hill Companies, Inc. The Aztec Accou.docx
Copyright © by The McGraw-Hill Companies, Inc. The Aztec Accou.docxCopyright © by The McGraw-Hill Companies, Inc. The Aztec Accou.docx
Copyright © by The McGraw-Hill Companies, Inc. The Aztec Accou.docxdickonsondorris
 
Copyright © Cengage Learning. All rights reserved. CHAPTE.docx
Copyright © Cengage Learning.  All rights reserved. CHAPTE.docxCopyright © Cengage Learning.  All rights reserved. CHAPTE.docx
Copyright © Cengage Learning. All rights reserved. CHAPTE.docxdickonsondorris
 
Copyright © by Holt, Rinehart and Winston. All rights reserved.docx
Copyright © by Holt, Rinehart and Winston. All rights reserved.docxCopyright © by Holt, Rinehart and Winston. All rights reserved.docx
Copyright © by Holt, Rinehart and Winston. All rights reserved.docxdickonsondorris
 
Copyright © 2020 by Jones & Bartlett Learning, LLC, an Ascend .docx
Copyright © 2020 by Jones & Bartlett Learning, LLC, an Ascend .docxCopyright © 2020 by Jones & Bartlett Learning, LLC, an Ascend .docx
Copyright © 2020 by Jones & Bartlett Learning, LLC, an Ascend .docxdickonsondorris
 
Copyright © 2019, American Institute of Certified Public Accou.docx
Copyright © 2019, American Institute of Certified Public Accou.docxCopyright © 2019, American Institute of Certified Public Accou.docx
Copyright © 2019, American Institute of Certified Public Accou.docxdickonsondorris
 
Copyright © 2018 Pearson Education, Inc. All Rights ReservedChild .docx
Copyright © 2018 Pearson Education, Inc. All Rights ReservedChild .docxCopyright © 2018 Pearson Education, Inc. All Rights ReservedChild .docx
Copyright © 2018 Pearson Education, Inc. All Rights ReservedChild .docxdickonsondorris
 
Copyright © 2018 Pearson Education, Inc. C H A P T E R 6.docx
Copyright © 2018 Pearson Education, Inc. C H A P T E R  6.docxCopyright © 2018 Pearson Education, Inc. C H A P T E R  6.docx
Copyright © 2018 Pearson Education, Inc. C H A P T E R 6.docxdickonsondorris
 
Copyright © 2018 Capella University. Copy and distribution o.docx
Copyright © 2018 Capella University. Copy and distribution o.docxCopyright © 2018 Capella University. Copy and distribution o.docx
Copyright © 2018 Capella University. Copy and distribution o.docxdickonsondorris
 
Copyright © 2018 Pearson Education, Inc.C H A P T E R 3.docx
Copyright © 2018 Pearson Education, Inc.C H A P T E R  3.docxCopyright © 2018 Pearson Education, Inc.C H A P T E R  3.docx
Copyright © 2018 Pearson Education, Inc.C H A P T E R 3.docxdickonsondorris
 
Copyright © 2018 by Steven Levitsky and Daniel.docx
Copyright © 2018 by Steven Levitsky and Daniel.docxCopyright © 2018 by Steven Levitsky and Daniel.docx
Copyright © 2018 by Steven Levitsky and Daniel.docxdickonsondorris
 
Copyright © 2017, 2014, 2011 Pearson Education, Inc. All Right.docx
Copyright © 2017, 2014, 2011 Pearson Education, Inc. All Right.docxCopyright © 2017, 2014, 2011 Pearson Education, Inc. All Right.docx
Copyright © 2017, 2014, 2011 Pearson Education, Inc. All Right.docxdickonsondorris
 
Copyright © 2017 Wolters Kluwer Health Lippincott Williams.docx
Copyright © 2017 Wolters Kluwer Health  Lippincott Williams.docxCopyright © 2017 Wolters Kluwer Health  Lippincott Williams.docx
Copyright © 2017 Wolters Kluwer Health Lippincott Williams.docxdickonsondorris
 
Copyright © 2016, 2013, 2010 Pearson Education, Inc. All Right.docx
Copyright © 2016, 2013, 2010 Pearson Education, Inc. All Right.docxCopyright © 2016, 2013, 2010 Pearson Education, Inc. All Right.docx
Copyright © 2016, 2013, 2010 Pearson Education, Inc. All Right.docxdickonsondorris
 
Copyright © 2017 by University of Phoenix. All rights rese.docx
Copyright © 2017 by University of Phoenix. All rights rese.docxCopyright © 2017 by University of Phoenix. All rights rese.docx
Copyright © 2017 by University of Phoenix. All rights rese.docxdickonsondorris
 
Copyright © 2016 John Wiley & Sons, Inc.Copyright © 20.docx
Copyright © 2016 John Wiley & Sons, Inc.Copyright © 20.docxCopyright © 2016 John Wiley & Sons, Inc.Copyright © 20.docx
Copyright © 2016 John Wiley & Sons, Inc.Copyright © 20.docxdickonsondorris
 
Copyright © 2016 Pearson Education, Inc. .docx
Copyright © 2016 Pearson Education, Inc.                    .docxCopyright © 2016 Pearson Education, Inc.                    .docx
Copyright © 2016 Pearson Education, Inc. .docxdickonsondorris
 

More from dickonsondorris (20)

Copyright © eContent Management Pty Ltd. Health Sociology Revi.docx
Copyright © eContent Management Pty Ltd. Health Sociology Revi.docxCopyright © eContent Management Pty Ltd. Health Sociology Revi.docx
Copyright © eContent Management Pty Ltd. Health Sociology Revi.docx
 
Copyright © Pearson Education 2010 Digital Tools in Toda.docx
Copyright © Pearson Education 2010 Digital Tools in Toda.docxCopyright © Pearson Education 2010 Digital Tools in Toda.docx
Copyright © Pearson Education 2010 Digital Tools in Toda.docx
 
Copyright © Jen-Wen Lin 2018 1 STA457 Time series .docx
Copyright © Jen-Wen Lin 2018   1 STA457 Time series .docxCopyright © Jen-Wen Lin 2018   1 STA457 Time series .docx
Copyright © Jen-Wen Lin 2018 1 STA457 Time series .docx
 
Copyright © John Wiley & Sons, Inc. All rights reserved..docx
Copyright © John Wiley & Sons, Inc. All rights reserved..docxCopyright © John Wiley & Sons, Inc. All rights reserved..docx
Copyright © John Wiley & Sons, Inc. All rights reserved..docx
 
Copyright © by The McGraw-Hill Companies, Inc. The Aztec Accou.docx
Copyright © by The McGraw-Hill Companies, Inc. The Aztec Accou.docxCopyright © by The McGraw-Hill Companies, Inc. The Aztec Accou.docx
Copyright © by The McGraw-Hill Companies, Inc. The Aztec Accou.docx
 
Copyright © Cengage Learning. All rights reserved. CHAPTE.docx
Copyright © Cengage Learning.  All rights reserved. CHAPTE.docxCopyright © Cengage Learning.  All rights reserved. CHAPTE.docx
Copyright © Cengage Learning. All rights reserved. CHAPTE.docx
 
Copyright © by Holt, Rinehart and Winston. All rights reserved.docx
Copyright © by Holt, Rinehart and Winston. All rights reserved.docxCopyright © by Holt, Rinehart and Winston. All rights reserved.docx
Copyright © by Holt, Rinehart and Winston. All rights reserved.docx
 
Copyright © 2020 by Jones & Bartlett Learning, LLC, an Ascend .docx
Copyright © 2020 by Jones & Bartlett Learning, LLC, an Ascend .docxCopyright © 2020 by Jones & Bartlett Learning, LLC, an Ascend .docx
Copyright © 2020 by Jones & Bartlett Learning, LLC, an Ascend .docx
 
Copyright © 2019, American Institute of Certified Public Accou.docx
Copyright © 2019, American Institute of Certified Public Accou.docxCopyright © 2019, American Institute of Certified Public Accou.docx
Copyright © 2019, American Institute of Certified Public Accou.docx
 
Copyright © 2018 Pearson Education, Inc. All Rights ReservedChild .docx
Copyright © 2018 Pearson Education, Inc. All Rights ReservedChild .docxCopyright © 2018 Pearson Education, Inc. All Rights ReservedChild .docx
Copyright © 2018 Pearson Education, Inc. All Rights ReservedChild .docx
 
Copyright © 2018 Pearson Education, Inc. C H A P T E R 6.docx
Copyright © 2018 Pearson Education, Inc. C H A P T E R  6.docxCopyright © 2018 Pearson Education, Inc. C H A P T E R  6.docx
Copyright © 2018 Pearson Education, Inc. C H A P T E R 6.docx
 
Copyright © 2018 Capella University. Copy and distribution o.docx
Copyright © 2018 Capella University. Copy and distribution o.docxCopyright © 2018 Capella University. Copy and distribution o.docx
Copyright © 2018 Capella University. Copy and distribution o.docx
 
Copyright © 2018 Pearson Education, Inc.C H A P T E R 3.docx
Copyright © 2018 Pearson Education, Inc.C H A P T E R  3.docxCopyright © 2018 Pearson Education, Inc.C H A P T E R  3.docx
Copyright © 2018 Pearson Education, Inc.C H A P T E R 3.docx
 
Copyright © 2018 by Steven Levitsky and Daniel.docx
Copyright © 2018 by Steven Levitsky and Daniel.docxCopyright © 2018 by Steven Levitsky and Daniel.docx
Copyright © 2018 by Steven Levitsky and Daniel.docx
 
Copyright © 2017, 2014, 2011 Pearson Education, Inc. All Right.docx
Copyright © 2017, 2014, 2011 Pearson Education, Inc. All Right.docxCopyright © 2017, 2014, 2011 Pearson Education, Inc. All Right.docx
Copyright © 2017, 2014, 2011 Pearson Education, Inc. All Right.docx
 
Copyright © 2017 Wolters Kluwer Health Lippincott Williams.docx
Copyright © 2017 Wolters Kluwer Health  Lippincott Williams.docxCopyright © 2017 Wolters Kluwer Health  Lippincott Williams.docx
Copyright © 2017 Wolters Kluwer Health Lippincott Williams.docx
 
Copyright © 2016, 2013, 2010 Pearson Education, Inc. All Right.docx
Copyright © 2016, 2013, 2010 Pearson Education, Inc. All Right.docxCopyright © 2016, 2013, 2010 Pearson Education, Inc. All Right.docx
Copyright © 2016, 2013, 2010 Pearson Education, Inc. All Right.docx
 
Copyright © 2017 by University of Phoenix. All rights rese.docx
Copyright © 2017 by University of Phoenix. All rights rese.docxCopyright © 2017 by University of Phoenix. All rights rese.docx
Copyright © 2017 by University of Phoenix. All rights rese.docx
 
Copyright © 2016 John Wiley & Sons, Inc.Copyright © 20.docx
Copyright © 2016 John Wiley & Sons, Inc.Copyright © 20.docxCopyright © 2016 John Wiley & Sons, Inc.Copyright © 20.docx
Copyright © 2016 John Wiley & Sons, Inc.Copyright © 20.docx
 
Copyright © 2016 Pearson Education, Inc. .docx
Copyright © 2016 Pearson Education, Inc.                    .docxCopyright © 2016 Pearson Education, Inc.                    .docx
Copyright © 2016 Pearson Education, Inc. .docx
 

Recently uploaded

Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Disha Kariya
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfAyushMahapatra5
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...Sapna Thakur
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 

Recently uploaded (20)

Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 

VLAN, Trunk and 802.1q Router Configuration Objectiv.docx

  • 1. VLAN, Trunk and 802.1q Router Configuration Objectives Topology lab or you can download the l ab from [email protected] in Content. VLAN, Trunk and 802.1q Router Configuration Step 1: Initial Switch Configuration
  • 2. ches as uwstout vlans StoutSW2 using the fa0/1 interfaces and PC2 according to the topology diagram If you need help remembering the commands for the initial configuration steps, try using ? or refer to the previous labs. Before moving to Step 2 verify your trunk and VLAN configuration, PC IP addresses and that the switchports for the PCs are in the correct vlans. Use “show” commands and ipconfig to verify the initial configuration.
  • 3. VLAN, Trunk and 802.1q Router Configuration Step 2: Configure 802.1 trunk between Menomonie and StoutSW1 Data from one vlan cannot cross into another vlan without the help of a router to route the data. Currently the PCs cannot successfully send to each other because they are on different VLANs. In this step you will configure a trunk between the Menomonie router and the StoutSW1 switch. (This type of configuration is referred to as “Router-on-a-Stick”) so the router can be used to route traffic between the VLANs. The physical interface on the router that is connected to StoutSW1 is fastethernet0/1 so you will configure the trunked sub-interfaces on the fastethernet0/1 interface. Then configure fastethernet0/8 on StoutSW1 to trunk. Configure the Router: Configure the hostname on the router to Menomonie:
  • 4. Configure the first sub-interface on Menomonie to route vlan 10 fastethernet0/1.10 encapsulation dot1q 10 Configure the second sub-interface on Menomonie to route vlan 20 fastethernet0/1.20 encapsulation dot1q 20 Configure the third sub-interface on Menomonie to route vlan 30 pe, interface fastethernet0/1.30 encapsulation dot1q 30 Now that the virtual trunked interfaces have been configured you can assign an IP address to the
  • 5. interfaces. The addresses for each interface will be as follows, with default subnet masks: Fastethernet 0/1.10 : 192.168.10.1 Fastethernet 0/1.20 : 192.168.20.1 Fastethernet 0/1.30 : 192.168.30.1 on mode for fa0/1.10 type, ip address 192.168.10.1 255.255.255.0 address 192.168.20.1 255.255.255.0 address 192.168.30.1 255.255.255.0 Configure StoutSW1: VLAN, Trunk and 802.1q Router Configuration The router is configured to trunk on the fastethernet0/1, now the StoutSW1 port it connects to needs to be configured to trunk in order to complete the link. Configure fastethernet0/8 to trunk:
  • 6. StoutSW1 type, switchport mode trunk Step 3: Configure the Default Gateway on the PCs In the initial configuration we are not using any routers to route traffic on the network. In that configuration the PCs are unable to communicate with each other because they are in different VLANs and subnets. At this point you have configured the router and switch so traffic can pass to the router to be routed to the other VLANs. The router is the default gateway, it is what is being used when traffic needs to leave the network from which it was sent. In this step you will configure the PCs to use the router’s sub-interface IP address as its default gateway, then verify you have connectivity in the network. Configure each PC with the proper default gateway. PC1a default gateway 192.168.10.1 PC1b default gateway 192.168.20.1
  • 7. PC2 default gateway 192.168.30.1 Verify network connectivity: At this point your network is complete and you should be able to communicate/ping to all PCs. address, the pings should be successful. VLAN, Trunk and 802.1q Router Configuration Verify the router is being used to forward traffic between the VLANs. You can use the tracert command on the PCs to see the path the traffic is taking to get to its destination. Review the path traffic is taking to get from PC1a to PC1b, notice the first hop is the router sub- interface and then it is forwarded to the PC.
  • 8. Step 4: Saving the Configuration file to NVRAM Now you need to save your configuration from RAM to NVRAM using the command copy running-config startup-config in Privileged Mode. Now you need to save your configuration from RAM to NVRAM. The configuration in RAM is called the running - config, the configuration in NVRAM is called startup-config. In order to save our device configuration you need to copy from RAM to NVRAM. Use the command: copy running-config startup-config in Privileged Mode. ***Before completing a lab you must always issue this command on each network device (router or switch) you have configured. When you do that it saves the configuration you did. When you issue the command once you have completed the lab, that is the file I see as your final file submitted. This is the configuration I will grade you on. You ca n issue the copy running-config startup-config command multiple times while doing your lab (which is a good idea in case you lose your internet connection or power), just be sure to
  • 9. issue it one more time right before you have completed the lab. Static Routing Objectives: Topology Enter Lab you will see the following: to move around the topology. lab or you can download the lab from [email protected] in Content.
  • 10. you will be configuring all of the equipment in the topology Static Routing Step 1: Initial Router Configuration Perform the initial router configurations on all routers. If you have trouble recalling how to do each step refer to the previous lab. tnames according to the topology all of the passwords to uwstout according to the topology CE interfaces to 128000 interfaces
  • 11. Verify you have done the initial configuration correctly: Before proceeding to the next step check that your interfaces are up, once you have completed the initial configuration on all routers all interfaces should be up. You will use the show ip interfaces brief command to see if your interfaces are up. In user or privileged mode, type show ip interfaces brief and press enter. (It is okay that the BRI interfaces are down, we didn’t configure them)
  • 12. Notice that all of the interfaces configured show a status as up and the protocol is up. At this point you are ready to move to the next step. If your interfaces are not up you will need to troubleshoot: o Verify that you enabled the interfaces (no shutdown) o Verify the IP address/subnet masks are correct—typos are common o Verify the clockrate and bandwidth on the DCE o Make sure you configured the correct interfaces. Static Routing Step 2: Configuring the Static Routes Now that you have completed the initial configuration you can begin to configure routing. If you are not using a Routing protocol to route the traffic you will use administratively configure static routes to route the traffic in your network. We will be configuring static routes to route traffic in our network. When you configure a static route you are simply writing a command that says “if you want to send traffic to the xxx.xxx.xxx.xxx network send it to the yyy.yyy.yyy.yyy address” where yyy.yyy.yyy.yyy represents the next hop address. You can also configure an outgoing interface rather than a next hop address. Next hop address is the prefer method for our use because it is a more
  • 13. definite route—I can predict exactly where my traffic will be going assuming that interface is up. Configure the static routes on RemoteAZ: Configure the static routes on RemoteAZ so traffic can get to RemoteWI and Menomonie. Static routes are only configured for networks that the router isn’t directly connected to. Directly connect routes do not need any routing, they are already in the routing table. The form of the command is: ip route <destination prefix> <prefix mask> <forwarding router’s address> Remote AZ needs to get to the 10.10.2.0 and 192.168.2.0 networks on Menomonie and the 10.10.3.0 network on RemoteWI so we will configure a static route to complete this task. 10.10.2.0 255.255.255.0 192.168.1.2 and press enter. 10.10.3.0 255.255.255.0 192.168.3.1 and press enter. 192.168.2.0 255.255.255.0 192.168.1.2 and press enter. configuration using copy running-config
  • 14. startup-config command. Configure the static routes on Menomonie: 10.10.1.0 255.255.255.0 192.168.1.1 and press enter. 10.10.3.0 255.255.255.0 192.168.2.2 and press enter. 192.168.3.0 255.255.255.0 192.168.2.2 and press enter. configuration using copy running-config startup-config command. Static Routing Configure static routes on RemoteWI: Configure the static routes on RemoteWI so traffic can get to the Menomonie and RemoteAZ networks.
  • 15. 10.10.1.0 255.255.255.0 192.168.3.2 and press enter. 10.10.2.0 255.255.255.0 192.168.2.1 and press enter. 192.168.1.0 255.255.255.0 192.168.3.2 and press enter. configuration using copy running-config startup-config command. Step 3: Verifying Connectivity Use the command show ip route to review the routing table of each router. If everything was done correctly you will see routes to all networks in the topology in the routing table, some will be Connected and some will be Static. There are six networks in the topology In all routers: to view the routing table.
  • 16. Static Routing Next, use ping to verify the connectivity between all the routers and hosts. To ping from the routers you will go into privileged mode and type ping ip address, where ip address is the IP address you are wanting to ping, you are wanting to see if you have connectivity to. If your ping is successful then you have connectivity to that network and you have done the lab correctly once you have ensured you have connectivity to all networks. l interfaces (ip addresses) from all routers Example: On RemoteAZ I pinged to the IP addresses on Menomonie that I wasn’t directly connected to and it was successful. If you are unable to ping an interface or computer, verify your configurations to make sure you entered everything correctly.