- Community Home
- >
- Networking
- >
- Switching and Routing
- >
- Comware Based
- >
- Re: HP A5500 routing by source
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
06-26-2015 01:06 AM
06-26-2015 01:06 AM
HP A5500 routing by source
Hy
I search to configure 2 default route for 2 VLAN
i have this conf :
interface Vlan-interface1
ip address 192.168.1.254 255.255.255.0
interface Vlan-interface2
ip address 192.168.2.254 255.255.255.0
ip route-static 0.0.0.0 0.0.0.0 192.168.1.1
I want vlan 2 use another default-route 192.168.1.2
I think I have to use ACL but i don't find sample configuration
If someone can help me,thanks ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-29-2015 01:40 AM
06-29-2015 01:40 AM
Re: HP A5500 routing by source
Hi there,
I had to do this on our 10500's a while ago, for us we had to seperate private IP address ranges from public and then pass the public (internet ranges) to a different default gateway form our usual one.
I started with the ACL's
acl number 3006 name XXXX_selectRFC1918
description Select RFC1918 private address ranges from XXXX
rule 0 remark select private address ranges
rule 5 permit ip source 172.19.0.0 0.0.255.255 destination 10.0.0.0 0.255.255.255 logging
rule 10 permit ip source 172.19.0.0 0.0.255.255 destination 172.16.0.0 0.15.255.255 logging
rule 15 permit ip source 172.19.0.0 0.0.255.255 destination 192.168.0.0 0.0.255.255 logging
acl number 3007 name XXXXDefault
description Select all traffic from XXXX - rule goes after private ranges
rule 0 remark select source traffic
rule 5 permit ip source 172.19.0.0 0.0.255.255 logging
rule 10 permit ip source 10.84.0.0 0.3.255.255 logging
rule 15 permit ip source 172.27.18.0 0.0.0.255 logging
Once you have ACL's to check the traffic you can then write the Policy based route for them
policy-based-route XXXXTraffic deny node 1
if-match acl 3006
apply ip-address next-hop 172.28.9.1
policy-based-route XXXXTraffic permit node 2
if-match acl 3007
apply ip-address next-hop 10.10.10.20
I made this using the information is this post which was very helpful.
http://h30499.www3.hp.com/t5/Comware-Based/Policy-Based-Routing-in-A5820X/td-p/6411240#.VZEEm-FCguB
Hope this helps