To keep track of what configuration version is running on the switch, create a new configuration file using the CSM version and the CANU version from the MOTD banner from the running configuration.
(switch#) Get the CSM and CANU versions from the MOTD banner.
show banner
Example output:
Banners:
Message of the Day (MOTD):
###############################################################################
# CSM version: 1.0
# CANU version: 1.1.11
###############################################################################
(switch#) Save a configuration file with the CSM and CANU versions.
configuration write to csm1.0-canu1.1.11
(switch#) Get the CSM and CANU version from the MOTD banner.
show running-configuration | grep motd
Example output:
banner motd ^C
###############################################################################
# CSM version: 1.0
# CANU version: 1.1.11
###############################################################################
(switch#) Create a configuration file with the CSM and CANU versions.
copy config://startup.xml config://csm1.0-canu1.1.11
Copy completed will be returned if successful.
(switch#) Get the CSM and CANU versions from the exec banner.
show banner exec
Example output:
###############################################################################
# CSM version: 1.2
# CANU version: 1.1.11
###############################################################################
(switch#) Create a checkpoint with the CSM and CANU versions.
copy running-config checkpoint CSM1_2_CANU_1_1_11