Both sftp-server
and internal-sftp
are part of OpenSSH. The sftp-server
is a standalone binary. The internal-sftp
is just a configuration keyword that tells sshd
to use the SFTP server code built-into the sshd
, instead of running another process (what would typically be the sftp-server
).
The internal-sftp
was added much later (OpenSSH 4.9p1 in 2008?) than the standalone sftp-server
binary. But it is the default by now. The sftp-server
is now redundant and is kept probably for a backward compatibility.
I believe there's no reason to use the sftp-server
for new installations.
From a functional point of view, the sftp-server
and internal-sftp
are almost identical. They are built from the same source code.
The main advantage of the internal-sftp
is, that it requires no support files when used with ChrootDirectory
directive.
Quotes from the sshd_config(5)
man page:
Another advantage of the internal-sftp
is a performance, as it's not necessary to run a new sub-process for it.
It may seem that the sshd
could automatically use the internal-sftp
, when it encounters the sftp-server
, as the functionality is identical and the internal-sftp
has even the above advantages. But there are edge cases, where there are differences.
Few examples:
Administrator may rely on a login shell configuration to prevent certain users from logging in. Switching to the internal-sftp
would bypass the restriction, as the login shell is no longer involved.
Using the sftp-server
binary (being a standalone process) you can use some hacks, like running the SFTP under sudo
.
For SSH-1 (if anyone is still using it), Subsystem
directive is not involved at all. An SFTP client using SSH-1 tells the server explicitly, what binary the server should run. So legacy SSH-1 SFTP clients have the sftp-server
name hard-coded.