2

I have been trolling Cisco sites and have not been able to find an answer to this questions.

Are you able to perform a write mem or likewise to save these configs on Nexus 5000 switches?

dawud
  • 14,918
  • 3
  • 41
  • 61
onxx
  • 200
  • 1
  • 1
  • 12

2 Answers2

5

In the handful of Nexus 5K's that I have worked on, write mem is not supported.

The only write command supported is write erase.

Saving the running configuration is achieved with a copy running-config startup-config.

NX-OS also adds a little flare to the copy operation with a progress bar...

ABC-N5010-01# copy running-config startup-config
[########################################] 100%
ABC-N5010-01#
Weaver
  • 1,932
  • 11
  • 12
  • Thanks mate, copy run start is what I used to use on all switches until I started getting lazy with write mem.. – onxx Feb 12 '12 at 20:54
3

you can also add a line in the config that allows you to use wr mem if you wish, or something even shorter. Simply add an alias statement, such as:

cli alias name wr copy running-config startup-config

krisFR
  • 12,830
  • 3
  • 31
  • 40
dhilton
  • 31
  • 1