Friday 15 January 2016

BASIC STEP FOR CONFIGURE A CISCO SWITCH


Hello Friends,
I am back Now I am Telling You about configuration of Cisco Switch


Step 1 Hostname
enable
configure terminal
hostname <name>

Step 2 Logon Banner
enable
configure terminal
banner motd $(any Symbol)
Type Your Banner and end it with symbol

Step 3 Console Password
enable
configure terminal
line con 0
password <password>
login

Step 4 Telnet password
enable
configure terminal
line vty 0 15
password <password>
login
exit

Step 5 Enable Password
Method 1           (Use for normal password which is seen in show run command)
enable
configure terminal
enable password <password>
exit
Method 2
enable                (Use for encrypted password which is seen in show run command in MD5 value)
configure terminal
enable secret <password>
exit

Step 6 management IP
enable
configure terminal
interface vlan 1
ip address <ip address> <subnet mask>
exit

Step 7 Default Gateway
enable
configure terminal
ip default-gateway <gateway>
exit

Step 8 Saving Configuration
Method 1
enable
write
Method 2
enable
copy running-config startup-config

exit

No comments:

Post a Comment