OSPF & EIGRP Questions
Quick OSPF Overview OSPF router ID selection: OSPF uses the following criteria to select the router ID: OSPF forms neighbor relationship with other OSPF routers on the same segment by exchanging hello packets. The hello packets contain various parameters. Some of them should match between neighboring routers. These include: + Hello and Dead intervals When OSPF neighbor relationship is formed, a router goes through several state changes before it becomes fully adjacent with its neighbor. The states are Down -> Attempt (optional) -> Init -> 2-Way -> Exstart -> Exchange -> Loading -> Full. Short descriptions about these states are listed below: Down: no information (hellos) has been received from this neighbor Attempt: only valid for manually configured neighbors in an NBMA environment. In Attempt state, the router sends unicast hello packets every poll interval to the neighbor, from which hellos have not been received within the dead interval Init: specifies that the router has received a hello packet from its neighbor, but the receiving router’s ID was not included in the hello packet 2-Way: indicates bi-directional communication has been established between two routers Exstart: Once the DR and BDR are elected, the actual process of exchanging link state information can start between the routers and their DR and BDR Exchange: OSPF routers exchange and compare database descriptor (DBD) packets Loading: In this state, the actual exchange of link state information occurs. Outdated or missing entries are also requested to be resent Full: routers are fully adjacent with each other When OSPF is run on a network, two important events happen before routing information is exchanged: In an NBMA network topology, which is inherently nonbroadcast, neighbors are not discovered automatically. OSPF tries to elect a DR and a BDR due to the multi-access nature of the network, but the election fails since neighbors are not discovered. Neighbors must be configured manually to overcome these problems Each OSPF area only allows some specific LSAs to pass through. Below is a summarization of which LSAs are allowed in each OSPF area:
Or this table will help you grasp it: OSPF Summarization 1) To summarize routes at the area boundary (ABRs), use the command: For example: ABR1(config)#router ospf 1 An internal summary route is generated if at least one subnet within the area falls in the summary address range and the summarized route metric is equal to the lowest cost of all the subnets within the summary address range. Interarea summarization can only be done for the intra-area routes of connected areas, and the ABR creates a route to Null0 to avoid loops in the absence of more specific routes. 2) To summarize external routes on the domain boundary (ASBRs), use the command: Note: An exception of using the “summary-address” is at the boundary of a NSSA area. In both methods of route summarization described above, a summarized route is only generated if at least one subnet in the routing table falls in the summary address range. Summarization in EIGRP and OSPF Unlike OSPF where we can summarize only on ABR or ASBR, in EIGRP we can summarize anywhere. Manual summarization can be applied anywhere in EIGRP domain, on every router, on every interface via the ip summary-address eigrp as-number address mask [administrative-distance ] command (for example: ip summary-address eigrp 1 192.168.16.0 255.255.248.0). Summary route will exist in routing table as long as at least one more specific route exists. If the last specific route disappears, summary route will also fade out. The metric used by EIGRP manual summary route is the minimum metric of the specific routes. The example below shows how to configure EIGRP manual summarization: R1(config)#interface fa1/0 If you are not sure about OSPF LSA Types, please read our OSPF LSA Types Tutorial. OSPF area filtering The command “area area-number filter-list prefix … in“: Prevent prefixes from entering this area (in keyword here means “into”) OSPF Virtual Link Virtual links are used to extend Area 0 across another area. In order to configure virtual-link, we have to configure the OSPF router ID of the other ABR, not router-id. The configuration of virtual-link is: Router(config)#router ospf ospf-process The area_id is the “transit area” that OSPF will tunnel through. The “transit area” cannot be a stub area of any kind. OSPF Authentication Router(config)#int fa0/0 2) Area authentication: Authentication for area can enable using “area {area-number} authentication” command. For example: Router(config)#interface fa0/0 -> In either case password must be configured at interface using “ip ospf message-digest-key” or “ip ospf authentication-key” command. |
Question 1
Explanation
The newest OSPFv3 configuration approach utilizes a single OSPFv3 process. It is capable of supporting IPv4 and IPv6 within a single OSPFv3 process. OSPFv3 builds a single database with LSAs that carry IPv4 and IPv6 information. The OSPF adjacencies are established separately for each address family. Settings that are specific to an address family (IPv4/IPv6) are configured inside that address family router configuration mode.
Running single OSPFv3 for both IPv4 and IPv6 is supported since Cisco IOS Software Release 15.1(3)S.
The new-style OSPFv3 process is enabled using the router ospfv3 process-number command. Within the OSPF process configuration mode, the OSPF process ID is defined (using the router-id ospf-process-ID command).
OSPFv3 New-Style OSPF Configuration Commands:
R1(config)#ipv6 unicast-routing //although only OSPFv3 for IPv4 is configured but we have to enable IPv6 under global configuration mode R1(config)#router ospfv3 1 R1(config-router)# router-id 1.1.1.1 R1(config)#interface GigabitEthernet0/1 R1(config-if)#ipv6 enable //although only OSPFv3 for IPv4 is configured but we have to enable IPv6 under interface mode R1(config-if)#ospfv3 1 ipv4 area 0 |
Reference: https://www.ciscopress.com/articles/article.asp?p=2294214&seqNum=4
Question 2
Explanation
In the output of R1, we see R1 has a default route to the Internet via G1/0, which is correct but R2 does not have this route. One reasonable answer of this issue is R1 has been configured as a stub router so it only advertised connected and summary routes. In Branch router output, we also see routes that are directly connected to R1 only.
Note: In this topology, only Branch router should be configured as stub, not R1 router.
Question 3
Explanation
The AD of static route is manually configured to 130 which is higher than the AD of OSPF router which is 110.
Question 4
Explanation
The “summary-address” is only used to create aggregate addresses for OSPF at an autonomous system boundary. It means this command should only be used on the ASBR when you are trying to summarize externally redistributed routes from another protocol domain or you have a NSSA area. But a requirement to create a summarized route is:
“The ASBR compares the summary route’s range of addresses with all routes redistributed into OSPF on that ASBR to find any subordinate subnets (subnets that sit inside the summary route range). If at least one subordinate subnet exists, the ASBR advertises the summary route.”
Reference: CCNP Route 642-902 Official Certification Guide
But in this case we found no prefix that belongs to 10.0.0.0/8. Therefore a summarized route for this subnet could not be created.
Note:
+ If a prefix of this subnet exists in the routing table then after the summarization is performed, we will see such an entry:
Router# show ip route
— output omitted —
0 10.0.0.0/8 is a summary via null0
+ An example of using the command “summary-address” is shown below:
Recently the RIPv2 domain has been redistributed into our OSPF domain but the administrator wants to configure a summarized route instead of 32 external type-5 LSAs (for 172.16.32.0/24 to 172.16.63.0/24) flooding into the OSPF network. In this case the administrator has to use the “summary-address” command as follows:
Router(config-router)#summary-address 172.16.32.0 255.255.224.0
Note: In this case R1 is the ASBR for OSPF domain.
Question 5
Explanation
When redistributing into RIP, EIGRP (and IGRP) we need to specify the metrics or the redistributed routes would never be learned. In this case we need to configure like this:
router eigrp 1 redistribute ospf 100 metric 10000 100 255 1 1500
why the questions not appearing?!!!!! only answers
I strongly believe that the answer for the first question is D but in Config mode, not exec mode.
here is the link for ospfv3 address-family settings.
https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/iproute_ospf/configuration/xe-3s/iro-xe-3s-book/ip6-route-ospfv3-add-fam-xe.html
Hi Guys
did anyone enter the exam ?
if any, please share your experience
I am very confused about this test. Is the ENARSI (350-410) the same as the old T-Shoot? and how many question on the exam?
Dear All
any one having valid dumps of 350-401 please share on the below emial id
thanks
noor dot tabii at gmail dotcom
You had to clarify that 2nd question is related to EIGRP, not OSPF
I am planning to take ENARSI today And ENCOR exam in 3 days and i referred dumps from Passleader, are these dumps still valid or changed, Kindly suggest. thank you
Hi guys,
did anyone knows correct answer ot Question 1, B or D.
thanks
@networktut can you confirm that Q2 is correct? A different site is showing different available answers.
https://www.itexams.com/exam/300-410
Q1: [OSPFv3 1 area 0 ipv4] is the correct format
Hi guys,
the exam only contains MC and DnD questions?
Are those the only EIGRP & OSPF questions on the exam? It seems as way too few questions for such important topics…
https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/iproute_ospf/configuration/15-sy/iro-15-sy-book/ip6-route-ospfv3-add-fam.html
SUMMARY STEPS
1. enable
2. configure terminal
3. router ospfv3 [process-id]
4. address-family ipv4 unicast
looking for the exam 300-401 pdf
instead exam 300-410
@Q1 is DDDDD: at your page we have:
Enabling OSPFv3 on an Interface
SUMMARY STEPS
1. enable
2. configure terminal
3. interface type number
4. Do one of the following:
ospfv3 process-id area area-ID {ipv4 | ipv6} [instance instance-id]
ipv6 ospf process-id area area-id [instance instance-id]
Question 1 is: Which configuration adds an IPv4 interface to an OSPFv3 process in OSPFv3 address family configuration?
Is add same as enable in this case? I tried it on a router, the command is “ospv3 1 ipv4 area 0”, just like in answer C. The Cisco doc says “ospfv3 process-id area area-ID {ipv4 | ipv6} [instance instance-id], but I guess it’s wrong.
Also, the steps you mentioned Q1 are for “Configuring the IPv4 Address Family in OSPFv3, tasks to configure the IPv4 address family in OSPFv3”
@Ariu
The question is only looking for the one statement that adds it. D is the complete process.
OSPFv3 1 area 0 ipv4 <<< This is the exact single statement that adds it.
The question is worded badly.
@Admin
You said in your notice that the examine had changed and you are gathering information.
Are you done with that information gathering and is this site now up to date for a guaranteed material?
its still valid ?
Is this still valid?
hi is there a lab sim on the enarsi exam lately?
Hey does anyone know if this is still good or is the new test not on here ?
@networktut please say something
@yeehaw: Currently our questions are valid. There are only two new lab sims and we are working to gather information about them!
Is there a way i can get the questions to these answers instead of just the explanations?
where do we find the questions? do we need premium membership for that ?
looking for the exam 300-410 pdf with labs. Can someone please help me
Passed ENARSI today, all questions were from the networktut except the simulations.
@nas – all simulations were new? What did you get?