home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!usc!wupost!uwm.edu!linac!att!bu.edu!transfer!redondo.sw.stratus.com!dswartz
- From: dswartz@redondo.sw.stratus.com (Dan Swartzendruber)
- Newsgroups: comp.unix.aux
- Subject: Slip configuration for A/UX
- Message-ID: <6335@transfer.stratus.com>
- Date: 14 Sep 92 02:01:53 GMT
- Sender: usenet@transfer.stratus.com
- Organization: Stratus Computer, Software Engineering
- Lines: 50
-
- Since my last posting on this subject, I've received e-mail from at least
- six people, wanting me to either mail or post my scripts/configs. So here
- they are:
-
- ------------------------------------------------------------------------------
-
- /etc/NETADDRS
-
- 0 134.111.104.17 134.111.104.255 0xffffff00
-
- ------------------------------------------------------------------------------
-
- /etc/hosts
-
- 127.0.0.1 riva.uucp riva loop localhost
- 134.111.104.17 riva.hqsl.stratus.com riva-slip
- 134.111.104.200 nbii.hqsl.stratus.com nbii
-
- ------------------------------------------------------------------------------
-
- /etc/resolv.conf
-
- nameserver 134.111.18.9
- domain sw.stratus.com
-
- ------------------------------------------------------------------------------
-
- /usr/local/bin/slipdown
-
- #!/bin/sh
- kill `ps -ef | grep slatt | grep -v grep | cut -c9-16`
- route delete net default nbii
-
- ------------------------------------------------------------------------------
-
- /usr/local/bin/slipup
-
- cu nbii
- slattconf +c /dev/tty0 19200 riva-slip nbii netmask 0xffffff00
- route add net default nbii 0
-
- ------------------------------------------------------------------------------
-
- I had previously been using the ifconfig & slattach pair (in that order!),
- but as someone pointed out in email, slattconf should work as well. I tried
- it and it does, so the slipup script reflects that.
-
- --
-
- Dan S.
-