Cisco Security Commands
Networking
Cisco AutoSecure
- This command enables the Cisco AutoSecure feature, which helps to secure a device by applying security best practices. It doesn't provide complete protection but enhances security.
Password Security Commands
-
Encrypt passwords
- This command encrypts all plaintext passwords in the device's configuration, preventing unauthorized users from seeing them in clear text.
-
Set a minimum password length
- This enforces a minimum length of 8 characters for all passwords to enhance password security.
-
Limit failed login attempts
- This command blocks login attempts for 120 seconds if there are 3 failed login attempts within 60 seconds, helping to mitigate brute-force attacks.
-
Configure password on VTY lines
- This sets the password for virtual terminal (VTY) lines 0 to 4 (for remote access via SSH or Telnet) to
cisco123
.
- This sets the password for virtual terminal (VTY) lines 0 to 4 (for remote access via SSH or Telnet) to
-
Set exec-timeout for idle VTY sessions
- This command ensures that an idle VTY session (remote access session) will automatically log out after 5 minutes and 30 seconds of inactivity.
-
Restrict VTY access to SSH only
- This command disables Telnet and allows only SSH connections for remote access, enhancing security by using an encrypted protocol.
Summary:
SSH Configuration Commands
-
Enter global configuration mode
-
Set the router's hostname
- This sets the hostname of the device to
R1
.
- This sets the hostname of the device to
-
Set the domain name
- This sets the IP domain name to
span.com
, necessary for generating an SSH key pair.
- This sets the IP domain name to
-
Generate the RSA key pair for SSH
- This generates an RSA key pair with a modulus size of 1024 bits for SSH encryption. Larger key sizes are more secure but may increase the time it takes to encrypt/decrypt traffic.
-
Create a local user with a password
- This creates a local user
Bob
with the passwordcisco
. Thesecret
keyword encrypts the password.
- This creates a local user
-
Enter configuration mode for VTY lines
-
Enable local authentication for VTY lines
- This configures the device to authenticate remote users (on VTY lines) using the local user database.
-
Enable SSH for VTY lines and disable Telnet
- This command allows only SSH connections and disables Telnet on VTY lines.
-
Exit VTY configuration mode
-
Return to global configuration mode
Summary:
Disable Unused Services
Here’s each command with its explanation:
- Displays all open TCP and UDP ports on the router, including the processes using them.
- Useful for identifying unnecessary or risky services running on the device.
- Lists all active connections on the control plane, including listening services.
- Helps determine which services are exposed and need to be secured.
- Enters the router’s configuration mode, allowing modifications to settings.
- Turns off the embedded HTTP service to prevent web-based management, reducing attack surface.
- Selects the virtual terminal lines used for remote access (like Telnet or SSH).
- Restricts remote access to SSH only, disabling Telnet for improved security.
Summary: