- Community Home
- >
- Networking
- >
- Legacy
- >
- Switches, Hubs, Modems
- >
- Re: Inter vlan routing vs default 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
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
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
тАО02-13-2008 07:05 AM
тАО02-13-2008 07:05 AM
Inter vlan routing vs default routing.
I have a procurve switch 3500yl-48G and I need to enable inter vlan routing AND default GW.
My lab is as follows:
- my PC is on vlan 1
- in procurve, both vlan 1 and vlan 100 exist and both vlans have an IP.
- I have a firewall in vlan 1.
So, when I have both "ip routing" and "ip route 0.0.0.0 0.0.0.0 IP_of_FW" I have internet on my PC, but I cannot ping the vlan 100 IP on the procurve.
When I take out the "ip route 0.0.0.0 0.0.0.0 IP_of_FW", of course I do not have internet, but I can ping the vlan 100 IP on the procurve.
How can I have both working? I do not want to use the FW to do the routing between the vlans... Also, I have tried the ip default-gateway command, with no luck.
Thank you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-13-2008 07:31 AM
тАО02-13-2008 07:31 AM
Re: Inter vlan routing vs default routing.
Your setup is excellent, but you missed to add a route back from the Firewall to Vlan100, because just think about it, how the firewall knows about Vlan100 and its not directly connected to it.
add a static route to your firewall with these parameters:
route to network (Vlan100 IP address)
Mask (Vlan100 mask)
Gateway (Vlan1 IP address on your 3500 switch)
Good Luck !!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-13-2008 07:41 AM
тАО02-13-2008 07:41 AM
Re: Inter vlan routing vs default routing.
I am used to cisco and there the directly connected networks take preference over the default gw.
How can I do the same with procurve?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-14-2008 03:15 AM
тАО02-14-2008 03:15 AM
Re: Inter vlan routing vs default routing.
Your procurve 3500yl works as a router, using STATIC routing table in this case.
It has no chance to notify your firewall about routes to ip addresses of it's own vlans (vlan 1 and vlan 100 in this case).
The only way to do that is to configure the routes manually on your firewall (as Mohiedin wrote). Otherwise the firewall will not be able to return inbound traffic into vlan 100 on your procurve 3500yl.
Default gateway is required for hosts (or Level 2 managed switches).
Routers use default routes.
Good luck,
Dmitry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-15-2008 01:50 AM
тАО02-15-2008 01:50 AM
Re: Inter vlan routing vs default routing.
My problem is the physical distance between the procurve and the FW...
Anyhow. I will try to leave with this and not to use "ip route 0.0.0.0 0.0.0.0 IP_of_FW". Only static routes...
Thank you for your replies.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-21-2008 05:36 AM
тАО02-21-2008 05:36 AM
Re: Inter vlan routing vs default routing.
I think there is some misunderstanding.
Your 3500yl CAN WORK as a dynamic router.
You should enable and configure an appropriate routing protocol on it.
It supports both RIP and OSPF.
Good luck,
Dmitry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-21-2008 08:46 AM
тАО02-21-2008 08:46 AM
Re: Inter vlan routing vs default routing.
Anyway, I will use proxy servers for internet browsing...
Thank you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-21-2008 08:56 AM
тАО02-21-2008 08:56 AM
Re: Inter vlan routing vs default routing.
Thank you all for your replies!