Net-TCP-PtyServer

This module provides an easy-to-use interface to serving up
pseudo-terminals over network sockets.

A Perl script can run this module on the server. You calling the run
subroutine, and pass it a port number and a command-line. The server
will then open a listening connection on that port, and each time a
TELNET client connects, it will perform a double-fork, spawn a
pseudo-terminal, and execute the given command on the pseudo-terminal,
piping the results to the client-side pseudo-terminal.

The practical upshot of this is that you can easily allow users access
to programs running on your server. Of course, the programs have to
implement their own security or login arrangements as needed.

INSTALLATION

To install this module, run the following commands:

    perl Makefile.PL
    make
    make test
    make install


SUPPORT AND DOCUMENTATION

After installing, you can find documentation for this module with the perldoc command.

    perldoc Net::TCP::PtyServer

You can also look for information at:

    Search CPAN
        http://search.cpan.org/dist/Net-TCP-PtyServer

    CPAN Request Tracker:
        http://rt.cpan.org/NoAuth/Bugs.html?Dist=Net-TCP-PtyServer

    AnnoCPAN, annotated CPAN documentation:
        http://annocpan.org/dist/Net-TCP-PtyServer

    CPAN Ratings:
        http://cpanratings.perl.org/d/Net-TCP-PtyServer

COPYRIGHT AND LICENCE

Copyright (C) 2006 Robert J Lee

This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.