2020-09-26 18:12:27 +03:00
|
|
|
# Known limitations
|
|
|
|
- No SK/FIDO support.
|
|
|
|
- No DNS support.
|
|
|
|
- No proxy support.
|
|
|
|
- Assumes SSH2.0 for now.
|
2021-03-08 02:19:37 +03:00
|
|
|
- Cannot determine compatibility flags.
|
2020-09-26 18:12:27 +03:00
|
|
|
This means there may be some weird bugs when connecting to certain SSH implementations.
|
2022-04-29 22:08:49 +03:00
|
|
|
|
|
|
|
# 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
|
2023-07-07 14:56:23 +03:00
|
|
|
KeepAlive=true
|
|
|
|
SystemModes=text,graphical
|
|
|
|
|
|
|
|
[SSHServerGenKeys]
|
|
|
|
Executable=/usr/local/bin/ssh-keygen
|
|
|
|
Arguments=-A
|
|
|
|
KeepAlive=false
|
2022-04-29 22:08:49 +03:00
|
|
|
SystemModes=text,graphical
|
|
|
|
EOF
|
|
|
|
```
|