Configuring SSH Login using the Web UI:

SSH connection configuration:

[FW1]interface g0/0/0 [FW1-gigabitethernet0/0/0] IP address 10.1.1.1 24 // Set the IP address [FW1-gigabitethernet0/0/0]quit // Enable SSH login. [FW1]user-interface vty0 4 // User specified virtual user terminal interface [FW1-UI-vty0-4]authentication-mode Aaa // Log in to [FW1-UI-vty0-4]quit // Quit [FW1]aaa // Configure AAA authentication. [FW1-AAA]manager-user admin // Configure a user name [FW1-aaA-manager-user-user]password cipher admin@123 // Set the password [FW1-aaA-manager-user-user]service-type STELnet // Use the SSH service [FW1-aaA-manager-user-user]level 15 // User permission level [FW1-aaa-manager-user-user]quit // Exit from [FW1-aaa]quit // exit from [FW1]interface [FW1-gigabitethernet0/0/0]service-manage stelnet permit // SSH authentication is enabled. [FW1-gigabitethernet0/0/0]quit // Exit [FW1]Copy the code