Thanks for the information. I'll definitely reconsider my stance on writing an SSH server in Perl (though I am still curious about Net::SSH::Perl::Subsystem::Server).
I've installed openssh-server and created a Perl program named echo.pl as an example.
#!/usr/bin/perl use strict; use warnings; while ( my $line = <> ) { print $line; }
How can I make the OpenSSH server execute this program upon connection without creating any user accounts?
In reply to Re^2: SSH daemon in Perl?
by robs87
in thread SSH daemon in Perl?
by robs87
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |