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
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