Linux

SSH In Case Of

Category & Tags: Nix, Linux, SSH

Note: Putty officially recommends to use Bitvise SSH Client & Server. See also Powershell. Sudo # sudo without passwd vim /etc/sudoers # or sudoedit /etc/sudoers modify ALL=(ALL) ALL to ALL=(ALL) NOPASSWD:ALL (i.e. add NOPASSWD: before the last ALL), e.g. %sudo ALL=(ALL:ALL) NOPASSWD:ALL SSHD Config > Less Time # Add two commands to avoid long time before asking passwords: GSSAPIAuthentication no UseDNS no GSS API is alternative to SSH-keys SSHD Config > More Security # Change to get high security by using key auth only: ...