Cisco ASA 5505 - Recarregue SEM redefinir para a configuração padrão

2

Duas vezes, executei o comando 'reload' no console no meu ASA 5505 ver. 9.1 (3), e é completamente limpo minha configuração e redefinir para os padrões de fábrica. Eu me certifiquei de 'wr mem' antes de recarregar.

Eu vi um artigo sobre ter que alterar o registro de configuração para 0x1 para não apagar tudo, mas isso parece extremamente contra-intuitivo de que eu teria que alterar manualmente um valor de registro obscuro para salvar todo o meu trabalho duro. Certamente ASA's não estão configurados para apagar tudo por padrão ...

Eu realmente sinto que estou sentindo falta de algo aqui. Como faço para reiniciar corretamente um ASA 5505 com o IOS 9.1?

    
por Willman 12.01.2017 / 18:08

1 resposta

2

Então pesquisei o redefina a senha para o dispositivo ASA e descobriu que o registrador 0x41 diz ao roteador para ignorar a configuração de inicialização. Você precisa fazer o seguinte para restaurar o startup-config e alterar o registro:

Step 11 Access the privileged EXEC mode by entering the following command:

hostname# enable

Step 12 When prompted for the password, press Enter.

The password is blank.

Step 13 Load the startup configuration by entering the following command:

hostname# copy startup-config running-config

Step 14 Access the global configuration mode by entering the following command:

hostname# configure terminal

Step 15 Change the passwords, as required, in the default configuration by entering the following commands:

hostname(config)# password password

hostname(config)# enable password password

hostname(config)# username name password password

Step 16 Load the default configuration by entering the following command:

hostname(config)# no config-register

The default configuration register value is 0x1. For more information about the configuration register, see the Cisco ASA 5500 Series Command Reference.

Step 17 Save the new passwords to the startup configuration by entering the following command:

hostname(config)# copy running-config startup-config

    
por 12.01.2017 / 19:22