============================================================================ This is a version of telnet that has builtin zmodem, it also has a pipe command |, if you don't want to use the builtin zmodem you can use an external zmodem etc. protocol. (11-11-98) By Kent Robotti It also has SSL support, if you compile it with libssl and libcrypto. ============================================================================ There's a compiled elf version of ztelnet in linux.bin, it's statically linked so it should run on a libc5 or libc6 system. The compiled version doesn't have SSL support. How-To compile... You need "libncurses" on your system to compile ztelnet. ztelnet# configure ztelnet/zmodem# make linux ztelnet# make If you want to compile ztelnet with SSL support, do this. ztelnet# configure --with-ssl=/usr/lib Tell configure where libssl.a and libcrypto.a are. The man pages are telnet/telnet.0 and telnet.1, 0 is formatted 1 is'nt. ~# more telnet.0 # less telnet.0 You can put telnet.1 in /usr/man/man1 or /usr/local/man/man1. Examples from the command line... ~# ztelnet bbs.foo.com Connected to BBS... BBS zmodem ready to send... Press Ctrl ] ztelnet> set binary <-Set to binary mode.) ztelnet> rz -v <-Use builtin zmodem.) ztelnet> close <-You can 'close' here or press [Enter] & return to BBS.) ztelnet> set binary <-Set to binary mode.) ztelnet> | rz -b -y <-Use | external zmodem, instead of builtin zmodem.) ztelnet> close <-You can 'close' here or press [Enter] & return to BBS.) End... ==============================================================================