- Community Home
- >
- Networking
- >
- Legacy
- >
- Switches, Hubs, Modems
- >
- Blocking vlan commnicate between vlans but only al...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2020 07:50 PM
01-21-2020 07:50 PM
Blocking vlan commnicate between vlans but only allow 1 vlan to communicate between all vlans
hi ,
i had 5 vlans inside hpe 1950 that allow all vlans communicate between each other.
now, i need to allow only 1 vlan(which is vlan 103) communicate between all vlans , the rest i need to block.
any guide can i refer to?
here the details
vlan 101
ip address 10.1.101.1 255.255.255.0
vlan 102
ip address 10.1.102.1 255.255.255.0
vlan 103
ip address 10.1.103.1 255.255.255.0
vlan 104
ip address 10.1.104.1 255.255.255.0
vlan 105
ip address 10.1.105.1 255.255.255.0
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2020 05:48 AM
01-30-2020 05:48 AM
Re: Blocking vlan commnicate between vlans but only allow 1 vlan to communicate between all vlans
Hi,
I understand that you want to allow traffic from VLAN 103 to VLAN 103 and the other 4 VLANs and to block anything else.
If you have the following simple topology:
Sw1 – 1950 – Sw3
# On all devices configure the appropriate VLAN interfaces and permit VLANs on the trunks.
# On 1950 define an advanced ACL like below:
# Counting is not mandatory
acl advanced 3000
rule 1 permit ip source 10.1.103.0 0.0.0.255 destination 10.1.103.0 0.0.0.255 counting
rule 2 permit ip source 10.1.101.0 0.0.0.255 destination 10.1.103.0 0.0.0.255 counting
rule 3 permit ip source 10.1.103.0 0.0.0.255 destination 10.1.101.0 0.0.0.255 counting
rule 4 permit ip source 10.1.102.0 0.0.0.255 destination 10.1.103.0 0.0.0.255 counting
rule 5 permit ip source 10.1.103.0 0.0.0.255 destination 10.1.102.0 0.0.0.255 counting
rule 6 permit ip source 10.1.104.0 0.0.0.255 destination 10.1.103.0 0.0.0.255 counting
rule 7 permit ip source 10.1.103.0 0.0.0.255 destination 10.1.104.0 0.0.0.255 counting
rule 8 permit ip source 10.1.105.0 0.0.0.255 destination 10.1.103.0 0.0.0.255 counting
rule 9 permit ip source 10.1.103.0 0.0.0.255 destination 10.1.105.0 0.0.0.255 counting
rule 100 deny ip counting
# On 1950 trunk interfaces apply the packet filters:
packet-filter 3000 inbound
packet-filter 3000 outbound
For 1950 there are some details for ACL (page 60) and there is conf example for ACL-based packet filter (page 119).
https://support.hpe.com/hpesc/public/docDisplay?docId=c04657809
I hope this helps.
Best regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2020 05:32 PM
02-02-2020 05:32 PM
Re: Blocking vlan commnicate between vlans but only allow 1 vlan to communicate between all vlans
hi,
thanks for your help, let me try it and give you an update.