SlideShare uma empresa Scribd logo
1 de 6
Baixar para ler offline
ERouting EIGRP PT Practice SBA
ERouting EIGRP PT Practice SBA
    A few things to keep in mind while completing this activity:
    1. Do not use the browser Back button or close or reload any Exam windows during the exam.
    2. Do not close Packet Tracer when you are done. It will close automatically.
    3. Click the Submit Assessment button to submit your work.

Introduction
In this Packet Tracer Practice Skills-based Assessment, you will:
    •   complete the configuration of a partially configured network
    •   establish connectivity to the West Region and the Internet through the use of static and dynamic routing
    •   verify connectivity

Addressing Table

              Device           Interface     Address                Subnet Mask         Default Gateway

                               S0/0/0 up      192.168.1.249/30      255.255.255.252     N/A
                               S0/0/1 do      192.168.1.253/30      255.255.255.252     N/A
              EastHQ
                               S0/1/0 up      209.165.201.6/30      255.255.255.252     Internet
                               S0/1/1 up      192.0.2.2/30          255.255.255.252     192.0.2.1
                               Fa0/0         192.168.0.1 /25        255.255.255.128     N/A
                               Fa0/1         192.168.0.129 /25      255.255.255.128     N/A
              E-Branch1
                               S0/0/0        192.168.1.250 /30      255.255.255.252     N/A
                               S0/0/1        192.168.1.245 /30      255.255.255.252     N/A
                               Fa0/0         192.168.1.1 /26        255.255.255.192     N/A
                               Fa0/1         192.168.1.65 /26       255.255.255.192     N/A
              E-Branch2
                               S0/0/0        192.168.1.254 /30      255.255.255.252     N/A
                               S0/0/1        192.168.1.246/30       255.255.255.252     N/A
              EPC1             NIC           192.168.0.2 /28        255.255.255.128     192.168.0.1
              EPC2             NIC            192.168.0.254         255.255.255.252     192.168.0.1
              EPC3             NIC           192.168.1.2 /26        255.255.255.192     192.168.1.1
              EPC4             NIC            192.168.1.126         255.255.255.192     192.168.1.1
              NetAdmin         NIC           192.168.1.66 /26       255.255.255.192     192.168.1.65

    Note: The password for user EXEC mode is cisco. The password for privileged EXEC mode is class.
Step 1: Configure the Device Basics.
    Note: Initially, you can only access router E-Branch2 through the console connection on NetAdmin.
a. Configure the following on E-Branch2:
•   The router name is EB2.


Router(config)# hostname EB2


•   The privileged EXEC mode uses the following encrypted password: class.
EB2(config)#enable secret class


•   Enable Telnet and console line logins and use the following password: cisco.


EB2(config)#line vty 0 4
EB2(config)#password class
EB2(config)#login
EB2(config)#exit


•   Configure the banner message-of-the-day as Authorized access only!


EB2(config)#banner motd %Authorized access only!%


b. Using the Addressing Table, configure and activate all the necessary interfaces on E-Branch2.
c. Configure correct host IP addressing.
EB2#show ip interface brief
EB2#show ip route


•   Configure EPC2 with the last IP address in the subnet.


192.168.0.254 255.255.255.128
Default gateway 192.168.0.1


•   Configure EPC4 with the last IP address in the subnet.
192.168.1.126 255.255.255.192
Default gateway 192.168.1.1




Step 2: Discover the Network.
a. Explore the network to determine the IP address of the serial interface that EastHQ uses to connect to E-Branch2.
b. Remotely access EastHQ.


EB2# show interfaces
EB2# show cdp neighbors
EB2# show ip route
EB2# telnet 192.168.1.253




EastHQ(config)#interface serial0/0/0
EastHQ (config-if)#ip address 192.168.1.249 255.255.255.252
EastHQ (config-if)#no shutdown
EastHQ (config-if)#exit


EastHQ (config)#interface serial0/0/1
EASTHQ(config-if)#ip address 192.168.1.253 255.255.255.252
EASTHQ(config-if)#no shutdown
EASTHQ(config-if)#exit


EASTHQ(config)#interface serial0/1/0
EASTHQ(config-if)#ip address 209.165.201.6 255.255.255.252
EASTHQ(config-if)#no shutdown
EASTHQ(config-if)#exit


EASTHQ(config)#interface serial0/1/1
EASTHQ(config-if)#ip address 192.0.2.2 255.255.255.252
EASTHQ(config-if)#no shutdown
EASTHQ(config-if)#exit


Step 3: Configure Static and Default Routing.
a. Configure connectivity to the West Region.
•   Configure a static route on EastHQ to the entire West Region. The West Region uses the 172.16.100.0/24 address
    space. Use the next-hop address argument.
EastHQ#show ip route
EastHQ(config)#route ip 172.16.100.0 255.255.255.0 192.0.2.1


•   Configure a default route on EastHQ to send to the Internet all other traffic for destinations that are not found in the
    EastHQ routing table. Use the exit interface argument.
EastHQ(config)#route ip 0.0.0.0 0.0.0.0 serial0/1/0


b. Verify static and default routing.
EastHQ#show ip route
EastHQ#ping


Step 4: Configure EIGRP Routing.
    Configure EIGRP on EastHQ, E-Branch1, and E-Branch2.
    a.   Use AS number 100.
    b.   b.Do not advertise the network between EastHQ and the Internet.
    c.   Do not advertise the network between EastHQ and the West Region.
    d.   Advertise all other attached networks.
    e.   Disable automatic summarization.
    f.   Disable EIGRP updates out interfaces where there are no EIGRP neighbors available.
    g.   On EastHQ, enter the one command in the EIGRP routing process that will propagate the default and static
         routes to E-Branch1 and E-Branch2.
EastHQ(config)#router eigrp 100
      EastHQ(config-router)#network 192.168.1.248 0.0.0.3
      EastHQ(config-router)#network 192.168.1.244 0.0.0.3

      EastHQ(config-router)#no auto-summary
      EastHQ(config-router)#ip default-network

      EastHQ(config)#interface serial0/1/0
      EastHQ(config-if)#no eigrp 100

      EastHQ(config)#interface serial0/1/1
      EastHQ(config-if)#no eigrp 100


      -----------------------------------------
      EB1(config)#router eigrp 100
      EB1(config-router)#network 192.168.1.0 0.0.0.3
      EB1(config-router)#network 192.168.1.0 0.0.0.127`
      EB1(config-router)#passive-interface fa0/0
      EB1(config-router)#passive-interface fa0/1

      EB1(config-router)#CTRL+Z
      ------------------------------------------
      EB2(config)#router eigrp 100
      EB2(config-router)#network 192.168.1.0 0.0.0.3
      EB2(config-router)#network 192.168.1.0 0.0.0.63
      EB2(config-router)#passive-interface fa0/0
      EB2(config-router)#passive-interface fa0/1

      EB2(config-router)#CTRL+Z



Step 5: Modify the default EIGRP operation.
   a. Configure the link between EastHQ and E-Branch2 so that the correct bandwidth of 384 k/s is used in EIGRP
      calculations.
   b. Configure E-Branch1 to advertise a summary route for the subnets 192.168.0.0/25 and 192.168.0.128/25 to
      EastHQ and E-Branch2.
   c. Configure E-Branch2 to advertise a summary route for the subnets 192.168.1.0/26 and 192.168.1.64/26 to
      EastHQ and E-Branch1.


      EastHQ(config)#interface s0/0/1
      EastHQ(config-if)#bandwidth 384
      EastHQ(config-if)#ip bandwidth-percent eigrp 100 100

      EB2(config)#interface s0/0/0
      EB2(config-if)#bandwidth 384
      EB2(config-if)#ip bandwidth-percent eigrp 100 100


      EB1(config)#router eigrp 100
      EB1(router-config)#network 192.168.0.0 0.0.0.3
      EB1(router-config)#end

      EB2(config)#router eigrp 100
      EB2(router-config)#network 192.168.1.0 0.0.0.63
      EB2(router-config)#end
Step 6: Verify Full Connectivity.
     Although these are not scored, the following connectivity tests should be successful.
•     Test connectivity to the West Region.
•     Test connectivity to the Internet.



Version 1.0
Created in Packet Tracer 5.3.1.0044 and Marvel 1.0.1
All contents are Copyright © 1992 - 2011 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information.

Mais conteúdo relacionado

Mais procurados

How to configure Default Routing
How to configure Default RoutingHow to configure Default Routing
How to configure Default Routingtcpipguru
 
Lab practice 1 configuring basic routing and switching (with answer)
Lab practice 1   configuring basic routing and switching (with answer) Lab practice 1   configuring basic routing and switching (with answer)
Lab practice 1 configuring basic routing and switching (with answer) Arz Sy
 
Day 5.3 configuration of router
Day 5.3 configuration of routerDay 5.3 configuration of router
Day 5.3 configuration of routerCYBERINTELLIGENTS
 
Router configuration in packet tracer
Router configuration in packet  tracerRouter configuration in packet  tracer
Router configuration in packet tracerAnabia Anabia
 
Ccna PPT2
Ccna PPT2Ccna PPT2
Ccna PPT2AIRTEL
 
PBR-LB - Direct Server Return Load Balancing using Policy Based Routing (MEMO)
PBR-LB - Direct Server Return Load Balancing using Policy Based Routing (MEMO)PBR-LB - Direct Server Return Load Balancing using Policy Based Routing (MEMO)
PBR-LB - Direct Server Return Load Balancing using Policy Based Routing (MEMO)Naoto MATSUMOTO
 
Eigrp on a cisco asa firewall configuration
Eigrp on a cisco asa firewall configurationEigrp on a cisco asa firewall configuration
Eigrp on a cisco asa firewall configuration3Anetwork com
 
Router configuration in packet tracer
Router configuration in packet  tracerRouter configuration in packet  tracer
Router configuration in packet tracerAnabia Anabia
 
Gpon omci v2__voice_configuration_introduction_omciv2_v2_pt_telkom
Gpon omci v2__voice_configuration_introduction_omciv2_v2_pt_telkomGpon omci v2__voice_configuration_introduction_omciv2_v2_pt_telkom
Gpon omci v2__voice_configuration_introduction_omciv2_v2_pt_telkomWahyu Nasution
 
CCNA - Routing & Switching Commands
CCNA - Routing & Switching CommandsCCNA - Routing & Switching Commands
CCNA - Routing & Switching CommandsEng. Emad Al-Atoum
 
8 subredesssss
8 subredesssss8 subredesssss
8 subredessssssovon123
 
Practice exam #2
Practice exam #2Practice exam #2
Practice exam #2Kris Mofu
 
Initial Configuration of Router
Initial Configuration of RouterInitial Configuration of Router
Initial Configuration of RouterKishore Kumar
 

Mais procurados (17)

How to configure Default Routing
How to configure Default RoutingHow to configure Default Routing
How to configure Default Routing
 
OSPF 3
OSPF 3OSPF 3
OSPF 3
 
Lab practice 1 configuring basic routing and switching (with answer)
Lab practice 1   configuring basic routing and switching (with answer) Lab practice 1   configuring basic routing and switching (with answer)
Lab practice 1 configuring basic routing and switching (with answer)
 
Day 5.3 configuration of router
Day 5.3 configuration of routerDay 5.3 configuration of router
Day 5.3 configuration of router
 
Router configuration in packet tracer
Router configuration in packet  tracerRouter configuration in packet  tracer
Router configuration in packet tracer
 
Networking Lab Report
Networking Lab ReportNetworking Lab Report
Networking Lab Report
 
How to make a simple application on packet tracer
How to make a simple application on packet tracerHow to make a simple application on packet tracer
How to make a simple application on packet tracer
 
Ccna PPT2
Ccna PPT2Ccna PPT2
Ccna PPT2
 
PBR-LB - Direct Server Return Load Balancing using Policy Based Routing (MEMO)
PBR-LB - Direct Server Return Load Balancing using Policy Based Routing (MEMO)PBR-LB - Direct Server Return Load Balancing using Policy Based Routing (MEMO)
PBR-LB - Direct Server Return Load Balancing using Policy Based Routing (MEMO)
 
Eigrp on a cisco asa firewall configuration
Eigrp on a cisco asa firewall configurationEigrp on a cisco asa firewall configuration
Eigrp on a cisco asa firewall configuration
 
Router configuration in packet tracer
Router configuration in packet  tracerRouter configuration in packet  tracer
Router configuration in packet tracer
 
Gpon omci v2__voice_configuration_introduction_omciv2_v2_pt_telkom
Gpon omci v2__voice_configuration_introduction_omciv2_v2_pt_telkomGpon omci v2__voice_configuration_introduction_omciv2_v2_pt_telkom
Gpon omci v2__voice_configuration_introduction_omciv2_v2_pt_telkom
 
Networking
NetworkingNetworking
Networking
 
CCNA - Routing & Switching Commands
CCNA - Routing & Switching CommandsCCNA - Routing & Switching Commands
CCNA - Routing & Switching Commands
 
8 subredesssss
8 subredesssss8 subredesssss
8 subredesssss
 
Practice exam #2
Practice exam #2Practice exam #2
Practice exam #2
 
Initial Configuration of Router
Initial Configuration of RouterInitial Configuration of Router
Initial Configuration of Router
 

Semelhante a Configure EIGRP Routing and Verify Connectivity

E routing eigrp pt practice sba
E routing eigrp pt practice sbaE routing eigrp pt practice sba
E routing eigrp pt practice sbaanoi_malinao
 
ENCOR SA Scenario Especifica o algoritmo de hashing de senha a ser usado, nes...
ENCOR SA Scenario Especifica o algoritmo de hashing de senha a ser usado, nes...ENCOR SA Scenario Especifica o algoritmo de hashing de senha a ser usado, nes...
ENCOR SA Scenario Especifica o algoritmo de hashing de senha a ser usado, nes...SilvioDias29
 
2.6.6 Packet Tracer - Verify Single-Area OSPFv2 - ILM.docx
2.6.6 Packet Tracer - Verify Single-Area OSPFv2 - ILM.docx2.6.6 Packet Tracer - Verify Single-Area OSPFv2 - ILM.docx
2.6.6 Packet Tracer - Verify Single-Area OSPFv2 - ILM.docxJosimar Caitano
 
Lab 9 instructions
Lab 9 instructionsLab 9 instructions
Lab 9 instructionstrayyoo
 
Labpractice1 configuringbasicroutingandswitchingwithanswer-121214084802-phpapp02
Labpractice1 configuringbasicroutingandswitchingwithanswer-121214084802-phpapp02Labpractice1 configuringbasicroutingandswitchingwithanswer-121214084802-phpapp02
Labpractice1 configuringbasicroutingandswitchingwithanswer-121214084802-phpapp02Abhilash Kuniyil
 
Detailed explanation of Basic router configuration
Detailed explanation of Basic router configurationDetailed explanation of Basic router configuration
Detailed explanation of Basic router configurationsamreenghauri786
 
Networking Tutorial Goes to Basic PPP Configuration
Networking Tutorial Goes to Basic PPP ConfigurationNetworking Tutorial Goes to Basic PPP Configuration
Networking Tutorial Goes to Basic PPP Configuration3Anetwork com
 
119163798 icnd1-practice-questions-9tut
119163798 icnd1-practice-questions-9tut119163798 icnd1-practice-questions-9tut
119163798 icnd1-practice-questions-9tutnicolelemmimg
 
En erouting ilm_v4050 - para correção
En erouting ilm_v4050 - para correçãoEn erouting ilm_v4050 - para correção
En erouting ilm_v4050 - para correçãoi10network
 
All contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docx
All contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docxAll contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docx
All contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docxgalerussel59292
 
Lab- Full IPsec Implementation.pdf
Lab- Full IPsec Implementation.pdfLab- Full IPsec Implementation.pdf
Lab- Full IPsec Implementation.pdfNesibusami
 
En erouting slm_v4050
En erouting slm_v4050En erouting slm_v4050
En erouting slm_v4050i10network
 
En erouting slm_v4050
En erouting slm_v4050En erouting slm_v4050
En erouting slm_v4050i10network
 
BÀI TẬP 01.docx
BÀI TẬP 01.docxBÀI TẬP 01.docx
BÀI TẬP 01.docxssuseraf0e77
 
BÀI TẬP 01.docx
BÀI TẬP 01.docxBÀI TẬP 01.docx
BÀI TẬP 01.docxssuseraf0e77
 

Semelhante a Configure EIGRP Routing and Verify Connectivity (20)

E routing eigrp pt practice sba
E routing eigrp pt practice sbaE routing eigrp pt practice sba
E routing eigrp pt practice sba
 
ENCOR SA Scenario Especifica o algoritmo de hashing de senha a ser usado, nes...
ENCOR SA Scenario Especifica o algoritmo de hashing de senha a ser usado, nes...ENCOR SA Scenario Especifica o algoritmo de hashing de senha a ser usado, nes...
ENCOR SA Scenario Especifica o algoritmo de hashing de senha a ser usado, nes...
 
2.6.6 Packet Tracer - Verify Single-Area OSPFv2 - ILM.docx
2.6.6 Packet Tracer - Verify Single-Area OSPFv2 - ILM.docx2.6.6 Packet Tracer - Verify Single-Area OSPFv2 - ILM.docx
2.6.6 Packet Tracer - Verify Single-Area OSPFv2 - ILM.docx
 
Lab 9 instructions
Lab 9 instructionsLab 9 instructions
Lab 9 instructions
 
Labpractice1 configuringbasicroutingandswitchingwithanswer-121214084802-phpapp02
Labpractice1 configuringbasicroutingandswitchingwithanswer-121214084802-phpapp02Labpractice1 configuringbasicroutingandswitchingwithanswer-121214084802-phpapp02
Labpractice1 configuringbasicroutingandswitchingwithanswer-121214084802-phpapp02
 
Detailed explanation of Basic router configuration
Detailed explanation of Basic router configurationDetailed explanation of Basic router configuration
Detailed explanation of Basic router configuration
 
Networking Tutorial Goes to Basic PPP Configuration
Networking Tutorial Goes to Basic PPP ConfigurationNetworking Tutorial Goes to Basic PPP Configuration
Networking Tutorial Goes to Basic PPP Configuration
 
IPv6 Static Routes
IPv6 Static RoutesIPv6 Static Routes
IPv6 Static Routes
 
119163798 icnd1-practice-questions-9tut
119163798 icnd1-practice-questions-9tut119163798 icnd1-practice-questions-9tut
119163798 icnd1-practice-questions-9tut
 
En erouting ilm_v4050 - para correção
En erouting ilm_v4050 - para correçãoEn erouting ilm_v4050 - para correção
En erouting ilm_v4050 - para correção
 
All contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docx
All contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docxAll contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docx
All contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docx
 
I pv6 eigrp
I pv6 eigrpI pv6 eigrp
I pv6 eigrp
 
IPv6 EIGRP
IPv6 EIGRPIPv6 EIGRP
IPv6 EIGRP
 
Activy tecnologi and instructions
Activy tecnologi and instructionsActivy tecnologi and instructions
Activy tecnologi and instructions
 
Lab- Full IPsec Implementation.pdf
Lab- Full IPsec Implementation.pdfLab- Full IPsec Implementation.pdf
Lab- Full IPsec Implementation.pdf
 
OSPF 3
OSPF 3OSPF 3
OSPF 3
 
En erouting slm_v4050
En erouting slm_v4050En erouting slm_v4050
En erouting slm_v4050
 
En erouting slm_v4050
En erouting slm_v4050En erouting slm_v4050
En erouting slm_v4050
 
BÀI TẬP 01.docx
BÀI TẬP 01.docxBÀI TẬP 01.docx
BÀI TẬP 01.docx
 
BÀI TẬP 01.docx
BÀI TẬP 01.docxBÀI TẬP 01.docx
BÀI TẬP 01.docx
 

Configure EIGRP Routing and Verify Connectivity

  • 1. ERouting EIGRP PT Practice SBA
  • 2. ERouting EIGRP PT Practice SBA A few things to keep in mind while completing this activity: 1. Do not use the browser Back button or close or reload any Exam windows during the exam. 2. Do not close Packet Tracer when you are done. It will close automatically. 3. Click the Submit Assessment button to submit your work. Introduction In this Packet Tracer Practice Skills-based Assessment, you will: • complete the configuration of a partially configured network • establish connectivity to the West Region and the Internet through the use of static and dynamic routing • verify connectivity Addressing Table Device Interface Address Subnet Mask Default Gateway S0/0/0 up 192.168.1.249/30 255.255.255.252 N/A S0/0/1 do 192.168.1.253/30 255.255.255.252 N/A EastHQ S0/1/0 up 209.165.201.6/30 255.255.255.252 Internet S0/1/1 up 192.0.2.2/30 255.255.255.252 192.0.2.1 Fa0/0 192.168.0.1 /25 255.255.255.128 N/A Fa0/1 192.168.0.129 /25 255.255.255.128 N/A E-Branch1 S0/0/0 192.168.1.250 /30 255.255.255.252 N/A S0/0/1 192.168.1.245 /30 255.255.255.252 N/A Fa0/0 192.168.1.1 /26 255.255.255.192 N/A Fa0/1 192.168.1.65 /26 255.255.255.192 N/A E-Branch2 S0/0/0 192.168.1.254 /30 255.255.255.252 N/A S0/0/1 192.168.1.246/30 255.255.255.252 N/A EPC1 NIC 192.168.0.2 /28 255.255.255.128 192.168.0.1 EPC2 NIC 192.168.0.254 255.255.255.252 192.168.0.1 EPC3 NIC 192.168.1.2 /26 255.255.255.192 192.168.1.1 EPC4 NIC 192.168.1.126 255.255.255.192 192.168.1.1 NetAdmin NIC 192.168.1.66 /26 255.255.255.192 192.168.1.65 Note: The password for user EXEC mode is cisco. The password for privileged EXEC mode is class. Step 1: Configure the Device Basics. Note: Initially, you can only access router E-Branch2 through the console connection on NetAdmin. a. Configure the following on E-Branch2: • The router name is EB2. Router(config)# hostname EB2 • The privileged EXEC mode uses the following encrypted password: class.
  • 3. EB2(config)#enable secret class • Enable Telnet and console line logins and use the following password: cisco. EB2(config)#line vty 0 4 EB2(config)#password class EB2(config)#login EB2(config)#exit • Configure the banner message-of-the-day as Authorized access only! EB2(config)#banner motd %Authorized access only!% b. Using the Addressing Table, configure and activate all the necessary interfaces on E-Branch2. c. Configure correct host IP addressing. EB2#show ip interface brief EB2#show ip route • Configure EPC2 with the last IP address in the subnet. 192.168.0.254 255.255.255.128 Default gateway 192.168.0.1 • Configure EPC4 with the last IP address in the subnet. 192.168.1.126 255.255.255.192 Default gateway 192.168.1.1 Step 2: Discover the Network. a. Explore the network to determine the IP address of the serial interface that EastHQ uses to connect to E-Branch2. b. Remotely access EastHQ. EB2# show interfaces EB2# show cdp neighbors EB2# show ip route EB2# telnet 192.168.1.253 EastHQ(config)#interface serial0/0/0 EastHQ (config-if)#ip address 192.168.1.249 255.255.255.252
  • 4. EastHQ (config-if)#no shutdown EastHQ (config-if)#exit EastHQ (config)#interface serial0/0/1 EASTHQ(config-if)#ip address 192.168.1.253 255.255.255.252 EASTHQ(config-if)#no shutdown EASTHQ(config-if)#exit EASTHQ(config)#interface serial0/1/0 EASTHQ(config-if)#ip address 209.165.201.6 255.255.255.252 EASTHQ(config-if)#no shutdown EASTHQ(config-if)#exit EASTHQ(config)#interface serial0/1/1 EASTHQ(config-if)#ip address 192.0.2.2 255.255.255.252 EASTHQ(config-if)#no shutdown EASTHQ(config-if)#exit Step 3: Configure Static and Default Routing. a. Configure connectivity to the West Region. • Configure a static route on EastHQ to the entire West Region. The West Region uses the 172.16.100.0/24 address space. Use the next-hop address argument. EastHQ#show ip route EastHQ(config)#route ip 172.16.100.0 255.255.255.0 192.0.2.1 • Configure a default route on EastHQ to send to the Internet all other traffic for destinations that are not found in the EastHQ routing table. Use the exit interface argument. EastHQ(config)#route ip 0.0.0.0 0.0.0.0 serial0/1/0 b. Verify static and default routing. EastHQ#show ip route EastHQ#ping Step 4: Configure EIGRP Routing. Configure EIGRP on EastHQ, E-Branch1, and E-Branch2. a. Use AS number 100. b. b.Do not advertise the network between EastHQ and the Internet. c. Do not advertise the network between EastHQ and the West Region. d. Advertise all other attached networks. e. Disable automatic summarization. f. Disable EIGRP updates out interfaces where there are no EIGRP neighbors available. g. On EastHQ, enter the one command in the EIGRP routing process that will propagate the default and static routes to E-Branch1 and E-Branch2.
  • 5. EastHQ(config)#router eigrp 100 EastHQ(config-router)#network 192.168.1.248 0.0.0.3 EastHQ(config-router)#network 192.168.1.244 0.0.0.3 EastHQ(config-router)#no auto-summary EastHQ(config-router)#ip default-network EastHQ(config)#interface serial0/1/0 EastHQ(config-if)#no eigrp 100 EastHQ(config)#interface serial0/1/1 EastHQ(config-if)#no eigrp 100 ----------------------------------------- EB1(config)#router eigrp 100 EB1(config-router)#network 192.168.1.0 0.0.0.3 EB1(config-router)#network 192.168.1.0 0.0.0.127` EB1(config-router)#passive-interface fa0/0 EB1(config-router)#passive-interface fa0/1 EB1(config-router)#CTRL+Z ------------------------------------------ EB2(config)#router eigrp 100 EB2(config-router)#network 192.168.1.0 0.0.0.3 EB2(config-router)#network 192.168.1.0 0.0.0.63 EB2(config-router)#passive-interface fa0/0 EB2(config-router)#passive-interface fa0/1 EB2(config-router)#CTRL+Z Step 5: Modify the default EIGRP operation. a. Configure the link between EastHQ and E-Branch2 so that the correct bandwidth of 384 k/s is used in EIGRP calculations. b. Configure E-Branch1 to advertise a summary route for the subnets 192.168.0.0/25 and 192.168.0.128/25 to EastHQ and E-Branch2. c. Configure E-Branch2 to advertise a summary route for the subnets 192.168.1.0/26 and 192.168.1.64/26 to EastHQ and E-Branch1. EastHQ(config)#interface s0/0/1 EastHQ(config-if)#bandwidth 384 EastHQ(config-if)#ip bandwidth-percent eigrp 100 100 EB2(config)#interface s0/0/0 EB2(config-if)#bandwidth 384 EB2(config-if)#ip bandwidth-percent eigrp 100 100 EB1(config)#router eigrp 100 EB1(router-config)#network 192.168.0.0 0.0.0.3 EB1(router-config)#end EB2(config)#router eigrp 100 EB2(router-config)#network 192.168.1.0 0.0.0.63 EB2(router-config)#end
  • 6. Step 6: Verify Full Connectivity. Although these are not scored, the following connectivity tests should be successful. • Test connectivity to the West Region. • Test connectivity to the Internet. Version 1.0 Created in Packet Tracer 5.3.1.0044 and Marvel 1.0.1 All contents are Copyright © 1992 - 2011 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information.