exam questions

Exam 350-401 All Questions

View all questions & answers for the 350-401 exam

Exam 350-401 topic 1 question 747 discussion

Actual exam question from Cisco's 350-401
Question #: 747
Topic #: 1
[All 350-401 Questions]

SIMULATION
-


Guidelines
-

This is a lab item in which tasks will be performed on virtual devices.

• Refer to the Tasks tab to view the tasks for this lab item.
• Refer to the Topology tab to access the device console(s) and perform the tasks.
• Console access is available for all required devices by clicking the device icon or using the tab(s) above the console window.
• All necessary preconfigurations have been applied.
• Do not change the enable password or hostname for any device.
• Save your configurations to NVRAM before moving to the next item.
• Click Next at the bottom of the screen to submit this lab and move to the next question.
• When Next is clicked, the lab closes and cannot be reopened.


Topology
-




Tasks
-

Configure OSPF on all three routers according to the topology diagram to achieve these goals:

1. Enable OSPF on all interfaces using the network statement and match the network mask of each interface.
2. Ensure that all networks are advertised between the routers.
3. Ensure that all routers use OSPF process ID 1 and that the Lo0 interface is used for the router ID.
4. Configure OSPF MD5 authentication on every physical interface running OSPF using key 1 and the password ccnp321.





Show Suggested Answer Hide Answer
Suggested Answer:

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
asiansensation
Highly Voted 2 years, 1 month ago
R1 interface Loopback0 ip address 1.1.1.1 255.255.255.255 interface Ethernet0/0 ip address 10.0.0.1 255.255.255.0 ip ospf authentication message-digest ip ospf message-digest-key 1 md5 ccnp321 router ospf 1 router-id 1.1.1.1 network 1.1.1.1 0.0.0.0 area 1 network 10.0.0.0 0.0.0.255 area 0 R2 interface Loopback0 ip address 2.2.2.2 255.255.255.255 interface Ethernet0/0 ip address 10.0.0.2 255.255.255.0 ip ospf authentication message-digest ip ospf message-digest-key 1 md5 ccnp321 interface Ethernet0/1 ip address 192.168.0.2 255.255.255.0 ip ospf authentication message-digest ip ospf message-digest-key 1 md5 ccnp321 router ospf 1 router-id 2.2.2.2 network 2.2.2.2 0.0.0.0 area 0 network 10.0.0.0 0.0.0.255 area 0 network 192.168.0.0 0.0.0.255 area 0 R3 interface Loopback0 ip address 3.3.3.3 255.255.255.255 interface Ethernet0/1 ip address 192.168.0.3 255.255.255.0 ip ospf authentication message-digest ip ospf message-digest-key 1 md5 ccnp321 router ospf 1 router-id 3.3.3.3 network 3.3.3.3 0.0.0.0 area 3 network 192.168.0.0 0.0.0.255 area 0
upvoted 23 times
tempaccount00001
1 year, 10 months ago
I would agree with this! usually interfaces are configured already, if not then verify with "show ip interface brief". if the interfaces aren't configured, they are most likely also shut down, so make sure you dont get caught on the "no shut". verify with "show ip ospf neighbor". This would be my config BTW, almost exactly like yours: R1: router ospf 1 id 1.1.1.1 network 1.1.1.1 0.0.0.0 network 10.0.0.0 0.0.0.255 int e0/0 ip ospf authentication message-digest ip ospf message-digest-key 1 MD5 ccnp321 R2: router ospf 1 id 2.2.2.2 network 2.2.2.2 0.0.0.0 network 10.0.0.0 0.0.0.255 network 192.168.0.0 0.0.0.255 int e0/0 ip ospf authentication message-digest ip ospf message-digest-key 1 MD5 ccnp321 int e0/1 ip ospf authentication message-digest ip ospf message-digest-key 1 MD5 ccnp321 R3: router ospf 1 id 3.3.3.3 network 3.3.3.3 0.0.0.0 network 192.168.0.0 0.0.0.255 int e0/1 ip ospf authentication message-digest ip ospf message-digest-key 1 MD5 ccnp321
upvoted 4 times
...
Cryptoking112211
1 year, 10 months ago
Router 3 is in Area 2 - not area 3 ..... R3 interface Loopback0 ip address 3.3.3.3 255.255.255.255 interface Ethernet0/1 ip address 192.168.0.3 255.255.255.0 ip ospf authentication message-digest ip ospf message-digest-key 1 md5 ccnp321 router ospf 1 router-id 3.3.3.3 network 3.3.3.3 0.0.0.0 area 2 network 192.168.0.0 0.0.0.255 area 0
upvoted 6 times
...
...
sledgey121
Highly Voted 1 year, 4 months ago
Area 0 is within the solid lines, area 1 and 2 are within the dashed lines. The whole of R2 is area0 and only the R1/R2 loopbacks are the different areas. Only configure the auth on the interfaces.
upvoted 7 times
a197cbf
10 months ago
I agree, I interpreted the 10.0.0.0/24 and 192.168.0.0/24 networks both as part of area 0, and only R1 and R3's loopbacks were in their own respective areas.
upvoted 1 times
...
...
[Removed]
Most Recent 1 year, 10 months ago
I would configure the authentication on the interfaces instead of the router ospf process
upvoted 2 times
...
danman32
1 year, 10 months ago
Makes you wonder if exam expects you to statically set the router ID to "ensure" the desired router ID, or let auto determination of router ID which would use the L0 interface as ID. Could be the test grades on whether the RID matches the L0 IP, regardless of your method. I agree with others, all physical segments are within area 0 based on the dashed lines. But probably the biggest scoring is the wildcard masks used for the network statements, and that you configured a working MD5 authentication.
upvoted 2 times
...
VincentY
1 year, 12 months ago
Two mistakes here. 1. The area configurations are wrong. Notice the types of the line in the exhibit. 2.The
upvoted 4 times
VincentY
1 year, 12 months ago
2. The “authentication on every physical interface” indicates the authentication command should all be on the physical interfaces.
upvoted 4 times
...
...
Symirnian
2 years, 1 month ago
R1# router ospf 1 #router-id 1.1.1.1 #network 1.1.1.1 0.0.0.0 area 1 #network 10.0.0.0 0.0.0.255 area 0 #exit #interface e0/0 #ip ospf message-digest-key 1 md5 ccnp321 #ip ospf authentication message-digest #do write R2#router ospf 1 #network 2.2.2.2 0.0.0.0 area 0 #network 10.0.0.0 0.0.0.255 area 0 #network 192.168.0.0 0.0.0.255 area 0 #interface range e0/0-1 #ip ospf message-digest-key 1 md5 ccnp321 #ip ospf authentication message-digest #do write
upvoted 3 times
...
HungarianDish_111
2 years, 1 month ago
authentication: task: "Configure OSPF MD5 authentication on every physical interface running OSPF" -> I assume that they requested a configuration per interface, and NOT per area: interface e0/0 ip ospf message-digest-key 1 md5 ccnp321 ip ospf authentication message-digest https://networklessons.com/ospf/how-to-configure-ospf-md5-authentication You can enable "authentication message-digest" under the ospf process for an entire area. or You can enable it under the interface.
upvoted 3 times
...
HungarianDish_111
2 years, 1 month ago
router-ID: - we do not need to specify the router-id explicitly, because the ip of loopback0 was elected as the router-id automatically OSPF uses the following criteria to select the router ID: Manual configuration of the router ID. Highest IP address on a loopback interface. Highest IP address on a non-loopback interface. https://networklessons.com/ospf/ospf-router-id
upvoted 2 times
Steve122
9 months, 4 weeks ago
It is recommended to conf. the router-id explicitly.
upvoted 2 times
...
...
HungarianDish_111
2 years, 1 month ago
I tested the two possible configs in CML. It works both way. 1) R1 and R3 can also have their physical interface in "area 0" -> so, R1 and R3 become ABR for non-backbone areas 2) however, it is enough to place only the loopback of R2 in "area 0", and all the rest can be in non-backbone areas -> R2 becomes ABR It depends on the desired design. Some sources: https://notes.networklessons.com/ospf-backbone-area-0 All non-backbone areas must have an ABR that is also connected to Area 0. ... Area 0 must exist on at least one interface of an ABR router. https://lpmazariegos.com/2016/02/02/interconnecting-ospf-areas/ Backbone Router – Routers where at least one OSPF interface must belong to area 0 (backbone area).
upvoted 1 times
...
Symirnian
2 years, 1 month ago
I think answer is wrong! 3 routers should have "area 0" command. All interfaces of R2 should be in area 0 and the counter interface on R1 and R3 must be in area 0 too. What is your opinion?
upvoted 2 times
Badger_27
2 years, 1 month ago
I think you are right.
upvoted 1 times
...
Nickplayany
2 years, 1 month ago
Hey! I think you are wrong. Read more about it and check the exact same scenario here:https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/iproute_ospf/configuration/xe-16/iro-xe-16-book/iro-cfg.html Search for Example: Complex Internal Router with ABR and ASBR
upvoted 1 times
Symirnian
2 years, 1 month ago
On the design area0 is continued line and ABR is R1 and R3. area 2 and area 1 are dashed lines on R1 and R3 other sides.
upvoted 3 times
...
...
HungarianDish_111
2 years, 1 month ago
The area configuration of the provided solution is correct. However, I am not sure that the router-ID and the authentication are configured as specified in the task.
upvoted 1 times
...
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago