0% found this document useful (0 votes)
47 views3 pages

PT6433 v2 Completed

This document describes configuring IP addresses and interfaces on two routers, R1 and R2, to connect them to PCs on different LANs and establish connectivity across the network. Key steps include configuring IP addresses on router interfaces, including GigabitEthernet and Serial interfaces, verifying the interface configurations, and testing connectivity between all devices by pinging interfaces and PCs.

Uploaded by

lorel17157
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
47 views3 pages

PT6433 v2 Completed

This document describes configuring IP addresses and interfaces on two routers, R1 and R2, to connect them to PCs on different LANs and establish connectivity across the network. Key steps include configuring IP addresses on router interfaces, including GigabitEthernet and Serial interfaces, verifying the interface configurations, and testing connectivity between all devices by pinging interfaces and PCs.

Uploaded by

lorel17157
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

Program/Class: Name:

PT6433 – Connect a Router to a LAN

Addressing Table
Device Interface IP Address Subnet Mask Default Gateway
G0/0 192.168.10.1 255.255.255.0 N/A
R1 G0/1 192.168.11.1 255.255.255.0 N/A
S0/0/0 (DCE) 209.165.200.225 255.255.255.252 N/A
G0/0 10.1.1.1 255.255.255.0 N/A
R2 G0/1 10.1.2.1 255.255.255.0 N/A
S0/0/0 209.165.200.226 255.255.255.252 N/A
PC1 NIC 192.168.10.10 255.255.255.0 192.168.10.1
PC2 NIC 192.168.11.10 255.255.255.0 192.168.11.1
PC3 NIC 10.1.1.10 255.255.255.0 10.1.1.1
PC4 NIC 10.1.2.10 255.255.255.0 10.1.2.1

The routers in this activity are partially configured. The serial interfaces are already configured and active. In addition,
routing is configured using EIGRP.
(12)

Part 1: Display Router Information


Step 1: Display interface information on R1.
a. Click R1 and then click the CLI tab to access the command line directly. The console password is cisco.
b. Enter privileged EXEC mode by entering the enable command. The privileged EXEC password is class.
R1> enable
R1#
c. Enter show interfaces to displays the statistics for all interfaces configured on a router.
d. Enter show int S0/0/0 to display the statistics for the Serial 0/0/0 interface on R1 and answer the following
questions:
1) What is the IP address configured on R1? _______________________________________________
2) What is the bandwidth on the Serial 0/0/0 interface? _______________________________________
e. Enter show int G0/0 to display the statistics for the GigabitEthernet 0/0 interface and answer the following
questions:
1) Is there any IP address set on R1? _____________________________________________________
2) What is the MAC address of the GigabitEthernet 0/0 interface? _______________________________
3) What is the bandwidth on the GigabitEthernet 0/0 interface? _________________________________
f. Enter show ip int brief to displays the statistics for all interfaces configured on a router.

© 2023 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 1 of 3
Program/Class: Name:
Step 2: Display the routing table on R1.
Enter show ip route to display the content of the routing table to see that S0/0/0 is configured.

Part 2: Configure Router Interfaces


Step 1: Configure the GigabitEthernet 0/0 interface on R1.
a. Enter the following commands to address and activate the GigabitEthernet 0/0 interface on R1:
Password : cisco
R1> enable
Password : class
R1# config terminal
R1(config)# interface G0/0
R1(config-if)# ip address 192.168.10.1 255.255.255.0
R1(config-if)# no shutdown
R1(config)# interface G0/1
R1(config-if)# ip address 192.168.11.1 255.255.255.0
R1(config-if)# no shutdown
R1(config-if)# interface S0/0/0
R1(config-if)# ip address 209.165.200.225 255.255.255.252
R1(config-if)# no shutdown
R1(config-if)# end
R1# copy running start

%LINK-5-CHANGED: Interface GigabitEthernet0/0, changed state to up


%LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0, changed state
to up
Password : cisco
R2> enable
Password : class
R2# config terminal
R2(config)# interface G0/0
R2(config-if)# ip address 10.1.1.1 255.255.255.0
R2(config-if)# no shutdown
R2(config)# interface G0/1
R2(config-if)# ip address 10.1.2.1 255.255.255.0
R2(config-if)# no shutdown
R2(config-if)# interface S0/0/0
R2(config-if)# ip address 209.165.200.226 255.255.255.252
R2(config-if)# no shutdown
R2(config-if)# end
R2# copy running start

b. It is good practice to configure a description for each interface to help document the network information.
Configure an interface description indicating to which device it is connected.
R1(config-if)# description LAN connection to S1
R1(config-if)# end
c. R1 should now be able to ping PC1.
R1# ping 192.168.10.10
(21)

© 2023 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 2 of 3
Program/Class: Name:
Step 2: Configure the remaining Gigabit Ethernet Interfaces on R1 and R2.
a. Use the information in the Addressing Table to finish the interface configurations for R1 and R2. For each
interface, do the following:
1) Enter the IP address and activate the interface.
2) Configure an appropriate description.
b. Verify interface configurations.
(33,39,48)

Step 3: Back up the configurations to NVRAM.


Save the configuration files on both routers to NVRAM. What command did you use?____________________
(51,54)

Part 3: Verify the Configuration


Step 1: Use verification commands to check your interface configurations.
a. Use the show ip interface brief command on both R1 and R2 to quickly verify that the interfaces are
configured with the correct IP address and active.
b. Use the show ip route command on both R1 and R2 to view the current routing tables.
Step 2: Test end-to-end connectivity across the network.
You should now be able to ping from any PC to any other PC on the network. In addition, you should be able
to ping the active interfaces on the routers.

Reference: 6.4.3.3 Packet Tracer – Connect a Router to a LAN

© 2023 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 3 of 3

You might also like