home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #27 / NN_1992_27.iso / spool / comp / sys / 3b1 / 3854 < prev    next >
Encoding:
Internet Message Format  |  1992-11-17  |  1.5 KB

  1. Path: sparky!uunet!ukma!netsys!agate!ames!elroy.jpl.nasa.gov!nntp-server.caltech.edu!andy
  2. From: andy@cs.caltech.edu (Andy Fyfe)
  3. Newsgroups: comp.sys.3b1
  4. Subject: Re: kermit and onboard modem
  5. Date: 17 Nov 1992 20:21:42 GMT
  6. Organization: California Institute of Technology
  7. Lines: 36
  8. Message-ID: <1ebk8mINN2f4@gap.caltech.edu>
  9. References: <1ebebsINN717@matt.ksu.ksu.edu>
  10. NNTP-Posting-Host: kodiak.cs.caltech.edu
  11.  
  12. In article <1ebebsINN717@matt.ksu.ksu.edu> electro@matt.ksu.ksu.edu (Eric L Patterson) writes:
  13. >Does anyone know how to use the onboard modem with kermit on a 3b1?
  14.  
  15. If you're using a current version of kermit, the following will work.
  16. This is the file ftp.cs.caltech.edu:pub/3b1/sample.kermrc.  It defines
  17. a macro "call" -- you can then say "call 123-4567".  The sample.kermrc
  18. gets installed as .kermrc in your home directory.
  19.  
  20. Andy Fyfe                    andy@cs.caltech.edu
  21.  
  22. set file display fullscreen
  23. set attributes date on
  24. set block-check 3
  25. set receive packet-length 512
  26. set window 5
  27. # We add ^O (\15) to the prompt just in case we got switched to the
  28. # alternate character set (using ^N) from line noise.
  29. set prompt {\15\v(host)> }
  30.  
  31. # in the dial command we use t for tone.  use p if you want pulse dialing.
  32. def dial_int -
  33.     set modem att7300, -
  34.     set line /dev/ph1, -
  35.     set speed 1200, -
  36.     dial t\%1, -
  37.     if success connect
  38. def dial_ext -
  39.     set modem hayes, -
  40.     set line /dev/tty000, -
  41.     set speed 2400, -
  42.     dial \%1, -
  43.     if success connect
  44. def call -
  45.     dial_int \%1
  46. def example -
  47.     call 123-4567
  48.