Instructions a.
On PC-A, configure the IP address,
subnet mask, and default gateway
Part 1: Set Up the Topology
settings.
a. Move the required router and
switch from the Shelf to the Rack.
b. On PC-B, configure the IP address,
subnet mask, and default gateway
b. Move the required PCs from the settings.
Shelf to the Table.
c. From a command prompt window
c. Cable the devices, as shown in the on PC-A, ping PC-B.
Topology and the Addressing Table.
Step 2: Configure the router.
d. Power on all the devices.
a. Console into the router and enable
privileged EXEC mode.
Part 2: Configure Devices and Verify Router> enable
Connectivity
In this part, you will set up the b. Enter configuration mode.
network topology and configure basic
settings, such as the interface IP Router# config terminal
addresses, device access, and
passwords. Refer to the Topology and c. Assign the device name to the
Addressing Table at the beginning router.
of this activity for device names and Router(config)# hostname R1
address information.
d. Assign class as the privileged EXEC
Step 1: Assign static IP information to encrypted password.
the PC interfaces.
R1(config)# enable secret class
e. Assign cisco as the console i. Configure and activate both
password and enable login. interfaces on the router.
R1(config)# line console 0 R1(config)# interface g0/0/0
R1(config-line)# password cisco R1(config-if)# ip address 192.168.0.1
255.255.255.0
R1(config-line)# login
R1(config-if)# ipv6 address
R1(config-line)# exit
2001:db8:acad::1/64
R1(config-if)# ipv6 address fe80::1
f. Assign cisco as the vty password and link-local
enable login.
R1(config-if)# no shutdown
R1(config-if)# exit
R1(config)# line vty 0 4
R1(config)# interface g0/0/1
R1(config-line)# password cisco
R1(config-if)# ip address 192.168.1.1
R1(config-line)# login 255.255.255.0
R1(config-line)# exit R1(config-if)# ipv6 address
2001:db8:acad:1::1/64
g. Encrypt the plaintext passwords. R1(config-if)# ipv6 address fe80::1
link-local
R1(config)# service password-
encryption R1(config-if)# no shutdown
R1(config-if)# exit
h. Create a banner that warns anyone
accessing the device that j. Configure an interface description
unauthorized access is prohibited. for each interface indicating which
R1(config)# banner motd $ Authorized device is connected to it.
Users Only! $
R1(config)# interface g0/0/1
R1(config-if)# description Connected n. From a command prompt window
to F0/5 on S1 on PC-A, ping PC-B.
R1(config-if)# exit Note: If pings are not successful, the
Windows Firewall may need to be
R1(config)# interface g0/0/0
turned off.
R1(config-if)# description Connected
Were the pings successful? Explain.
to Host PC-B
Yes. The router is routing traffic across
R1(config-if)# exit
the two subnets. The default settings
for the 2960 switch will
k. To enable IPv6 routing, enter the automatically turn up the interfaces
ipv6 unicast-routing command. that are connected to devices.
R1(config)# ipv6 unicast-routing
Step 3: Configure the switch.
l. Save the running configuration to In this step, you will configure the
the startup configuration file. hostname, the VLAN 1 interface, and
R1(config)# exit its default gateway.
R1# copy running-config startup-config a. Console into the switch and enable
privileged EXEC mode.
Switch> enable
m. Set the clock on the router.
b. Enter configuration mode.
R1# clock set 13:30:00 29 Nov 2023
Switch# config terminal
Note: Use the question mark (?) to
help with the correct sequence of
parameters needed to execute this c. Assign a device name to the switch.
command. Switch(config)# hostname S1
d. Configure and activate the VLAN
interface on the switch S1. Part 3: Display Device Information
In Part 3, you will use show
S1(config)# interface vlan 1 commands to retrieve interface and
routing information from the router
S1(config-if)# ip address 192.168.1.2
255.255.255.0 and switch.
S1(config-if)# no shutdown Step 1: Display the routing table on
the router.
S1(config-if)# exit
a. Use the show ip route command on
e. Configure the default gateway for
R1 to answer the following questions.
the switch S1.
R1# show ip route
S1(config)# ip default-gateway
192.168.1.1 b. Use the show ipv6 route command
on R1 to display the IPv6 routes.
S1(config-if)# exit
R1# show ipv6 route
f. Save the running configuration to
the startup configuration file. Step 2: Display interface information
on R1.
S1# copy running-config startup-config
a. Use the show interface g0/0/1 to
answer the following questions.
Step 4: Verify connectivity end-to-end
R1# show interface g0/0/1
connectivity.
a. From PC-A, ping PC-B.
b. For the IPv6 information, enter the
show ipv6 interface interface
b. From S1, ping PC-B. command.
All the pings should be successful.
R1# show ipv6 interface g0/0/1
Step 3: Display a summary list of the
interfaces on the router and switch.
There are several commands that can
be used to verify an interface
configuration. One of the most
useful is the show ip interface brief
command. The command output
displays a summary list of the
interfaces on the device and provides
immediate feedback about the status
of each interface.
a. Enter the show ip interface brief
command on R1.
R1# show ip interface brief
b. Enter the show ipv6 interface brief
command on R1 to see the IPv6
interface information.
R1# show ipv6 interface brief
c. Enter the show ip interface brief
command on S1.
S1# show ip interface brief
CISCO