- Community Home
- >
- Networking
- >
- Switching and Routing
- >
- Comware Based
- >
- New to ComWare
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
10-22-2014 10:11 AM
10-22-2014 10:11 AM
New to ComWare
Just received a new 5700 switch . I'm versed in Provision but not Comware, so perhaps someone can assist.
1) After connecting via Console, I need to set up an IP address for the device. In PV it's console, cli then memu, etc.
2) After setting the IP address, I'd like to connect to the switch via patch cable to continue the configuration via SSH or Web GUI (if there is one).
3) Since part of the initial configuration asks to set an IRF ID (master) is this necessary?
I've review the ProVision/Cisco/Comware command guide and the functional configuration guide, but I am at a loss.
Thanks in advance.
Bob
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-26-2014 03:50 PM - edited 10-26-2014 03:52 PM
10-26-2014 03:50 PM - edited 10-26-2014 03:52 PM
Re: New to ComWare - How to set up an initial IP on my switch
Need to have a more descriptive subject in there otherwise no one can read it or scan for it later :-)
Ok, the simplest way (assuming you have no VLANs, etc on the switch) is to do the following:
<HP> system
[HP]
Then do the following commands:
vlan 1
description This is a bad network to use
quit
interface vlan-interface 1
ip address 172.16.1.100 255.255.255.0
ip route-static 0.0.0.0 0.0.0.0 172.16.1.1
ssh server enable
user-interface vty 0 4
authentication-mode scheme
protocol inbound ssh
public-key local create rsa
public-key local create dsa
Obviously change the IPs to what you want. This is the most basic configuration for a comware 5/7 based switch. Note that typically you *dont* want to use vlan 1, but thats a longer topic. If you want other vlans, change "1" for something else. Additionally, you'd want to do something like:
vlan 14
description Some network out there
quit
interface gigabitethernet 1/0/1
port access vlan 14
quit
Marcos