cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
3286
Views
0
Helpful
2
Replies

basic questions about config backup/restore

Daniel Kreifus
Level 1
Level 1

I've searched around with limited success. I've just inherited the Ironport devices in our enviornment and need to perform an OS upgrade of our cluster. Prior to doing so, I want to backup each members config file. (also, I want to do this before doing any config changes)

If I back up each member's config to the device, how I can access/edit these config files so I can replaced the masked password fields with the actual passwords?

I'm aware of the unmasked/hashed password version of the file, but we'd like to avoid that if we can.

1 Accepted Solution

Accepted Solutions

Bob Fayne
Level 1
Level 1

The config file itself is just a text/xml file and most good text editors (vi/textpad) will handle it easily.

Even when passwords are not masked, they are always encrypted. The only way to manually insert a password would be to encrypt it and put the result back in the config file.

As long as you are choosing strong passwords (hint) it is not at all an easy task to force decrypt the hashed password string. Even if you are completely paranoid, just store the config file somewhere in an encrypted format.

Bottom line: don't mess up your "backup" by manipulating it in a way that could render it useless just when you most need it. Manual editing of config files is tricky and AFAIK not officially supported in any way.

View solution in original post

2 Replies 2

Bob Fayne
Level 1
Level 1

The config file itself is just a text/xml file and most good text editors (vi/textpad) will handle it easily.

Even when passwords are not masked, they are always encrypted. The only way to manually insert a password would be to encrypt it and put the result back in the config file.

As long as you are choosing strong passwords (hint) it is not at all an easy task to force decrypt the hashed password string. Even if you are completely paranoid, just store the config file somewhere in an encrypted format.

Bottom line: don't mess up your "backup" by manipulating it in a way that could render it useless just when you most need it. Manual editing of config files is tricky and AFAIK not officially supported in any way.

Thanks for the feedback.