home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / kermit / ker_scp3.zip / MSKERMIT.INI < prev    next >
Text File  |  1988-09-11  |  2KB  |  37 lines

  1. ;MSKERMIT.INI - automatically read by Kermit whenever it fires up
  2. ;(if it exists in the current subdirectory).
  3. ;
  4. ;David Kirschbaum, Toad Hall
  5. ;kirsch@braggvax.ARPA
  6. ;
  7. ;I set certain key macros that I commonly use:
  8. set key \315 ftp simtel20.arpa\13    ;F1
  9. set key \316 anonymous\13        ;F2
  10. set key \317 guest\13            ;F3
  11. ;The next one is "incomplete" (no CR) so I can continue with kbd input
  12. ;as desired:
  13. set key \318 cd pd:<pc-blue.vol        ;F4
  14. set key \319 atdp1111111\13        ;F5 Handy for dialing a Hayes-compatible
  15. set key \320 at s0=1\13            ;F6 Set my modem to autoanswer 1st ring
  16. set key \321 at h0\13            ;F7 Tell my modem to hang up
  17. set key \322 kirsch\13            ;For logging on, whatever.
  18. set key \333 w8sdz@simtel20.arpa    ;Alt-F10 part of a mailing address
  19. ;Now I set some comm parameters:
  20. set port 2                ;I have an internal modem on COM2
  21. set baud 1200                ;My common baud rate for my Unix host
  22. set parity none                ;No parity for file transfers
  23. set block 3                ;Highest level error trapping
  24. set send packet-length 94        ;Just to be sure
  25. set term wrap on            ;Term wrap makes log files neater
  26. set eof NoCtrl-Z            ;No Ctrl-Z's at file end.
  27. ;
  28. ;Now for some macro commands.  DSZ ymodem and zmodem receive modes get their
  29. ;file name from the sending (remote) system.
  30. ;I'm also telling DSZ to use Port 2.
  31. ;All I have to do to receive a file zmodem is to tell my remote host to
  32. ;send the file ("sz foob.bar"), hit a Ctrl-] (right bracket) to escape
  33. ;out of Kermit's "connect" mode back to the Kermit command line,
  34. ;and then enter "rcv_z".  Kermit and DSZ do the rest.
  35. define rcv_y run dsz 2 rb -y
  36. define rcv_z run dsz 2 rz
  37.