User Tools

Site Tools


icnd1:login_security

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
icnd1:login_security [2024/03/14 12:04]
114.119.130.33 old revision restored (2023/10/13 18:49)
icnd1:login_security [2024/04/25 22:16] (current)
52.211.143.139 old revision restored (2023/10/14 09:38)
Line 4: Line 4:
 ==== Console Login ==== ==== Console Login ====
   * Protect console access for all device consoles with a password of ‘certskills’:   * Protect console access for all device consoles with a password of ‘certskills’:
-    * test ''**IMPORTANT**'' 
 <code> <code>
 R1#conf t R1#conf t
 Enter configuration commands, one per line.  End with CNTL/Z. Enter configuration commands, one per line.  End with CNTL/Z.
-R1(config)#logi 
-R1(config)#line con 
 R1(config)#line console 0 R1(config)#line console 0
-R1(config-line)#pass +R1(config-line)#password certskills <-- sets password for line console 0. 
-R1(config-line)#password certskills +R1(config-line)#login  <-- Enables login prompt.
-R1(config-line)#login+
 </code> </code>
  
Line 28: Line 24:
 ==== Telnet Security ====  ==== Telnet Security ==== 
   * Protect Telnet access by requiring username/password login. To that end, create a username ‘person’ with a password of ‘access’ using the most secure option to configure the user.   * Protect Telnet access by requiring username/password login. To that end, create a username ‘person’ with a password of ‘access’ using the most secure option to configure the user.
 +<code>
 +R1#conf t
 +Enter configuration commands, one per line.  End with CNTL/Z.
 +R1(config)#username person secret access
 +R1(config)#line vty 0 15
 +R1(config-line)#login local
 +</code>
icnd1/login_security.1710417871.txt.gz · Last modified: 2024/03/14 12:04 by 114.119.130.33