Reference no: EM133996801
Network Security Implementation
Task 1
Securing the Router for Administrative Access
Objective
Securing the Router for Administrative Access
In this lab, you will perform the following tasks:
Task 1: Configure Basic Device Settings
Cable the network as shown in the topology.
Configure basic IP addressing for routers and PCs.
Configure OSPF routing.
Configure PC hosts.
Verify connectivity between hosts and routers.
Task 2: Control Administrative Access for Routers
Configure and encrypt all passwords.
Configure a login-warning banner.
Configure enhanced username password security.
Configure an SSH server on a router.
Configure an SSH client and verify connectivity.
Configure an SCP server on a router.
Background
The router is a critical component in any network. It controls the movement of data into and out of the network and between devices within the network. It is particularly important to protect network routers because the failure of a routing device could make sections of the network, or the entire network, inaccessible. Controlling access to routers and enabling reporting on routers is critical to network security and should be part of a comprehensive security policy.
In this lab, you will build a multi-router network and configure the routers and hosts. Use various CLI tools to secure local and remote access to the routers, analyze potential vulnerabilities, and take steps to mitigate them. Enable management reporting to monitor router configuration changes.
Task 1: Configure Basic Device Settings
Perform all the given task in Packet tracer.
Students should perform the steps in this task individually.
In Task 1, set up the network topology and configure basic settings, such as interface IP addresses.
Step 1: Deploy router in Packet Tracer.
Attach the devices, as shown in the topology diagram, and connection, as necessary.
Step 2: Configure basic settings for each router.
Configure host names as shown in the topology plus your student ID.
Configure interface IP addresses as shown in the IP Addressing Table.
R1 Config
R1-S0000#conf t
Enter configuration commands, one per line. End with CNTL/Z. R1-S0000(config)#interface f0/1
R1-S0000(config-if)#ip address 192.168.1.1 255.255.255.0 R1-S0000(config-if)#no shutdown
R1-S0000(config-if)#exit
R1-S0000(config)#interface s0/0
R1-S0000(config-if)#ip address 10.1.1.1 255.255.255.252 R1-S0000(config-if)#no shutdown
R1-S0000(config-if)#exit R1-S0000(config)#exit
R1-S0000#copy running-config startup-config Destination filename [startup-config]?
R3 Config
R3-S0000#conf t
Enter configuration commands, one per line. End with CNTL/Z. R3-S0000(config)#interface f0/1
R3-S0000(config-if)#ip address 192.168.3.1 255.255.255.0 R3-S0000(config-if)#no shutdown
R3-S0000(config-if)#exit
R3-S0000(config)#interface s0/1
R3-S0000(config-if)#ip address 10.2.2.1 255.255.255.252 R3-S0000(config-if)#no shutdown
R3-S0000(config-if)#exit R3-S0000(config)#exit
R3-S0000#copy running-config startup-config Destination filename [startup-config]?
R2 Config
R2-S0000#conf t
Enter configuration commands, one per line. End with CNTL/Z. R2-S0000(config)#interface s0/0
R2-S0000(config-if)#ip address 10.1.1.2 255.255.255.252 R2-S0000(config-if)#no shutdown
R2-S0000(config-if)#exit
R2-S0000(config)#interface s0/1
R2-S0000(config-if)#ip address 10.2.2.2 255.255.255.252 R2-S0000(config-if)#no shutdown
R2-S0000(config-if)#exit R2-S0000(config)#exit
R2-S0000#copy running-config startup-config Destination filename [startup-config]?
Configure a clock rate for routers with a DCE serial cable attached to their serial interface. R1-STUDENTID is shown here as an example.
R1-S0000# Conf t
R1-S0000(config)# interface S0/0
R1-S0000(config-if)# clock rate 64000 R1-S0000(config-if)# Exit
R1-S0000(config)# Exit R3:
R3-S000 # Conf t
R3-S0000(config)# interface S0/1
R3-S0000(config-if)# clock rate 64000 R3-S0000(config-if)# Exit
R3-S0000(config)# Exit R2:
R2-S000 # Conf t
R2-S0000(config)# interface S0/0
R2-S0000(config-if)# clock rate 64000 R2-S0000(config-if)# exit
R2-S0000(config)# interface S0/1
R2-S0000(config-if)# clock rate 64000 R2-S0000(config-if)# Exit
R2-S0000(config)# Exit
To prevent the router from attempting to translate incorrectly entered commands as though they were host names, disable DNS lookup. R1-STUDENTID is shown here as an example.
R1-S000 # Conf t
R1-S0000(config)# no ip domain-lookup R1-S0000(config-if)# Exit
R1-S0000(config)# Exit R2:
R2-S000 # Conf t
R2-S0000(config)# no ip domain-lookup R2-S0000(config-if)# Exit
R2-S0000(config)# Exit R3:
R3-S000 # Conf t
R3-S0000(config)# no ip domain-lookup R3-S0000(config-if)# Exit
R3-S0000(config)# Exit
Step 3: Configure OSPF routing on the routers.
Use the router ospf command in global configuration mode to enable OSPF on R1-STUDENTID. R1-S0000(config)# Conf t
R1-S0000(config)# router ospf 1
Configure the network statements for the networks on R1-STUDENTID. Use an area ID of 0. R1-S0000(config-router)# network 192.168.1.0 0.0.0.255 area 0
R1-S0000(config-router)# network 10.1.1.0 0.0.0.3 area 0 R1-S0000(config-if)# Exit
R1-S0000(config)# Exit
Configure OSPF on R2-STUDENTID and R3-STUDENTID. R3:
R3-S0000# Conf t
R3-S0000(config)# router ospf 1
R3-S0000(config-router)# network 192.168.3.0 0.0.0.255 area 0
R3-S0000(config-router)# network 10.2.2.0 0.0.0.3 area 0 R3-S0000(config-if)# Exit
R3-S0000(config)# Exit
R2:
R2-S0000# Conf t
R2-S0000(config)# router ospf 1
R2-S0000(config-router)# network 10.1.1.0 0.0.0.3 area 0
R2-S0000(config-router)# network 10.2.2.0 0.0.0.3 area 0 R2-S0000(config-if)# Exit
R2-S0000(config)# Exit
Issue the passive-interface command to change the f0/1 interface on R1-STUDENTID and R3-STUDENTID to passive.
R1-S0000# Conf t
R1-S0000(config)# router ospf 1
R1-S0000(config-router)# passive-interface f0/1 R1-S0000(config-if)# Exit
R1-S0000(config)# Exit R3:
R3-S0000# Conf t
R3-S0000(config)# router ospf 1
R3-S0000(config-router)# passive-interface f0/1 R3-S0000(config-if)# Exit
R3-S0000(config)# Exit
Step 4: Verify OSPF neighbors and routing information.
Issue the show ip ospf neighbor command to verify that each router lists the other routers in the network as neighbors.
R1-S0000 # show ip ospf neighbor
Step 5: Configure PC host IP settings.
How to configure IP address in PC
There are following steps involved to configure an IP Address to PC:
Step1: Open the Cisco Packet Tracer.
Step2: Drag and drop PC from the bottom of the interface into the middle of the working area.
Step3: Click on PC ->Config Gateway like 192.168.1.1
Configure both PC-A and PC-C as demonstrated Step 6: Verify connectivity between PC-A and PC-C. Ping from R1-STUDENTID to R3-STUDENTID.
If the pings are not successful, troubleshoot the basic device configurations before continuing.
Ping from PC-A, on the R1-STUDENTID-STUDENTID LAN, to PC-C, on the R3-STUDENTID LAN.
If the pings are not successful, troubleshoot the basic device configurations before continuing.
Note: If you can ping from PC-A to PC-C you have demonstrated that OSPF routing is configured and functioning correctly. If you cannot ping but the device interfaces are up and IP addresses are correct, use the show run, show ip ospf neighbor, and show ip route commands to help identify routing protocol-related problems. No AI shortcuts — Only authentic assignment help from real expert tutors.
Step 7: Save the basic running configuration for each router.
Save the basic running configuration for the routers as text files on your PC. These text files can be used to restore configurations later in the lab.