- Community Home
- >
- Networking
- >
- Legacy
- >
- Switches, Hubs, Modems
- >
- Restrict VLAN Routing
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
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
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
тАО07-25-2006 07:44 PM
тАО07-25-2006 07:44 PM
my problem is to restrict the VLAN routing. When I add VLANs to a 3400 switch with IP Adresses and IP Routing is on, then all VLAN can connect in to all VLAN!? That right?
But I don't want that. I have a SRV VLAN and more branch VLANs. I want all branch VLANs to SRV VLAN but no branch VLAN to branch VLAN. How can I configure that?
THX
Stefan Wusowski
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-25-2006 10:07 PM
тАО07-25-2006 10:07 PM
Re: Restrict VLAN Routing
I am sure the 3400cl supports this (Quick check on the procurve website confirms this...)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-25-2006 10:54 PM
тАО07-25-2006 10:54 PM
Re: Restrict VLAN Routing
The 3400 is an intellegent switch, so it has Access control lists (ACLs)which can provide IP layer 3 filtering based on source/destination IP address/subnet and source/destination TCP/UDP port number.
If you can provide your IP addresses for your Vlans, and what exactly the restricyions you need , then we can break it out for you with ACLs.
Good Luck !!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-25-2006 11:26 PM
тАО07-25-2006 11:26 PM
Re: Restrict VLAN Routing
I know that the 3400 can work with ACL, but I never try it. I hear that's complicated. Here my VLAN config.
IP Netz Name VLAN-ID
172.18.8.0/21 Zen-VLAN-1 1
10.100.100.0/24 Adm-VLAN-100 100 10.100.101.0/24 GMP-VLAN-101 101
10.100.102.0/24 Fin-VLAN-102 102
10.100.103.0/24 GF-VLAN-103 103
10.100.104.0/24 IT-VLAN-104 104
10.100.105.0/24 SRV-VLAN-105 105
Default Gateway xxx.yyy.zzz.1
I add the following IP Addresse to the main Switch
vlan 100 ip address 10.100.100.1/24
vlan 101 ip address 10.100.101.1/24
vlan 102 ip address 10.100.102.1/24
vlan 103 ip address 10.100.103.1/24
vlan 104 ip address 10.100.104.1/24
vlan 105 ip address 10.100.105.1/24
That is also the default Gateway for the VLAN's
VALN 100-104 routed to VLAN 105 and back, but no routing between VLAN 100-104.
Can anyone provide examples ACL for denied the VLAN Routing.
;-)))) Big THX
Stefan Wuswoski
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-26-2006 12:02 AM
тАО07-26-2006 12:02 AM
SolutionYour configuration will be:
1- Create a standard access list:
----------------------------------
3400(config)# access-list 1 deny 10.100.100.1/24
3400(config)# access-list 1 deny 10.100.101.1/24
3400(config)# access-list 1 deny 10.100.102.1/24
3400(config)# access-list 1 deny 10.100.103.1/24
3400(config)# access-list 1 deny 10.100.104.1/24
3400(config)# access-list 1 permit any
2- Apply it to vlans 100 to 104:
---------------------------------
3400(config)# vlan 100 ip access-group 1 in
3400(config)# vlan 101 ip access-group 1 in
3400(config)# vlan 102 ip access-group 1 in
3400(config)# vlan 103 ip access-group 1 in
3400(config)# vlan 104 ip access-group 1 in
3- Verify your configuration by Show access-list.
I hope that will be enough to help :)
Don't forget to assign points,
Good Luck !!!