ssh config

This commit is contained in:
Daniel Langbein 2023-09-17 16:36:30 +02:00
parent c6d2043ef2
commit 1918ab4cbd
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002
2 changed files with 8 additions and 1 deletions

View File

@ -15,6 +15,13 @@
port = 2224; port = 2224;
compression = true; compression = true;
}; };
"rootYodaYoga" = {
hostname = "p1st.de";
#hostname = "192.168.178.99";
user = "root";
port = 2224;
compression = true;
};
"unlockYodaYoga" = { "unlockYodaYoga" = {
hostname = "p1st.de"; hostname = "p1st.de";
#hostname = "192.168.178.99"; #hostname = "192.168.178.99";

View File

@ -9,7 +9,7 @@
settings.PasswordAuthentication = false; settings.PasswordAuthentication = false;
# Forbid/Limit root login through SSH. # Forbid/Limit root login through SSH.
#settings.PermitRootLogin = "no"; #settings.PermitRootLogin = "no";
#settings.PermitRootLogin = "prohibit-password"; settings.PermitRootLogin = "prohibit-password";
# Enabling this is required for commands such as sftp and sshfs. # Enabling this is required for commands such as sftp and sshfs.
allowSFTP = false; allowSFTP = false;
}; };