- Community Home
- >
- Networking
- >
- Switching and Routing
- >
- HPE Aruba Networking & ProVision-based
- >
- Multiple ip's in same 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
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
04-03-2020 03:42 AM
04-03-2020 03:42 AM
Hi,
on Comware we can do something very simple as :
interface Vlan-interface111
ip address 10.90.111.254 255.255.255.0
#
interface Vlan-interface254
ip address 192.168.254.251 255.255.255.0
ip route-static 0.0.0.0 0.0.0.0 192.168.254.254
Which means that we use vlan 254 for routing between vlan111 and other vlans (outside of this switch).
One problem, i can only define one ip address per vlan on a 1920 anyway, higher end switches allow more then one ip address). Now i want to implement the same thing on an Aruba 2930F which does allow multiple ip's in one vlan.
vlan 111
name "VLAN111"
untagged 46
tagged 1-45
ip address 10.35.111.254 255.255.255.0
ip address 10.90.111.254 255.255.255.0
exit
vlan 254
name "VLAN254"
untagged 48
ip address 192.168.254.251 255.255.255.0
primary-vlan 254
management-vlan 254
exit
ip default-gateway 192.168.254.254
Initially this works, i can ping 192.168.254.251 and 10.90.111.254 successfully. However when i plug in a device in port 46 (which is is vlan 111) i can no longer ping 10.90.111.254 (i can however ping to 192.168.254.251). And to be clear, the device does not have address 10.90.111.254. Nothing spectacular shows up in the logs, except that vlan 111 comes online when i plug in the device...
Anyone having an idea?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2020 06:29 AM
04-06-2020 06:29 AM
SolutionDid a little bit of testing this morning... Following works :
vlan 111
name "VLAN111"
untagged 46
ip address 10.35.111.254 255.255.255.0
ip address 10.90.111.254 255.255.255.0
exit
vlan 254
name "VLAN254"
untagged 48
ip address 192.168.254.251 255.255.255.0
Then add a gateway :
ip default-gateway 192.168.254.254
And finally, enable routing
ip routing
DO NOT SET :
primary-vlan 254
management-vlan 254
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2020 02:36 AM
04-07-2020 02:36 AM
Re: Multiple ip's in same vlan routing
Hello pnobels,
Aruba switches (previously ProVision) support multiple IP addresses on a vlan, this is an outdated technology known as "multinetting": basically, the idea was to route traffic without having a router. Since the 2930 model is a L3 switch, You do not need this functionality. Comware-based switches do not have this option.
A not very detailed HPE document:
https://support.hpe.com/hpesc/public/docDisplay?docId=emr_na-c02898663
Regards