CNET Assignment 230551610
CNET Assignment 230551610
ASSIGNMENT
BUILD A SMALL NETWORK
Lecturer: : M. Majova
1
BUILD A SMALL NETWORK
Topology
Addressing Table
R1 G0/0/0
2001:db8:acad::1/64
N/A
G0/0/0
fe80::1
R1 G0/0/1 192.168.21.5 /30 N/A
N/A
R1 G0/0/1
2001:db8:acad:21::1/64
N/A
R1 G0/0/1
fe80::1
192.168.1.1 /24 N/A
G0/0/0 2001:db8:acad:1::1/64
fe80::1
R2
192.168.21.6/30 N/A
G0/0/1 2001:db8:acad:21::2/64
fe80::1
S1 VLAN 1 192.168.0.2/24 192.168.0.1
S2 VLAN 1 192.168.1.2/24 192.168.1.1
PC-A NIC 192.168.0.3 /24 192.168.0.1
PC-A NIC
2001:db8:acad:1::3/64 fe80::1
PC-B NIC 192.168.1.3 /24 192.168.1.1
PC-B NIC
2001:db8:acad::3/64 fe80::1
2
Objectives
Set Up the Topology.
Configure Devices and Verify Connectivity
f. Disable DNS lookup to prevent the router from attempting to translate incorrectly entered
commands as though they were host names.
R1(config)# no IP domain-lookup
g. Assign class as the privileged EXEC encrypted password.
R1(config)# enable secret class
h. Assign cisco as the console password and enable login.
R1(config)# line console 0
R1(config-line)# password cisco
R1(config-line)# login
3
j. Create a banner that warns anyone accessing the device that unauthorized access is
prohibited.
R1(config)# service password-encryption
R1(config)# banner motd #Unauthorized access is prohibited#
k. Configure an interface description for each interface, indicating which device is connected to
it.
R1(config)# int G0/0/0
R1(config)# int G0/0/1
R1(config-if)# description link to S1 and PC-A
R1(config-if)# description link to R1
l. Configure the router interfaces with IP address information according to the IP addressing
table and activate all the interfaces.
R1(config-if)# IP address 192.168.0.1 255.255.255.255.0
R1(config-if)# IP address 192.168.21.5 255.255.255.252
R1(config-if)# IPv6 address 2001:db8:acad::1/64
R1(config-if)# IPv6 address 2001:db8:acad:21::1/64
R1(config-if)# IPv6 address fe80::1 link-local
R1(config-if)# IPv6 address fe80::1 link-local
R1(config-if)# no shutdown
R1(config-if)# exit
4
R1(config)# exit