Differences between revisions 1 and 2
Revision 1 as of 2021-11-23 00:54:32
Size: 473
Editor: scot
Comment:
Revision 2 as of 2021-11-23 01:15:24
Size: 841
Editor: scot
Comment:
Deletions are marked like this. Additions are marked like this.
Line 16: Line 16:

== 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

Initial Setup Notes

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)# line vty 0 7
Switch(config-line)# login
Switch(config-line)# line-password abc
Switch(config)# exit

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)