- Community Home
- >
- Networking
- >
- Switching and Routing
- >
- Comware Based
- >
- port link-mode route command missing?
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
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
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-05-2021 01:48 AM
06-05-2021 01:48 AM
Hello,
I am running a recent version of software (HPE Comware Software, Version 7.1.070, Release 3506P06), on a HPE 5130 24G 4SFP+ EI switch.
When I try to change one of the ports into routed mode, once under the desired ethernet port, in system-view, the command 'port link-mode route' is not present. All the documentation I can find indicates that is the correct command, but it is not an option for me.
I can't find any equivalent commands to get this working either. Is this switch series simply not capable of this feature? It seems strange, seeing as though it is a layer3 enterprise swtich.
Also, I don't want to make an SVI instead, as this interface is going to be connected to an outside network, and I don't want layer 2 functionality.
Thank-you,
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2021 02:17 AM - edited 06-05-2021 02:20 AM
06-05-2021 02:17 AM - edited 06-05-2021 02:20 AM
SolutionHi @BadOnion !
The command is correct, but it is not supported by 5130 series switches.
[5130-GigabitEthernet1/0/1]port link?
link-aggregation Link aggregation group
link-type Set the link type
[5130-GigabitEthernet1/0/1]port link
Could you point me to the exact document for 5130 that reference 'port link-mode route' as available command? Either you read a document for different platform or there is an error in the document itself.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2021 02:48 AM
06-05-2021 02:48 AM
Re: port link-mode route command missing?
I didn't actually have the specific documentation for the model. I was just referring to all the examples I had seen for Comware 7 indicated that is how it was done.
I did suspect that perhaps it wasn't supported, but wanted to know for sure.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2021 03:01 AM - edited 06-05-2021 03:02 AM
06-05-2021 03:01 AM - edited 06-05-2021 03:02 AM
Re: port link-mode route command missing?
5130-EI is an access layer switch and L3 ports is not something we see often in classical Campus Access Layer. Unfortunately there is no way to force 5130's ports to L3 mode, instead you need to use SVIs. But just to note - routed port is absolutely equal in capabilities to the following configuration:
vlan 4010
#
interface Vlan-inteface4010
ip address 10.0.40.1 24
#
interface Gig1/0/1
port link-mode bridge
port link-type access
port mode access
port access vlan 4010
You can dedicate 28 unused VLANs (one per physical port of your switch) and create a mapping like in my examle - unique VLAN with Vlan-interface per single access port. Maybe not so convenient as with routed ports, but after all you get absolutely the same functionality.
Hope this helps!