Lab 1 - Configure a c3700 router with password

In this example, the IOS Image c3725-adventerprisek9-mz.124-15.T14 is used.

Creating a New Project (New Blank Project)

media_1361967555725.png
Use the New Project (New Blank Project), the project directory will be automatically created. The configuration will be saved in that folder.
If using a New Blank Topology, a location is required to save the project file which included the configuration. Therefore, using a New Project (New Blank Project) is always simple to managed the lab.

Click on the AUX does not work

media_1362005834745.png
Start the Router, and click the AUX button. The router is still in the initial configuration setting and required to answer the prompt with Y or N.

Click on the Console

media_1362005962519.png
It is best to answer no as it will required to configure, VLAN, hostname, password, etc... and there are tons of menu.
media_1362006061328.png
Press Enter to begin. There will be error message prompt warning that the ports is down. It should be fine.

Now use the AUX console

media_1362006675357.png
When using the AUX console, they would be so much disruption on the errors display message while typing the command. The reason for this is, the line between the line con 0 and vty is not synchrologize.
media_1362006831779.png
If the enable secret had been enabled, the router/switch will basically ignore the line con 0 password and uses the secret as enable secret is store in a higher mode as the password is encrypted.
Connected to Dynamips VM "R1" (ID 8, type c3725) - AUX port
Press ENTER to get the prompt.
Router#
Router#conf t
Enter configuration commands, one per line. End with CNTL/Z .
Router(config)#enable secret cisco1
Router(config)#line con 0
Router(config-line)#password cisco
Router(config-line)#end
Router#copy run start
Destination filename [startup-config]?
Building configuration...
[OK]
Router#
media_1362007663648.png
The first password that is type in is cisco but it does not work as the router had been configure with enable secret cisco1.
Connected to Dynamips VM "R1" (ID 8, type c3725) - AUX port
Press ENTER to get the prompt.
Router>en
Password:
Password:
Router#
media_1362008253110.png
The running config will be copy to the startup config. When the router boot up, it will get the startup config. If this is not done, whatever settings that is type or configure will not be able to startup whenever the router is switch off.
Connected to Dynamips VM "R1" (ID 8, type c3725) - Console port
Press ENTER to get the prompt.
Router#copy running-config startup-config
Destination filename [startup-config]?
Building configuration...
[OK]
Router#

Save the config

media_1362008346854.png
media_1362008378650.png

In the Project Directory folder where the New Project is stored

media_1362008447230.png
Inside the config folder, the R1.cfg will be there and the config is saved. Each time the router startup after a reboot or power-up, it will load the settings from the startup config.