ICX: Difference between revisions

From Omnia
Jump to navigation Jump to search
Line 21: Line 21:
= CLI =
= CLI =


== Show Config ==
Show Config
sh run


show config
All but "show config" will need "enable"
  sh run
  >enable
 
== Interfaces ==


== Configure ==
Show Interfaces
  enable
  sh int bri
configure terminal
# or conf t


== Write Config ==
Show specific port:
show int eth 1/1/1


  write mem
Show management port:
  sh int bri | begin mgmt


== Clear Settings ==
== IP ==


  erase startup-config
Show IP:
  show ip


== Reboot Switch ==
== License ==


  reload
Show licenses:
  sh license


== Skip Pagination ==
== Pagination ==


  >enable
  >enable
Line 56: Line 61:
   Enable page display mode
   Enable page display mode


== Hostname ==
== Ping ==
 
ping [IP]
 
== Reboot Switch ==
 
reload
 
== VLANs ==
 
Show VLANs:
show vlan
 
= Config =
 
Configure:
enable
configure terminal
# or conf t
 
Show Config:
show config
sh run
 
Write Config:
write mem
 
Clear Config:
erase startup-config


hostname [name]
== DHCP Client ==


== dhcp ==
Management Interface DHCP Client


dhcp:
dhcp:
Line 73: Line 106:
  no ip dhcp-client enable
  no ip dhcp-client enable


== Show Ethernet Interfaces ==
Show IP:
show ip
 
== Interface ==


  sh int bri
  sh int bri
Line 83: Line 119:
  sh int bri | begin mgmt
  sh int bri | begin mgmt


== Disable Interface ==
Disable Interface
 
  int eth 1/1/48
  int eth 1/1/48
   disable
   disable
   enable
   enable


== Show IP ==
== Spanning Tree ==


show ip
Disable Spanning Tree On specific port:
 
<pre>
== Ping IP ==
interface ethernet 1/1/1
 
loop-detection
  ping [IP]
  no spanning-tree
!
</pre>


== VLAN ==
== VLAN ==
Line 105: Line 142:
  no vlan [#]
  no vlan [#]


== License ==
== Hostname ==


Show licenses:
  hostname [name]
  sh license
 
== Disable Spanning Tree:
 
On specific port:
<pre>
interface ethernet 1/1/1
loop-detection
no spanning-tree
!
</pre>


== Users ==
== Users ==

Revision as of 18:35, 15 March 2024

Ruckus / Brocade Switches

See Ruckus

Connect

Connect on Linux

# apt install tio
tio -b 9600 /dev/ttyS0
tio -b 9600 /dev/ttyUSB0
# apt install minicom
minicom -b 9600 -D /dev/ttyS0
minicom -b 9600 -D /dev/ttyUSB0

Connect on Windows

Use Tera Term or Putty and connect to COMX with Baud 9600

CLI

Show Config

sh run

All but "show config" will need "enable"

>enable

Interfaces

Show Interfaces

sh int bri

Show specific port:

show int eth 1/1/1

Show management port:

sh int bri | begin mgmt

IP

Show IP:

show ip

License

Show licenses:

sh license

Pagination

>enable

to skip pagination:

skip
# or skip-page-display
  Disable page display mode

to page:

page
  Enable page display mode

Ping

ping [IP]

Reboot Switch

reload

VLANs

Show VLANs:

show vlan

Config

Configure:

enable
configure terminal
# or conf t

Show Config:

show config
sh run

Write Config:

write mem

Clear Config:

erase startup-config

DHCP Client

Management Interface DHCP Client

dhcp:

ip dhcp-client enable
ip dhcp-client auto-update enable
no ip dhcp-client enable

Static IP

ip address 10.10.10.104 255.255.255.0
ip default-gateway 10.10.10.1
no ip dhcp-client auto-update enable
no ip dhcp-client enable

Show IP:

show ip

Interface

sh int bri

Show specific port:

show int eth 1/1/1

Show management port:

sh int bri | begin mgmt

Disable Interface

int eth 1/1/48
  disable
  enable

Spanning Tree

Disable Spanning Tree On specific port:

interface ethernet 1/1/1
 loop-detection
 no spanning-tree
!

VLAN

Show VLANs:

show vlan

Clear VLAN:

no vlan [#]

Hostname

hostname [name]

Users

enable super-user-password [PASSWORD]
no enable super-user-password
username admin [PASSWORD]
no username admin

Reset Password

As switch boots up, when you see the following, press 'b':

Enter 'b' to stop at boot monitor:

then type "no password":

no password

then type "boot" to continue booting:

boot
# or boot_primary

Then either change password

enable
conf t

keywords