CCNP Concepts Flashcards
How do you configure BGP with a loopback?
Use the neighbor 10.0.0.2 update-source command. Without the neighbor update-source configuration command, the TCP session will use the IP address of the outgoing physical interface and the neighbor will reject the incoming TCP SYN packet as it’s not coming from a recognized BGP neighbor.
What do you have to add in OSPF to ensure route redistribution works?
You must add the subnets parameter otherwise OSPF will ONLY advertise networks.
Does an implementation plan require the detailed configuration changes to be made?
It may seem trivial for simple implementations, but Cisco requires that any network implementation plan includes documentation that shows what changes will be made to the current configurations. When performing more complex implementations in a production environment, having a well though-out implementation plan reduces the downtime and is very important – just make sure you also include the actual configuration change steps!
Explain route map logic.
- If you use an ACL in a route-map permit clause, routes that are permitted by the ACL are redistributed.2. If you use an ACL in a route-map deny clause, routes that are permitted by the ACL are not redistributed.3. If you use an ACL in a route-map permit or deny clause, and the ACL denies a route, then the route-map clause match is not found and the next route-map clause is evaluated
Which router command will allow an administrator to configure the administrative distance of a redistributed routing protocol?
The distance command will manually change the AD value for specific network prefixes.
The syntax is distance {ip-address {wildcard-mask}} [ip-standard-list] [ip-extended-list]
router rip
distance 125 10.10.10.2 0.0.0.0
What special type of IPv6 address does ::/0 represent?
A: ::/0 is the default route in IPv6
The address ::/0 is the IPv6 equivalent of “any”, which is why it is used as the default route address. It is the equivalent of 0.0.0.0/0 in IPv4.
An example IPv6 static default route configuration would look like this:
RouterA(config)# ipv6 route gig0/1 ::/0 10.10.10.2
What are the two ways a BGP router can advertise its networks?
A: A BGP router can advertise its networks using the network statement or the aggregate-address command.
BGP uses network statements to define which networks the local router should advertise. Each network doesn’t have to be originating from the local router, but the network must exist in the routing table. The optional mask keyword is often recommended as BGP supports subnetting and supernetting.
The aggregate-address command can be used to aggregate (or summarize) BGP routes. The aggregate network is then advertised to a router’s BGP neighbor in the same way the network command does – only it contains a larger network that includes many smaller BGP networks.
Which three OSPF LSA types describe subnet information that can be used when calculating routes within OSPF?
A: LSA Type 1, 2, and 3
LSA Types 1, 2, and 3 all are used for calculating the best cost to inter-OSPF routes. LSA Types 4, 5, and 7 are used for calculating the best cost to routes outside of OSPF – those redistributed by another routing protocol.
True or False:When EIGRP detects a topology change, it sends an update to all of its neighbors with only the changes in the update.
A: False
EIGRP sends updates to only to the routers affected by the change, not all of its neighbors. One of EIGRP’s many benefits is that it uses partial triggered updates to its directly connected neighbors rather than periodically sharing its entire routing table. This saves link bandwidth because:
- Updates are only sent if a change is incurred
- Only the changes are sent in the update
- Updates are only sent to a routers’s affected neighbors
An administrator issues the command aggregate-address 192.168.0.0 255.255.252.0 on a BGP router peered with other BGP speakers. They peers do not receive the aggregate network advertisement however. What is most likely the cause?
A: The configured router does not have any 192.168.0.0/22 subnets in its BGP routing table.
The aggregate-address mask command allow an administrator to summarize specific routes into a single aggregate route. Aggregation applies only to routes present in the BGP routing table however. If one or more routes within the aggregate address exist in the BGP routing table, aggregation will be performed.
This is different from the BGP network command, which applies to routes within the local IP routing table.
The following configuration has been applied to redistribute OSPF into EIGRP. What does the value of 1000 represent?
router eigrp 1
redistribute ospf 1 metric 1000 100 255 1 1500
A: The 1000 value in the redistribute command represents a bandwidth value of 1000Kbps, or 1Mbs.
The metric subcommand under EIGRP assigns values to all routes redistributed in to the routing protocol (EIGRP in this case). Different routing protocols use differenet and incompatible metrics to determine the trustworthiness of their routes. When redistribution is performed, a standard set of metrics must be used for the external routes being imported.
In this example, the values represent 1000Kbs of bandwidth, 1000 microseconds of delay (always need to multiply this by ten), a load of 255, a reliability of 1, and 1500 for the MTU.
RouterA and RouterB are EIGRP neighbors. RouterA needs to receive routes from RouterB, but not advertise any routes to RouterB. What would better solve the requirements on RouterA – the passive interface command or using a distribute list?
A: A distribute list would be the best technique to meet the question’s requirements
First, the passive-interface command would not meet the requirements. If the passive-interface command was applied, the neighbor relationship would end because it blocks hellos from being exchanged.
Distribute lists are designed to solve exactly the type of requirements the question presents. They filter what routes are advertised or received.
In this case, a configuration similiar to the following would meet the requirements:
access-list 10 deny any ! router eigrp 100 distribute-list 10 out FastEthernet 0/1 !
What dynamic routing protocol allows an administrator to control how much bandwidth is used for routing protocol control information over a low-speed hub-and-spoke Frame Relay topology
A: EIGRP
By default EIGRP will use up to 50% of a link’s bandwidth for control information. EIGRP can however be configured to only use a specific amount of control-plane bandwidth over the link.
In situations where a hub-and-spoke Frame Relay design is used with lower a low CIR (like 64 kb/s), EIGRP can be configured with the actual CIR value – not just the default serial interface’s physical bandwidth (1544 kb/s). This makes EIGRP a popular choice in legacy, slow speed Frame Relay networks.
An example might look like:
R1 (config)# interface serial 0/0/0
R1 (config-if)# bandwidth 64
R1 (config-if)# exit
What two types of routes do EIGRP stub routers advertise?
A: Summary and connected routes
A router that is configured as a stub with the eigrp stub command shares connected and summary routing information with all neighbor routers by default.
This can be verified in the output of the show ip eigrp neighbor detail command on the hub router (connected to the spoke/stub router).
Based on the OSPF redistribution configuration below, what is the effect of the external 2 parameter?
A: The external 2 parameter adds an extra match condition to the redistribution – looking elusively for OSPF E2 routes.
In this case, only OSPF E2 routes coming from OSPF process ID 1 will be redistributed onto the OSPF 20 process.
router ospf 20
redistribute ospf 1 external 2
True or False: The IPv6 header is 40 bits long.
A: False, the IPv6 header is 40 bytes long
All IPv6 addresses are 128 bits long and contain a fixed-length 40-byte header. Understanding the feilds contained within the IPv6 header is important. Remember that version, traffic class, flow label, payload length, next header, hop limit, SA, and DA are all fields contained within the IPv6 header.
What technique when applied to a router at the boundary of an IPv4 network and an IPv6 network would allow a IPv4-only and IPv6-only hosts to communicate?
A: NAT-PT
Network Address Translation – Protocol Translator (NAT-PT) allows IPv4 devices to communicate with IPv6 devices without running a dual stack requirement on end hosts. NAT-PT allows bidirectional translation services.
Define the MAC address of the multicast IP address 239.255.0.11?
A: 0100:5E7F:000B
When converting multicast IP addresses to their corresponding MAC address, simply keep the following rules in mind.
- The MAC address for multicast addresses always begins with 0100:5E.
- The remaining hex values are derived from the last 23 bits in the IP address.
In this case, we break the 255 octet in half to 127 (7F in hex). The third octet of 0 is 00 in hex. The last octet of 11 is 0B in hex.
An update has been made to the BGP ingress routing policy. Which BGP feature should be used used to process the update while avoiding high memory utilization on the router?
Will BGP apply changes to the routes it already has?
What is another way to do this?
A: Route refresh
Internet routers running BGP have enormous routing tables. When a filter is applied, like a route map, changes to BGP attributes occur. Those changes could affect many of the routes already in the routing table from BGP. Because BGP’s network list is usually very long, applying a route map or prefix list after BGP has converged can be disastrous. The router would have to check the filter against every possible route and attribute combination.
To make matters worse, if it were to apply the filters and pull routes back from neighbors, those changes could then cause another reconvergence – and on and on. In an effort to avoid that scenario (BGP loves stability), BGP will only apply attribute and network changes to routes AFTER the filter has been applied. All existing routes stay unchanged.
There are two ways to reset the BGP session without resetting the TCP sessions between all peers: route refresh or soft-reconfiguration.
When a route refresh is perfomed, the BGP router requests its remote peers to resend its BGP Adj-RIB-Out. This allows the BGP router to reapply the inbound policy without any added memory overhead on the local router.
Soft-reconfiguration stores all received (inbound) routing policy updates without modification in a table so that when a new filter is applied, the router will use this table to calculate the changes without resetting the TCP session between the two BGP peers. This is extremely memory intensive and not recommended by Cisco.
The show ip ospf database external shows what type of LSAs?
A: Type 5 LSAs
The show ip ospf database external command displays information about external LSAs (Type 5 LSAs) only.
OSPF uses the Type 5 external link LSAs to advertise external routes originated from an ASBR. They are flooded through the OSPF domain and directs packets for those external addresses to the ASBR.
DOCSIS is the international standard for transmitting data over what type of system?
A: Cable
DOCSIS, or Data Over Cable Service Interface Specification, is is an international telecommunications standard that enables high-speed data transfers over traditional cable TV networks. It is used commonly by cable TV providers to deliver internet connectivity to home and businesses over coax.
What three parts make up a complete and functional Cisco IP SLA operation?
A:
- The operation number
- The operation definition
- The operation schedule (start time)
All three parts are required for a Cisco IP SLA operation to function. A short example with each requirement on one line would be:
ip sla 20
icmp-echo 10.20.1.1
ip sla schedule 20 start-time now life forever
What would be the result if two OSPF routers were directly connected over a shared segment and the priority on both were set to 0?
A: Both routers would remain stuck in the two-way state
For proper OSPF exchange to take place over a share segment, a DR and BDR must be elected. Since both routers in this example have their OSPF priority set to 0, neither can become the DR and therefore the OSPF exchange will stop.
OSPF Elections
1. When the OSPF process on a router starts up, it listens for hellos. If it does not receive any within its dead time, it elects itself the DR.
- If hellos are received before the dead time expires, the router with the highest OSPF priority is elected as the DR. Next, the same process happens to elect the BDR. Note: If a router’s OSPF priority is set to 0, it will not participate in the elections.
- If two routers happen to have the same OSPF priority, the router with the highest Router ID will become DR. The same is true for BDR.
RouterA needs to establish a BGP neighbor relationship with RouterC in a way that allows failover if either RouterB or RouterD goes down. How can this be accomplished? (Non fully meshed square)
A: Configure loopback interfaces on RouterA and RouterC and use them in the BGP update-source command.
Instead of using one physical interface to establish a TCP connection to a BGP peer, loopbacks on each router can be used to establish the connection. This decouples the TCP/IP connection from a single physical interface, allowing link redundancy.
RouterA: interface loopback0 ip address 1.1.1.1 255.255.255.255 ! router bgp 65001 neighbor 2.2.2.2 remote-as 65001 neighbor 2.2.2.2 update-source loopback0
RouterC: interface loopback0 ip address 2.2.2.2 255.255.255.255 ! router bgp 65001 neighbor 1.1.1.1 remote-as 65001 neighbor 1.1.1.1 update-source loopback0