fix more links
[openafs-wiki.git] / FurtherReading / service-spec.ez.ps
1 %!PS-Adobe-3.0
2 %%Creator: psdit
3 %%For: unix6.andrew.cmu.edu:cfe (Craig F. Everhart)
4 %%Title: stdin (ditroff)
5 %%CreationDate: Wed Aug  9 11:23:55 1995
6 %%DocumentNeededResources: (atend)
7 %%DocumentSuppliedResources: DIThacks
8 %%Pages: (atend)
9 %%EndComments
10 % psdit.pro -- prolog for ditroff translator
11 % Copyright (c) 1985,1987,1992 Adobe Systems Incorporated. All Rights
12 % Reserved.  
13 % GOVERNMENT END USERS: See Notice file in TranScript library directory
14 % -- probably /usr/lib/ps/Notice
15 % RCS: $Header: /disks/hobo/vp6/snichols/rel4.0/src/transcript/lib/RCS/psdit.pro,v 4.0 1992/08/21 15:38:20 snichols Exp $
16 /$DITroff 180 dict def $DITroff begin
17
18 % Psfig additions
19 /DocumentInitState [ matrix currentmatrix currentlinewidth currentlinecap
20 currentlinejoin currentdash currentgray currentmiterlimit ] cvx def
21
22 /startFig {
23         /SavedState save def
24         userdict maxlength dict begin
25         currentpoint transform
26
27         DocumentInitState setmiterlimit setgray setdash setlinejoin setlinecap
28                 setlinewidth setmatrix
29
30         itransform moveto
31
32         /ury exch def
33         /urx exch def
34         /lly exch def
35         /llx exch def
36         /y exch 72 mul resolution div def
37         /x exch 72 mul resolution div def
38         
39         currentpoint /cy exch def /cx exch def
40
41         /sx x urx llx sub div def       % scaling for x
42         /sy y ury lly sub div def       % scaling for y
43
44         sx sy scale                     % scale by (sx,sy)
45
46         cx sx div llx sub
47         cy sy div ury sub translate
48         
49         /DefFigCTM matrix currentmatrix def
50
51         /initmatrix {
52                 DefFigCTM setmatrix
53         } def
54         /defaultmatrix {
55                 DefFigCTM exch copy
56         } def
57
58         /initgraphics {
59                 DocumentInitState setmiterlimit setgray setdash 
60                         setlinejoin setlinecap setlinewidth setmatrix
61                 DefFigCTM setmatrix
62         } def
63
64         /showpage {
65                 initgraphics
66         } def
67
68 } def
69 % Args are llx lly urx ury (in figure coordinates)
70 /clipFig {
71         currentpoint 6 2 roll
72         newpath 4 copy
73         4 2 roll moveto
74         6 -1 roll exch lineto
75         exch lineto
76         exch lineto
77         closepath clip
78         newpath
79         moveto
80 } def
81 % doclip, if called, will always be just after a `startfig'
82 /doclip { llx lly urx ury clipFig } def
83 /endFig {
84         end SavedState restore
85 } def
86 /globalstart {
87         % Push details about the enviornment on the stack.
88         fontnum fontsize fontslant fontheight firstpage 
89         mh my resolution slotno currentpoint 
90         pagesave restore gsave 
91 } def
92 /globalend {
93         grestore moveto
94         /slotno exch def /resolution exch def /my exch def
95         /mh exch def /firstpage exch def /fontheight exch def
96         /fontslant exch def /fontsize exch def /fontnum exch def
97         F
98         /pagesave save def
99 } def
100
101 %% end XMOD additions
102 /fontnum 1 def /fontsize 10 def /fontheight 10 def /fontslant 0 def
103 /xi {/fontnum 1 def /fontsize 10 def /fontheight 10 def /fontslant 0 def F
104   }def
105 /ps {/pagesave save def 72 mul 0 exch translate 72 resolution div dup neg
106       scale 0 0 moveto } def
107 /PB{save /psv exch def currentpoint translate
108   resolution 72 div dup neg scale 0 0 moveto}def
109 /PE{psv restore}def
110 /m1 matrix def /m2 matrix def /m3 matrix def /oldmat matrix def
111 /tan{dup sin exch cos div}bind def
112 /point{resolution 72 div mul}bind def
113 /dround {transform round exch round exch itransform}bind def
114 /xT{/devname exch def}def
115 /xr{/mh exch def /my exch def /resolution exch def}def
116 /xp{}def
117 /xs{docsave restore end}def
118 /xt{}def
119 /xf{/fontname exch def /slotno exch def fontnames slotno get fontname eq not
120  {fonts slotno fontname findfont put fontnames slotno fontname put}if}def
121 /xH{/fontheight exch def F}bind def
122 /xS{/fontslant exch def F}bind def
123 /s{/fontsize exch def /fontheight fontsize def F}bind def
124 /f{/fontnum exch def F}bind def
125 /F{fontheight 0 le {/fontheight fontsize def}if
126    fonts fontnum get fontsize point 0 0 fontheight point neg 0 0 m1 astore
127    fontslant 0 ne{1 0 fontslant neg tan 1 0 0 m2 astore m3 concatmatrix}if
128    makefont setfont .04 fontsize point mul 0 dround pop setlinewidth}bind def
129 /X{exch currentpoint exch pop moveto show}bind def
130 /N{3 1 roll moveto show}bind def
131 /Y{exch currentpoint pop exch moveto show}bind def
132 /S /show load def
133 /ditpush{}def/ditpop{}def
134 /AX{3 -1 roll currentpoint exch pop moveto 0 exch ashow}bind def
135 /AN{4 2 roll moveto 0 exch ashow}bind def
136 /AY{3 -1 roll currentpoint pop exch moveto 0 exch ashow}bind def
137 /AS{0 exch ashow}bind def
138 /MX{currentpoint exch pop moveto}bind def
139 /MY{currentpoint pop exch moveto}bind def
140 /MXY /moveto load def
141 /cb{pop}def     % action on unknown char -- nothing for now
142 /n{}def/w{}def
143 /p{pop pagesave restore showpage}def
144 /abspoint{currentpoint exch pop add exch currentpoint pop add exch}def
145 /dstroke{currentpoint stroke moveto}bind def
146 /Dl{2 copy gsave rlineto stroke grestore rmoveto}bind def
147 /arcellipse{oldmat currentmatrix pop
148  currentpoint translate 1 diamv diamh div scale /rad diamh 2 div def
149  rad 0 rad -180 180 arc oldmat setmatrix}def
150 /Dc{gsave dup /diamv exch def /diamh exch def arcellipse dstroke 
151     grestore diamh 0 rmoveto}def
152 /De{gsave /diamv exch def /diamh exch def arcellipse dstroke
153     grestore diamh 0 rmoveto}def
154 /Da{currentpoint /by exch def /bx exch def /fy exch def /fx exch def
155    /cy exch def /cx exch def /rad cx cx mul cy cy mul add sqrt def
156    /ang1 cy neg cx neg atan def /ang2 fy fx atan def cx bx add cy by add
157    2 copy rad ang1 ang2 arcn stroke exch fx add exch fy add moveto}def
158 /Barray 200 array def % 200 values in a wiggle
159 /D~{mark}def
160 /D~~{counttomark Barray exch 0 exch getinterval astore /Bcontrol exch def pop
161  /Blen Bcontrol length def Blen 4 ge Blen 2 mod 0 eq and
162  {Bcontrol 0 get Bcontrol 1 get abspoint /Ycont exch def /Xcont exch def
163   Bcontrol 0 2 copy get 2 mul put Bcontrol 1 2 copy get 2 mul put
164   Bcontrol Blen 2 sub 2 copy get 2 mul put
165   Bcontrol Blen 1 sub 2 copy get 2 mul put
166   /Ybi /Xbi currentpoint 3 1 roll def def 0 2 Blen 4 sub
167   {/i exch def
168    Bcontrol i get 3 div Bcontrol i 1 add get 3 div
169    Bcontrol i get 3 mul Bcontrol i 2 add get add 6 div
170    Bcontrol i 1 add get 3 mul Bcontrol i 3 add get add 6 div
171    /Xbi Xcont Bcontrol i 2 add get 2 div add def
172    /Ybi Ycont Bcontrol i 3 add get 2 div add def
173    /Xcont Xcont Bcontrol i 2 add get add def
174    /Ycont Ycont Bcontrol i 3 add get add def
175    Xbi currentpoint pop sub Ybi currentpoint exch pop sub rcurveto
176   }for dstroke}if}def
177 end
178 /ditstart{$DITroff begin
179  /nfonts 60 def                 % NFONTS makedev/ditroff dependent!
180  /fonts[nfonts{0}repeat]def
181  /fontnames[nfonts{()}repeat]def
182 /docsave save def
183 }def
184
185 % character outcalls
186 /oc {/pswid exch def /cc exch def /name exch def
187    /ditwid pswid fontsize mul resolution mul 72000 div def
188    /ditsiz fontsize resolution mul 72 div def
189    ocprocs name known{ocprocs name get exec}{name cb}
190    ifelse}def
191 /fractm [.65 0 0 .6 0 0] def
192 /fraction
193  {/fden exch def /fnum exch def gsave /cf currentfont def
194   cf fractm makefont setfont 0 .3 dm 2 copy neg rmoveto
195   fnum show rmoveto currentfont cf setfont(\244)show setfont fden show 
196   grestore ditwid 0 rmoveto} def
197 /oce {grestore ditwid 0 rmoveto}def
198 /dm {ditsiz mul}def
199 /ocprocs 50 dict def ocprocs begin
200 (14){(1)(4)fraction}def
201 (12){(1)(2)fraction}def
202 (34){(3)(4)fraction}def
203 (13){(1)(3)fraction}def
204 (23){(2)(3)fraction}def
205 (18){(1)(8)fraction}def
206 (38){(3)(8)fraction}def
207 (58){(5)(8)fraction}def
208 (78){(7)(8)fraction}def
209 (sr){gsave .05 dm .16 dm rmoveto(\326)show oce}def
210 (is){gsave 0 .15 dm rmoveto(\362)show oce}def
211 (->){gsave 0 .02 dm rmoveto(\256)show oce}def
212 (<-){gsave 0 .02 dm rmoveto(\254)show oce}def
213 (==){gsave 0 .05 dm rmoveto(\272)show oce}def
214 end
215 %%BeginResource: font DIThacks
216 % DIThacks fonts for some special chars
217 50 dict dup begin
218 /FontType 3 def
219 /FontName /DIThacks def
220 /FontMatrix [.001 0.0 0.0 .001 0.0 0.0] def
221 /FontBBox [-220 -280 900 900] def% a lie but ...
222 /Encoding 256 array def
223 0 1 255{Encoding exch /.notdef put}for
224 Encoding
225  dup 8#040/space put %space
226  dup 8#110/rc put %right ceil
227  dup 8#111/lt put %left  top curl
228  dup 8#112/bv put %bold vert
229  dup 8#113/lk put %left  mid curl
230  dup 8#114/lb put %left  bot curl
231  dup 8#115/rt put %right top curl
232  dup 8#116/rk put %right mid curl
233  dup 8#117/rb put %right bot curl
234  dup 8#120/rf put %right floor
235  dup 8#121/lf put %left  floor
236  dup 8#122/lc put %left  ceil
237  dup 8#140/sq put %square
238  dup 8#141/bx put %box
239  dup 8#142/ci put %circle
240  dup 8#143/br put %box rule
241  dup 8#144/rn put %root extender
242  dup 8#145/vr put %vertical rule
243  dup 8#146/ob put %outline bullet
244  dup 8#147/bu put %bullet
245  dup 8#150/ru put %rule
246  dup 8#151/ul put %underline
247  pop
248 /DITfd 100 dict def
249 /BuildChar{0 begin
250  /cc exch def /fd exch def
251  /charname fd /Encoding get cc get def
252  /charwid fd /Metrics get charname get def
253  /charproc fd /CharProcs get charname get def
254  charwid 0 fd /FontBBox get aload pop setcachedevice
255  40 setlinewidth
256  newpath 0 0 moveto gsave charproc grestore
257  end}def
258 /BuildChar load 0 DITfd put
259 %/UniqueID 5 def
260 /CharProcs 50 dict def
261 CharProcs begin
262 /space{}def
263 /.notdef{}def
264 /ru{500 0 rls}def
265 /rn{0 750 moveto 500 0 rls}def
266 /vr{20 800 moveto 0 -770 rls}def
267 /bv{20 800 moveto 0 -1000 rls}def
268 /br{20 770 moveto 0 -1040 rls}def
269 /ul{0 -250 moveto 500 0 rls}def
270 /ob{200 250 rmoveto currentpoint newpath 200 0 360 arc closepath stroke}def
271 /bu{200 250 rmoveto currentpoint newpath 200 0 360 arc closepath fill}def
272 /sq{80 0 rmoveto currentpoint dround newpath moveto
273     640 0 rlineto 0 640 rlineto -640 0 rlineto closepath stroke}def
274 /bx{80 0 rmoveto currentpoint dround newpath moveto
275     640 0 rlineto 0 640 rlineto -640 0 rlineto closepath fill}def
276 /ci{355 333 rmoveto currentpoint newpath 333 0 360 arc
277     50 setlinewidth stroke}def
278
279 /lt{20 -200 moveto 0 550 rlineto currx 800 2cx s4 add exch s4 a4p stroke}def
280 /lb{20 800 moveto 0 -550 rlineto currx -200 2cx s4 add exch s4 a4p stroke}def
281 /rt{20 -200 moveto 0 550 rlineto currx 800 2cx s4 sub exch s4 a4p stroke}def
282 /rb{20 800 moveto 0 -500 rlineto currx -200 2cx s4 sub exch s4 a4p stroke}def
283 /lk{20 800 moveto 20 300 -280 300 s4 arcto pop pop 1000 sub
284     currentpoint stroke moveto
285     20 300 4 2 roll s4 a4p 20 -200 lineto stroke}def
286 /rk{20 800 moveto 20 300 320 300 s4 arcto pop pop 1000 sub
287     currentpoint stroke moveto
288     20 300 4 2 roll s4 a4p 20 -200 lineto stroke}def
289 /lf{20 800 moveto 0 -1000 rlineto s4 0 rls}def
290 /rf{20 800 moveto 0 -1000 rlineto s4 neg 0 rls}def
291 /lc{20 -200 moveto 0 1000 rlineto s4 0 rls}def
292 /rc{20 -200 moveto 0 1000 rlineto s4 neg 0 rls}def
293 end
294
295 /Metrics 50 dict def Metrics begin
296 /.notdef 0 def
297 /space 500 def
298 /ru 500 def
299 /br 0 def
300 /lt 250 def
301 /lb 250 def
302 /rt 250 def
303 /rb 250 def
304 /lk 250 def
305 /rk 250 def
306 /rc 250 def
307 /lc 250 def
308 /rf 250 def
309 /lf 250 def
310 /bv 250 def
311 /ob 350 def
312 /bu 350 def
313 /ci 750 def
314 /bx 750 def
315 /sq 750 def
316 /rn 500 def
317 /ul 500 def
318 /vr 0 def
319 end
320
321 DITfd begin
322 /s2 500 def /s4 250 def /s3 333 def
323 /a4p{arcto pop pop pop pop}def
324 /2cx{2 copy exch}def
325 /rls{rlineto stroke}def
326 /currx{currentpoint pop}def
327 /dround{transform round exch round exch itransform} def
328 end
329 end
330 /DIThacks exch definefont pop
331 %%EndResource 
332 %%EndProlog
333 %%BeginSetup
334 ditstart
335 (psc)xT
336 576 1 1 xr
337 %%IncludeResource: font Times-Roman
338 1(Times-Roman)xf 1 f
339 %%IncludeResource: font Times-Italic
340 2(Times-Italic)xf 2 f
341 %%IncludeResource: font Times-Bold
342 3(Times-Bold)xf 3 f
343 %%IncludeResource: font Times-BoldItalic
344 4(Times-BoldItalic)xf 4 f
345 %%IncludeResource: font Helvetica
346 5(Helvetica)xf 5 f
347 %%IncludeResource: font Helvetica-Oblique
348 6(Helvetica-Oblique)xf 6 f
349 %%IncludeResource: font Helvetica-Bold
350 7(Helvetica-Bold)xf 7 f
351 %%IncludeResource: font Helvetica-BoldOblique
352 8(Helvetica-BoldOblique)xf 8 f
353 %%IncludeResource: font Courier
354 9(Courier)xf 9 f
355 %%IncludeResource: font Courier-Oblique
356 10(Courier-Oblique)xf 10 f
357 %%IncludeResource: font Courier-Bold
358 11(Courier-Bold)xf 11 f
359 %%IncludeResource: font Courier-BoldOblique
360 12(Courier-BoldOblique)xf 12 f
361 %%IncludeResource: font Symbol
362 13(Symbol)xf 13 f
363 14(DIThacks)xf 14 f
364 %%IncludeResource: font Courier
365 15(Courier)xf 15 f
366 10 s
367 1 f
368 %%IncludeFeature: *PageSize Letter
369 xi
370 %%EndSetup
371
372 %%Page: 1 1
373 11.00 ps
374 10 s 10 xH 0 xS 1 f
375 12 s
376 720 688(AFS)N
377 919(Cell)X
378 1104(Administrators)X
379 2736(C.)X
380 2848(Everhart)X
381 720 800(Request)N
382 1054(For)X
383 1211(Comments:)X
384 1679(XXX)X
385 2736(Transarc)X
386 2448 912(March)N
387 2723(1990)X
388 16 s
389 1208 1248(Conventions)N
390 1888(for)X
391 2070(Nam)X
392 2319(es)X
393 2458(in)X
394 2590(the)X
395 2779(Service)X
396 3196(Directory)X
397 1544 1392(in)N
398 1676(the)X
399 1865(AFS)X
400 2131(Distributed)X
401 2741(File)X
402 2973(System)X
403 3 f
404 12 s
405 600 1824(Status)N
406 879(of)X
407 983(This)X
408 1188(Memo)X
409 1 f
410 720 2048(This)N
411 915(memo)X
412 1180(proposes)X
413 1545(a)X
414 1612(standard)X
415 1962(for)X
416 2098(the)X
417 2240(Internet)X
418 2564(community.)X
419 720 2160(Distribution)N
420 1209(of)X
421 1313(this)X
422 1476(memo)X
423 1741(is)X
424 1829(unlimited.)X
425 3 f
426 600 2384(Summary)N
427 1 f
428 720 2608(File)N
429 951(systems)X
430 1336(today)X
431 1631(allow)X
432 1926(\256le)X
433 2130(and)X
434 2350(name)X
435 2641(space)X
436 2937(sharing)X
437 3302(between)X
438 3705(independent)X
439 720 2720(administrations.)N
440 1397(Because)X
441 1753(applications)X
442 2253(may)X
443 2453(wish)X
444 2668(to)X
445 2777(collaborate)X
446 3240(in)X
447 3349(providing)X
448 3757(services)X
449 4101(to)X
450 720 2832(the)N
451 870(aggregate)X
452 1277(users)X
453 1506(of)X
454 1618(those)X
455 1853(\256le)X
456 2008(systems,)X
457 2368(conventions)X
458 2866(for)X
459 3011(such)X
460 3220(collaboration)X
461 3762(need)X
462 3977(to)X
463 4085(be)X
464 720 2944(speci\256ed.)N
465 1135(In)X
466 1239(particular,)X
467 1657(applications)X
468 2147(may)X
469 2337(wish)X
470 2542(to)X
471 2641(communicate)X
472 3185(by)X
473 3305(performing)X
474 3762(\256le)X
475 3909(system)X
476 720 3056(operations)N
477 1154(between)X
478 1508(\256le)X
479 1664(system)X
480 1964(installations)X
481 2463(in)X
482 2571(addition)X
483 2920(to,)X
484 3052(or)X
485 3165(instead)X
486 3471(of,)X
487 3608(other)X
488 3839(forms)X
489 4096(of)X
490 720 3168(network-based)N
491 1311(communication)X
492 1936(such)X
493 2136(as)X
494 2240(datagram)X
495 2623(exchange)X
496 3011(or)X
497 3115(RPC.)X
498 3368(The)X
499 3542(conventions)X
500 4031(that)X
501 720 3280(allow)N
502 970(this)X
503 1145(sort)X
504 1325(of)X
505 1441(communication)X
506 2077(therefore)X
507 2462(take)X
508 2660(the)X
509 2815(form)X
510 3039(of)X
511 3156(speci\256cations)X
512 3717(of)X
513 3834(\256les)X
514 4031(that)X
515 720 3392(exist)N
516 938(in)X
517 1049(well-known)X
518 1545(locations)X
519 1930(in)X
520 2042(a)X
521 2122(given)X
522 2373(\256le)X
523 2533(system.)X
524 2885(In)X
525 3002(AFS)X
526 9 s
527 3177 3359(1)N
528 12 s
529 3250 3392(,)N
530 3311(a)X
531 3391(product)X
532 3722(of)X
533 3839(Transarc)X
534 720 3504(Corporation,)N
535 1244(these)X
536 1477(conventions)X
537 1977(specify)X
538 2290(the)X
539 2443(\256les)X
540 2638(that)X
541 2818(exist)X
542 3035(under)X
543 3289(the)X
544 3441(reserved)X
545 3801(pathname)X
546 3 f
547 720 3616(/afs/)N
548 4 f
549 891(cellname)X
550 3 f
551 1250(/service)X
552 1 f
553 1585(.)X
554 3 f
555 600 3840(1.)N
556 720(Introduction)X
557 1 f
558 720 4064(This)N
559 937(memo)X
560 1224(proposes)X
561 1612(conventions)X
562 2124(by)X
563 2267(which)X
564 2549(processes)X
565 2964(may)X
566 3177(communicate)X
567 3744(with)X
568 3962(many)X
569 720 4176(independent)N
570 1215(\256le)X
571 1362(system)X
572 1653(installations)X
573 2143(via)X
574 2285(a)X
575 2352(protected)X
576 2735(name)X
577 2968(space.)X
578 720 4400(In)N
579 830(order)X
580 1063(for)X
581 1205(computer-based)X
582 1850(processes)X
583 2248(to)X
584 2354(communicate,)X
585 2929(they)X
586 3126(must)X
587 3344(agree)X
588 3584(on)X
589 3711(conventions)X
590 720 4512(on)N
591 852(which)X
592 1123(their)X
593 1336(communication)X
594 1971(can)X
595 2140(be)X
596 2266(based.)X
597 2568(Such)X
598 2795(conventions)X
599 3295(already)X
600 3614(exist)X
601 3831(on)X
602 3962(many)X
603 720 4624(levels,)N
604 1001(many)X
605 1247(of)X
606 1359(which)X
607 1626(are)X
608 1776(mentioned)X
609 2215(in)X
610 2322(the)X
611 2472(OSI)X
612 2658(layer)X
613 2883(model)X
614 3156([ISO-7498])X
615 3630(or)X
616 3742(the)X
617 3893(various)X
618 720 4736(adaptations)N
619 1205(to)X
620 1326(that)X
621 1517(model)X
622 1804(such)X
623 2026(as)X
624 2151(the)X
625 2314(DoD)X
626 2545(Internet)X
627 2890(adaptation)X
628 3337([RFC-905,)X
629 3795(RFC-982,)X
630 720 4848(RFC-994,)N
631 1151(RFC-1006,)X
632 1631(RFC-1085,)X
633 2111(RFC-1138].)X
634 2647(This)X
635 2869(memo)X
636 3161(proposes)X
637 3553(fully)X
638 3786(analogous)X
639 720 4960(conventions)N
640 1221(for)X
641 1369(applications)X
642 1871(that)X
643 2052(wish)X
644 2269(to)X
645 2380(run)X
646 2543(above)X
647 2808(the)X
648 2961(distributed)X
649 3408(\256le)X
650 3566(system)X
651 3868(layer)X
652 4096(as)X
653 720 5072(provided)N
654 1086(by)X
655 1206(AFS)X
656 1405(\(a)X
657 1504(product)X
658 1822(of)X
659 1926(Transarc)X
660 2287(Corporation\))X
661 2808([JHH88a,)X
662 3202(JHH88b,)X
663 3569(MLK88].)X
664 720 5296(Such)N
665 954(conventions)X
666 1461(are)X
667 1621(unusual,)X
668 1986(for)X
669 2140(distributed)X
670 2594(\256le)X
671 2759(systems)X
672 3106(historically)X
673 3583(do)X
674 3722(not)X
675 3888(address)X
676 720 5408(problems)N
677 1103(beyond)X
678 1411(those)X
679 1639(of)X
680 1743(a)X
681 1810(single)X
682 2064(installation.)X
683 2565(Rather,)X
684 2870(they)X
685 3060(are)X
686 3202(generally)X
687 3585(concerned)X
688 4005(with)X
689 720 5520(improving)N
690 1145(computer-based)X
691 1784(sharing)X
692 2091(within)X
693 2361(a)X
694 2428(given)X
695 2666(site.)X
696 10 s
697 14 f
698 720 5620(h)N
699 736(hhhhhhhhhhhhhh)X
700 7 s
701 1 f
702 720 5716(1)N
703 10 s
704 761 5744(AFS)N
705 927(is)X
706 1000(a)X
707 1056(trademark)X
708 1402(of)X
709 1489(Transarc)X
710 1791(Corporation.)X
711
712 2 p
713 %%Page: 2 2
714 11.00 ps
715 10 s 10 xH 0 xS 1 f
716 12 s
717 2368 400(-)N
718 2424(2)X
719 2496(-)X
720 720 688(AFS)N
721 919(has)X
722 1071(two)X
723 1239(properties)X
724 1648(that)X
725 1817(are)X
726 1959(particularly)X
727 2428(helpful)X
728 2725(in)X
729 2824(establishing)X
730 3308(these)X
731 3530(conventions:)X
732 1008 912(\(1\))N
733 1153(any)X
734 1325(cache)X
735 1578(manager)X
736 1943(\(on)X
737 2104(a)X
738 2180(client)X
739 2429(machine\))X
740 2822(may)X
741 3022(in)X
742 3131(principle)X
743 3508(interact)X
744 3832(with)X
745 4037(any)X
746 1008 1024(server,)N
747 1312(whether)X
748 1667(the)X
749 1830(cache)X
750 2095(manager)X
751 2472(and)X
752 2656(server)X
753 2936(are)X
754 3099(in)X
755 3219(the)X
756 3382(same)X
757 3624(administrative)X
758 1008 1136(domain)N
759 1321(or)X
760 1425(not;)X
761 1599(and)X
762 1008 1360(\(2\))N
763 1148(every)X
764 1390(\256le)X
765 1541(has)X
766 1697(a)X
767 1769(distinguished,)X
768 2335(global)X
769 2605(name,)X
770 2867(in)X
771 2971(which)X
772 3235(a)X
773 3307(fully-quali\256ed)X
774 3887(domain)X
775 1008 1472(name)N
776 1241(locates)X
777 1533(the)X
778 1675(administrative)X
779 2251(domain)X
780 2564(in)X
781 2663(which)X
782 2922(that)X
783 3091(name)X
784 3324(is)X
785 3412(to)X
786 3511(be)X
787 3626(interpreted.)X
788 720 1696(These)N
789 996(conventions)X
790 1507(are)X
791 1671(descendants)X
792 2182(of)X
793 2309(those)X
794 2559(outlined)X
795 2922(in)X
796 3044(the)X
797 3209(ITC's)X
798 3480(original)X
799 3827(technical)X
800 720 1808(report)N
801 997([ERZ88].)X
802 1434(That)X
803 1658(document)X
804 2085(gives)X
805 2335(additional)X
806 2767(information)X
807 3268(about)X
808 3528(other)X
809 3772(aspects)X
810 4096(of)X
811 720 1920(inter-domain)N
812 1245(communication;)X
813 1899(this)X
814 2065(document)X
815 2472(concentrates)X
816 2981(on)X
817 3104(the)X
818 3249(conventions)X
819 3742(for)X
820 3882(speci\256c)X
821 720 2032(\256les)N
822 904(in)X
823 1003(the)X
824 1145(service)X
825 1442(directory.)X
826 3 f
827 600 2256(2.)N
828 720(File)X
829 900(name)X
830 1148(space)X
831 1396(conventions)X
832 720 2480(2.1.)N
833 912(Ground)X
834 1261(rules)X
835 1 f
836 720 2704(All)N
837 870(names)X
838 1143(in)X
839 1245(this)X
840 1411(document)X
841 1818(will)X
842 1995(be)X
843 2114(the)X
844 2260(fully-quali\256ed)X
845 2839(global)X
846 3108(names.)X
847 3430(Shortcut)X
848 3784(names)X
849 4058(are)X
850 720 2816(usually)N
851 1032(available,)X
852 1439(but)X
853 1595(must)X
854 1815(not)X
855 1971(be)X
856 2095(used)X
857 2304(for)X
858 2449(inter-cell)X
859 2831(communication,)X
860 3488(and)X
861 3660(are)X
862 3811(explicitly)X
863 720 2928(not)N
864 867(part)X
865 1041(of)X
866 1145(these)X
867 1367(conventions.)X
868 720 3152(Every)N
869 991(\256le)X
870 1155(name)X
871 1405(in)X
872 1521(AFS)X
873 1737(begins)X
874 2029(with)X
875 2241(the)X
876 2400(string)X
877 2660(``/afs/'',)X
878 3019(followed)X
879 3402(by)X
880 3540(a)X
881 3625(fully-quali\256ed)X
882 720 3264(domain)N
883 1092(name)X
884 1384(that)X
885 1612(has)X
886 1823(been)X
887 2088(mapped)X
888 2476(to)X
889 2633(lower-case)X
890 3132(alphabetics.)X
891 3696(Thus,)X
892 3994(even)X
893 720 3376(administrations)N
894 1395(that)X
895 1621(ordinarily)X
896 2082(spell)X
897 2345(their)X
898 2603(domain)X
899 2973(names)X
900 3300(in)X
901 3456(upper)X
902 3757(case)X
903 4005(\(e.g.)X
904 720 3488(``CS.CMU.EDU''\))N
905 1494(or)X
906 1608(mixed)X
907 1883(case)X
908 2083(\(e.g.)X
909 2288(``Stanford.EDU''\))X
910 3033(have)X
911 3248(\256le)X
912 3404(names)X
913 3683(starting)X
914 4005(with)X
915 720 3600(the)N
916 889(lower-cased)X
917 1405(versions)X
918 1776(of)X
919 1907(those)X
920 2161(names)X
921 2459(\(``/afs/cs.cmu.edu/'',)X
922 3321(``/afs/stanford.edu/''\).)X
923 720 3712(Within)N
924 1014(this)X
925 1179(document,)X
926 1609(this)X
927 1774(pre\256x)X
928 2024(will)X
929 2199(be)X
930 2315(referred)X
931 2645(to)X
932 2745(as)X
933 2850(``/afs/)X
934 2 f
935 3080(cellname)X
936 1 f
937 3428(/'',)X
938 3568(where)X
939 2 f
940 3828(cellname)X
941 1 f
942 720 3824(is)N
943 808(the)X
944 950(lower-cased)X
945 1439(name)X
946 1672(of)X
947 1776(the)X
948 1918(AFS)X
949 2117 0.1914(installation--the)AX
950 2752(cell)X
951 2916(name)X
952 3149(for)X
953 3285(the)X
954 3427(AFS)X
955 3626(installation.)X
956 720 4048(Cell)N
957 929(administrators)X
958 1528(are)X
959 1694(generally)X
960 2102(free)X
961 2301(to)X
962 2425(structure)X
963 2811(their)X
964 3037(individual)X
965 3477(\256le)X
966 3649(systems)X
967 4002(\(i.e.,)X
968 720 4160(everything)N
969 1165(below)X
970 1432(``/afs/)X
971 2 f
972 1662(cellname/'')X
973 1 f
974 2101(\))X
975 2165(as)X
976 2277(they)X
977 2475(see)X
978 2630(\256t.)X
979 2790(However,)X
980 3198(there)X
981 3423(is)X
982 3519(one)X
983 3690(name)X
984 3931(whose)X
985 720 4272(use)N
986 874(is)X
987 964(reserved:)X
988 1343(the)X
989 3 f
990 1487(service)X
991 1 f
992 1797(directory,)X
993 2195(named)X
994 2479(``/afs/)X
995 2 f
996 2709(cellname/)X
997 1 f
998 3084(service/''.)X
999 3523(If)X
1000 3614(a)X
1001 3684(site)X
1002 3845(provides)X
1003 720 4384(such)N
1004 929(a)X
1005 1005(directory,)X
1006 1409(it)X
1007 1495(is)X
1008 1591(promising)X
1009 2013(to)X
1010 2120(export)X
1011 2398(certain)X
1012 2693(internal)X
1013 3020(information)X
1014 3507(in)X
1015 3614(a)X
1016 3689(standardized)X
1017 720 4496(fashion.)N
1018 1080(Furthermore,)X
1019 1614(all)X
1020 1740(directories)X
1021 2176(and)X
1022 2344(\256les)X
1023 2533(within)X
1024 2808(a)X
1025 2880(cell's)X
1026 2 f
1027 3118(service)X
1028 1 f
1029 3421(subtree)X
1030 3729(must)X
1031 3946(reside)X
1032 720 4608(within)N
1033 990(that)X
1034 1159(cell.)X
1035 720 4832(All)N
1036 900(names)X
1037 1203(under)X
1038 1479(the)X
1039 1654(/afs/)X
1040 2 f
1041 1820(cellname)X
1042 1 f
1043 2168(/service)X
1044 2525(directory)X
1045 2930(are)X
1046 3105(to)X
1047 3237(be)X
1048 3385(seen)X
1049 3613(as)X
1050 3750(targets)X
1051 4064(for)X
1052 720 4944(conventions,)N
1053 1235(even)X
1054 1443(names)X
1055 1715(in)X
1056 1816(subdirectories.)X
1057 2430(That)X
1058 2633(is,)X
1059 2747(names)X
1060 3019(in)X
1061 3119(subdirectories)X
1062 3684(\(recursively\))X
1063 720 5056(of)N
1064 836(the)X
1065 991(service)X
1066 1301(directory)X
1067 1686(are)X
1068 1841(subject)X
1069 2151(to)X
1070 2263(convention)X
1071 2728(just)X
1072 2904(as)X
1073 3021(are)X
1074 3176(the)X
1075 3331(names)X
1076 3614(directly)X
1077 3946(in)X
1078 4058(the)X
1079 720 5168(service)N
1080 1065(directory)X
1081 1485(itself:)X
1082 1777(the)X
1083 1967(name)X
1084 2248(/afs/)X
1085 2 f
1086 2414(cellname)X
1087 1 f
1088 2762 0.2148(/service/etc/thud)AX
1089 3471(is)X
1090 3606(as)X
1091 3757(subject)X
1092 4101(to)X
1093 720 5280(convention)N
1094 1202(as)X
1095 1336(is)X
1096 1454(the)X
1097 1626(name)X
1098 1890(/afs/)X
1099 2 f
1100 2056(cellname)X
1101 1 f
1102 2404(/service/thud.)X
1103 3005(The)X
1104 3210(\256le)X
1105 3388(name)X
1106 3652(README)X
1107 4112(is)X
1108 720 5392(reserved)N
1109 1078(at)X
1110 1180(all)X
1111 1309(levels)X
1112 1566(of)X
1113 1678(the)X
1114 1828(hierarchy)X
1115 2224(to)X
1116 2331(be)X
1117 2454(a)X
1118 2529(human-readable)X
1119 3182(\256le)X
1120 3337(containing,)X
1121 3800(usually,)X
1122 4133(a)X
1123 720 5504(table)N
1124 934(of)X
1125 1040(contents)X
1126 1387(for)X
1127 1525(the)X
1128 1669(rest)X
1129 1834(of)X
1130 1940(the)X
1131 2084(information)X
1132 2565(in)X
1133 2666(that)X
1134 2837(subtree)X
1135 3142(and)X
1136 3308(pointers)X
1137 3645(to)X
1138 3747(any)X
1139 3913(related)X
1140 720 5616(important)N
1141 1124(information)X
1142 1608(stored)X
1143 1872(elsewhere)X
1144 2286(in)X
1145 2390(a)X
1146 2462(site's)X
1147 2693(AFS)X
1148 2896(tree.)X
1149 3117(Generally,)X
1150 3549(a)X
1151 3620(README)X
1152 4053(\256le)X
1153 720 5728(in)N
1154 827(the)X
1155 977(directory)X
1156 1357(is)X
1157 1453(viewed)X
1158 1764(as)X
1159 1877(containing)X
1160 2317(the)X
1161 2468(information)X
1162 2956(about)X
1163 3203(a)X
1164 3279(directory)X
1165 3660(that)X
1166 3838(a)X
1167 3914(human)X
1168 720 5840(browser)N
1169 1053(should)X
1170 1333(understand)X
1171 1779(\256rst)X
1172 1952(about)X
1173 2190(that)X
1174 2359(directory.)X
1175
1176 3 p
1177 %%Page: 3 3
1178 11.00 ps
1179 12 s 12 xH 0 xS 1 f
1180 2368 400(-)N
1181 2424(3)X
1182 2496(-)X
1183 720 688(The)N
1184 899(conventions)X
1185 1393(for)X
1186 1534(names)X
1187 1809(within)X
1188 2084(a)X
1189 2156(cell's)X
1190 2395(service)X
1191 2698(directory)X
1192 3076(are)X
1193 3224(exactly)X
1194 3533(analogous)X
1195 3953(to)X
1196 4058(the)X
1197 720 800(conventions)N
1198 1223(for)X
1199 1373(other)X
1200 1609(protocols:)X
1201 2032(the)X
1202 2188(meanings)X
1203 2594(of)X
1204 2711(the)X
1205 2866(telnet)X
1206 3118(IAC)X
1207 3320(codes)X
1208 3576([RFC-854],)X
1209 4058(the)X
1210 720 912(commands)N
1211 1176(used)X
1212 1391(for)X
1213 1542(\256le)X
1214 1704(transfer)X
1215 2037([RFC-959])X
1216 2497(or)X
1217 2617(SMTP)X
1218 2907(mail)X
1219 3119(transfer)X
1220 3453([RFC-821],)X
1221 3938(or)X
1222 4058(the)X
1223 720 1024(names)N
1224 1019(of)X
1225 1152(header)X
1226 1462(\256elds)X
1227 1723(in)X
1228 1851(Internet)X
1229 2204(text)X
1230 2402(messages)X
1231 2818([RFC-822].)X
1232 3339(The)X
1233 3541(conventions)X
1234 4058(are)X
1235 720 1136(necessary)N
1236 1130(for)X
1237 1278(an)X
1238 1405(exactly)X
1239 1721(analogous)X
1240 2148(reason:)X
1241 2463(so)X
1242 2585(that)X
1243 2767(independent)X
1244 3275(AFS)X
1245 3487(cells)X
1246 3701(that)X
1247 3883(wish)X
1248 4101(to)X
1249 720 1248(cooperate)N
1250 1119(may)X
1251 1309(do)X
1252 1429(so.)X
1253 3 f
1254 720 1472(2.2.)N
1255 912(Extensibility)X
1256 1 f
1257 720 1696(Section)N
1258 1042(3)X
1259 1123(below)X
1260 1391(enumerates)X
1261 1863(a)X
1262 1939(limited)X
1263 2246(set)X
1264 2386(of)X
1265 2499(known)X
1266 2793(names)X
1267 3072(that)X
1268 3250(may)X
1269 3449(be)X
1270 3573(used)X
1271 3782(in)X
1272 3890(a)X
1273 3967(cell's)X
1274 720 1808(service)N
1275 1026(directory)X
1276 1407(or)X
1277 1520(subdirectories.)X
1278 2141(As)X
1279 2280(the)X
1280 2431(requirements)X
1281 2967(for)X
1282 3112(further)X
1283 3407(cooperation)X
1284 3894(dictate,)X
1285 720 1920(additional)N
1286 1136(names)X
1287 1412(may)X
1288 1608(be)X
1289 1729(standardized.)X
1290 2294(To)X
1291 2431(provide)X
1292 2755(some)X
1293 2988(measure)X
1294 3340(of)X
1295 3451(safety)X
1296 3712(to)X
1297 3818(the)X
1298 3967(name)X
1299 720 2032(selections)N
1300 1135(made)X
1301 1379(by)X
1302 1510(private)X
1303 1813(agreement,)X
1304 2274(standard)X
1305 2635(names)X
1306 2916(will)X
1307 3101(never)X
1308 3350(begin)X
1309 3599(with)X
1310 3805(the)X
1311 3957(string)X
1312 720 2144(``x-''.)N
1313 720 2368(Private)N
1314 1023(agreements)X
1315 1492(may)X
1316 1688(be)X
1317 1809(made)X
1318 2048(from)X
1319 2265(time)X
1320 2467(to)X
1321 2572(time)X
1322 2774(between)X
1323 3125(sets)X
1324 3300(of)X
1325 3411(cell)X
1326 3582(administrations)X
1327 720 2480(as)N
1328 831(to)X
1329 937(new)X
1330 1128(names)X
1331 1405(to)X
1332 1511(use)X
1333 1670(in)X
1334 1776(a)X
1335 1850(cell's)X
1336 2089(service)X
1337 2392(directory.)X
1338 2818(Such)X
1339 3040(names)X
1340 3316(must)X
1341 3533(not)X
1342 3686(con\257ict)X
1343 4005(with)X
1344 720 2592(the)N
1345 866(uses)X
1346 1060(of)X
1347 1169(standardized)X
1348 1685(names.)X
1349 2008(Because)X
1350 2358(additional)X
1351 2773(service)X
1352 3075(names)X
1353 3350(may)X
1354 3545(be)X
1355 3665(standardized,)X
1356 720 2704(a)N
1357 797(standardized)X
1358 1318(name)X
1359 1561(use)X
1360 1723(may)X
1361 1922(preempt)X
1362 2271(the)X
1363 2422(use)X
1364 2583(of)X
1365 2696(the)X
1366 2847(same)X
1367 3078(name)X
1368 3320(by)X
1369 3449(private)X
1370 3750(agreement.)X
1371 720 2816(However,)N
1372 1131(names)X
1373 1412(beginning)X
1374 1832(with)X
1375 2038(``x-'')X
1376 2281(will)X
1377 2466(never)X
1378 2715(be)X
1379 2841(standardized,)X
1380 3387(so)X
1381 3508(cooperating)X
1382 3999(cells)X
1383 720 2928(may)N
1384 932(wish)X
1385 1159(to)X
1386 1280(use)X
1387 1454(such)X
1388 1676(names)X
1389 1968(in)X
1390 2089(private)X
1391 2403(agreements)X
1392 2888(without)X
1393 3228(the)X
1394 3391(possibility)X
1395 3837(of)X
1396 3962(being)X
1397 720 3040(preempted)N
1398 1151(by)X
1399 1271(a)X
1400 1338(new)X
1401 1522(standard.)X
1402 3 f
1403 720 3264(2.3)N
1404 888(Security)X
1405 1 f
1406 720 3488(Directories)N
1407 1177(under)X
1408 1425(a)X
1409 1497(cell's)X
1410 1735(service)X
1411 2037(directory)X
1412 2414(may)X
1413 2610(have)X
1414 2822(arbitrary)X
1415 3184(AFS)X
1416 3389(access)X
1417 3665(lists)X
1418 3850(imposed)X
1419 720 3600(on)N
1420 841(them,)X
1421 1083(which)X
1422 1343(may)X
1423 1534(or)X
1424 1639(may)X
1425 1830(not)X
1426 1978(include)X
1427 2287(``System:AnyUser''.)X
1428 3144(These)X
1429 3398(naming)X
1430 3711(conventions)X
1431 720 3712(apply)N
1432 963(to)X
1433 1067(\256les)X
1434 1256(not)X
1435 1408(visible)X
1436 1694(to)X
1437 1798(the)X
1438 1945(general)X
1439 2258(public,)X
1440 2552(as)X
1441 2661(well)X
1442 2856(as)X
1443 2966(to)X
1444 3071(those)X
1445 3304(\256les)X
1446 3494(that)X
1447 3669(are)X
1448 3817(generally)X
1449 720 3824(made)N
1450 974(available.)X
1451 1416(\(Without)X
1452 1809(this)X
1453 1993(provision,)X
1454 2425(violations)X
1455 2849(of)X
1456 2973(the)X
1457 3135(conventions)X
1458 3644(might)X
1459 3913(violate)X
1460 720 3936(intra-cell)N
1461 1093(operations.\))X
1462 720 4160(If)N
1463 852(a)X
1464 963(\256le)X
1465 1154(or)X
1466 1303(directory)X
1467 1720(under)X
1468 2008(a)X
1469 2120(given)X
1470 2403(cell's)X
1471 2681(service)X
1472 3023(directory)X
1473 3440(is)X
1474 3573(not)X
1475 3765(usable)X
1476 4080(by)X
1477 720 4272(System:AnyUser,)N
1478 1427(it)X
1479 1508(will)X
1480 1685(appear)X
1481 1969(to)X
1482 2071(applications)X
1483 2564 0.2604(authenticated)AX
1484 3106(in)X
1485 3208(a)X
1486 3278(different)X
1487 3637(cell)X
1488 3803(as)X
1489 3909(though)X
1490 720 4384(the)N
1491 899(given)X
1492 1174(cell's)X
1493 1444(service)X
1494 1778(is)X
1495 1903(simply)X
1496 2226(not)X
1497 2410(exported.)X
1498 2857(For)X
1499 3052(example,)X
1500 3465(if)X
1501 3586(a)X
1502 3691(given)X
1503 3967(cell's)X
1504 720 4496(/afs/)N
1505 2 f
1506 886(cellname)X
1507 1 f
1508 1234(/service/etc)X
1509 1750(directory)X
1510 2174(does)X
1511 2426(not)X
1512 2624(allow)X
1513 2913(``System:AnyUser)X
1514 3708(rl'')X
1515 3906(access,)X
1516 720 4608(applications)N
1517 1210(not)X
1518 1357 0.2604(authenticated)AX
1519 1896(in)X
1520 1995(that)X
1521 2164(cell)X
1522 2328(will)X
1523 2502(be)X
1524 2617(unable)X
1525 2898(to)X
1526 2997(use)X
1527 3149(any)X
1528 3312(\256les)X
1529 3496(or)X
1530 3600(directories)X
1531 4031(that)X
1532 720 4720(the)N
1533 862(administration)X
1534 1443(for)X
1535 2 f
1536 1579(cellname)X
1537 1 f
1538 1951(happens)X
1539 2290(to)X
1540 2389(have)X
1541 2595(placed)X
1542 2871(there.)X
1543 3 f
1544 600 4944(3.)N
1545 720(Contents)X
1546 1111(of)X
1547 1215(the)X
1548 1367(service)X
1549 1675(directory)X
1550 1 f
1551 720 5168(The)N
1552 914(following)X
1553 1332(directories)X
1554 1784(and)X
1555 1968(\256les)X
1556 2173(under)X
1557 2437(a)X
1558 2525(cell's)X
1559 2779(/afs/)X
1560 2 f
1561 2945(cellname)X
1562 1 f
1563 3293(/service/)X
1564 3665(directory)X
1565 4058(are)X
1566 720 5280(reserved)N
1567 1076(for)X
1568 1218(the)X
1569 1366(uses)X
1570 1561(stated.)X
1571 1864(These)X
1572 2124(directories)X
1573 2561(are)X
1574 2709(not)X
1575 2862(required)X
1576 3213(to)X
1577 3318(be)X
1578 3439(present,)X
1579 3770(but)X
1580 3922(if)X
1581 4010(they)X
1582 720 5392(are)N
1583 862(present,)X
1584 1188(they)X
1585 1378(indicate)X
1586 1708(that)X
1587 1877(the)X
1588 2019(cell)X
1589 2183(is)X
1590 2271(providing)X
1591 2669(the)X
1592 2811(corresponding)X
1593 3385(service)X
1594 3682(or)X
1595 3786(services.)X
1596 3 f
1597 720 5616(3.1.)N
1598 912(Table)X
1599 1171(of)X
1600 1275(Contents)X
1601 1666(for)X
1602 1813(the)X
1603 1965(service)X
1604 2273(directory)X
1605
1606 4 p
1607 %%Page: 4 4
1608 11.00 ps
1609 12 s 12 xH 0 xS 3 f
1610 1 f
1611 2368 400(-)N
1612 2424(4)X
1613 2496(-)X
1614 720 688(The)N
1615 918(following)X
1616 1340(names)X
1617 1635(are)X
1618 1802(speci\256ed,)X
1619 2217(and)X
1620 2405(are)X
1621 2572(described)X
1622 2990(in)X
1623 3114(more)X
1624 3361(detail)X
1625 3625(in)X
1626 3749(subsequent)X
1627 720 800(sections)N
1628 1054(of)X
1629 1158(this)X
1630 1321(document.)X
1631 3 f
1632 1008 1024(README)N
1633 1 f
1634 1872(Human-readable)X
1635 2538(directory)X
1636 2910(description)X
1637 3 f
1638 1008 1136(etc)N
1639 1 f
1640 1584(Publish)X
1641 1896(simple,)X
1642 2201(pre-existing)X
1643 2685(con\256guration)X
1644 3222(\256les)X
1645 3406(simply)X
1646 3 f
1647 1008 1248(mailqs)N
1648 1 f
1649 1584(AMDS)X
1650 1884(queue)X
1651 2138(location)X
1652 3 f
1653 1008 1360(con\256guration)N
1654 1 f
1655 1584(Con\256guration)X
1656 2142 0.2455(attribute/value)AX
1657 2724(information)X
1658 3 f
1659 1008 1472(printing)N
1660 1 f
1661 1872(Printing)X
1662 2206(services)X
1663 3 f
1664 1008 1584(wp)N
1665 1 f
1666 1584(White)X
1667 1844(Pages)X
1668 2092(listing)X
1669 2357(all)X
1670 2478(accounts)X
1671 3 f
1672 720 1808(3.2.)N
1673 912(The)X
1674 1096(/afs/)X
1675 4 f
1676 1267(cellname)X
1677 3 f
1678 1626(/service/README)X
1679 2414(\256le)X
1680 1 f
1681 720 2032(This)N
1682 917(is)X
1683 1007(a)X
1684 1076(plain)X
1685 1295(ASCII,)X
1686 1595(human-readable)X
1687 2242(\256le)X
1688 2391(containing)X
1689 2825(a)X
1690 2895(guide)X
1691 3136(to)X
1692 3238(the)X
1693 3383(interesting)X
1694 3817(attributes)X
1695 720 2144(of)N
1696 837(the)X
1697 992(given)X
1698 1243(cell.)X
1699 1467(Since)X
1700 1717(it)X
1701 1807(is)X
1702 1907(an)X
1703 2034(instance)X
1704 2386(of)X
1705 2502(a)X
1706 2581(README)X
1707 3022(\256le)X
1708 3181(\(as)X
1709 3329(described)X
1710 3734(earlier)X
1711 4017(as)X
1712 4133(a)X
1713 720 2256(name)N
1714 978(reserved)X
1715 1353(at)X
1716 1473(all)X
1717 1620(directory)X
1718 2018(levels)X
1719 2293(under)X
1720 2562(/afs/)X
1721 2 f
1722 2728(cellname)X
1723 1 f
1724 3076(/service\),)X
1725 3482(it)X
1726 3586(should)X
1727 3892(contain)X
1728 720 2368(information)N
1729 1202(that)X
1730 1374(should)X
1731 1657(be)X
1732 1775(understood)X
1733 2229(by)X
1734 2352(a)X
1735 2422(human)X
1736 2711(browsing)X
1737 3094(through)X
1738 3419(a)X
1739 3488(\256le)X
1740 3637(system)X
1741 3930(before)X
1742 720 2480(attempting)N
1743 1170(to)X
1744 1282(understand)X
1745 1742(further)X
1746 2042(information)X
1747 2535(in)X
1748 2648(this)X
1749 2825(directory)X
1750 3211(and)X
1751 3388(child)X
1752 3619(directories.)X
1753 4112(If)X
1754 720 2592(this)N
1755 903(\256le)X
1756 1070(exists,)X
1757 1357(it)X
1758 1455(could)X
1759 1712(contain)X
1760 2039(a)X
1761 2125(guide)X
1762 2382(to)X
1763 2500(what)X
1764 2730(is)X
1765 2837(in)X
1766 2955(the)X
1767 3116(site's)X
1768 3362(/afs/)X
1769 2 f
1770 3528(cellname)X
1771 1 f
1772 3876(/service)X
1773 720 2704(directory,)N
1774 1118(as)X
1775 1224(well)X
1776 1416(as)X
1777 1522(mentioning)X
1778 1987(\256le)X
1779 2136(names)X
1780 2408(of)X
1781 2515(other)X
1782 2740(important)X
1783 3142(information)X
1784 3624(within)X
1785 3897(a)X
1786 3967(cell's)X
1787 720 2816(\256le)N
1788 867(space)X
1789 1105(that)X
1790 1274(may)X
1791 1464(not)X
1792 1611(actually)X
1793 1941(be)X
1794 2056(housed)X
1795 2352(under)X
1796 2595(the)X
1797 2737(/afs/)X
1798 2 f
1799 2903(cellname)X
1800 1 f
1801 3251(/service)X
1802 3575(directory.)X
1803 720 3040(This)N
1804 929(\256le)X
1805 1090(replaces)X
1806 1444(and)X
1807 1621(generalizes)X
1808 2093(the)X
1809 2249(former)X
1810 2550(/afs/)X
1811 2 f
1812 2716(cellname)X
1813 1 f
1814 3064(/service/systypes)X
1815 3755(\256le,)X
1816 3941(which)X
1817 720 3152(listed)N
1818 953(the)X
1819 1095(legal)X
1820 1307(values)X
1821 1577(for)X
1822 1713(the)X
1823 1855(special)X
1824 2 f
1825 2147(@sys)X
1826 1 f
1827 2376(\256lename)X
1828 2732(token.)X
1829 3 f
1830 720 3376(3.3.)N
1831 912(The)X
1832 1096(/afs/)X
1833 4 f
1834 1267(cellname)X
1835 3 f
1836 1626(/service/etc)X
1837 2106(directory)X
1838 1 f
1839 720 3600(This)N
1840 944(directory)X
1841 1346(provides)X
1842 1731(a)X
1843 1828(simple)X
1844 2139(mechanism)X
1845 2632(by)X
1846 2782(which)X
1847 3071(a)X
1848 3168(cell)X
1849 3362(may)X
1850 3582(publish)X
1851 3919(easily-)X
1852 720 3712(determined)N
1853 1214(information)X
1854 1728(about)X
1855 2001(itself.)X
1856 2301(At)X
1857 2456(present,)X
1858 2817(four)X
1859 3036(names)X
1860 3341(are)X
1861 3518(reserved)X
1862 3903(in)X
1863 4037(this)X
1864 720 3824(directory:)N
1865 3 f
1866 1119(passwd,)X
1867 1464(group)X
1868 1 f
1869 1709(,)X
1870 3 f
1871 1757(CellServDB.export)X
1872 1 f
1873 2534(,)X
1874 2582(and)X
1875 3 f
1876 2745(CellServDB.local)X
1877 1 f
1878 3448(.)X
1879 3 f
1880 720 4048(3.3.1.)N
1881 984(The)X
1882 1168(\256les)X
1883 1352(/afs/)X
1884 4 f
1885 1523(cellname)X
1886 3 f
1887 1882(/service/etc/passwd)X
1888 2686(and)X
1889 2864(/afs/)X
1890 4 f
1891 3035(cellname)X
1892 3 f
1893 3394(/service/etc/group)X
1894 1 f
1895 720 4272(The)N
1896 899(\256le)X
1897 1051(/afs/)X
1898 2 f
1899 1217(cellname)X
1900 1 f
1901 1565(/service/etc/passwd,)X
1902 2367(if)X
1903 2455(it)X
1904 2539(exists,)X
1905 2812(is)X
1906 2906(a)X
1907 2979(copy)X
1908 3196(of)X
1909 3306(the)X
1910 3454(ordinary)X
1911 3810(Unix)X
1912 10 s
1913 4224(TM)Y
1914 7 s
1915 4191(2)Y
1916 12 s
1917 720 4384(passwd\(5\))N
1918 1142(\256le)X
1919 1293(listing)X
1920 1562(the)X
1921 1708(accounts)X
1922 2072(in)X
1923 2174(the)X
1924 2319(cell.)X
1925 2534(The)X
1926 2711(\256le)X
1927 2861(/afs/)X
1928 2 f
1929 3027(cellname)X
1930 1 f
1931 3375 0.1771(/service/etc/group,)AX
1932 4117(if)X
1933 720 4496(it)N
1934 802(exists,)X
1935 1074(is)X
1936 1167(a)X
1937 1239(copy)X
1938 1455(of)X
1939 1564(the)X
1940 1711(Unix)X
1941 10 s
1942 4448(TM)Y
1943 12 s
1944 2052 4496(group\(5\))N
1945 2417(\256le)X
1946 2569(listing)X
1947 2839(the)X
1948 2986(group)X
1949 3239(names)X
1950 3514(and)X
1951 3682(members)X
1952 4064(for)X
1953 720 4608(that)N
1954 889(cell.)X
1955 720 4832(Programs)N
1956 1130(such)X
1957 1348(as)X
1958 1470(ls\(1\))X
1959 1688(may)X
1960 1896(look)X
1961 2109(at)X
1962 2221(these)X
1963 2461(\256les)X
1964 2663(to)X
1965 2780(perform)X
1966 3133(translations)X
1967 3620(of)X
1968 3743(\256le)X
1969 3909(system)X
1970 720 4944(attributes.)N
1971 1161(Thus,)X
1972 1411(if)X
1973 1504(the)X
1974 1656(string)X
1975 1909(name)X
1976 2152(associated)X
1977 2582(with)X
1978 2787(gid)X
1979 2944(4)X
1980 3026(has)X
1981 3188(to)X
1982 3297(be)X
1983 3422(determined)X
1984 3890(for)X
1985 4036(cell)X
1986 2 f
1987 720 5056(cellname)N
1988 1 f
1989 1068(,)X
1990 1167(the)X
1991 1361(answer)X
1992 1709(may)X
1993 1951(be)X
1994 2118(found)X
1995 2418(in)X
1996 2569(``/afs/)X
1997 2 f
1998 2799(cellname)X
1999 1 f
2000 3147 0.1656(/service/etc/group''.)AX
2001 4026(The)X
2002 720 5168(/afs/)N
2003 2 f
2004 886(cellname)X
2005 1 f
2006 1234(/service/etc/passwd)X
2007 2011(\256le)X
2008 2162(is)X
2009 2254(referenced)X
2010 2689(only)X
2011 2888(if)X
2012 2975(the)X
2013 3121(given)X
2014 3362(cell)X
2015 3529(does)X
2016 3732(not)X
2017 3882(provide)X
2018 720 5280(a)N
2019 787(White)X
2020 1047(Pages)X
2021 1295(service.)X
2022 10 s
2023 14 f
2024 720 5620(h)N
2025 736(hhhhhhhhhhhhhh)X
2026 7 s
2027 1 f
2028 720 5716(2)N
2029 10 s
2030 761 5744(Unix)N
2031 941(is)X
2032 1014(a)X
2033 1070(registered)X
2034 1407(trademark)X
2035 1753(of)X
2036 1840(AT&T.)X
2037
2038 5 p
2039 %%Page: 5 5
2040 11.00 ps
2041 10 s 10 xH 0 xS 1 f
2042 12 s
2043 2368 400(-)N
2044 2424(5)X
2045 2496(-)X
2046 720 688(Administrators)N
2047 1352(are)X
2048 1525(free)X
2049 1730(to)X
2050 1860(clear)X
2051 2103(or)X
2052 2238(overwrite)X
2053 2662(the)X
2054 2835(\256eld)X
2055 3061(carrying)X
2056 3437(encoded)X
2057 3814(password)X
2058 720 800(information)N
2059 1232(in)X
2060 1363(this)X
2061 1558(passwd\(5\))X
2062 2008(\256le,)X
2063 2211(since)X
2064 2465(this)X
2065 2660(\256le)X
2066 2839(is)X
2067 2959(never)X
2068 3229(used)X
2069 3461(for)X
2070 3629 0.2356(authentication)AX
2071 720 912(purposes.)N
2072 3 f
2073 720 1136(3.3.2.)N
2074 984(The)X
2075 1168(\256le)X
2076 1315(/afs/)X
2077 4 f
2078 1486(cellname)X
2079 3 f
2080 1845 0.1487(/service/etc/CellServDB.export)AX
2081 1 f
2082 720 1360(The)N
2083 934(\256le)X
2084 1121(/afs/)X
2085 2 f
2086 1287(cellname)X
2087 1 f
2088 1635 0.1552(/service/etc/CellServDB.export)AX
2089 2906(allows)X
2090 2 f
2091 3221(cellname)X
2092 1 f
2093 3634(to)X
2094 3774(export)X
2095 4085(its)X
2096 720 1472(knowledge)N
2097 1172(of)X
2098 1282(other)X
2099 1510(operational,)X
2100 1998(public)X
2101 2269(AFS)X
2102 2474(cells.)X
2103 2729(In)X
2104 2839(general,)X
2105 3177(this)X
2106 3346(\256le)X
2107 3499(may)X
2108 3695(be)X
2109 3815(copied)X
2110 4101(to)X
2111 720 1584 0.1603(/usr/vice/etc/CellServDB)AN
2112 1753(on)X
2113 1913(each)X
2114 2154(workstation)X
2115 2672(connected)X
2116 3127(to)X
2117 3266(a)X
2118 3373(given)X
2119 3652(cell,)X
2120 3881(so)X
2121 4031(that)X
2122 720 1696(workstations)N
2123 1235(may)X
2124 1425(connect)X
2125 1749(to)X
2126 1848(any)X
2127 2011(available)X
2128 2384(AFS)X
2129 2583(cell.)X
2130 9 s
2131 2747 1663(3)N
2132 12 s
2133 720 1920(In)N
2134 827(the)X
2135 3 f
2136 972(transarc.com)X
2137 1 f
2138 1541(cell,)X
2139 1732(a)X
2140 1802(reasonably)X
2141 2246(central)X
2142 2536(facility)X
2143 2838(operated)X
2144 3198(by)X
2145 3322(Transarc)X
2146 3687(Corporation,)X
2147 720 2032(the)N
2148 881(published)X
2149 1297(CellServDB.export)X
2150 2079(\256le)X
2151 2244 0.1497(\(/afs/transarc.com/service/etc/CellServDB.export\))AX
2152 720 2144(contains)N
2153 1076(information)X
2154 1566(about)X
2155 1815(all)X
2156 1947(public)X
2157 2223(cells)X
2158 2435(known)X
2159 2731(by)X
2160 2862(Transarc)X
2161 3234(Corporation.)X
2162 3782(Other)X
2163 4036(cell)X
2164 720 2256(administrations)N
2165 1338(may)X
2166 1528(wish)X
2167 1733(periodically)X
2168 2218(to)X
2169 2317(monitor)X
2170 2646(this)X
2171 2809(\256le)X
2172 2956(for)X
2173 3092(updates.)X
2174 3 f
2175 720 2480(3.3.3.)N
2176 984(The)X
2177 1168(\256le)X
2178 1315(/afs/)X
2179 4 f
2180 1486(cellname)X
2181 3 f
2182 1845 0.1741(/service/etc/CellServDB.local)AX
2183 1 f
2184 720 2704(This)N
2185 926(\256le)X
2186 1084(allows)X
2187 2 f
2188 1370(cellname)X
2189 1 f
2190 1753(to)X
2191 1864(export)X
2192 2146(up-to-date)X
2193 2578(VLDB-location)X
2194 3218(information)X
2195 3709(about)X
2196 3959(itself.)X
2197 720 2816(That)N
2198 921(is,)X
2199 1033(cells)X
2200 1234(may)X
2201 1424(publish)X
2202 1731(their)X
2203 1932(up-to-date)X
2204 2352(VLDB-location)X
2205 2980(information)X
2206 3459(via)X
2207 3601(this)X
2208 3764(\256le.)X
2209 3 f
2210 720 3040(3.4.)N
2211 912(The)X
2212 1096(/afs/)X
2213 4 f
2214 1267(cellname)X
2215 3 f
2216 1626(/service/mailqs)X
2217 2260(directory)X
2218 1 f
2219 720 3264(This)N
2220 917(directory)X
2221 1291(is)X
2222 1381(tightly)X
2223 1659(coupled)X
2224 1990(to)X
2225 2091(the)X
2226 2235(Andrew)X
2227 2571(Message)X
2228 2934(Delivery)X
2229 3298(System)X
2230 3608(installation)X
2231 4064(for)X
2232 720 3376(a)N
2233 811(given)X
2234 1073(cell.)X
2235 1308(If)X
2236 1419(this)X
2237 1605(directory)X
2238 2000(exists,)X
2239 2290(it)X
2240 2391(implies)X
2241 2722(that)X
2242 2 f
2243 2914(cellname)X
2244 1 f
2245 3309(runs)X
2246 3521(the)X
2247 3686(full)X
2248 3867(Andrew)X
2249 720 3488(Message)N
2250 1099(Delivery)X
2251 1480(System)X
2252 1807(\(AMDS\))X
2253 2191(and)X
2254 2374(obeys)X
2255 2642(all)X
2256 2783(the)X
2257 2945(AMDS)X
2258 3265(conventions.)X
2259 3822(Sites)X
2260 4053(not)X
2261 720 3600(running)N
2262 1061(AMDS)X
2263 1379(must)X
2264 1608(not)X
2265 1773(have)X
2266 1997(a)X
2267 2082(directory)X
2268 2472(named)X
2269 2771 0.2112(/afs/cellname/service/mailqs/,)AX
2270 3963(as)X
2271 4085(its)X
2272 720 3712(existence)N
2273 1110(implies)X
2274 1425(\(to)X
2275 1564(software)X
2276 1927(running)X
2277 2258(even)X
2278 2472(in)X
2279 2579(other)X
2280 2809(cells\))X
2281 3050(a)X
2282 3125(promise)X
2283 3467(to)X
2284 3574(provide)X
2285 3900(AMDS)X
2286 720 3824(service.)N
2287 1082(More)X
2288 1331(information)X
2289 1827(about)X
2290 2082(AMDS)X
2291 2399(may)X
2292 2606(be)X
2293 2738(found)X
2294 3003(in)X
2295 3119(the)X
2296 3277(corresponding)X
2297 3867(Andrew)X
2298 720 3936(documentation,)N
2299 1342(published)X
2300 1741(via)X
2301 1884(the)X
2302 2027(MIT)X
2303 2228(X)X
2304 2322(Consortium's)X
2305 2871(X.V11R4)X
2306 3267(release)X
2307 3561([X90].)X
2308 3864(In)X
2309 3970(brief,)X
2310 720 4048(the)N
2311 892(promise)X
2312 1256(to)X
2313 1384(provide)X
2314 1731(AMDS)X
2315 2060(service)X
2316 2386(means)X
2317 2685(that)X
2318 2883(mail)X
2319 3108(that)X
2320 3306(uses)X
2321 2 f
2322 3524(cellname)X
2323 1 f
2324 3925(as)X
2325 4058(the)X
2326 720 4160(destination)N
2327 1168(mail)X
2328 1365(domain)X
2329 1680(name--e.g.)X
2330 2 f
2331 2118(localname)X
2332 1 f
2333 2519(@)X
2334 2 f
2335 2607(cellname)X
2336 1 f
2337 2955(--may)X
2338 3211(be)X
2339 3328(handled)X
2340 3659(via)X
2341 3803(AFS;)X
2342 4031(that)X
2343 2 f
2344 720 4272(localname)N
2345 1 f
2346 1154(may)X
2347 1353(be)X
2348 1477(interpreted)X
2349 1928(via)X
2350 2078(the)X
2351 2228(White)X
2352 2496(Pages)X
2353 2752(exported)X
2354 3121(by)X
2355 2 f
2356 3249(cellname)X
2357 1 f
2358 3597(;)X
2359 3656(and)X
2360 3827(that)X
2361 4004(mail)X
2362 720 4384(delivery)N
2363 1060(may)X
2364 1250(be)X
2365 1366(accomplished)X
2366 1921(by)X
2367 2042(storing)X
2368 2334(\256les)X
2369 2519(as)X
2370 2624(the)X
2371 2767(resultant)X
2372 3124(White)X
2373 3385(Pages)X
2374 3634(entry)X
2375 3857(dictates,)X
2376 720 4496(either)N
2377 967(by)X
2378 1090(storing)X
2379 1384(a)X
2380 1454(new)X
2381 1641(\256le)X
2382 1791(in)X
2383 1893(a)X
2384 1963(user's)X
2385 2218(mailbox)X
2386 2560(directory)X
2387 2934(or)X
2388 3040(by)X
2389 3162(enqueueing)X
2390 3632(mail)X
2391 3830(in)X
2392 3931(one)X
2393 4096(of)X
2394 720 4608(the)N
2395 862(global)X
2396 1127(mail)X
2397 1323(delivery)X
2398 1663(queues)X
2399 1954(for)X
2400 2 f
2401 2090(cellname)X
2402 1 f
2403 2438(.)X
2404 720 4832(Not)N
2405 896(only)X
2406 1099(does)X
2407 1307(this)X
2408 1478(directory,)X
2409 1882(by)X
2410 2010(its)X
2411 2133(existence,)X
2412 2549(signal)X
2413 2812(that)X
2414 2 f
2415 2990(cellname)X
2416 1 f
2417 3371(runs)X
2418 3569(AMDS,)X
2419 3902(but)X
2420 4058(the)X
2421 720 4944(directory)N
2422 1104(houses)X
2423 1401(the)X
2424 1555(global)X
2425 1831(mail)X
2426 2038(delivery)X
2427 2389(queues)X
2428 2691(for)X
2429 2838(the)X
2430 2991(given)X
2431 3240(cell.)X
2432 3463(These)X
2433 3728(global)X
2434 4004(mail)X
2435 720 5056(queues)N
2436 1025(may)X
2437 1229(be)X
2438 1358(any)X
2439 1535(name)X
2440 1783(starting)X
2441 2111(with)X
2442 2321(either)X
2443 2580(the)X
2444 2737(string)X
2445 2995(``q'')X
2446 3210(\(for)X
2447 3393(ordinary)X
2448 3758(queues\))X
2449 4096(or)X
2450 720 5168(``sq'')N
2451 957(\(for)X
2452 1125(slow-service,)X
2453 1659(back-burner)X
2454 2148(queues\).)X
2455 10 s
2456 14 f
2457 720 5428(h)N
2458 736(hhhhhhhhhhhhhh)X
2459 7 s
2460 1 f
2461 720 5524(3)N
2462 10 s
2463 761 5552(If)N
2464 841(a)X
2465 903(cell)X
2466 1045(administration)X
2467 1533(wishes)X
2468 1777(to)X
2469 1865(maintain)X
2470 2171(private)X
2471 2421(cells)X
2472 2595(that)X
2473 2742(its)X
2474 2844(users)X
2475 3036(should)X
2476 3276(be)X
2477 3379(able)X
2478 3540(to)X
2479 3629(reach,)X
2480 3851(but)X
2481 3980(which)X
2482 720 5648(should)N
2483 961(not)X
2484 1091(be)X
2485 1195(generally)X
2486 1522(advertised,)X
2487 1899(the)X
2488 2024(VLDB-location)X
2489 2554(information)X
2490 2959(about)X
2491 3164(those)X
2492 3360(cells)X
2493 3534(should)X
2494 3774(be)X
2495 3877(placed)X
2496 4114(in)X
2497 720 5744(/usr/vice/etc/CellServDB)N
2498 1545(on)X
2499 1645(its)X
2500 1740(workstations)X
2501 2169(but)X
2502 2291(not)X
2503 2413(published)X
2504 2744(in)X
2505 2826(service/etc/CellServDB.export.)X
2506
2507 6 p
2508 %%Page: 6 6
2509 11.00 ps
2510 10 s 10 xH 0 xS 1 f
2511 12 s
2512 3 f
2513 1 f
2514 2368 400(-)N
2515 2424(6)X
2516 2496(-)X
2517 3 f
2518 720 688(3.5.)N
2519 912(The)X
2520 1096(/afs/)X
2521 4 f
2522 1267(cellname)X
2523 3 f
2524 1626(/service/con\256guration)X
2525 2537(directory)X
2526 1 f
2527 720 912(This)N
2528 937(directory)X
2529 1331(allows)X
2530 2 f
2531 1628(cellname)X
2532 1 f
2533 2022(to)X
2534 2143(export)X
2535 2435(various)X
2536 2764(facts)X
2537 2992(about)X
2538 3252(itself.)X
2539 3540(At)X
2540 3683(present,)X
2541 4032(two)X
2542 720 1024(names)N
2543 990(are)X
2544 1132(reserved)X
2545 1482(in)X
2546 1581(this)X
2547 1744(directory:)X
2548 3 f
2549 2143(AMS-Server)X
2550 1 f
2551 2685(and)X
2552 3 f
2553 2848(Postmaster)X
2554 1 f
2555 3307(.)X
2556 720 1248(The)N
2557 926(/afs/)X
2558 2 f
2559 1092(cellname)X
2560 1 f
2561 1440(/service/con\256guration/AMS-Server)X
2562 2853(\256le,)X
2563 3057(if)X
2564 3173(it)X
2565 3284(exists,)X
2566 3584(contains)X
2567 3962(many)X
2568 720 1360 0.2455(attribute/value)AN
2569 1316(pairs)X
2570 1541(specifying,)X
2571 2004(for)X
2572 2154(example,)X
2573 2543(the)X
2574 2699(roots)X
2575 2929(of)X
2576 3047(the)X
2577 3203(``public)X
2578 3546(folder)X
2579 3813(trees'')X
2580 4096(as)X
2581 720 1472(de\256ned)N
2582 1062(with)X
2583 1292(the)X
2584 1469(Andrew)X
2585 1837(Message)X
2586 2232(System)X
2587 2574(\(AMS\))X
2588 2904([AMS90,)X
2589 3323(JR87,)X
2590 3604(NSB88].)X
2591 4026(The)X
2592 720 1584(presence)N
2593 1109(of)X
2594 1241(this)X
2595 1432(\256le)X
2596 1607(is)X
2597 1723(a)X
2598 1818(promise)X
2599 2180(that)X
2600 2377(the)X
2601 2547(\256eld)X
2602 2770(values)X
2603 3068(that)X
2604 3265(it)X
2605 3370(gives)X
2606 3624(are)X
2607 3793(a)X
2608 3887(truthful)X
2609 720 1696(representation)N
2610 1298(of)X
2611 1410(the)X
2612 1560(attributes)X
2613 1951(of)X
2614 2 f
2615 2063(cellname)X
2616 1 f
2617 2411(.)X
2618 2491(Names)X
2619 2790(for)X
2620 2934(these)X
2621 3164(attributes)X
2622 3555(are)X
2623 3705(given)X
2624 3951(in)X
2625 4058(the)X
2626 720 1808(AMS)N
2627 951(documentation;)X
2628 1575(in)X
2629 1674(brief,)X
2630 1904(they)X
2631 2094(are)X
2632 2236(tabulated)X
2633 2614(here:)X
2634 1008 1920(LocalBboardRoot)N
2635 2012(ExternalBboardRoot)X
2636 3124(Of\256cialBboardRoot)X
2637 1008 2032(OldLocalBboardRoot)N
2638 1941(OldExternalBboardRoot)X
2639 2980(OldOf\256cialBboardRoot)X
2640 1008 2144(DefaultMSPath)N
2641 2063(RequiredSubsFile)X
2642 3210(ChangedSubsFile)X
2643 1008 2256(MessagesBugAddress)N
2644 1909 0.2411(WelcomeMailFile)AX
2645 2665(EliStartupFile)X
2646 3259(AMS_OnlyMail)X
2647 1008 2368(AMS_ValidateDestHosts)N
2648 2613(AMS_HardHostValidationErrors)X
2649 1008 2480(AMS_DeliveryViaDomainMXAddress)N
2650 1008 2592(AMS_DeliveryViaDomainAddress)N
2651 2553(AMS_DeliveryViaGethostbyname)X
2652 1008 2704(AMS_DeliveryViaHostTable)N
2653 2194(AMS_UUCPSupported)X
2654 3153(AMS_GecosHacks)X
2655 1008 2816(AMS_UsersAreGrownups)N
2656 2709(AMS_UsersHandleFormatting)X
2657 1008 2928(AMS_WPValidation)N
2658 1904(AMS_PasswdValidation)X
2659 2943(AMS_AliasesValidation)X
2660 1008 3040 0.1226(AMS_LocalDatabaseValidation)AN
2661 3034(AMS_NameSeparator)X
2662 1008 3152(AMS_UseridPlusWorks)N
2663 2795(AMS_ValidDomainSuf\256xes)X
2664 1008 3264(AMS_ValidDomainRelays)N
2665 2372(AMS_PrinterNamesInSpoolDirectories)X
2666 1008 3376(AMS_PrintSpoolDirectories)N
2667 2703(AMS_PrinterNamesInPrintcap)X
2668 1008 3488(AMS_NamedValidPrinters)N
2669 2080(OutgoingName)X
2670 2700(PostmasterTitle)X
2671 3332(MailboxName)X
2672 1008 3600(PostmasterName)N
2673 1717(PostmasterMailbox)X
2674 2522(WPIUpdateReqAddr)X
2675 3385(Organization)X
2676 1008 3712(NNTPhost)N
2677 1937(NNTPuser)X
2678 2867(AMS_ViceQueueLifetime)X
2679 1008 3824 0.1475(AMS_ExtraViceQueueLifetime)AN
2680 2712(AMS_ViceQueueLifetimeCap)X
2681 1008 3936(PostmasterAddress)N
2682 720 4160(The)N
2683 903(/afs/)X
2684 2 f
2685 1069(cellname)X
2686 1 f
2687 1417 0.1210(/service/con\256guration/Postmaster)AX
2688 2739(\256le,)X
2689 2919(if)X
2690 3011(it)X
2691 3098(exists,)X
2692 3374(contains)X
2693 3729(the)X
2694 3881(mailing)X
2695 720 4272(address)N
2696 1032(that)X
2697 1201(can)X
2698 1359(be)X
2699 1474(used)X
2700 1674(in)X
2701 1773(reaching)X
2702 2129(somebody)X
2703 2548(responsible)X
2704 3010(for)X
2705 2 f
2706 3146(cellname)X
2707 1 f
2708 3518(as)X
2709 3622(an)X
2710 3737(AFS)X
2711 3936(cell.)X
2712 3 f
2713 720 4496(3.6.)N
2714 912(The)X
2715 1096(/afs/)X
2716 4 f
2717 1267(cellname)X
2718 3 f
2719 1626(/service/printing)X
2720 2324(directory)X
2721 1 f
2722 720 4720(It)N
2723 810(is)X
2724 905(planned)X
2725 1241(that)X
2726 1417(this)X
2727 1587(directory)X
2728 1966(act)X
2729 2110(as)X
2730 2221(an)X
2731 2343(interface)X
2732 2712(to)X
2733 2818(the)X
2734 2967(printing)X
2735 3303(services)X
2736 3645(available)X
2737 4026(in)X
2738 4133(a)X
2739 720 4832(given)N
2740 959(cell.)X
2741 1172(This)X
2742 1368(name)X
2743 1602(is)X
2744 1691(currently)X
2745 2063(reserved)X
2746 2413(by)X
2747 2533(a)X
2748 2600(project)X
2749 2892(currently)X
2750 3264(under)X
2751 3507(way)X
2752 3691(at)X
2753 3785(Academic)X
2754 720 4944(Services)N
2755 1071(at)X
2756 1166(Carnegie)X
2757 1539(Mellon)X
2758 1842(for)X
2759 1979(their)X
2760 2181(development)X
2761 2705(of)X
2762 2811(such)X
2763 3013(services;)X
2764 3376(the)X
2765 3520(contact)X
2766 3825(is)X
2767 3915(Joseph)X
2768 720 5056(Jackson,)N
2769 1072(jj1h+@andrew.cmu.edu)X
2770 2024(.)X
2771 3 f
2772 720 5280(3.7.)N
2773 912(The)X
2774 1096(/afs/)X
2775 4 f
2776 1267(cellname)X
2777 3 f
2778 1626(/service/wp)X
2779 2110(directory)X
2780 1 f
2781 720 5504(This)N
2782 919(directory)X
2783 1295(is)X
2784 1387(the)X
2785 1533(home)X
2786 1775(for)X
2787 1915(the)X
2788 2061(given)X
2789 2303(cell's)X
2790 2540(White)X
2791 2804(Pages)X
2792 3056(database)X
2793 3416(\256les,)X
2794 3628(should)X
2795 3912(it)X
2796 3995(wish)X
2797 720 5616(to)N
2798 864(support)X
2799 1221(this)X
2800 1429(facility.)X
2801 1820(The)X
2802 2038(root)X
2803 2261(\256le)X
2804 2452(of)X
2805 2600(the)X
2806 2786(White)X
2807 3090(Pages)X
2808 3382(structure)X
2809 3787(is)X
2810 3919(named)X
2811 720 5728(/afs/)N
2812 2 f
2813 886(cellname)X
2814 1 f
2815 1234(/service/wp/wp)X
2816 1860(.)X
2817 1946(Considerable)X
2818 2492(further)X
2819 2792(information)X
2820 3285(on)X
2821 3419(the)X
2822 3575(White)X
2823 3849(Pages)X
2824 4112(is)X
2825 720 5840(published)N
2826 1118(with)X
2827 1313(the)X
2828 1455(X.V11R4)X
2829 1849(release)X
2830 2141(of)X
2831 2245(the)X
2832 2387(X)X
2833 2480(tape)X
2834 2665([WP90a,)X
2835 3028(WP90b].)X
2836
2837 7 p
2838 %%Page: 7 7
2839 11.00 ps
2840 12 s 12 xH 0 xS 1 f
2841 2368 400(-)N
2842 2424(7)X
2843 2496(-)X
2844 3 f
2845 600 688(4.)N
2846 720(Current)X
2847 1080(status)X
2848 1 f
2849 720 912(\(This)N
2850 973(section)X
2851 1296(would)X
2852 1586(be)X
2853 1727(deleted)X
2854 2056(from)X
2855 2294(a)X
2856 2388(real,)X
2857 2608(recommended)X
2858 3205(document.)X
2859 3684(It)X
2860 3794(exists)X
2861 4064(for)X
2862 720 1024(informational)N
2863 1269(purposes)X
2864 1634(here.\))X
2865 720 1248(At)N
2866 844(present)X
2867 1150(\(27)X
2868 1306(February)X
2869 1681(1990\),)X
2870 1957(not)X
2871 2108(all)X
2872 2233(cells)X
2873 2438(adhere)X
2874 2723(to)X
2875 2826(these)X
2876 3052(conventions,)X
2877 3570(but)X
2878 3722(some)X
2879 3954(are)X
2880 4101(in)X
2881 720 1360(use)N
2882 890(by)X
2883 1028(programs)X
2884 1433(that)X
2885 1620(can)X
2886 1795(in)X
2887 1911(principle)X
2888 2295(run)X
2889 2464(anywhere.)X
2890 2927(This)X
2891 3139(section)X
2892 3453(describes)X
2893 3852(some)X
2894 4096(of)X
2895 720 1472(those)N
2896 947(variances)X
2897 1335(and)X
2898 1498(some)X
2899 1725(of)X
2900 1829(those)X
2901 2056(uses.)X
2902 3 f
2903 720 1696(4.1.)N
2904 912(Pre-existing)X
2905 1428(commitments)X
2906 1 f
2907 720 1920(Transarc)N
2908 1091(Corporation)X
2909 1590(has)X
2910 1752(agreed)X
2911 2043(to)X
2912 2153(provide,)X
2913 2506(in)X
2914 2616 0.1372(/afs/transarc.com/service/CellServDB,)AX
2915 4133(a)X
2916 720 2032(\256le)N
2917 867(on)X
2918 987(which)X
2919 1246(sites)X
2920 1441(may)X
2921 1631(base)X
2922 1826(their)X
2923 2027(own)X
2924 2216 0.1603(/usr/vice/etc/CellServDB)AX
2925 3209(\256les.)X
2926 720 2256(Currently,)N
2927 1137(much)X
2928 1375(of)X
2929 1479(AMS)X
2930 1710 0.2812(automatically)AX
2931 2260(uses)X
2932 2449(the)X
2933 2591(following)X
2934 2989(\256les)X
2935 3173(in)X
2936 3272 0.2321(/afs/cellname/service:)AX
2937 1008 2368(wp)N
2938 1008 2480(mailqs)N
2939 1008 2592(con\256guration/AMS-Server)N
2940 720 2704(in)N
2941 825(the)X
2942 973(way)X
2943 1163(described)X
2944 1562(in)X
2945 1668(Section)X
2946 1988(3.)X
2947 2115(AMS)X
2948 2353(is)X
2949 2448(currently)X
2950 2827(widely)X
2951 3120(deployed;)X
2952 3531(changes)X
2953 3872(to)X
2954 3978(these)X
2955 720 2816(conventions)N
2956 1209(would)X
2957 1473(have)X
2958 1679(to)X
2959 1778(be)X
2960 1893(phased)X
2961 2184(in)X
2962 2283(over)X
2963 2478(a)X
2964 2545(very)X
2965 2740(long)X
2966 2935(period.)X
2967 3 f
2968 720 3040(4.2.)N
2969 912(Changes)X
2970 1287(to)X
2971 1391(prior)X
2972 1629(conventions)X
2973 1 f
2974 720 3264(/afs/)N
2975 2 f
2976 886(cellname)X
2977 1 f
2978 1234(/service/CellServDB)X
2979 2584(was)X
2980 3286(moved)X
2981 4101(to)X
2982 720 3376(/afs/)N
2983 2 f
2984 886(cellname)X
2985 1 f
2986 1234 0.1500(/service/etc/CellServDB.export.)AX
2987 720 3600(/afs/)N
2988 2 f
2989 886(cellname)X
2990 1 f
2991 1234 0.1562(/service/CellServDB.local)AX
2992 2725(was)X
2993 3356(moved)X
2994 4101(to)X
2995 720 3712(/afs/)N
2996 2 f
2997 886(cellname)X
2998 1 f
2999 1234 0.1830(/service/etc/CellServDB.local)AX
3000 720 3936(/afs/)N
3001 2 f
3002 886(cellname)X
3003 1 f
3004 1234(/service/CellServDBs,)X
3005 2120(the)X
3006 2266(directory)X
3007 2642(containing)X
3008 3077(CellServDB)X
3009 3575(\256les)X
3010 3763(from)X
3011 3978(other)X
3012 720 4048(cells,)N
3013 945(was)X
3014 1118(deleted)X
3015 1421(before)X
3016 1691(being)X
3017 1929(implemented.)X
3018 3 f
3019 720 4272(4.3.)N
3020 912(Extra)X
3021 1171(things)X
3022 1445(currently)X
3023 1854(kept)X
3024 2059(by)X
3025 2184(various)X
3026 2512(cells)X
3027 1 f
3028 720 4496(service/CellServDB)N
3029 1533(currently)X
3030 1924(exists)X
3031 2186(\(not)X
3032 2384(moved)X
3033 2689(to)X
3034 2808 0.1466(service/etc/CellServDB.export\))AX
3035 4064(for)X
3036 720 4608(cells)N
3037 944(andrew.cmu.edu,)X
3038 1651(athena.mit.edu,)X
3039 2290(ece.cmu.edu,)X
3040 2843(ri.osf.org,)X
3041 3266(transarc.com.)X
3042 3855(Because)X
3043 720 4720(Transarc)N
3044 1094(has)X
3045 1259(announced)X
3046 1713(that)X
3047 1895 0.1411(/afs/transarc.com/service/CellServDB)AX
3048 3390(is)X
3049 3491(a)X
3050 3571(path)X
3051 3774(name)X
3052 4020(to)X
3053 4133(a)X
3054 720 4832(global)N
3055 987(list)X
3056 1131(of)X
3057 1237 0.1736(publicly-accessible)AX
3058 2002(cells,)X
3059 2229(Transarc)X
3060 2592(will)X
3061 2767(probably)X
3062 3134(make)X
3063 3368(a)X
3064 3436(symbolic)X
3065 3814(link)X
3066 3989(from)X
3067 720 4944(that)N
3068 889(name)X
3069 1122(to)X
3070 1221 0.1535(/afs/transarc.com/service/etc/CellServDB.export)AX
3071 3113(.)X
3072 720 5168 0.1495(service/CellServDB.local)AN
3073 1745(currently)X
3074 2136(exists)X
3075 2398(\(not)X
3076 2597(moved)X
3077 2903(to)X
3078 3022 0.1741(service/etc/CellServDB.local\))AX
3079 720 5280(for)N
3080 885(cells)X
3081 1115(andrew.cmu.edu,)X
3082 1828(cs.cmu.edu,)X
3083 2338(and)X
3084 2530(ece.cmu.edu.)X
3085 3113(\(Other)X
3086 3417(cells)X
3087 3647(have)X
3088 3882(not)X
3089 4058(yet)X
3090 720 5392(created)N
3091 1023(a)X
3092 1090(CellServDB.local)X
3093 1796(\256le)X
3094 1943(at)X
3095 2037(all.\))X
3096 720 5616(andrew.cmu.edu)N
3097 1421(keeps)X
3098 1705(extra)X
3099 1963(directories)X
3100 2435(``admin'',)X
3101 2893(``butler'',)X
3102 3335(``mnt'',)X
3103 3702(``net'',)X
3104 4037(and)X
3105 720 5728(``motd''.)N
3106 1121(Its)X
3107 1244(printing)X
3108 1576(directory)X
3109 1951(contains)X
3110 2299(directories)X
3111 2733(adm)X
3112 2926(and)X
3113 3092(fonts)X
3114 3311(in)X
3115 3413(addition)X
3116 3755(to)X
3117 3856(the)X
3118 4000(ones)X
3119 720 5840(mentioned,)N
3120 1175(but)X
3121 1322(cross-cell)X
3122 1715(printing)X
3123 2044(support)X
3124 2356(is)X
3125 2444(not)X
3126 2591(well)X
3127 2781(developed)X
3128 3201(yet.)X
3129
3130 8 p
3131 %%Page: 8 8
3132 11.00 ps
3133 12 s 12 xH 0 xS 1 f
3134 2368 400(-)N
3135 2424(8)X
3136 2496(-)X
3137 720 688(athena.mit.edu)N
3138 1337(keeps)X
3139 1605(many)X
3140 1868(BACKUP_LIST*)X
3141 2604(\256les,)X
3142 2837(many)X
3143 3101(CellServDB*)X
3144 3669(\256les,)X
3145 3903(several)X
3146 720 800(sys-type)N
3147 1070(directories)X
3148 1507(decmips_30,)X
3149 2026(rt_r3,)X
3150 2267(and)X
3151 2436(vax_43,)X
3152 2772(two)X
3153 2945(binary-program)X
3154 3578(links)X
3155 3794(aklog)X
3156 4037(and)X
3157 720 912(reconcile,)N
3158 1122(directories)X
3159 1553(``attic'')X
3160 1872(and)X
3161 2035(``partitions'',)X
3162 2575(and)X
3163 2738(a)X
3164 2805(\256le)X
3165 2952(``owl.xbm''.)X
3166 720 1136(cs.cmu.edu)N
3167 1196(keeps)X
3168 1458(extra)X
3169 1694(directories)X
3170 2144(``ams_test'')X
3171 2652(and)X
3172 2834(``wp_old'';)X
3173 3320(it)X
3174 3418(keeps)X
3175 3681(an)X
3176 3816(extra)X
3177 4053(\256le)X
3178 720 1248(etc/groups-afs)N
3179 1289(.)X
3180 720 1472(net.mit.edu)N
3181 1183(keeps)X
3182 1431(sys-type)X
3183 1780(directories)X
3184 2216(rt_r3)X
3185 2433(and)X
3186 2602(vax_43,)X
3187 2939(as)X
3188 3049(well)X
3189 3245(as)X
3190 3355(binary-program)X
3191 3989(links)X
3192 720 1584(aklog)N
3193 958(and)X
3194 1121(klog.)X
3195 720 1808(psy.cmu.edu)N
3196 1235(keeps)X
3197 1483(etc/groups-afs,)X
3198 2082(etc/groups-afs.BAK,)X
3199 2907(etc/passwd.BAK.)X
3200 3633(Its)X
3201 3759(service/wp)X
3202 720 1920(directory)N
3203 1183(has)X
3204 1426(more)X
3205 1739(\256les)X
3206 2014(than)X
3207 2295(simply)X
3208 2671(a)X
3209 2828(B-tree)X
3210 3183(\(service/wp/wp.old)X
3211 4037(and)X
3212 720 2032(service/wp/wp.saved\),)N
3213 1614(and)X
3214 1787(somebody)X
3215 2216(is)X
3216 2315(going)X
3217 2569(to)X
3218 2679(be)X
3219 2805(surprised)X
3220 3192(when)X
3221 3435(its)X
3222 3561(root)X
3223 3751(node)X
3224 3973(splits)X
3225 720 2144(when)N
3226 952(it)X
3227 1030(reaches)X
3228 1343(40,000)X
3229 1631(bytes.)X
3230 720 2368(ri.osf.org)N
3231 1096(keeps)X
3232 1339(service/#CellServDB.osf.org#)X
3233 2522(and)X
3234 2685(service/CellServDB.osf.org)X
3235 3772(.)X
3236 720 2592(sipb.mit.edu)N
3237 1245(keeps)X
3238 1513(sys-type)X
3239 1882(directories)X
3240 2338(decmips_30,)X
3241 2876(rt_r3,)X
3242 3136(and)X
3243 3324(vax_43;)X
3244 3683(old)X
3245 3856(versions)X
3246 720 2704(decmips_30.old,)N
3247 1385(rt_r3.old,)X
3248 1772(and)X
3249 1939(vax_43.old;)X
3250 2424(a)X
3251 2495(binary-program)X
3252 3127(link)X
3253 3305(aklog;)X
3254 3574(and)X
3255 3741(a)X
3256 3812(partitions)X
3257 720 2816(directory.)N
3258 720 3040 0.1637(testers.athena.mit.edu)AN
3259 1582(keeps)X
3260 1825(a)X
3261 1892(``partitions'')X
3262 2408(directory.)X
3263 720 3264(transarc.com)N
3264 1251(keeps)X
3265 1506(all)X
3266 1639(sorts)X
3267 1856(of)X
3268 1972(CellServDB.)X
3269 2 f
3270 2466(cellname)X
3271 1 f
3272 2850(\256les)X
3273 3046(that)X
3274 3227(CFE)X
3275 3439(believes)X
3276 3792(should)X
3277 4085(be)X
3278 720 3376(moved)N
3279 1009(into)X
3280 1186(a)X
3281 1256(CellServDBs)X
3282 1790(directory;)X
3283 2192(it)X
3284 2273(also)X
3285 2455(keeps)X
3286 2701(a)X
3287 2770(CellServDB\304)X
3288 3298(backup)X
3289 3602(\256le,)X
3290 3775(a)X
3291 3844(ThisCell)X
3292 720 3488(\256le,)N
3293 891(and)X
3294 1054(a)X
3295 1121(wt.con\256g)X
3296 1505(\256le.)X
3297 720 3712(Nobody)N
3298 1053(currently)X
3299 1425(provides)X
3300 1780(a)X
3301 1847(``service/servers'')X
3302 2571(directory.)X
3303 2991(Perhaps)X
3304 3319(it)X
3305 3397(should)X
3306 3677(be)X
3307 3792(nuked.)X
3308 720 3936(Apparently)N
3309 1193(MIT)X
3310 1409(has)X
3311 1577(come)X
3312 1826(up)X
3313 1962(with)X
3314 2173(its)X
3315 2304(own)X
3316 2509(local)X
3317 2737(conventions)X
3318 3242(about)X
3319 3497(what)X
3320 3725(goes)X
3321 3942(in)X
3322 4058(the)X
3323 720 4048(service)N
3324 1017(directory;)X
3325 1416(we'll)X
3326 1638(have)X
3327 1844(to)X
3328 1943(accommodate)X
3329 2503(them)X
3330 2720(somehow.)X
3331 3 f
3332 600 4272(5.)N
3333 720(Review)X
3334 1043(Process)X
3335 1 f
3336 720 4496(This)N
3337 917(document)X
3338 1323(assumes)X
3339 1669(the)X
3340 1813(existence)X
3341 2198(of)X
3342 2304(a)X
3343 2373(body)X
3344 2591(that)X
3345 2762(may)X
3346 2954(approve)X
3347 3290(both)X
3348 3487(these)X
3349 3711(conventions)X
3350 720 4608(and)N
3351 886(subsequent)X
3352 1340(amendments.)X
3353 1902(For)X
3354 2062(the)X
3355 2207(time)X
3356 2406(being,)X
3357 2671(I)X
3358 2730(believe)X
3359 3035(that)X
3360 3206(the)X
3361 3350(entire)X
3362 3596(set)X
3363 3729(of)X
3364 3835(AFS)X
3365 4036(cell)X
3366 720 4720(administrators)N
3367 1308(should)X
3368 1602(collaborate)X
3369 2069(in)X
3370 2182(providing)X
3371 2594(recommendations)X
3372 3317(on)X
3373 3451(these)X
3374 3687(conventions,)X
3375 720 4832(but)N
3376 870(that)X
3377 1042(it)X
3378 1123(will)X
3379 1300(be)X
3380 1418(the)X
3381 1563(responsibility)X
3382 2114(of)X
3383 2221(Transarc)X
3384 2585(Corporation)X
3385 3077(to)X
3386 3178(approve)X
3387 3514(both)X
3388 3711(conventions)X
3389 720 4944(and)N
3390 884(their)X
3391 1086(amendments)X
3392 1598(and)X
3393 1762(extensions)X
3394 2193(in)X
3395 2293(a)X
3396 2362(timely)X
3397 2635(fashion.)X
3398 2992(\(Of)X
3399 3151(course,)X
3400 3452(private)X
3401 3746(extensions,)X
3402 720 5056(such)N
3403 922(as)X
3404 1028(are)X
3405 1172(described)X
3406 1566(in)X
3407 1666(Section)X
3408 1980(2.2,)X
3409 2149(need)X
3410 2356(not)X
3411 2504(obtain)X
3412 2770(any)X
3413 2934(of\256cial)X
3414 3232(approval.\))X
3415 3674(In)X
3416 3779(the)X
3417 3922(future,)X
3418 720 5168(Transarc)N
3419 1093(Corporation)X
3420 1594(may)X
3421 1796(assign)X
3422 2072(its)X
3423 2200(responsibility)X
3424 2761(for)X
3425 2910(monitoring)X
3426 3375(and)X
3427 3551(approving)X
3428 3978(these)X
3429 720 5280(conventions)N
3430 1209(to)X
3431 1308(the)X
3432 1450(Internet)X
3433 1774(Activity)X
3434 2114(Board)X
3435 2373(or)X
3436 2477(to)X
3437 2576(some)X
3438 2803(other)X
3439 3025(appropriate)X
3440 3488(agency.)X
3441 3 f
3442 600 5504(6.)N
3443 720(Summary)X
3444
3445 9 p
3446 %%Page: 9 9
3447 11.00 ps
3448 12 s 12 xH 0 xS 3 f
3449 1 f
3450 2368 400(-)N
3451 2424(9)X
3452 2496(-)X
3453 720 688(This)N
3454 926(document)X
3455 1341(motivates)X
3456 1751(and)X
3457 1925(describes)X
3458 2318(a)X
3459 2396(set)X
3460 2538(of)X
3461 2653(\256le-naming)X
3462 3132(conventions)X
3463 3632(to)X
3464 3742(be)X
3465 3868(used)X
3466 4080(by)X
3467 720 800(cooperating)N
3468 1199(AFS)X
3469 1398(cell)X
3470 1562(administrations.)X
3471 3 f
3472 600 1024(7.)N
3473 720(References)X
3474 1 f
3475 720 1248([AMDS90])N
3476 720 1360(The)N
3477 894(Information)X
3478 1378(Technology)X
3479 1862(Center.)X
3480 2 f
3481 720 1472(An)N
3482 851(Overview)X
3483 1244(of)X
3484 1343(the)X
3485 1485(Andrew)X
3486 1808(Message)X
3487 2168(Delivery)X
3488 2524(System)X
3489 1 f
3490 2791(.)X
3491 720 1584(Installed)N
3492 1094(as)X
3493 1216(DEST/doc/ams/AMDS.ovr)X
3494 2301(from)X
3495 2530(directory)X
3496 2920 0.1619(andrew/ams/delivery/doc)AX
3497 3936(of)X
3498 4058(the)X
3499 720 1696(Andrew)N
3500 1053(contribution)X
3501 1548(to)X
3502 1647(X.V11R4)X
3503 2041([X90],)X
3504 2318(January)X
3505 2641(1990.)X
3506 720 1920([AMS90])N
3507 720 2032(Nathaniel)N
3508 1119(Borenstein,)X
3509 1584(Craig)X
3510 1822(Everhart,)X
3511 2202(and)X
3512 2365(Jonathan)X
3513 2731(Rosenberg.)X
3514 2 f
3515 720 2144(The)N
3516 889(Andrew)X
3517 1213(Message)X
3518 1574(System:)X
3519 1898(A)X
3520 1982(Portable,)X
3521 2368(Distributed)X
3522 2831(System)X
3523 3123(for)X
3524 3261(Multi-Media)X
3525 3774(Electronic)X
3526 720 2256(Communication)N
3527 1 f
3528 1334(.)X
3529 720 2368(Installed)N
3530 1101(as)X
3531 1230(DEST/doc/ams/AMS.ovr)X
3532 2253(from)X
3533 2490(directory)X
3534 2888(andrew/ams/doc)X
3535 3569(of)X
3536 3699(the)X
3537 3867(Andrew)X
3538 720 2480(contribution)N
3539 1215(to)X
3540 1314(X.V11R4)X
3541 1708([X90],)X
3542 1985(January)X
3543 2308(1990.)X
3544 720 2704([ERZ88])N
3545 720 2816(Edward)N
3546 1043(R.)X
3547 1155(Zayas)X
3548 1409(and)X
3549 1572(Craig)X
3550 1810(F.)X
3551 1911(Everhart.)X
3552 2 f
3553 720 2928(Design)N
3554 1016(and)X
3555 1184(Speci\256cation)X
3556 1706(of)X
3557 1805(the)X
3558 1947(Cellular)X
3559 2292(Andrew)X
3560 2615(Environment)X
3561 1 f
3562 3112(.)X
3563 720 3040(Technical)N
3564 1139(Report)X
3565 1439(CMU-ITC-080,)X
3566 2083(Carnegie)X
3567 2470(Mellon)X
3568 2787(University,)X
3569 3256(Pittsburgh,)X
3570 3714(PA,)X
3571 3899(August)X
3572 720 3152(1988.)N
3573 720 3376([ISO-7498])N
3574 720 3488(International)N
3575 1237(Organization)X
3576 1764(For)X
3577 1921(Standardization.)X
3578 2 f
3579 720 3600(Reference)N
3580 1130(Model)X
3581 1400(for)X
3582 1536(Open)X
3583 1768(Systems)X
3584 2096(Interconnection)X
3585 1 f
3586 2706(.)X
3587 720 3712(ISO)N
3588 902(7498)X
3589 1146(Information)X
3590 1682(processing)X
3591 2169(systems)X
3592 2549(-)X
3593 2657(Open)X
3594 2941(systems)X
3595 3273(interconnection)X
3596 3901(-)X
3597 3962(Basic)X
3598 720 3824(Reference)N
3599 1135(Model.)X
3600 720 4048([JHH88a])N
3601 720 4160(John)N
3602 925(Howard,)X
3603 1282(David)X
3604 1541(Nichols,)X
3605 1888(M.)X
3606 2021(Satyanarayanan,)X
3607 2679(Bob)X
3608 2863(Sidebotham,)X
3609 3371(and)X
3610 3534(Mike)X
3611 3761(West.)X
3612 720 4272(Scale)N
3613 953(and)X
3614 1116(Performance)X
3615 1632(in)X
3616 1731(a)X
3617 1798(Distributed)X
3618 2255(File)X
3619 2429(System.)X
3620 2 f
3621 720 4384(ACM)N
3622 947(Transactions)X
3623 1472(on)X
3624 1592(Computer)X
3625 2000(Systems)X
3626 3 f
3627 2328(6)X
3628 1 f
3629 (\(1\),)S
3630 2536(February)X
3631 2907(1988,)X
3632 3147(pp.)X
3633 3291(51-81.)X
3634 720 4608([JHH88b])N
3635 720 4720(John)N
3636 925(H.)X
3637 1042(Howard.)X
3638 720 4832(An)N
3639 861(Overview)X
3640 1264(of)X
3641 1368(the)X
3642 1510(Andrew)X
3643 1843(File)X
3644 2017(System.)X
3645 720 4944(In)N
3646 2 f
3647 824(Proceedings)X
3648 1329(of)X
3649 1428(the)X
3650 1570(Spring)X
3651 1850(1988)X
3652 2066(Usenix)X
3653 2357(Conference)X
3654 1 f
3655 2801(,)X
3656 2849(Dallas.)X
3657 720 5056(Also)N
3658 976(available)X
3659 1400(as)X
3660 1556(technical)X
3661 1981(report)X
3662 2287(CMU-ITC-062,)X
3663 2968(Carnegie)X
3664 3392(Mellon)X
3665 3746(University,)X
3666 720 5168(Pittsburgh,)N
3667 1163(PA.)X
3668 720 5392([JR87])N
3669 720 5504(An)N
3670 861(Overview)X
3671 1264(of)X
3672 1368(the)X
3673 1510(Andrew)X
3674 1843(Message)X
3675 2203(System.)X
3676
3677 10 p
3678 %%Page: 10 10
3679 11.00 ps
3680 12 s 12 xH 0 xS 1 f
3681 2344 400(-)N
3682 2400(10)X
3683 2520(-)X
3684 720 688(Jonathan)N
3685 1086(Rosenberg,)X
3686 1545(Craig)X
3687 1783(F.)X
3688 1884(Everhart)X
3689 2240(and)X
3690 2403(Nathaniel)X
3691 2802(S.)X
3692 2903(Borenstein.)X
3693 720 800(In)N
3694 2 f
3695 898(Proceedings)X
3696 1477(of)X
3697 1651(the)X
3698 1868(SIGCOMM)X
3699 2409('87)X
3700 2636(Workshop:)X
3701 3156(Frontiers)X
3702 3618(in)X
3703 3792(Computer)X
3704 720 912(Communications)N
3705 1395(Technology)X
3706 1 f
3707 1844(,)X
3708 1892(Stowe,)X
3709 2180(VT,)X
3710 2356(11-13)X
3711 2604(August)X
3712 2905(1987.)X
3713 720 1136([MLK88])N
3714 720 1248(Michael)N
3715 1060(Leon)X
3716 1282(Kazar.)X
3717 720 1360(Synchronization)N
3718 1375(and)X
3719 1538(Caching)X
3720 1883(Issues)X
3721 2141(in)X
3722 2240(the)X
3723 2382(Andrew)X
3724 2715(File)X
3725 2889(System.)X
3726 720 1472(In)N
3727 2 f
3728 824(Proceedings)X
3729 1329(of)X
3730 1428(the)X
3731 1570(Spring)X
3732 1850(1988)X
3733 2066(Usenix)X
3734 2357(Conference)X
3735 1 f
3736 2801(,)X
3737 2849(Dallas.)X
3738 720 1584(Also)N
3739 976(available)X
3740 1400(as)X
3741 1556(technical)X
3742 1981(report)X
3743 2287(CMU-ITC-063,)X
3744 2968(Carnegie)X
3745 3392(Mellon)X
3746 3746(University,)X
3747 720 1696(Pittsburgh,)N
3748 1163(PA.)X
3749 720 1920([NSB88])N
3750 720 2032(Nathaniel)N
3751 1119(Borenstein,)X
3752 1584(Craig)X
3753 1822(Everhart,)X
3754 2202(Jonathan)X
3755 2568(Rosenberg)X
3756 3003(and)X
3757 3166(Adam)X
3758 3425(Stoller.)X
3759 720 2144(A)N
3760 813(Multi-Media)X
3761 1329(Message)X
3762 1689(System)X
3763 1996(for)X
3764 2132(Andrew.)X
3765 720 2256(In)N
3766 2 f
3767 824(Proceedings)X
3768 1329(of)X
3769 1428(the)X
3770 1570(Spring)X
3771 1850(1988)X
3772 2066(Usenix)X
3773 2357(Conference)X
3774 1 f
3775 2801(,)X
3776 2849(Dallas.)X
3777 720 2368(Also)N
3778 968(available)X
3779 1384(as)X
3780 1532(Technical)X
3781 1981(Report)X
3782 2311(CMU-ITC-064,)X
3783 2984(Carnegie)X
3784 3400(Mellon)X
3785 3746(University,)X
3786 720 2480(Pittsburgh,)N
3787 1163(PA.)X
3788 720 2704([RFC-821])N
3789 720 2816(Jonathan)N
3790 1086(B.)X
3791 1198(Postel.)X
3792 2 f
3793 720 2928(Simple)N
3794 1006(Mail)X
3795 1212(Transfer)X
3796 1566(Protocol)X
3797 1 f
3798 1903(.)X
3799 720 3040(RFC)N
3800 925(821,)X
3801 1117(IETF)X
3802 1344(Network)X
3803 1704(Working)X
3804 2070(Group,)X
3805 2363(August)X
3806 2664(1982.)X
3807 720 3264([RFC-822])N
3808 720 3376(David)N
3809 979(H.)X
3810 1096(Crocker,)X
3811 1454(editor.)X
3812 2 f
3813 720 3488(Standard)N
3814 1096(for)X
3815 1232(the)X
3816 1374(Format)X
3817 1686(of)X
3818 1785(ARPA)X
3819 2045(Internet)X
3820 2374(Text)X
3821 2564(Messages)X
3822 1 f
3823 2937(.)X
3824 720 3600(RFC)N
3825 925(822,)X
3826 1117(IETF)X
3827 1344(Network)X
3828 1704(Working)X
3829 2070(Group,)X
3830 2363(August)X
3831 2664(1982.)X
3832 720 3824([RFC-854])N
3833 720 3936(J.)N
3834 805(Postel)X
3835 1064(and)X
3836 1227(J.)X
3837 1312(Reynolds.)X
3838 2 f
3839 720 4048(Telnet)N
3840 985(Protocol)X
3841 1346(Speci\256cation)X
3842 1 f
3843 1844(.)X
3844 720 4160(RFC)N
3845 925(854,)X
3846 1117(IETF)X
3847 1344(Network)X
3848 1704(Working)X
3849 2070(Group,)X
3850 2363(May)X
3851 2563(1983.)X
3852 720 4384([RFC-905])N
3853 720 4496(Alex)N
3854 931(McKenzie.)X
3855 2 f
3856 720 4608(ISO)N
3857 893(Transport)X
3858 1300(Protocol)X
3859 1661(Speci\256cation)X
3860 1 f
3861 2159(,)X
3862 2207(ISO)X
3863 2385(DP)X
3864 2531(8073.)X
3865 720 4720(RFC)N
3866 925(905,)X
3867 1117(IETF)X
3868 1344(Network)X
3869 1704(Working)X
3870 2070(Group,)X
3871 2363(April)X
3872 2590(1984.)X
3873 720 4944([RFC-959])N
3874 720 5056(J.)N
3875 805(Postel)X
3876 1064(and)X
3877 1227(J.)X
3878 1312(Reynolds.)X
3879 2 f
3880 720 5168(File)N
3881 900(Transfer)X
3882 1254(Protocol)X
3883 1615(\(FTP\))X
3884 1 f
3885 1850(.)X
3886 720 5280(RFC)N
3887 925(959,)X
3888 1117(IETF)X
3889 1344(Network)X
3890 1704(Working)X
3891 2070(Group,)X
3892 2363(October)X
3893 2697(1985.)X
3894 720 5504([RFC-973])N
3895
3896 11 p
3897 %%Page: 11 11
3898 11.00 ps
3899 12 s 12 xH 0 xS 1 f
3900 2344 400(-)N
3901 2400(11)X
3902 2520(-)X
3903 720 688(Paul)N
3904 915(Mockapetris.)X
3905 2 f
3906 720 800(Domain)N
3907 1053(System)X
3908 1344(Changes)X
3909 1704(and)X
3910 1872(Observations)X
3911 1 f
3912 2384(.)X
3913 720 912(RFC)N
3914 925(973,)X
3915 1117(IETF)X
3916 1344(Network)X
3917 1704(Working)X
3918 2070(Group,)X
3919 2363(January)X
3920 2686(1986.)X
3921 720 1136([RFC-982])N
3922 720 1248(American)N
3923 1124(National)X
3924 1480(Standards)X
3925 1883(Institute.)X
3926 2 f
3927 720 1360(Guidelines)N
3928 1163(for)X
3929 1301(the)X
3930 1446(speci\256cation)X
3931 1960(of)X
3932 2062(the)X
3933 2207(structure)X
3934 2581(of)X
3935 2683(the)X
3936 2828(Domain)X
3937 3164(Speci\256c)X
3938 3491(Part)X
3939 3689(\(DSP\))X
3940 3956(of)X
3941 4058(the)X
3942 720 1472(ISO)N
3943 893(standard)X
3944 1258(NSAP)X
3945 1512(address)X
3946 1 f
3947 1810(.)X
3948 720 1584(ANSI)N
3949 967(Working)X
3950 1333(Document)X
3951 1758(X3S3.3/85-258,)X
3952 2395(published)X
3953 2793(as)X
3954 2897(RFC)X
3955 3102(982,)X
3956 3294(April)X
3957 3521(1986.)X
3958 720 1808([RFC-994])N
3959 720 1920(International)N
3960 1237(Organization)X
3961 1764(For)X
3962 1921(Standardization.)X
3963 2 f
3964 720 2032(DIS)N
3965 893(8473,)X
3966 1133(Protocol)X
3967 1494(for)X
3968 1630(Providing)X
3969 2039(the)X
3970 2181(Connectionless-mode)X
3971 3033(Network)X
3972 3383(Service)X
3973 1 f
3974 3667(.)X
3975 720 2144(Final)N
3976 959(Text)X
3977 1178(of)X
3978 1300(DIS)X
3979 1496(8473,)X
3980 1754(International)X
3981 2289(Organization)X
3982 2834(For)X
3983 3009(Standardization,)X
3984 3680(published)X
3985 4096(as)X
3986 720 2256(RFC)N
3987 925(994,)X
3988 1117(March)X
3989 1392(1986.)X
3990 720 2480([RFC-1006])N
3991 720 2592(Marshall)N
3992 1086(T.)X
3993 1193(Rose)X
3994 1409(and)X
3995 1572(Dwight)X
3996 1884(E.)X
3997 1991(Cass.)X
3998 2 f
3999 720 2704(ISO)N
4000 893(Transport)X
4001 1300(Services)X
4002 1645(on)X
4003 1765(top)X
4004 1912(of)X
4005 2011(the)X
4006 2153(TCP,)X
4007 2377(Version:)X
4008 2732(3)X
4009 1 f
4010 (.)S
4011 720 2816(RFC)N
4012 925(1006,)X
4013 1165(IETF)X
4014 1392(Network)X
4015 1752(Working)X
4016 2118(Group,)X
4017 2411(May)X
4018 2611(1987.)X
4019 720 3040([RFC-1085])N
4020 720 3152(M.)N
4021 853(Rose.)X
4022 2 f
4023 720 3264(ISO)N
4024 893(Presentation)X
4025 1409(Services)X
4026 1754(on)X
4027 1874(top)X
4028 2021(of)X
4029 2120(TCP/IP-based)X
4030 2694(internets)X
4031 1 f
4032 3031(.)X
4033 720 3376(RFC)N
4034 925(1085,)X
4035 1165(IETF)X
4036 1392(Network)X
4037 1752(Working)X
4038 2118(Group,)X
4039 2411(December)X
4040 2831(1988.)X
4041 720 3600([RFC-1123])N
4042 720 3712(R.)N
4043 832(Braden,)X
4044 1158(editor.)X
4045 2 f
4046 720 3824(Requirements)N
4047 1273(for)X
4048 1409(Internet)X
4049 1738(Hosts)X
4050 1980(--)X
4051 2068(Application)X
4052 2542(and)X
4053 2710(Support)X
4054 1 f
4055 3014(.)X
4056 720 3936(RFC)N
4057 925(1123,)X
4058 1165(IETF)X
4059 1392(Host)X
4060 1597(Requirements)X
4061 2156(Working)X
4062 2522(Group,)X
4063 2815(October)X
4064 3149(1989.)X
4065 720 4160([RFC-1138])N
4066 720 4272(S.)N
4067 821(Kille.)X
4068 2 f
4069 720 4384(Mapping)N
4070 1091(between)X
4071 1431(X.400\(1988\))X
4072 1938(/)X
4073 1989(ISO)X
4074 2162(10021)X
4075 2426(and)X
4076 2594(RFC)X
4077 2800(822)X
4078 1 f
4079 (.)S
4080 720 4496(RFC)N
4081 925(1138,)X
4082 1165(IETF)X
4083 1392(Network)X
4084 1752(Working)X
4085 2118(Group,)X
4086 2411(December)X
4087 2831(1989.)X
4088 720 4720([WP90a])N
4089 720 4832(The)N
4090 894(Information)X
4091 1378(Technology)X
4092 1862(Center.)X
4093 2 f
4094 720 4944(Installing)N
4095 1113(the)X
4096 1255(White)X
4097 1504(Pages)X
4098 1 f
4099 1739(.)X
4100 720 5056(Installed)N
4101 1118(as)X
4102 1265(DEST/doc/ams/WP.ins)X
4103 2227(from)X
4104 2481(directory)X
4105 2896 0.1821(andrew/overhead/util/lib)AX
4106 3911(of)X
4107 4058(the)X
4108 720 5168(Andrew)N
4109 1053(contribution)X
4110 1548(to)X
4111 1647(X.V11R4)X
4112 2041([X90],)X
4113 2318(January)X
4114 2641(1990.)X
4115 720 5392([WP90b])N
4116 720 5504(The)N
4117 894(Information)X
4118 1378(Technology)X
4119 1862(Center.)X
4120
4121 12 p
4122 %%Page: 12 12
4123 11.00 ps
4124 12 s 12 xH 0 xS 1 f
4125 2 f
4126 1 f
4127 2344 400(-)N
4128 2400(12)X
4129 2520(-)X
4130 2 f
4131 720 688(Administering)N
4132 1289(the)X
4133 1431(White)X
4134 1680(Pages)X
4135 1 f
4136 1915(.)X
4137 720 800(Installed)N
4138 1111(as)X
4139 1250(DEST/doc/ams/WP.adm)X
4140 2258(from)X
4141 2504(directory)X
4142 2911 0.1821(andrew/overhead/util/lib)AX
4143 3918(of)X
4144 4058(the)X
4145 720 912(Andrew)N
4146 1053(contribution)X
4147 1548(to)X
4148 1647(X.V11R4)X
4149 2041([X90],)X
4150 2318(January)X
4151 2641(1990.)X
4152 720 1136([X90])N
4153 720 1248(The)N
4154 894(MIT)X
4155 1094(X)X
4156 1187(Consortium.)X
4157 720 1360(X)N
4158 813(Version)X
4159 1141(11,)X
4160 1285(Release)X
4161 1609(4.)X
4162 720 1472(Massachusetts)N
4163 1299(Institute)X
4164 1639(of)X
4165 1743(Technology,)X
4166 2251(January)X
4167 2574(1990.)X
4168 3 f
4169 600 1696(Security)N
4170 966(Considerations)X
4171 1 f
4172 720 1920(In)N
4173 827(this)X
4174 993(memo,)X
4175 1285(security)X
4176 1617(issues)X
4177 1873(have)X
4178 2082(been)X
4179 2292(mentioned)X
4180 2727(only)X
4181 2926(in)X
4182 3029(passing.)X
4183 3393(Cell)X
4184 3582(administrations)X
4185 720 2032(must)N
4186 944(themselves)X
4187 1409(review)X
4188 1708(the)X
4189 1863(security)X
4190 2205(considerations)X
4191 2798(involved)X
4192 3172(in)X
4193 3284(making)X
4194 3610(any)X
4195 3786(given)X
4196 4036(cell)X
4197 720 2144(service)N
4198 1050(available.)X
4199 1505(For)X
4200 1696(instance,)X
4201 2094(cells)X
4202 2329(may)X
4203 2553(not)X
4204 2734(wish)X
4205 2973(to)X
4206 3106(install)X
4207 3400(a)X
4208 3501 0.2031(publicly-readable)AX
4209 720 2256(passwd\(5\))N
4210 1164(\256le)X
4211 1337(in)X
4212 1462(/afs/)X
4213 2 f
4214 1628(cellname)X
4215 1 f
4216 1976(/service/etc/passwd)X
4217 2775(if)X
4218 2884(they)X
4219 3100(do)X
4220 3246(not)X
4221 3419(wish)X
4222 3650(their)X
4223 3876(account)X
4224 720 2368(names)N
4225 996(to)X
4226 1101(be)X
4227 1222(known.)X
4228 1561(Similarly,)X
4229 1975(cells)X
4230 2183(may)X
4231 2380(or)X
4232 2491(may)X
4233 2688(not)X
4234 2842(wish)X
4235 3054(to)X
4236 3160(install)X
4237 3427(a)X
4238 3501 0.2031(publicly-readable)AX
4239 720 2480(White)N
4240 993(Pages)X
4241 1254(in)X
4242 1366(/afs/)X
4243 2 f
4244 1532(cellname)X
4245 1 f
4246 1880(/service/etc/wp)X
4247 2501(for)X
4248 2650(similar)X
4249 2955(reasons,)X
4250 3304(realizing)X
4251 3679(the)X
4252 3834(tradeoffs)X
4253 720 2592(involved.)N
4254 720 2816(In)N
4255 844(general,)X
4256 1196(cell)X
4257 1380(administrations)X
4258 2018(must)X
4259 2249(review)X
4260 2555(for)X
4261 2711(themselves)X
4262 3183(what)X
4263 3414(accesses)X
4264 3784(should)X
4265 4085(be)X
4266 720 2928(granted)N
4267 1052(to)X
4268 1169(all)X
4269 1308(\256les)X
4270 1510(and)X
4271 1691(directories)X
4272 2140(maintained)X
4273 2611(in)X
4274 2728(their)X
4275 2947(cell,)X
4276 3153(not)X
4277 3318(solely)X
4278 3590(those)X
4279 3835(\256les)X
4280 4037(and)X
4281 720 3040(directories)N
4282 1151(maintained)X
4283 1604(under)X
4284 1847(the)X
4285 1989(/afs/)X
4286 2 f
4287 2155(cellname)X
4288 1 f
4289 2503(/service/)X
4290 2854(name.)X
4291 3 f
4292 600 3264(Author's)N
4293 991(Address)X
4294 1 f
4295 720 3488(Craig)N
4296 958(Everhart)X
4297 720 3600(Transarc)N
4298 1081(Corporation)X
4299 720 3712(The)N
4300 894(Gulf)X
4301 1094(Tower)X
4302 720 3824(707)N
4303 888(Grant)X
4304 1131(Street)X
4305 720 3936(Pittsburgh,)N
4306 1163(PA)X
4307 1333(15219)X
4308 720 4160(Phone:)N
4309 1011(+1)X
4310 1137(412)X
4311 1305(338)X
4312 1473(4467)X
4313 720 4272(FAX:)N
4314 962(+1)X
4315 1088(412)X
4316 1256(338)X
4317 1424(4404)X
4318 720 4384(EMail:)N
4319 1012 0.1418(Craig_Everhart@transarc.com)AX
4320
4321 12 p
4322 %%Trailer
4323 xt
4324 %%Pages: 12
4325 %%DocumentNeededResources: font Times-Roman Times-Italic Times-Bold 
4326 %%+ Times-BoldItalic Helvetica Helvetica-Oblique Helvetica-Bold Helvetica-BoldOblique Courier 
4327 %%+ Courier-Oblique Courier-Bold Courier-BoldOblique Symbol 
4328
4329 xs