Home
51.
You are attempting to configure EIGRP for IPv6 on a router. However, Cisco IOS presents you with a message indicating that routing is not enabled for IPv6. What command would you issue to enable IPv6 routing?
  • A.
    Router(config)# ipv6 unicast-routing
  • B.
    Router(config-rtr)# ipv6 unicast-routing
  • C.
    Router(config-rtr)# ipv6 cef
  • D.
    Router(config)# ipv6 eigrp
  • Answer & Explanation
  • Report
Answer : [A]
Explanation :
By default, IPv6 routing is not enabled on a router. To enable it, you issue the ipv6 unicast-routing command in global configuration mode.
As a best practice, you should also enter ipv6 cef in global configuration mode (not router configuration mode) to enable Cisco Express Forwarding for IPv6. However, ipv6 eigrp is not a valid command.
Report
Name Email  
52.
Router R1 connects to Router R2 over an Ethernet LAN with both routers using their Fa0/0 interfaces. R1 learns a route from R2 using EIGRP for IPv6. That route lists Fa0/0 as the outgoing interface with R2 as the next hop. The configuration excerpt shows all relevant configuration on R2's Fa0/0 interface. Which of the following is true about R1's route?
interface f0/0
mac-address 1111.1111.1111
ipv6 address 2000::/64 eui-64
ipv6 address 2001::1/64


  • A.
    The next hop is 2000::1311:11FF:FE11:1111
  • B.
    The next hop is FE80::1311:11FF:FE11:1111
  • C.
    The next hop is FE80::5111:11FF:FE11:1111
  • D.
    The next hop is 2001::1
  • Answer & Explanation
  • Report
Answer : [B]
Explanation :
EIGRP uses the link-local address as the next hop for routing protocols. Based on R2's MAC address, R2's link-local address on Fa 0/0 will be FE80::1311:11FF:FE11:1111. This value is derived by splitting the MAC, inserting FFFE, and flipping bit 7, making the initial hex 11 become hex 13.
Report
Name Email  
53.
Under what configuration mode for Named EIGRP would you configure a passive interface?
  • A.
    Address-Family configuration mode
  • B.
    Address-Family-Interface configuration mode
  • C.
    Address-Family-Global configuration mode
  • D.
    Address-Family-Topology configuration mode
  • Answer & Explanation
  • Report
Answer : [B]
Explanation :

General EIGRP commands (for example, metric , eigrp stub , and eigrp router-id ) are configured under address-family configuration mode.

Commands entered under interface configuration mode with a traditional EIGRP configuration (for example, authentication , bandwidth-percent , hello-interval , holdtime , passive-interface , and split-horizon ) are entered under address-family-interface configuration mode with Named EIGRP.

Commands having a direct impact on a router's EIGRP topology (for example, autosummary , maximum-paths , redistribute , and variance ) are given under addressfamily- topology configuration mode.

There is no address-family-global configuration mode.

Report
Name Email  
54.
When configuring Named EIGRP, you want to specify the Hello interval for all interfaces. You could go into address-family-interface configuration mode for each interface and enter the hello-interval command. However, what command could you give from address-family configuration mode to go into a configuration mode that allowed you to configure the Hello Interval for all interfaces with a single hellointerval command?
  • A.
    address-family global
  • B.
    af-interface default
  • C.
    af-interface-all
  • D.
    address-family *
  • Answer & Explanation
  • Report
Answer : [B]
Explanation :

EIGRP parameters configured under interface configuration mode with a traditional EIGRP configuration can be configured under address-family-interface configuration mode with Named EIGRP. To enter address-family-interface configuration mode for a specific interface, you can enter the af-interface interface_identifier command.

However, if you want an interface setting to be applied to all interfaces, you can enter the af-interface default command. Although commands entered from this configuration mode are inherited by all router interfaces, you can go into addressfamily- interface configuration mode for specific interfaces to override any globally configured interface settings.

None of the commands given in the question, other than af-interface default , are valid.

Report
Name Email  
55.
You configured a router with a Named EIGRP configuration. What command would you use to view the EIGRP for IPv4 topology table?
  • A.
    show address-family ipv4 topology
  • B.
    show ip eigrp topology
  • C.
    show address-family-topology
  • D.
    show ip address-family
  • Answer & Explanation
  • Report
Answer : [B]
Explanation :
Even though Named EIGRP is configured quite differently than a traditional EIGRP configuration, the verification commands remain the same. Therefore, to view a router's EIGRP for IPv4 topology table, you would issue the same show ip eigrp topology command that you would use with a traditional EIGRP for IPv4 configuration.
Report
Name Email