TECH2100 Week 5 Workshop
TECH2100 Week 5 Workshop
Introduction to Information
Networks
Lesson 5
Transport Layer Protocols
COMMONWEALTH OF AUSTRALIA
Copyright Regulations 1969
WARNING
The material in this communication may be subject to copyright under the Act. Any
further reproduction or communication of this material by you may be the subject of
copyright protection under the Act.
Background / Scenario
This lab guides you through setting up a network with a router and switch, configuring
interfaces, and verifying connectivity using basic IOS commands. It aims to reinforce
knowledge of network configuration using Cisco IOS within a Packet Tracer simulated
environment.
Required Resources
• Cisco Packet Tracer
• Virtual models of a Router (Cisco 1941 or comparable) and a Switch (Cisco 2960 or
comparable)
• Virtual PCs within Packet Tracer
Addressing Table
Device Interface IP Address Subnet Mask Default Gateway
R1 Fa0/0 192.168.0.1 255.255.255.0 N/A
Fa0/1 192.168.1.1 255.255.255.0 N/A
PC-A NIC 192.168.1.3 255.255.255.0 192.168.1.1
PC-B NIC 192.168.0.3 255.255.255.0 192.168.0.1
Step-by-Step Guide for Activity
Activity Instructions Solution
Step 1: Set Up the
Topology and Initialize
Devices
• Connect the
switches to PCs:
• Open Cisco Packet
Tracer.
• Drag and Drop the
Devices:
Step-by-Step Guide for Activity
Activity Instructions Solution
• Place a Router (Cisco 1941 or similar) and a Switch
(Cisco 2960 or similar) onto the workspace.
Step-by-Step Guide for Activity
Activity Instructions Solution
• Add two PCs and connect them as shown in the diagram,
then rename all the devices as shown in the provided
topology.
Step-by-Step Guide for Activity
Activity Instructions Solution
• Connect PC-A to the switch (e.g., on port Fa0/6).
Step-by-Step Guide for Activity
Activity Instructions Solution
• Connect PC-A to the switch (e.g., on port Fa0/6).
Step-by-Step Guide for Activity
Activity Instructions Solution
• Connect the Switch (e.g., on port Fa0/5) to the Router's
Fa0/1.
Step-by-Step Guide for Activity
Activity Instructions Solution
• Connect the Router's Fa0/0 to the PC-B.
Step-by-Step Guide for Activity
Activity Instructions Solution
• Final Diagram for the proposed topology
Step-by-Step Guide for Activity
Activity Instructions Solution
Step 2: Configure
Devices and Verify
Connectivity
1. Configure the Router:
• Access the router CLI
(Command Line
Interface) by clicking on
the router and selecting
the CLI tab.
• Enter global
configuration mode:
Step-by-Step Guide for Activity
Activity Instructions Solution
1. Configure the
Router:
• Enter global
configuration mode:
• Router> enable
• Router# configure
terminal
Step-by-Step Guide for Activity
Activity Instructions Solution
1. Configure the
Router:
• Configure interfaces
with IP addresses as
specified:
• Router(config)#
interface fa0/1
• Router(config-if)# ip
address 192.168.1.1
255.255.255.0
• Router(config-if)# no
shutdown
Step-by-Step Guide for Activity
Activity Instructions Solution
1. Configure the
Router:
• Configure interfaces
with IP addresses as
specified:
• Router(config)#
interface fa0/0
• Router(config-if)# ip
address 192.168.0.1
255.255.255.0
• Router(config-if)# no
shutdown
Step-by-Step Guide for Activity
Activity Instructions Solution
2. Configure PCs:
• Click on PC-A, go to
the Desktop tab, and
open IP
Configuration. Set the
IP address to
192.168.1.3, Subnet
Mask to
255.255.255.0, and
Default Gateway to
192.168.1.1.
Step-by-Step Guide for Activity
Activity Instructions Solution
2. Configure PCs:
• Click on PC-A, go to
the Desktop tab, and
open IP
Configuration. Set the
IP address to
192.168.1.3, Subnet
Mask to
255.255.255.0, and
Default Gateway to
192.168.1.1.
Step-by-Step Guide for Activity
Activity Instructions Solution
2. Configure PCs:
• Click on PC-A, go to
the Desktop tab, and
open Command
Prompt. Write the
command “ipconfig
/all”
Step-by-Step Guide for Activity
Activity Instructions Solution
2. Configure PCs:
• Click on PC-A, go to
the Desktop tab, and
open Command
Prompt. Write the
command “ipconfig
/all” to check the
configuration for PC-
A.
Step-by-Step Guide for Activity
Activity Instructions Solution
2. Configure PCs:
• Repeat for PC-B with
the IP address
192.168.0.3, Subnet
Mask to
255.255.255.0, and
Default Gateway to
192.168.0.1.
Step-by-Step Guide for Activity
Activity Instructions Solution
2. Configure PCs:
• Click on PC-B, go to
the Desktop tab, and
open Command
Prompt. Write the
command “ipconfig
/all” to check the
configuration for PC-
A.
Step-by-Step Guide for Activity
Activity Instructions Solution
2. Verify Connectivity:
• On PC-A, open the
Command Prompt and
type:
• ping 192.168.1.1 # To
check connectivity to
the router
Step-by-Step Guide for Activity
Activity Instructions Solution
2. Verify Connectivity:
• On PC-A, open the
Command Prompt and
type:
• ping 192.168.0.3 # To
check connectivity to
PC-B
Step-by-Step Guide for Activity
Activity Instructions Solution
2. Verify Connectivity:
• Repeat similar steps on
PC-B to verify
connectivity to PC-A
and the router.
• Click on PC-B, go to
the Desktop tab, and
open Command
Prompt.
• Ping 192.168.0.1 # To
check connectivity to
the router
Step-by-Step Guide for Activity
Activity Instructions Solution
2. Verify Connectivity:
• Repeat similar steps on
PC-B to verify
connectivity to PC-A
and the router.
• Click on PC-B, go to
the Desktop tab, and
open Command
Prompt.
• Ping 192.168.1.3 # To
check connectivity to
PC-A
Step-by-Step Guide for Activity
Activity Instructions Solution
2. Step 3: Show Router
Information:
• To display router
configurations and
interface statuses, use
the following commands
in the router’s CLI:
• Router# show running-
config # Shows the
current configuration
• Router# show ip interface
brief # Shows a brief
overview of interface
statuses