Lab4 301305606

docx

School

Centennial College *

*We aren’t endorsed by this school

Course

328

Subject

Computer Science

Date

Feb 20, 2024

Type

docx

Pages

9

Uploaded by MagistrateCobraMaster863

Report
Name: Devangi Umretiya Student ID: 301305606 Section: 004 Lab: 004 You have been asked to troubleshoot the network configuration at Z-corp. In order to minimize disruption of the company network you have decided to copy the device configurations and recreate the network in a sandbox environment. Unfortunately, your sandbox equipment does not match the network equipment exactly forcing you to make some small configuration changes before pasting in the configuration files. Please check the Gi interface slot numbers on the switches and make any necessary adjustments to the configuration files before pasting them into the devices. The router configuration files supplied are designed to work on the 1841 first generation ISR. Your sanbox environment contains both 1841 and 1941 series routers. If you are using the second generation ISR (1941) you will have to change the reference from Fa to Gi for all Ethernet interfaces. Lab: Cable the following network as illustrated. Once cabled, load the initial configurations provided. Remember to add a no shutdown to any interfaces you wish to activate. Test connectivity from SW1 to the ISP loopback interface (100.100.100.100). Troubleshoot as required. Verify that all requirements specified above are met.
Name: Devangi Umretiya Student ID: 301305606 Section: 004 Lab: 004 IP Address Table (With Troubleshooting) Device Interface IP address Subnet Mask Switch 1 interface Vlan99 10.10.10.130 255.255.255.128 Switch 2 interface Vlan99 10.10.10.131 255.255.255.128 ISP Loopback 100 100.100.100.100 255.255.255.255 Serial0/0/0 172.16.1.1 255.255.255.252 R1 GigabitEthernet0/0/0 10.10.10.6 255.255.255.252 GigabitEthernet0/0/1.10 10.10.1.254 255.255.255.0 GigabitEthernet0/0/1.20 10.10.2.254 255.255.255.0 GigabitEthernet0/0/1.30 10.10.3.254 255.255.255.0 GigabitEthernet0/0/1.99 10.10.10.129 255.255.255.0 R2 Serial0/0/1 10.10.10.2 255.255.255.252 GigabitEthernet0/0.10 10.10.1.1 255.255.255.0 GigabitEthernet0/0.20 10.10.2.1 255.255.255.0 GigabitEthernet0/0.30 10.10.3.1 255.255.255.0 GigabitEthernet0/0.99 10.10.10.254 255.255.255.0 Border GigabitEthernet0/0 10.10.10.5 255.255.255.252 Serial0/0/0 172.16.1.2 255.255.255.252 Serial0/0/1 10.10.10.1 255.255.255.252
Name: Devangi Umretiya Student ID: 301305606 Section: 004 Lab: 004 Screenshots: 1. Create VLAN 10, 20, 30 in both switches and capture show VLAN brief
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
Name: Devangi Umretiya Student ID: 301305606 Section: 004 Lab: 004 2. Create trunk link between them
Name: Devangi Umretiya Student ID: 301305606 Section: 004 Lab: 004 3. Configure EIGRP using R1, R2 and Border only 4. Setp NAT in Border to translate all internal IPs to 192.168.1.129/25 ( capture show ip NAT traslation) 5. Configure a default static route in Border and propagate it internally to R1 and R2
Name: Devangi Umretiya Student ID: 301305606 Section: 004 Lab: 004 6. Configure a static route in ISP for return traffics (VLAN 10, 20, 30) 7. Configure HSRP between R1 and R2 for traffic load balancing with R1 having higher priority and preemption (capture show HSRP detail)
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
Name: Devangi Umretiya Student ID: 301305606 Section: 004 Lab: 004 8. Create ACLs in Border to deny Telnet and web traffic (http/https) for outbound traffics (capture show ACL-list) 9. Setup http+telnet on ISP and ping from switches (capture results of http and telnet)
Name: Devangi Umretiya Student ID: 301305606 Section: 004 Lab: 004 Troubleshooting Steps 1. No VLANs are created on SW1 and SW2 To identify the problem : show interfaces vlan brief To solve the problem: (config)#vlan 10 (config-vlan) # name VLAN10 (config)#vlan 20 (config-vlan) #name VLAN20 (config)#vlan 30 (config-vlan )#name VLAN30 (config)#vlan 99 (config-vlan) #name VLAN99 2. Native VLANs are not same in both the switch. SW1 have VLAN 99 as a Native VLAN. Whereas, SW2 have VLAN1 (Default VLAN) as a Native VLAN. To identify the problem: show interfaces trunk To solve the problem: (config)#int range g0/1-2 (config-if) #switchport mode trunk (config-if) #switchport trunk native vlan 99 3. The IP of g0/0/0 on R1 was in a different subnet. To identify the problem: show ip interfaces brief To solve the problem: (config)#interface GigabitEthernet0/0/0 (config-if) #no ip address 10.10.10.2 255.255.255.252 (config-if) #ip address 10.10.10.6 255.255.255.252 (config-if) #no shut
Name: Devangi Umretiya Student ID: 301305606 Section: 004 Lab: 004 4. The IP of S0/0/1 on R2 as in a different subnet. To identify the problem: show ip interfaces brief To solve the problem: (config)#interface se0/0/1 (config-if) #no ip address 10.10.10.6 255.255.255.252 (config-if) #ip address 10.10.10.2 255.255.255.252 (config-if) #no shut 5. Border to ISP routes were incorrectly configured. And ISP to Border routes were incorrectly configured. To identify the problem : show ip route To solve the problem: Border(config)# no ip route 0.0.0.0 0.0.0.0 172.16.1.2 Border(config)# ip route 0.0.0.0 0.0.0.0 172.16.1.1 ISP(config)# no ip route 192.168.1.128 255.255.255.128 172.16.1.1 ISP(config)# ip route 192.168.1.128 255.255.255.128 172.16.1.2 6. Border router NAT configuration were wrong. Interface S0/0/1 was configured as a NAT outside. To identify the problem : show run To solve the problem: Border(config)# interface Serial0/0/1 Border(config)# no ip nat outside Border(config)# ip nat inside Additional Configuration 1. Change the access control lists according to the requirements of the lab on Border Router. access-list 100 deny tcp any any eq telnet access-list 100 deny tcp any any eq www access-list 100 permit ip any any
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