home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / unix / aux / 3451 < prev    next >
Encoding:
Internet Message Format  |  1992-09-13  |  1.7 KB

  1. Path: sparky!uunet!usc!wupost!uwm.edu!linac!att!bu.edu!transfer!redondo.sw.stratus.com!dswartz
  2. From: dswartz@redondo.sw.stratus.com (Dan Swartzendruber)
  3. Newsgroups: comp.unix.aux
  4. Subject: Slip configuration for A/UX
  5. Message-ID: <6335@transfer.stratus.com>
  6. Date: 14 Sep 92 02:01:53 GMT
  7. Sender: usenet@transfer.stratus.com
  8. Organization: Stratus Computer, Software Engineering
  9. Lines: 50
  10.  
  11. Since my last posting on this subject, I've received e-mail from at least
  12. six people, wanting me to either mail or post my scripts/configs.  So here
  13. they are:
  14.  
  15. ------------------------------------------------------------------------------
  16.  
  17. /etc/NETADDRS
  18.  
  19. 0    134.111.104.17    134.111.104.255    0xffffff00
  20.  
  21. ------------------------------------------------------------------------------
  22.  
  23. /etc/hosts
  24.  
  25. 127.0.0.1 riva.uucp riva loop localhost
  26. 134.111.104.17 riva.hqsl.stratus.com riva-slip
  27. 134.111.104.200 nbii.hqsl.stratus.com nbii
  28.  
  29. ------------------------------------------------------------------------------
  30.  
  31. /etc/resolv.conf
  32.  
  33. nameserver    134.111.18.9
  34. domain        sw.stratus.com
  35.  
  36. ------------------------------------------------------------------------------
  37.  
  38. /usr/local/bin/slipdown
  39.  
  40. #!/bin/sh
  41. kill `ps -ef | grep slatt | grep -v grep | cut -c9-16`
  42. route delete net default nbii
  43.  
  44. ------------------------------------------------------------------------------
  45.  
  46. /usr/local/bin/slipup
  47.  
  48. cu nbii
  49. slattconf +c /dev/tty0 19200 riva-slip nbii netmask 0xffffff00
  50. route add net default nbii 0
  51.  
  52. ------------------------------------------------------------------------------
  53.  
  54. I had previously been using the ifconfig & slattach pair (in that order!),
  55. but as someone pointed out in email, slattconf should work as well.  I tried
  56. it and it does, so the slipup script reflects that.
  57.  
  58. -- 
  59.  
  60. Dan S.
  61.