1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-05 21:55:08 +00:00
serenity/Ports/openssh
Timothy Flynn 9af8c61b29 Ports: Update ports that depend on LibCore to depend on LibCoreMinimal
Looks like we need to be explicit for make-based ports.
2024-03-31 19:22:32 +02:00
..
patches Ports: Format patches without numbering, commit hash or version number 2022-06-08 17:58:36 +01:00
.gitignore Ports: Unignore the OpenSSH port README 2022-03-24 20:11:39 -07:00
package.sh Ports: Update ports that depend on LibCore to depend on LibCoreMinimal 2024-03-31 19:22:32 +02:00
ReadMe.md Ports: Generate OpenSSH host keys using a service 2023-09-28 20:26:38 +02:00

Known limitations

  • No SK/FIDO support.
  • No DNS support.
  • No proxy support.
  • Assumes SSH2.0 for now.
  • Cannot determine compatibility flags. This means there may be some weird bugs when connecting to certain SSH implementations.

Autostart SSHD

Add something like this to your sync-local.sh

cat <<EOF >> mnt/etc/SystemServer.ini

[SSHServer]
Executable=/usr/local/sbin/sshd
Arguments=-D
KeepAlive=true
SystemModes=text,graphical

[SSHServerGenKeys]
Executable=/usr/local/bin/ssh-keygen
Arguments=-A
KeepAlive=false
SystemModes=text,graphical
EOF