home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / protocol / appletal / 3909 < prev    next >
Encoding:
Text File  |  1992-11-14  |  10.0 KB  |  238 lines

  1. Newsgroups: comp.protocols.appletalk
  2. Path: sparky!uunet!charon.amdahl.com!pacbell.com!ames!saimiri.primate.wisc.edu!caen!uwm.edu!src.honeywell.com!The-Star.honeywell.com!umn.edu!proton.med.umn.edu!milius
  3. From: milius@proton.med.umn.edu (Bob Milius (BMEC))
  4. Subject: SGI, CAP, and aufs: It USED to work!
  5. Message-ID: <1992Nov13.203501.5525@news2.cis.umn.edu>
  6. Sender: news@news2.cis.umn.edu (Usenet News Administration)
  7. Nntp-Posting-Host: proton.med.umn.edu
  8. Organization: University of Minnesota
  9. References: <1992Nov12.082843.4052@memstvx1.memst.edu> <01GR0SN3FMXU00317L@ACAD.FANDM.EDU> <19921113124822.Roger.Wilfong@umich.edu>
  10. Date: Fri, 13 Nov 1992 20:35:01 GMT
  11. Lines: 225
  12.  
  13. Help!
  14.  
  15. We are running CAP 6.0 pl126 on our SGI personal irises (30TG).
  16. Since the SGIs won't run the ethertalk version (as far as I know), 
  17. we are using the IPTalk numbers and the /etc/atalk.local file. 
  18. Everything was running fine up to about 3 weeks ago when I went out of 
  19. town (around Oct16). When I returned, on Nov2, I find that the aufs server 
  20. running on the SGI is not working properly (eg I don't see it via the Macs 
  21. Chooser). lpr works fine to print from the SGI to the Laserwriter 
  22. on our AppleTalk zone. I don't see the IPGATEWAY, snitch, nor the aufs server
  23. entries supposedly mounted from the SGI using atlook. Atistest says okay 
  24. and atis dump shows the aufs server, snitch entry, and atis test:testing@*
  25. entries, but I don't see them via atlook!
  26.  
  27. I was told by networking services that the FastPath
  28. boxes were altered so that the subnet mask is now 255.255.255.0 instead of
  29. 0.0.0.0. They suggested that I check the subnet mask of our Irises, but
  30. it seems to be okay: 
  31.  
  32. proton# ifconfig ec0
  33. ec0: flags=c63<UP,BROADCAST,NOTRAILERS,RUNNING,FILTMULTI,MULTICAST>
  34.         inet 128.101.80.2 netmask 0xffffff00 broadcast 128.101.80.0
  35.  
  36. They asked me to check the netstat, which I did:
  37.  
  38. proton% netstat -n -r
  39. Routing tables
  40. Destination      Gateway            Flags    MTU    RTT RTTvar    Use Interface
  41. 127.0.0.1        127.0.0.1          UH         0      0      0  20609  lo0
  42. 128.101.80.2     127.0.0.1          UH         0      0      0    542  lo0
  43. default          128.101.80.254     UG         0      0      0 505677  ec0
  44. 128.101.80       128.101.80.2       U          0  0.438  0.375 468396  ec0
  45.  
  46. They said this was wrong, and told me to route delete 128.101.80.1 127.0.0.1
  47. which I did and now get the following with netstat:
  48.  
  49. proton# netstat -n -r
  50. Routing tables
  51. Destination      Gateway            Flags    MTU    RTT RTTvar    Use Interface
  52. 127.0.0.1        127.0.0.1          UH         0      0      0  22948  lo0
  53. default          128.101.80.254     UG         0      0      0 591322  ec0
  54. 128.101.80       128.101.80.2       U          0  0.438  0.375 568181  ec0
  55.  
  56. None of this helped!
  57.  
  58. The following are the files I am using as well output from atlook, atistest,
  59. and atis dump (probabably more than you want to know):
  60.  
  61. --- my fastpath values -------------------
  62. IPAddress:      128.101.80.200
  63. What:           fastpath4
  64. IPTalk:         46280 Biomed Eng Ctr
  65. LocalTalk:      32241 Biomed Eng Ctr
  66. EtherTalk:      40090 EtherTalk(hs fiber)
  67.  
  68. proton# cat /etc/atalk.local
  69. #mynet     mynode     myzone
  70. 180.200    2          "Biomed Eng Ctr"
  71. #bridgenet bridgenode bridgeIP
  72. 180.200    200        128.101.80.200
  73.  
  74.  
  75. proton# cat /etc/services
  76. (...stuff deleted...)
  77. #
  78. # CAP stuff
  79. #
  80. at-rtmp         201/udp
  81. at-nbp          202/udp
  82. at-echo         204/udp
  83. at-zis          206/udp
  84. #
  85. (...stuff deleted...)
  86.  
  87. proton# cat /etc/init.d/cap
  88. #! /bin/sh
  89. #
  90. # Start or stop the CAP servers
  91.  
  92. case "$1" in
  93.   'start')
  94.         /etc/killall aufs
  95.         /etc/killall snitch
  96.         /etc/killall atis
  97.  
  98.         if test -x /usr/local/cap/atis; then
  99.             /usr/local/cap/atis & (echo ' atis') > /dev/console
  100.             sleep 12
  101.         fi
  102. #
  103.  
  104.         if test -x /usr/local/cap/snitch; then
  105.             /usr/local/cap/snitch -S -n "proton.med.umn.edu" -t SGI_IRIX & (echo ' snitch') > /dev/console
  106.         fi
  107. #
  108.         if test -x /usr/local/cap/aufs; then
  109.             /usr/local/cap/aufs -U 20 -l /usr/tmp/aufs.log -n "Proton's AUFS Server" & (echo ' aufs') > /dev/console
  110.         fi
  111.         ;;
  112.  
  113.   'stop')
  114.         /etc/killall aufs
  115.         /etc/killall snitch
  116.         /etc/killall atis
  117.         ;;
  118.  
  119.   *)
  120.         echo "usage: $0 {start|stop}"
  121.         ;;
  122. esac
  123.  
  124. proton# /etc/init.d/cap start
  125.  atis
  126. abInit: [ddp: 180.200, 2] starting
  127. 13:03:35 11/13/92  Reply num max for lkup reply is 5 (based on 104)
  128.  snitch
  129.  aufs
  130. Apple Unix File Server (Proton's AUFS Server:AFPServer@*) starting
  131.  
  132. proton# /usr/local/cap/atlook   
  133. abInit: [ddp: 180.200, 2] starting
  134. Looking for =:=@* ...
  135.   1 - Empower\252:01015215@*                   [Net:125.241 Node: 77 Skt:251]
  136.   2 - Empower\252:01017736@*                   [Net:125.241 Node: 22 Skt:252]
  137.   3 - Biomed Engineering:AFPServer@*           [Net:125.241 Node:224 Skt:253]
  138.   4 - bmec:BroadCast@*                         [Net:125.241 Node: 20 Skt:253]
  139.   5 - :Empower\250@*                           [Net:125.241 Node: 77 Skt:250]
  140.   6 - :Empower\250@*                           [Net:125.241 Node: 22 Skt:251]
  141.   7 - 09-12279:Farallon Extended Management@*  [Net:125.241 Node: 26 Skt:254]
  142.   8 - 128.101.80.200:FastPath@*                [Net:125.241 Node:159 Skt: 75]
  143.   9 - 128.101.80.200:IPADDRESS@*               [Net:125.241 Node:159 Skt: 72]
  144.  10 - 128.101.80.201:IPADDRESS@*               [Net:125.241 Node:224 Skt: 72]
  145.  11 - 128.101.80.217:IPADDRESS@*               [Net:125.241 Node:118 Skt: 72]
  146.  12 - 128.101.80.218:IPADDRESS@*               [Net:125.241 Node: 77 Skt: 72]
  147.  13 - 128.101.80.220:IPADDRESS@*               [Net:125.241 Node: 22 Skt: 72]
  148.  14 - Linus :LaserWriter@*                     [Net:125.241 Node:182 Skt:169]
  149.  15 - <Unnamed>:Macintosh Classic II@*         [Net:125.241 Node: 22 Skt:253]
  150.  16 - <Unnamed>:Macintosh IIcx@*               [Net:125.241 Node: 77 Skt:253]
  151.  17 - bill hoffman:Macintosh IIcx@*            [Net:125.241 Node:118 Skt:253]
  152.  18 - 128.101.80.200:SNMP@*                    [Net:125.241 Node:159 Skt: 83]
  153.  19 - 128.101.80.200:SNMP Agent@*              [Net:125.241 Node:159 Skt:  8]
  154.  20 - Serial Number 09-12279:StarController 377@* [Net:125.241 Node: 26 Skt:254]
  155.  21 - Mac51962902:Top2Serial@*                 [Net:125.241 Node: 20 Skt:251]
  156.  22 - Brenda:Top2Station@*                     [Net:125.241 Node: 20 Skt:251]
  157.  
  158. proton# /usr/local/cap/atistest
  159. CAP distribution 6.00 using UDP encapsulation, July 1992
  160. Copyright (c) 1986,1987,1988 by The Trustees of Columbia University in the City of New York
  161.  
  162. abInit: [ddp: 180.200, 2] starting
  163. debugging NBP
  164. Registering "atis test:testing@*"
  165. NBP SndNBP: sending
  166. NBP nbp_timeout: 4 tick timeout on 2147468988, 3 remain
  167. NBP SndNBP: sending
  168. NBP nbp_timeout: 4 tick timeout on 2147468988, 2 remain
  169. NBP SndNBP: sending
  170. NBP nbp_timeout: 4 tick timeout on 2147468988, 1 remain
  171. NBP SndNBP: sending
  172. NBP nbp_timeout: 4 tick timeout on 2147468988, 0 remain
  173. NBP SndNBP: sending
  174. NBP status done: found 2147468988
  175. Okay
  176.  
  177. proton# /usr/local/cap/atlook                           
  178. abInit: [ddp: 180.200, 2] starting
  179. Looking for =:=@* ...
  180.   1 - Empower\252:01015215@*                   [Net:125.241 Node: 77 Skt:251]
  181.   2 - Empower\252:01017736@*                   [Net:125.241 Node: 22 Skt:252]
  182.   3 - Biomed Engineering:AFPServer@*           [Net:125.241 Node:224 Skt:253]
  183.   4 - bmec:BroadCast@*                         [Net:125.241 Node: 20 Skt:253]
  184.   5 - Rainin DeskWriter:DeskWriter@*           [Net:125.241 Node:128 Skt:131]
  185.   6 - :Empower\250@*                           [Net:125.241 Node: 22 Skt:251]
  186.   7 - :Empower\250@*                           [Net:125.241 Node: 77 Skt:250]
  187.   8 - 09-12279:Farallon Extended Management@*  [Net:125.241 Node: 26 Skt:254]
  188.   9 - 128.101.80.200:FastPath@*                [Net:125.241 Node:159 Skt: 75]
  189.  10 - 128.101.80.200:IPADDRESS@*               [Net:125.241 Node:159 Skt: 72]
  190.  11 - 128.101.80.201:IPADDRESS@*               [Net:125.241 Node:224 Skt: 72]
  191.  12 - 128.101.80.217:IPADDRESS@*               [Net:125.241 Node:118 Skt: 72]
  192.  13 - 128.101.80.218:IPADDRESS@*               [Net:125.241 Node: 77 Skt: 72]
  193.  14 - 128.101.80.220:IPADDRESS@*               [Net:125.241 Node: 22 Skt: 72]
  194.  15 - <Unnamed>:Macintosh Classic II@*         [Net:125.241 Node: 22 Skt:253]
  195.  16 - <Unnamed>:Macintosh IIcx@*               [Net:125.241 Node: 77 Skt:253]
  196.  17 - bill hoffman:Macintosh IIcx@*            [Net:125.241 Node:118 Skt:253]
  197.  18 - B Mac:Macintosh Plus@*                   [Net:125.241 Node: 29 Skt:253]
  198.  19 - 128.101.80.200:SNMP@*                    [Net:125.241 Node:159 Skt: 83]
  199.  20 - 128.101.80.200:SNMP Agent@*              [Net:125.241 Node:159 Skt:  8]
  200.  21 - Serial Number 09-12279:StarController 377@* [Net:125.241 Node: 26 Skt:254]
  201.  22 - Mac220017605:Top2Serial@*                [Net:125.241 Node: 29 Skt:251]
  202.  23 - Mac51962902:Top2Serial@*                 [Net:125.241 Node: 20 Skt:251]
  203.  24 - B Mac:Top2Server@*                       [Net:125.241 Node: 29 Skt:251]
  204.  25 - B Mac:Top2Station@*                      [Net:125.241 Node: 29 Skt:251]
  205.  26 - Brenda:Top2Station@*                     [Net:125.241 Node: 20 Skt:251]
  206.  27 - B Mac:Workstation@*                      [Net:125.241 Node: 29 Skt:  4]
  207.  
  208. proton# /usr/local/cap/atis dump
  209. 13:06:31 11/13/92  Sent dump nis database signal to daemon[6490]
  210.  
  211. proton# cat /usr/tmp/nis.db
  212. # Dump of NIS name table at Fri Nov 13 13:06:31 1992
  213. # Zone is fixed as Biomed Eng Ctr (This is '*' - my zone)
  214. # Format: ddp net, node, skt, and nbp enumerator followed by
  215. # obj, type, zone length enclosed in !'s and then the name
  216. # 3 entries (30 max)
  217.  
  218. net=180.200, node=2, skt=130, enum=0, !18!8!1! ? proton.med.umn.edu:SGI_IRIX@*
  219. net=180.200, node=2, skt=132, enum=1, !20!9!1! ? Proton's AUFS Server:AFPServer@*
  220. net=180.200, node=2, skt=134, enum=2, !9!7!1! ? atis test:testing@*
  221.  
  222. *************************************************************************
  223.  
  224. I should see these three entries when I run atlook from proton,
  225. the first one created by snitch, the second by aufs, and the last by atistest.
  226.  
  227. I don't see any of them Biomed Eng Ctr.
  228.  
  229. Can somebody give me a clue?
  230.  
  231. thanks,
  232. bob
  233.  
  234.  
  235. -- 
  236. --------------------------------------------------------------------------
  237. Bob Milius                                        milius@lenti.med.umn.edu
  238.