
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2017 11:53 PM - edited 03-08-2019 12:20 PM
Hi,
Please help with Access list on the Internet Router restricting Internet access from specific vlan to specific destination and allowing complete Internet access from another vlan.
I am attaching the topology pic, with all the details, please provide expert assistance.
Thanks & Regards
Sreeraj
Solved! Go to Solution.
- Labels:
-
Other Switching
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2017 12:24 AM
You need to use extended ACL as you want to select based on both source and destination addresses. You can try the following (on the router):-
access-list 100 permit ip 172.20.4.0 0.0.1.255 any
access-list 100 permit ip 172.20.2.0 0.0.0.255 host 185.61.213.80
access-list 100 permit ip 172.20.2.0 0.0.0.255 host 170.12.17.15
access-list 100 permit ip 172.20.2.0 0.0.0.255 host 170.12.141.9
! You do not need the deny statement because there is implicit deny at the end of ACLs.
interface gi0/0
ip access-group 100 in
end
HTH,
Meheretab
Meheretab
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2017 12:24 AM
You need to use extended ACL as you want to select based on both source and destination addresses. You can try the following (on the router):-
access-list 100 permit ip 172.20.4.0 0.0.1.255 any
access-list 100 permit ip 172.20.2.0 0.0.0.255 host 185.61.213.80
access-list 100 permit ip 172.20.2.0 0.0.0.255 host 170.12.17.15
access-list 100 permit ip 172.20.2.0 0.0.0.255 host 170.12.141.9
! You do not need the deny statement because there is implicit deny at the end of ACLs.
interface gi0/0
ip access-group 100 in
end
HTH,
Meheretab
Meheretab
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2017 04:19 AM
Hi
Additional if you have any GRE tunnel passing through there, you can add
access-list 100 permit gre any any
And if you are using any ipsec over GRE for VPNs you can add the UDP ports 4500 and 500
>> Marcar como útil o contestado, si la respuesta resolvió la duda, esto ayuda a futuras consultas de otros miembros de la comunidad. <<
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2017 04:35 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2017 04:35 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2017 04:38 AM
Great, please keep us posted and please don't forget to rate the comments if they were useful
Have a great day
:-)
>> Marcar como útil o contestado, si la respuesta resolvió la duda, esto ayuda a futuras consultas de otros miembros de la comunidad. <<
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2017 04:40 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2017 04:41 AM
Thank you :-)
>> Marcar como útil o contestado, si la respuesta resolvió la duda, esto ayuda a futuras consultas de otros miembros de la comunidad. <<
