Performance Assessment - OSPF and OSPFv3

docx

School

ECPI University, Virginia Beach *

*We aren’t endorsed by this school

Course

202L

Subject

Computer Science

Date

Apr 3, 2024

Type

docx

Pages

17

Uploaded by HighnessBoar3918

Report
Performance Assessment – OSPF and OSPFv3 Task 1 – Setting up the network Your instructor has assigned you a unique network number.     Make sure to use this unique network   number throughout the Performance Assessment where indicated by an underscore. You will be using Variable Length Subnet Mask (VLSM) for this performance assessment and throughout the term. In Packet Tracer wire the following network Make sure you assign the Server VLAN 10 and the FTP and RADIUS servers VLAN 20 on Sw3. Program the Server to 10.___.1.195/28 with a default gateway of 10.__1.193
Program the FTP server to 10.___.1.210/28 with a default gateway of 10.__1.209 Program the RADIUS server to 10.___.1.215/28 with a default gateway of 10.__1.209 The network is programmed per the below information: System Port Connect To IP address Subnet Mask Clock Rate R1  G0/0/0 Internet 11.0.0.___ 255.255.255.0 Se0/1/0 R2 10.___.1.225 255.255.255.252 500000   SE0/1/1 R3 10.___.1.234 255.255.255.252 R2 G0/0/0.1 0 Sw1 10.___.1.1 255.255.255.128 100 users   G0/0/0.2 0 Sw1 10.___.1.129 255.255.255.224 25 users G0/0/0.3 0 Sw1 10.___.1.161 255.255.255.240 10 users G0/0/0.4 0 Sw1 10.___.1.177 255.255.255.240 10 users   Se0/1/0 R3 10.___.1.229 255.255.255.252 500000   Se0/1/1 R1 10.___.1.226 255.255.255.252 R3 G0/0/0.1 0 Sw3 10.___.1.193 255.255.255.240 10 servers G0/0/0.2 0 Sw3 10.___.1.209 255.255.255.240 10 servers   Se0/1/0 R1 10.___.1.233 255.255.255.252 500000   Se0/1/1 R2 10.___.1.230 255.255.255.252 Now you will be programming your Sw1, Sw2, and Sw3 with the VLANs for your network. Make sure you plug the PCs and Servers into the appropriate VLAN and the trunk ports are used to connect SW1 to Sw2 and Sw3 to your R3 router. Sw1(config)# interface range f0/1-11 Sw1(config-if-range)# switchport mode access Sw1(config-if-range)# switchport access vlan 10 Sw1(config-if-range)# exit
Sw1(config)# interface range f0/12-24 Sw1(config-if-range)# switchport mode access Sw1(config-if-range)# switchport access vlan 20 Sw1(config-if-range)# exit Sw1(config)# interface range g0/1-2 Sw1(config-if-range)# switchport mode trunk Sw1(config-if-range)# exit Sw1(config)# vlan 30 Sw1(config-vlan)#exit Sw1(config)# vlan 40 Sw2(config)# interface range f0/1-11 Sw2(config-if-range)# switchport mode access Sw2(config-if-range)# switchport access vlan 30 Sw2(config-if-range)# exit Sw2(config)# interface range f0/12-24 Sw2(config-if-range)# switchport mode access Sw2(config-if-range)# switchport access vlan 40 Sw2(config-if-range)# exit Sw2(config)# interface range g0/1-2 Sw2(config-if-range)# switchport mode trunk Sw3(config)# interface range f0/1-11 Sw3(config-if-range)# switchport mode access Sw3(config-if-range)# switchport access vlan 10 Sw3(config-if-range)# exit Sw3(config)# interface range f0/12-24 Sw3(config-if-range)# switchport mode access Sw3(config-if-range)# switchport access vlan 20 Sw3(config-if-range)# exit Sw3(config)# interface range g0/1-2 Sw3(config-if-range)# switchport mode trunk Sw3(config-if-range)# exit
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
  • Access to all documents
  • Unlimited textbook solutions
  • 24/7 expert homework help
Now you will set up OSPF routing using three separate areas as shown below Program your routers as follows: R1(config)# router ospf 1 R1(config-router)# network 10.___.1.224 0.0.0.3 area 0 R1(config-router)# network 10.___.1.232 0.0.0.3 area 0 R1(config-router)# network 11.0.0.0 0.0.0.255 area 0 R2(config)# router ospf 1 R2(config-router)#network 10.___.1.0 0.0.0.127 area 1 R2(config-router)#network 10.___.1.128 0.0.0.31 area 1 R2(config-router)#network 10.___.1.160 0.0.0.15 area 1 R2(config-router)#network 10.___.1.176 0.0.0.15 area 1 R2(config-router)#network 10.___.1.228 0.0.0.3 area 0 R2(config-router)#network 10.___.1.224 0.0.0.3 area 0 R3(config)# router ospf 1 R3(config-router)# network 10.___.1.192 0.0.0.15 area 2 R3(config-router)# network 10.___.1.208 0.0.0.15 area 2 R3(config-router)# network 10.___.1.232 0.0.0.3 area 0 R3(config-router)# network 10.___.1.228 0.0.0.3 area 0
We will now set up a DHCP service on your R2 router for your PCs. On your R2 router program the following: R2(config)# ip dhcp pool mypool R2(dhcp-config)# network 10.___.1.0 255.255.255.128 R2(dhcp-config)# default-router 10.___.1.1 R2(dhcp-config)# dns-server 10.___.1.195 R2(config)# ip dhcp pool mypool2 R2(dhcp-config)# network 10.___.1.128 255.255.255.224 R2(dhcp-config)# default-router 10.___.1.129 R2(dhcp-config)# dns-server 10.___.1.195 R2(config)# ip dhcp pool mypool3 R2(dhcp-config)# network 10.___.1.160 255.255.255.240 R2(dhcp-config)# default-router 10.___.1.161 R2(dhcp-config)# dns-server 10.___.1.195 R2(config)# ip dhcp pool mypool4 R2(dhcp-config)# network 10.___.1.176 255.255.255.240 R2(dhcp-config)# default-router 10.___.1.177 R2(dhcp-config)# dns-server 10.___.1.195 Pull new IP addresses to each of your PCs. Take a screenshot of each PC’s IP address. Verify that your pools are in your R2 router by typing show run. Take a screenshot of the pools from the top of your show run command. Verify that you can ping from your PC3 to your FTP server at 10.___.1.210. Take a screenshot Deliverables for Task 1 Screenshots of your IP address from each PC Screenshot of your DHCP pools from R2 Screenshot of a show ip route from each router showing connected, local and OSPF networks in routing tables Screenshot of a ping from PC3 to your FTP server at 10.___.1.210
Paste Task 1 Screenshots Here
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
  • Access to all documents
  • Unlimited textbook solutions
  • 24/7 expert homework help
Task 2 – Adding new VLANs onto an existing network Now you are going to add two VLANs to your network on the R1 router. These VLANs will be in the same 10.___.1.0/24 network and will use the rest of the network space left for the new networks. Split the remaining network space into 2 equal sized parts as per the table below and program them into a new switch originating in R1 and connected using the G0/0/1.10 and G0/0/1.20 ports. System Port Connect To IP address Subnet Mask Clock Rate R1 G0/0/1.1 0 Sw4 10.___.1.241 255.255.255.248 5 APs   G0/0/1.2 0 Sw4 10.___.1.249 255.255.255.248 5 APs Now you will be programming your Sw4 Sw4 (config)# int range fa 0/1-11 Sw4 (config-if-range)# switchport access vlan 10 Sw4 (config-if-range)#switchport trunk encapsulation dot1q Sw4 (config-if-range)# switchport mode access Sw4 (config)# int range fa 0/12-24 Sw4 (config-if-range)# switchport access vlan 20 Sw4 (config-if-range)#switchport trunk encapsulation dot1q Sw4 (config-if-range)# switchport mode access
Sw4 (config)# int range gig 0/1-2 Sw4 (config-if-range)# switchport trunk encapsulation dot1q Sw4 (config-if-range)# switchport mode trunk Add the OSPF networks to the R1 router R1(config)# router ospf 1 R1(config-router)# network 10.___.1.240 0.0.0.7 area 1 R1(config-router)# network 10.___.1.248 0.0.0.7 area 1 You will need to create a DHCP pool for the Visitor WiFi R1(config)# ip dhcp pool mypool R1(dhcp-config)# network 10.___.1.240 255.255.255.248 R1(dhcp-config)# default-router 10.___.1.241 R1(dhcp-config)# dns-server 10.___.1.210 The Visitor WiFi will have no security- devices will connect to it automatically with no security configured. Keep in mind you will need to remove the wired NIC and replace with a wireless NIC for the laptop to connect to the Visitor WiFi wireless router. Set up the Employee WiFi wireless router with a static IP address . Double click on the wireless router and go to the GUI tab at the top of the screen and then under Internet Setup you will statically assign the IPs below. Make sure to click the Save Settings button at the bottom to save.
Open your RADIUS Server and go to the Services tab at the top. Select the AAA service. Turn it on Program your Radius server with the following information:
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
  • Access to all documents
  • Unlimited textbook solutions
  • 24/7 expert homework help
On your Employee WiFi wireless router under basic wireless settings change your SSID to Employee Change your wireless security (click on Wireless Security) to WPA2 Enterprise with a RADIUS server address of 10.___.1.215 and a shared secret of password . Click the save settings button at the bottom of the page. You will need to change the SSID and WPA2 settings accordingly on the tablet to connect to the Employee SSID.
Your Tablet should now sync up to the RADIUS server and connect through to the network. Ping from your tablet to PC4 in the network. Take a screenshot. Verify that the smartphone on your network can access your network by pinging from your smartphone to your server at 10.___.1.195. Take a screenshot. Set up an ACL so your Visitor Wifi cannot get to your internal network: R1(config)# access-list 101 deny ip any 10.___.1.0 0.0.0.255 R1(config)# access-list 101 permit ip any any R1(config)# interface Gigabit 0/0/1.10 R1(config-if)# ip access-group 101 in Verify that your visitors can no longer get to your network by attempting to ping from your smartphone to the server at 10.___.1.195. Take a screenshot. Deliverables for Task 2 Screenshot of your working network with the two WiFi networks Screenshot of successful ping from your tablet to PC4 Screenshot of successful ping from smartphone to server Screenshot of failed ping from smartphone to server Paste Task 2 Screenshots Here
Task 3 – Switch to IPv6 and OSPFv3 We will now switch your network from IPv4 to IPv6 set up with SLAAC configuration. System Port Connect To IPv6 address R1 G0/0/1.1 0 Sw4 2001:DB8:___:1::1/64   G0/0/1.2 Sw4 2001:DB8:___:2::1/64
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
  • Access to all documents
  • Unlimited textbook solutions
  • 24/7 expert homework help
0   G0/0/0 Internet 2001:DB8:11:1::1/64   Se0/1/0 R2 FD00:0:___:9::1/64   Se0/1/1 R3 FD00:0:___:11::2/64 R2 G0/0/0.1 0 Sw1 2001:DB8:___:3::1/64   G0/0/0.2 0 Sw1 2001:DB8:___:4::1/64   G0/0/0.3 0 Sw1 2001:DB8:___:5::1/64   G0/0/0.4 0 Sw1 2001:DB8:___:6::1/64   Se0/1/0 R3 FD00:0:___:10::1/64   Se0/1/1 R1 FD00:0:___:9::2/64 R3 G0/0/0.1 0 Sw3 2001:DB8:___:7::1/64   G0/0/0.2 0 Sw3 2001:DB8:___:8::1/64   Se0/1/0 R1 FD00:0:___:11::1/64   Se0/1/1 R2 FD00:0:___:10::2/64 1. On Router R1, enable the global routing of IPv6 on by entering IPv6 unicast-routing. R1(config)# ipv6 unicast-routing R1(config)# ipv6 router ospf 1 R1(config-rtr)# router-id ____.____.____.____ Add 1 for R2 and 1 for R3 2. Configure the Gigabit 0/0/1 interface to (a) enable IPv6, (b) assign the IPv6 address assigned in the addressing table above, and (c) activate the interface: R1(config)# interface Gigabit 0/0/1.10 R1(config-if)# ipv6 enable R1(config-if)# ipv6 address 2001:db8:___:1::1/64 R1(config-if)# ipv6 ospf 1 area 1 R1(config-if)# no shutdown R1(config)# interface Gigabit 0/0/1.20 R1(config-if)# ipv6 enable R1(config-if)# ipv6 address 2001:db8:___:2::1/64 R1(config-if)# ipv6 ospf 1 area 1 R1(config-if)# no shutdown 3. Configure the Serial 0/0/0 interface to (a) enable IPv6, (b) assign the IPv6 address assigned in the addressing table above, and (c) activate the interface (Note: R1 has the DCE end of the serial
cable so needs to set the clock rate for the serial line; this will not need to be done on router R2): R1(config)# interface Serial 0/1/0 R1(config-if)# ipv6 enable R1(config-if)# ipv6 address FD00:0:___:9::1/64 R1(config-if)# ipv6 ospf 1 area 0 R1(config-if)# clock rate 500000 R1(config-if)# no shutdown R1(config)# interface Serial 0/1/1 R1(config-if)# ipv6 enable R1(config-if)# ipv6 address FD00:0:___:11::2/64 R1(config-if)# ipv6 ospf 1 area 0 R1(config-if)# no shutdown 4. Repeat steps Error: Reference source not found through 3 on routers R2 and R3 being sure to use the IPv6 addresses listed in the addressing table above. 5. From the R1 router pull a show ipv6 route. Take a screenshot. 6. Open PC1 in Packet Tracer 7. On the Config tab, click on Settings and then set the IPv6 gateway to be auto-configured: 8. Check the FastEthernet setting for PC1. You should see that the FastEthernet port is set to Auto Config for IPv6 and the listed IPv6 address has the network prefix specified on the network by the connected router. Figure 1: PC1 IPv6 Gateway setting
9. Repeat steps 7 thru 8. for PC2 thru PC4. 10. On both PC1 and PC2, click on the Desktop tab and open the Command prompt. Determine the IPv6 address for the PC by using the ipv6config command. PC>ipv6config IPv6 Address .................... : 2001:DB8:0:1:210:11FF:FE8C:2912/64 Default Gateway ................. : FE80::230:F2FF:FEAD:BC01 PC> 11. Record the IPv6 address for both PC1 and PC2 below: PC1 IPv6 address: PC2 IPv6 address: 12. From PC1, attempt to ping the IPv6 address for PC4 (do not include the /64 shown in the output of ipv6config). Take a screenshot. 13. Pull IPv6 addresses to each of your servers. 14. Record the IPv6 address for the Server below:
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
  • Access to all documents
  • Unlimited textbook solutions
  • 24/7 expert homework help
Server IPv6 address: 15. Ping from PC1 to your server using the IPv6 address from your server. Take a screenshot. Deliverables for Task 3 Screenshot of show ipv6 route from the R1 router PC1 and PC2 IPV6 addresses recorded Screenshot of ping from PC1 to PC4 using IPv6 addresses Server IPv6 address recorded Screenshot of ping from PC1 to Server using IPv6 addresses Paste Task 3 Screenshots Here