File 3341
File 3341
3.
a. On S1-Office1:
int gi0/2
switchport mode trunk
switchport trunk native vlan 100
exit
do sho vlan brief
do sho int trunk
b. On S2-Office1:
int gi0/1
switchport mode trunk
switchport trunk native vlan 100
exit
do sho vlan brief
do sho int trunk
3. For the R1 / R2 WAN link, addresses from subnet 3 were used. Address 172.16.10.65
was assigned on the R1 side, and address 172.16.10.66 was assigned on the R2 side.
On R1:
en
conf t
int se0/0/1
ip addr 172.16.10.65 255.255.255.224
desc To R2
no shut
ex
On R2:
en
conf t
int se0/0/1
ip addr 172.16.10.66 255.255.255.224
desc To R1
no shut
ex
4. For the R1 / R3 WAN link, addresses from subnet 4 were used. Address 172.16.10.97
was assigned on the R1 side, and address 172.16.10.98 was assigned on the R3 side.
On R1:
int se0/0/0
ip addr 172.16.10.97 255.255.255.224
desc To R3
no shut
ex
do wr
On R3:
int se0/0/0
ip addr 172.16.10.98 255.255.255.224
desc To R1
no shut
ex
5. For the R2 / R3 WAN link, addresses from subnet 5 were used. Address 172.16.10.129
was assigned on the R2 side, and address 172.16.10.130 was assigned on the R3 side.
On R2:
int se0/0/0
ip addr 172.16.10.129 255.255.255.224
desc To R3
no shut
ex
do wr
On R3:
int se0/0/1
ip addr 172.16.10.130 255.255.255.224
desc To R2
no shut
ex
do wr
6. The last usable addresses on subnet 6 were assigned to end devices on VLAN 10 on the
Office 1 LAN. The first usable address in subnet 6, 172.16.10.161, was set as the default
gateway.
a. CEO1: 172.16.10.189
b. CEO2: 172.16.10.190
7. The last usable addresses on subnet 7 were assigned to end devices on VLAN 20 on the
Office 1 LAN. The first usable address in subnet 7, 172.16.10.193, was set as the default
gateway.
a. Copywriter1: 172.16.10.221
b. Copywriter2: 172.16.10.222
8. The last usable addresses on subnet 8 were assigned to end devices on VLAN 30 on the
Office 1 LAN. The first usable address in subnet 8, 172.16.10.225, was set as the default
gateway.
a. Dialer1: 172.16.10.253
b. Dialer2: 172.16.10.254
5. do sho run
6. On S1-Office1:
en
conf t
int gi0/1
switchport mode trunk
switchport trunk native vlan 100
no shut
ex
7. On S1-Office1: do sho int trunk
8. I was able to successfully ping Copywriter1 and Dialer1 from the CEO1 PC.
Lab Task 5: Secure Switch Physical Ports
(Listed commands were executed on both S1-Office1 and S2-Office1, unless otherwise stated)
1. en
conf t
int range fa0/1-24
switchport port-security
switchport port-security violation restrict
3. do sho port-sec
4. On S1-Office1:
int range fa0/2-10
shut
ex
int range fa0/12-20
shut
ex
int range fa0/22-24
shut
ex
do wr
On S2-Office1:
int range fa0/2-10
shut
ex
int range fa0/12-20
shut
ex
int range fa0/22-24
shut
ex
int gi0/2
shut
ex
do wr
Lab Task 6: Configure OSPF
(Listed commands were executed on R1, R2, and R3, unless otherwise stated)
1. en
conf t
int se0/0/0
no shut
ex
int se0/0/1
no shut
ex
2. On R3 only:
int range gi0/0-1
no shut
ex
3. router ospf 1
auto-cost reference-bandwidth 1000
On R1:
router-id 1.1.1.1
network 172.16.10.64 0.0.0.31 area 0
network 172.16.10.96 0.0.0.31 area 0
network 172.16.10.160 0.0.0.31 area 0
network 172.16.10.192 0.0.0.31 area 0
network 172.16.10.224 0.0.0.31 area 0
On R2:
router-id 2.2.2.2
network 172.16.10.64 0.0.0.31 area 0
network 172.16.10.128 0.0.0.31 area 0
On R3:
router-id 3.3.3.3
network 172.16.10.96 0.0.0.31 area 0
network 172.16.10.128 0.0.0.31 area 0
network 172.16.10.32 0.0.0.31 area 0
network 172.16.10.0 0.0.0.31 area 0
4. On R1:
passive-int gi0/0
passive-int gi0/0.10
passive-int gi0/0.20
passive-int gi0/0.30
On R3:
passive-int gi0/0
passive-int gi0/1
5. ex
ex
sho ip route ospf
sho ip ospf neighbor
sho ip protocols
wr
Lab Task 7: Initial and Security Settings for Network Devices
(Listed commands were executed on all routers and switches)
1. en
conf t
username Admin password ACDC1973
2. line console 0
login local
exit
4. service password-encryption
3. ip ssh version 2
4. line vty 0 4
login local
motd-banner
transport input ssh
exit
5. ex
sho ip ssh
sho run
wr
6. Using the command ssh -l Admin IP-Address, I was able to successfully SSH into
the routers.
Lab Task 9: Full Connectivity Test
7. The configuration of IP addresses, subnet masks, default gateways, and wildcard masks
were verified to be correct on all devices.
8. From the Admin PC, I was able to successfully ping CEO1 and Employee1.
9. From the Employee2 PC, I was able to successfully ping Copywriter1 and Dialer1.
Lab Task 10: Extended ACL
(The below commands were executed on R3.)
1. en
conf t
access-list 100 deny ip host 172.16.10.62 host 172.16.10.29
access-list 100 permit ip any any
int gi0/1
ip access-group 100 in
ex
2. ex
sho access-lists
sho run
wr
3. From the Guest PC, I was able to ping the email server but was not able to ping the NTP
server.