exam questions

Exam 300-410 All Questions

View all questions & answers for the 300-410 exam

Exam 300-410 topic 1 question 79 discussion

Actual exam question from Cisco's 300-410
Question #: 79
Topic #: 1
[All 300-410 Questions]


Refer to the exhibit. The branch router is configured with a default route toward the Internet and has no routes configured for the HQ site that is connected through interface G2/0. The HQ router is fully configured and does not require changes.
Which configuration on the branch router makes the intranet website (TCP port 80) available to the branch office users?

  • A.
  • B.
  • C.
  • D.
Show Suggested Answer Hide Answer
Suggested Answer: D 🗳️

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
Chiaretta
Highly Voted 1 year, 9 months ago
Selected Answer: D
A: access-list 101 permit tcp any any eq 80 access-list 102 permit tcp any host intranet-webserver-ip route-map pbr permit 10 match ip address 101 set ip next-hop 192.168.2.2 route-map pbr permit 20 match ip address 102 set ip next-hop 192.168.2.2 interface G2/0 ip policy route-map pbr B: access-list 100 permit tcp host intranet-webserver-ip eq 80 any route-map pbr permit 10 match ip address 100 set ip next-hop 192.168.2.2 interface G1/0 ip policy route-map pbr C: access-list 100 permit tcp any host intranet-webserver-ip eq 80 route-map pbr permit 10 match ip address 100 set ip next-hop 192.168.2.2 interface G2/0 ip policy route-map pbr D: access-list 101 permit tcp any any eq 80 access-list 102 permit tcp any host intranet-webserver-ip route-map pbr permit 10 match ip address 101 102 set ip next-hop 192.168.2.2 interface G1/0 ip policy route-map pbr PBR must be placed on traffic ingress interface.
upvoted 7 times
...
Gene_nstudy
Most Recent 8 months, 1 week ago
There is no correct answer. Cisco question writers should properly review the questions they create. D appears to be the correct answer. However, all HTTP traffic is forwarded to the intranet server.D is most like it. However, all HTTP traffic is forwarded to the intranet server.
upvoted 3 times
...
[Removed]
9 months, 1 week ago
Selected Answer: D
D is correct
upvoted 1 times
...
Cyril_the_Squirl
1 year, 8 months ago
By process of elimination (A) & (C) = PRB applied on wrong interface. (B) wrong ACL syntax, leaving D as the only right option.
upvoted 2 times
bk989
8 months, 2 weeks ago
B is not wrong syntax IOU# access-list 100 permit tcp host 1.1.1.1 eq 80 an However B it permits traffic from the web server to any host on port 80. We want traffic from any host to web server on port 80.
upvoted 2 times
...
...
[Removed]
1 year, 8 months ago
Selected Answer: D
D, the instructions say that the intranet branch users require to have access to the intranet web server at HQ without modifying the routing table at Branch, the only way is to point all the Branch network users to the next hop 192.168.2.2 on TCP port 80. Therefore the PBR has to be applied at Branch router interface G1/0
upvoted 4 times
...
inteldarvid
1 year, 9 months ago
Selected Answer: D
the option correct is D, beacause PBR match with interface g1/0 (gateway user)
upvoted 3 times
...
Dacusai
1 year, 12 months ago
I don't see a correct answer here, you can not send all http traffic to the intranet server in this case, in this case C is more likely because it only will apply to traffic destinated to the server but is missing the permit 20 on the route map.
upvoted 3 times
Pietjeplukgeluk
1 year, 5 months ago
Using Policy Based Routing there is no requirement for "route-map route_map_name permit 20" as in this case when no policy base routing is used, normal routing is used. So do not mix applying a route-map as route filtering (that has an implicit deny) and applying a route map for PBR. Anyway, in my opinion C is also correct, only it is applied to the wrong interface.
upvoted 1 times
...
...
HungarianDish_111
1 year, 12 months ago
Selected Answer: D
"C" is for egress traffic, "D" is for ingress, so for me "D" is right. https://www.cisco.com/c/en/us/td/docs/switches/lan/catalyst4500/12-2/25ew/configuration/guide/conf/pbroute.pdf "You specify PBR on the incoming interface (the interface on which packets are received), not outgoing interface." https://www.cisco.com/c/en/us/td/docs/switches/lan/catalyst6500/ios/15-0SY/configuration/guide/15_0_sy_swcg/policy_based_routing_pbr.pdf "PBR cannot be applied to egress traffic or to multicast traffic."
upvoted 3 times
...
6dd4aa0
2 years ago
Selected Answer: C
Answer C does the job accordingly to the question asked. Answer D is more generally conditions which will work too.
upvoted 1 times
...
Titini
2 years, 1 month ago
Selected Answer: D
I believe it is D as it is applied in the correct interface G1/0.
upvoted 3 times
...
Koume
2 years, 3 months ago
Selected Answer: D
To me seems the more right even if pass all 80 traffic to web server.
upvoted 2 times
...
rogabor81
2 years, 3 months ago
Selected Answer: D
The best answer would be C if the pbr is applied to Gi0/1 and not Gi0/2. In the given answers D is the closest one, but it sends EVERY HTTP(port80) traffic sourced from Branch to the Intranet webserver. Considering that you probaply never want to allow your network to communicate through open HTTP(80) on the internet, this makes more sense then any other option.
upvoted 2 times
...
Alexloh
2 years, 4 months ago
Selected Answer: C
Answer C looks more logical compared to D.
upvoted 1 times
Koume
2 years, 3 months ago
No, because on C is applying to the outbound interface GI0/2, so PBR will never match as PBR works when analizing the inbond interface.
upvoted 2 times
...
...
DUBC89x
2 years, 4 months ago
C. access-list 100 permit tcp any host intranet-webserver-ip eq 80 ! route-map pbr permit 10 match ip address 100 set ip next-hop 192.168.2.2 ! interface G2/0 ip policy route-map pbr
upvoted 2 times
...
CisconAWSGURU
2 years, 5 months ago
Selected Answer: C
C, makes sense to me!
upvoted 1 times
...
NoUserName1234
2 years, 5 months ago
All Answer are techically wrong Answer D makes all traffic flow to HQ instead of only the Web Traffic as stated in the qeustion. A is also wrong due too outgoing interface B is Fault in the syntax of the ACL Answer C is also outgoing interface
upvoted 3 times
...
jarz
2 years, 7 months ago
Selected Answer: C
You only need the single ACL to match the Internet webserver IP .
upvoted 2 times
babs
2 years, 6 months ago
the same job can be done via option B,
upvoted 1 times
...
jarz
2 years, 5 months ago
I actually retract my answer, none are correct. D is the closest to being correct.
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