- Community Home
- >
- Networking
- >
- Switching and Routing
- >
- Network Simulator
- >
- HPE 6600 Series router irb (bridge mode)
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
тАО06-18-2021 03:16 AM - last edited on тАО07-12-2021 07:42 AM by Parvez_Admin
тАО06-18-2021 03:16 AM - last edited on тАО07-12-2021 07:42 AM by Parvez_Admin
Hello, I am a network engineer in Korea. The equipment in charge is the hp 6600 series router. I'm not good at English, so I'm asking you a question using a translator.
Cisco router has settings called irb, bridge mode. I wonder if the router I'm in charge of has the same command. First of all, Cisco Router command.
int fas0/0
no ip address
bridge-group 1
int fas0/1
no ip address
bridge-group 1
bridge-group1 protocol ieee
brdige-group1 route ip
int bvi1
ip address x.x.x.1 255.255.255.0
no shut
I'll leave a link just in case.
https://community.cisco.com/t5/routing/configure-two-routers-in-bridge-mode/td-p/1189709
Thank you. ъ░РьВмэХйыЛИыЛд.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-18-2021 03:45 AM
тАО06-18-2021 03:45 AM
SolutionHello,
I believe you are looking for route aggrgation in HP routers.
Config would be like below:
interface <interface number>
port link-mode
port link-aggregation group 1
quit
Repeat same for other interface.
interface route-aggragtion 1
ip address <ip address>
quit
Do checks:
display route-aggragtion 1
display link-aggregation verbose
Thanks!
quit

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-18-2021 04:08 AM - edited тАО06-18-2021 04:11 AM
тАО06-18-2021 04:08 AM - edited тАО06-18-2021 04:11 AM
Re: hp 6600 Series router irb (bridge mode)
Hello @rodtor !
As far as I know there is no way in 6600 to bridge several L3 interfaces into one broadcast domain. If a port is in L3 mode (port link-mode route) it is a broadcast domain on its own and you can't bridge it with another L3 interface. What you can do, however, is to convert those ports to L2 mode (port link-mode bridge), then make them access mode in a VLAN and on the top create an SVI (Vlan-interface) for the respective VLAN (it will be like BVI interface in Cisco). But there is a drawback - not all ports in 6600 can be switched to L2 mode. Here is what the Interface Configuration Guide says:
This feature is supported on only routers configured with SAP modules.
Depending on the hardware structure of interface cards, for a device, some interfaces can operate only as Layer 2 Ethernet interfaces (in bridge mode), some can operate only as Layer 3 Ethernet 5interfaces (in route mode), but others can operate either as Layer 2 or Layer 3 Ethernet interfaces (you can set the link mode to bridge or route).
If the configuration is supported, it will look like:
int Gig1/0/1
port link-mode bridge
port link-type access
port access vlan 999
#
int Gig1/0/2
port link-mode bridge
port link-type access
port access vlan 999
#
int Vlan-interface999
ip address x.x.x.1 255.255.255.0
undo shut
I think this is the closest to Cisco's IRB concept you can get on 6600.
Hope this helps!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-18-2021 05:38 AM
тАО06-18-2021 05:38 AM
Re: hp 6600 Series router irb (bridge mode)
Thank you very much!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-18-2021 06:09 AM
тАО06-18-2021 06:09 AM
Re: hp 6600 Series router irb (bridge mode)
Cisco is
bridge-group1 protocol ieee
brdige-group1 route ip
Do I not need to set the protocol and routing separately for HP?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-18-2021 08:56 AM
тАО06-18-2021 08:56 AM
Re: hp 6600 Series router irb (bridge mode)
No, these commands do not have analogue in Comware, but you don't really need them. If your router's ports support 'port link-mode bridge', the configuration I've provided you in my previous message is sufficient.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-18-2021 10:44 AM
тАО06-18-2021 10:44 AM
Re: hp 6600 Series router irb (bridge mode)
Thank you for the information. That was a great help.
: )