cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
366
Views
10
Helpful
6
Replies

Inter vlan routing

Rafael Jimenez
Level 4
Level 4

I had to configure several vlans on a CAT4510, all vlan had to see the server vlan. The customer dont want that one vlan see other vlans (only with the servers vlan).

How can I do this?

6 Replies 6

m-haddad
Level 5
Level 5

Hello,

You can create an ACL and apply inbound on each VLAN interface. In the ACL allow communication to the servers subnet and deny everything else to the RFC 1918 networks.

Hope this helps,

Regards,

Appreciate you rating,

ok, what about CPU usage?.

Is possible use VLAN MAPS (VLAN ACL)?.

Thanks

Hi, can you tell me if this work in this way...

======

ip access-list extended intervlan_2_3_acl

permit ip 192.168.2.0 0.0.0.255 192.168.3.0 0.0.0.255

vlan access-map intervlan_map

match ip address intervlan_2_3_acl

action drop

ip access-list extended intervlan_2_4_acl

permit ip 192.168.2.0 0.0.0.255 192.168.4.0 0.0.0.255

vlan access-map intervlan_map

match ip address intervlan_2_4_acl

action drop

ip access-list extended intervlan_others_acl

permit ip any any

vlan access-map intervlan_map

match ip rest-intervlan_acl

action forward

vlan filter intervlan_map vlan-list 1-4

thanks

doing some research.. I believe this will work better...

ip access-list extended intervlan_1_acl

permit ip 192.168.1.0 0.0.0.255 any

permit any ip 192.168.1.0 0.0.0.255

vlan access-map intervlan_1_map

match ip address intervlan_1_acl

action drop

vlan access-map intervlan_1_map

action forward

vlan filter intervlan_1_map vlan-list 1

let me give small note:

normal acl routed acl RACL

used to control traffic between vlans in a switch

while vlan ACL VACL as u referd it vlan map this can be used between vlans but it is useful to filter traffic withing the same vlan as well

in ur case u can creat normal ACL RACL that filter traffic between vlans and apply it on the vlan interface on ur L3 switch on the SVI

like interface vlan x

access-group in .....

if helpful Rate

The above will deny any traffic to anywhere from 192.168.1.0/24. I don't think this is your target. You said you want to deny intervlan traffic right? Not everything from that VLAN?

Getting Started

Find answers to your questions by entering keywords or phrases in the Search bar above. New here? Use these resources to familiarize yourself with the community:

Review Cisco Networking products for a $25 gift card