Difference between revisions of "HP cli basics"

From Notes_Wiki
m
m
Line 1: Line 1:
[[Main Page|Home]] > [[Switch configuration notes]] > [[HP cli basics]]
[[Main Page|Home]] > [[Switch configuration notes]] > [[HP cli basics]]


==Connect to HP switch CLI==
=Connect to HP switch CLI=
 
To connect to HP switch over CLI, use:
To connect to HP switch over CLI, use:
<pre>
<pre>
Line 10: Line 9:




==Switch to system-view similar to enable mode==
=Shift backspace to delete characters=
Instead of backspace use shift backspace to delete characters


To get system-view similar to enable mode use:
 
=See port number for given MAC address using mac address table (CAM table)=
To see port number for given MAC address using mac address table (CAM table):
<pre>
<pre>
   system-view
   display mac-address AAAA-BBBB-CCCC
</pre>
</pre>




==See port number for given MAC address using mac address table (CAM table)==
=See port configuration=
To see configuration for an interface:
<pre>
  display current interface Gig 1/0/34
</pre>
 


To see port number for given MAC address using mac address table (CAM table):
=See current configuration=
To see current configuration (Similar to running-config in Cisco/Dell) use:
<pre>
<pre>
  display mac-address AAAA-BBBB-CCCC
display current-configuration
</pre>
</pre>




=See VLAN information=
To see vlan information use:
<pre>
display vlan brief
</pre>


==See port configuration==


To see configuration for an interface:
=See routing table=
To see route use:
<pre>
<pre>
  display current interface Gig 1/0/34
display ip routing-table
</pre>
</pre>




=Switch to system-view similar to enable mode=
To get system-view similar to enable mode use:
<pre>
  system-view
</pre>


==To change interface configuration==


=To change interface configuration=
To change interface configuration use:
To change interface configuration use:
<pre>
<pre>
Line 45: Line 63:




==To quit from switch completely==
=To quit from switch completely=
 
To quit from switch use:
To quit from switch use:
<pre>
<pre>

Revision as of 07:28, 11 June 2023

Home > Switch configuration notes > HP cli basics

Connect to HP switch CLI

To connect to HP switch over CLI, use:

   ssh admin@IP or admin1@IP

based on whether username is set as admin or admin1.


Shift backspace to delete characters

Instead of backspace use shift backspace to delete characters


See port number for given MAC address using mac address table (CAM table)

To see port number for given MAC address using mac address table (CAM table):

   display mac-address AAAA-BBBB-CCCC


See port configuration

To see configuration for an interface:

   display current interface Gig 1/0/34 


See current configuration

To see current configuration (Similar to running-config in Cisco/Dell) use:

display current-configuration


See VLAN information

To see vlan information use:

display vlan brief


See routing table

To see route use:

display ip routing-table


Switch to system-view similar to enable mode

To get system-view similar to enable mode use:

   system-view


To change interface configuration

To change interface configuration use:

   interface Gig 1/0/34
   shut


To quit from switch completely

To quit from switch use:

   quit
   quit



Home > Switch configuration notes > HP cli basics