Which outbound access list, applied to the WAN interface of a router, permits all traffic except for http traffic sourced from the workstation with IP address 10.10.10.1?
A.
ip access-list extended 200 deny tcp host 10.10.10.1 eq 80 any permit ip any any
B.
ip access-list extended 10 deny tcp host 10.10.10.1 any eq 80 permit ip any any
C.
ip access-list extended NO_HTTP deny tcp host 10.10.10.1 any eq 80
D.
ip access-list extended 100 deny tcp host 10.10.10.1 any eq 80 permit ip any any
Defo D as its an extended ACL the range is betwee 100-199
Router(config)#ip access-list extended ?
<100-199> Extended IP access-list number
<2000-2699> Extended IP access-list number (expanded range)
WORD Access-list name
A. 200 is out of extended access-list range (Available range is 100-199) -> Wrong
B. 10 is out of extended access-list range (Available range is 100-199) -> Wrong
C. The extended access-list with the name NO_HTTP can be configured. But as per the command, all traffic will block due to not execute the command permit ip any any ->Wrong
D. Correct
Router(config)#ip access-list extended 100
Router(config-ext-nacl)#deny tcp host 10.10.10.1 any eq 80
Router(config-ext-nacl)#permit ip any any
None of the options is correct!
Options A, B, and D are incorrect because the `ip access-list [standard|extended]` command is used with named ACLs.
- **Option A**: Incorrect syntax. The service type `eq 80` must be specified after the destination address. The correct syntax is:
'access-list [NUMBER] [permit|deny] [source] [wildcard-mask] [destination] [wildcard-mask] [eq [service-type]]'
- **Option B**: Incorrect range for the ACL ID. For extended ACLs, the valid ranges are 100-199 and 2000-2699.
- **Option C** is missing the `permit ip any any` command to allow all other traffic (that is not HTTP sourced from `10.10.10.1`).
- **Option D**: Would be correct if it didn’t include `ip` and 'extended' keywords.
A.
ip access-list extended 200
deny tcp host 10.10.10.1 eq 80 any
permit ip any any
B.
ip access-list extended 10
deny tcp host 10.10.10.1 any eq 80
permit ip any any
C.
ip access-list extended NO_HTTP
deny tcp host 10.10.10.1 any eq 80
D.
ip access-list extended 100
deny tcp host 10.10.10.1 any eq 80
permit ip any any
In all cases, we're dealing with a NAMED access list.
Why? Because it is 'ip access-list [standard|extended] <name> ...' rather than
'access-list <number> [permit|deny] ...'
The ACL name just happens to be numbers.
So B can also be the correct answer, ACL name being 10.
Unless there's a typo somewhere in the answers compared to what's actually on the test.
It just happens that the na
Correct Answer is D however, there is a typo, it should be written like this:
ip access-list extended 100 deny tcp host 10.10.10.1 eq 80 any < Source host 10.10.10.1 eq 80 going to any destination. The way that the answer has it written that's a destination Port not a source.
permit ip any any
With the way you propose it be written, you'd be specifying that the source port be 80, not the destination.
We want to block from 10.10.10.1 with any source port to any destination, destination port 80.
The way you suggest, it instead would be:
from 10.10.10.1 source port 80 to any destination with any destination port. Not what we want.
D. ip access-list extended 100 <name of acl> deny tcp host 10.10.10.1 <source ip> <any source port> any <any destination ip> eq 80 <destination port>
permit ip any any
Correct Answer: D.
Syntax:
[insert line-num] deny tcp {source-ip [wildcard] | host source-ip | any} [operator port [port]]{dest-ip [wildcard] | host dest-ip | any} [operator port [port]] [established]
https://www.cisco.com/c/en/us/td/docs/app_ntwk_services/waas/waas/v401_v403/command/reference/cmdref/ext_acl.pdf
upvoted 2 times
...
This section is not available anymore. Please use the main Exam Page.350-401 Exam Questions
Log in to ExamTopics
Sign in:
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.
Sajj_gabi
Highly Voted 4 years, 2 months agodanman32
1 year, 9 months agoKZM
Highly Voted 2 years, 5 months agoAbdullahMohammad251
Most Recent 8 months, 1 week agoAbdullahMohammad251
8 months, 1 week ago[Removed]
11 months, 1 week agoeearmani
1 year, 3 months agomgiuseppe86
1 year, 7 months agodanman32
1 year, 9 months agoChuckzero
1 year, 8 months agoClauster
2 years, 1 month agodanman32
1 year, 9 months agoH3kerman
2 years, 6 months agoBigMouthDog
2 years, 9 months ago[Removed]
3 years, 11 months agoBigMomma4752
4 years, 1 month agoFacco
4 years, 1 month ago