Differences between revisions 1 and 22 (spanning 21 versions)
Revision 1 as of 2021-11-23 00:54:32
Size: 473
Editor: scot
Comment:
Revision 22 as of 2022-01-06 19:49:58
Size: 3171
Editor: scot
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
== Initial Setup Notes == Below is the commands used to configure the switches we purchased in 2021. The switches are installed as follows:

|| || '''Rack 1''' || '''Rack 2''' || '''Liebert''' ||'''Rack 4''' ||'''Rack 5''' ||
|| 01 || !R1S1:S58050-48T4Q || !R2S1:S5860-20SQ || || !R4S1:S5800-48T4S || !R5S1:S5810-48TS-P ||
|| 02 || !R1S2:S58000-48T4S || !R2S2:S5800-48T4S || || || ||
|| 03 || || !R2S3:S5800-48T4S || || || ||
|| 04 || || !R2S4:S5800-48T4S || || || ||

||<-13>!R2S1:S5860-20SQ, 10.10.129.240 ||
||!R1S2|| || || || || || || || || || || ||!R1S1||
||INET1||INET2|| || || || || || || || || || || ||


== Initial Setup Notes for 5800 Series Switches ==
Line 8: Line 21:
{{{
Switch# configure terminal
Switch(config)# username <username> privilege 4 password <password>
Switch(config)# line vty 0 7
Switch(config-line)# login local
Switch(config-line)# exit
Switch(config)# exit
}}}

'''Set the time'''
Line 11: Line 34:
Switch(config)# line vty 0 7
Switch(config-line)# login
Switch(config-line)# line-password abc
Switch(config)# clock set datetime 11:30:00 10 26 2013
Switch(config)# clock set summer-time dst date 3 13 2022 02:00:00 11 6 2022 02:00:00 120
Line 16: Line 38:

'''Configure Management IP'''
{{{
Switch# configure terminal
Switch(config)# management ip address 10.10.129.X/24
Switch(config)# exit
Switch# show management ip address
}}}

'''Create VLANs'''
{{{
Switch# configure terminal
Switch#
}}}

'''Setup Management VLAN Interface'''

Setup management on a vlan interface
{{{
switch# configure terminal
switch(config)# interface vlan 10
switch(config)# ip address 10.10.129.X/24
switch(config)# Ctrl+z
Switch# show management ip address
}}}

'''Set the banner to show the name of the switch'''
{{{
Switch# configure terminalThe // at the end of the line indicates the start of a comment:
Switch# banner login # You are logged into RXSY #
Switch# exit
Switch# show running //validates that it worked
}}}

{{{
Switch# show interface status //show status of all the ports
Switch# show interface eth-0-49 //shows the status of eth-0-49
}}}

== Common Commands ==

The // at the end of the line indicates the start of a comment:

'''Show Port Status'''

{{{
Switch# show interface status //show status of all the ports
Switch# show interface eth-0-49 //shows the status of eth-0-49
}}}


'''Show VLAN information for port'''
{{{
switch# show interface switchport interface eth-0-1
}}}

== Backup and Restore the switch Configuration ==

To backup the configuration, ssh into the switch and perform the following:

{{{
Switch# copy flash:/startup-config.conf mgmt-if scp://10.10.129.X/startup-config.conf
}}}

To download a configuration file:

{{{
Switch# copy mgmt-if scp://10.10.10.163/startup-config.conf flash:/startup-config.conf
}}}

fs.com Switches purchased in 2021

Below is the commands used to configure the switches we purchased in 2021. The switches are installed as follows:

Rack 1

Rack 2

Liebert

Rack 4

Rack 5

01

R1S1:S58050-48T4Q

R2S1:S5860-20SQ

R4S1:S5800-48T4S

R5S1:S5810-48TS-P

02

R1S2:S58000-48T4S

R2S2:S5800-48T4S

03

R2S3:S5800-48T4S

04

R2S4:S5800-48T4S

R2S1:S5860-20SQ, 10.10.129.240

R1S2

R1S1

INET1

INET2

Initial Setup Notes for 5800 Series Switches

SSH into the switch with the default user:pass = "admin:admin"

First Change the password, note that we are using local authentication mode, not "aaa" mode. What is aaa mode? That's for authenticating against a radius/TACACS+ server.

Switch# configure terminal
Switch(config)# username  <username> privilege 4 password <password>
Switch(config)# line vty 0 7
Switch(config-line)# login local
Switch(config-line)# exit
Switch(config)# exit

Set the time

Switch# configure terminal
Switch(config)# clock set datetime 11:30:00 10 26 2013
Switch(config)# clock set summer-time dst date 3 13 2022 02:00:00 11 6 2022 02:00:00 120
Switch(config)# exit

Configure Management IP

Switch# configure terminal
Switch(config)# management ip address 10.10.129.X/24
Switch(config)# exit
Switch# show management ip address

Create VLANs

Switch# configure terminal
Switch# 

Setup Management VLAN Interface

Setup management on a vlan interface

switch# configure terminal
switch(config)# interface vlan 10
switch(config)# ip address 10.10.129.X/24
switch(config)# Ctrl+z
Switch# show management ip address

Set the banner to show the name of the switch

Switch# configure terminalThe // at the end of the line indicates the start of a comment:
Switch# banner login # You are logged into RXSY #
Switch# exit
Switch# show running //validates that it worked

Switch# show interface status //show status of all the ports
Switch# show interface eth-0-49 //shows the status of eth-0-49

Common Commands

The // at the end of the line indicates the start of a comment:

Show Port Status

Switch# show interface status //show status of all the ports
Switch# show interface eth-0-49 //shows the status of eth-0-49

Show VLAN information for port

switch# show interface switchport interface eth-0-1

Backup and Restore the switch Configuration

To backup the configuration, ssh into the switch and perform the following:

Switch# copy flash:/startup-config.conf mgmt-if scp://10.10.129.X/startup-config.conf

To download a configuration file:

Switch# copy mgmt-if scp://10.10.10.163/startup-config.conf flash:/startup-config.conf

NetworkConfiguration/FsComSwitchConfiguration (last edited 2022-02-16 23:32:03 by scot)