Thursday, 29 March 2012
Saving Backup Copies of Your Configuration and System Image
Saving Backup Copies of Your Configuration and System Image
DETAILED STEPS
Saving Your Router Configuration
Saving Your Router Configuration
DETAILED STEPS
Verifying Network Connectivity
Verifying Network Connectivity
DETAILED STEPS
Configuring Virtual Terminal Lines for Remote Console Access
Configuring Virtual Terminal Lines for Remote Console Access
DETAILED STEPS
Specifying a Default Route or Gateway of Last Resort
Specifying a Default Route or Gateway of Last Resort
DETAILED STEPS
Configuring Fast Ethernet and Gigabit Ethernet Interfaces
Configuring Fast Ethernet and Gigabit Ethernet Interfaces
DETAILED STEPS
Configuring the Console Idle Privileged EXEC Timeout
Configuring the Console Idle Privileged EXEC Timeout
DETAILED STEPS
Configuring the Enable and Enable Secret Passwords
Configuring the Enable and Enable Secret Passwords
DETAILED STEPS
Command or Action
|
Purpose
|
|
|---|---|---|
Step 1
|
enable
Example:
Router> enable
|
Enables privileged EXEC mode.
•
|
Step 2
|
configure terminal
Example:
Router# configure terminal
|
Enters global configuration mode.
|
Step 3
|
enable password password
Example:
Router(config)# enable password pswd2
|
(Optional) Sets a local password to control access to various privilege levels.
•
|
Step 4
|
enable secret password
Example:
Router(config)# enable secret greentree
|
Specifies an additional layer of security over the enable password command.
•
|
Step 5
|
end
Example:
Router(config)# end
|
Returns to privileged EXEC mode.
|
Step 6
|
enable
Example:
Router> enable
|
Enables privileged EXEC mode.
•
|
Step 7
|
end
Example:
Router(config)# end
|
(Optional) Returns to privileged EXEC mode.
|
Configuring the Router Hostname
Configuring the Router Hostname
DETAILED STEPS
service password-encryption command
service password-encryption command
The service password-encryption global
configuration command directs the Cisco IOS software to encrypt the
passwords, Challenge Handshake Authentication Protocol (CHAP) secrets,
and similar data that are saved in its configuration file. Such
encryption is useful in order to prevent casual observers from reading
passwords, such as when they look at the screen over the muster of an
administrator. However, the algorithm used by the service password-encryption command is a simple Vigenère cipher.
Command to use
enable
conf t
service password-encryption
use following link for details
http://www.cisco.com/E-Learning/bulk/public/celc/CRS/media/targets/2_1_6.swf
to view password use the following link
http://www.anythingoverip.co.za/tutorials/course-content/snd/decrypting-type-7-passwords-enable-password/
helps user to decrypt password of Type 7 encryption
Tuesday, 27 March 2012
SSH Configuration on PT
There are four steps required to enable SSH support on a Cisco IOS router:
Configure the hostname command.
Configure the DNS domain.
Generate the SSH key to be used.
Enable SSH transport support for the virtual type terminal (vty).
ON ROUTER
hostname router1
username ranjeet password ccna
ip domain-name indiancan.com
crypto key generate rsa
(Key size : 768 :ssh1.5 and ssh2)
ip ssh version 2
line vty 0 4
transport input SSH and telnet
exit
int f0/0
ip add 192.168.0.254 255.255.255.0
no shut
ON CLIENT
ssh -L ranjeet 192.168.0.254
Configure the hostname command.
Configure the DNS domain.
Generate the SSH key to be used.
Enable SSH transport support for the virtual type terminal (vty).
ON ROUTER
hostname router1
username ranjeet password ccna
ip domain-name indiancan.com
crypto key generate rsa
(Key size : 768 :ssh1.5 and ssh2)
ip ssh version 2
line vty 0 4
transport input SSH and telnet
exit
int f0/0
ip add 192.168.0.254 255.255.255.0
no shut
ON CLIENT
ssh -L ranjeet 192.168.0.254
Subscribe to:
Comments (Atom)