From owner-FreeBSD-users-jp@jp.freebsd.org  Fri May 24 11:28:20 1996
Received: by mail.jp.freebsd.org (8.7.3+2.6Wbeta5/8.7.3) id LAA04633
	Fri, 24 May 1996 11:28:20 +0900 (JST)
Received: by mail.jp.freebsd.org (8.7.3+2.6Wbeta5/8.7.3) with ESMTP id LAA04628
	for <FreeBSD-users-jp@jp.freebsd.org>; Fri, 24 May 1996 11:28:18 +0900 (JST)
Received: from localhost.kobe-u.ac.jp (localhost.kobe-u.ac.jp [127.0.0.1]) by bacchus.in.kobe-u.ac.jp (8.7.5+2.6Wbeta6/3.4W) with SMTP id LAA01784; Fri, 24 May 1996 11:28:17 +0900 (JST)
Message-Id: <199605240228.LAA01784@bacchus.in.kobe-u.ac.jp>
X-Authentication-Warning: bacchus.in.kobe-u.ac.jp: Host localhost.kobe-u.ac.jp [127.0.0.1] didn't use HELO protocol
To: FreeBSD-users-jp@jp.freebsd.org
cc: yosimura@bacchus.in.kobe-u.ac.jp
Date: Fri, 24 May 1996 11:28:14 +0900
From: Takuya Yoshimura <yosimura@bacchus.in.kobe-u.ac.jp>
Reply-To: FreeBSD-users-jp@jp.freebsd.org
X-Distribute: distribute [version 2.1 (Alpha) patchlevel=19]
X-Sequence: FreeBSD-users-jp 1745
Subject: [FreeBSD-users-jp 1745] Re: kerberos
Errors-To: owner-FreeBSD-users-jp@jp.freebsd.org
Sender: owner-FreeBSD-users-jp@jp.freebsd.org

$B5HB<!w?@8MBg$H?=$7$^$9!%(B

$B$[$H$s$IEj9F$7$?$3$H$,L5$$$N$G$9$,!$2?$+Lr$K$?$F$l$P!$$H;W$C$FEj9F$7$^(B
$B$9!%(B

kerberos$B$H$O4X78L5$$$N$G$9$,!D(B

$BEDJ?$5$s(B >  cap60$B$N%$%s%H!<%k$r$"$-$i$a(Bnetatalk$B$N%$%s%9%H!<%k$r;O$a$^$7$?!#(B

$B;d$O(B FreeBSD(98)2.0.5-RELEASE $B$K(B cap60 $B$r%$%s%9%H!<%k$7$F;H$C$F$$$^$9!%(B
$B%$%s%9%H!<%k;~$N%a%b$,;D$C$F$$$k$N$G(B($B$A$c$A$J%a%b$G$9$,(B)$B!$;29M$K$7$FD:$1$l$P9,$$$G$9!%(B
($B;0ED$5$s$N!$1n$G$b$o$+$k(B FreeBSD $B$K$O$*@$OC$K$J$C$F$$$^$9!%(B)
**************************************************************************

$B#0!%=`Hw(B
$B%"!<%+%$%V$rF~<j(B
cap60.pl196.tar.gz

$B%+!<%M%k$r(B bpfilter $BBP1~$K$7$F:n$jD>$9!%(B(Barkley Packet Filter)

pseudo-device bpfilter 12

$B$r;XDj$7$F:n$l$P%*%C%1!<(B

$B$G!$%G%P%$%9$r:n$k!%(B
/dev $B$G(B
./MAKEDEV bpf1
     $B!&(B
./MAKEDEV bpf11

$B#1!%%=!<%9$NE83+(B
zcat cap60.pl196.tar.gz | tar xvf - 
cd cap60

$B$G!$(Bcap60/doc/install.ms $B$K$7$?$,$C$F%$%s%9%H!<%k$9$k!%(B

$B#2!%(Bconfigure $B$N<B9T(B

Native Ethertalk $B$H(B Phase 2 compatibility $B$G(B yes $B$H$9$k$@$1!%(B
$B$"$H$O$R$?$9$i%j%?!<%s(B

./Configure

This is the CAP configuration script. It will attempt to help
you get the CAP libraries and component programs configured.
Please refer to NOTES before you run if you haven't already.
			$B!&(B
			$B!&(B
Do you wish to use UAR (Unix AppleTalk Router)(default no) ? 
Not using UAR.

Do you wish to use Native EtherTalk (default no) ? yes
Do you want Phase 2 compatibility (no) ? yes
OK, setting things up for Native EtherTalk, Phase2.


CAP can be setup to occupy a single directory tree (for testing).
Do you wish to restrict CAP to this subdirectory (default no) ? 
			$B!&(B
			$B!&(B
Program configuration can be done by modifying m4.setup
under the minor configuration parameters

$B$3$l$G(B Configure $B=*N;!%(B

$B#3!%(Bmakefile $B$N:n@.(B
./gen.makes

$B#4!%%X%C%@%U%!%$%k$N%$%s%9%H!<%k(B
su
make include

$B#5!%%i%$%V%i%j$N9=C[(B
make libsmade

$B#6(B cap60/sample $B$N(B makefile $B=$@5(B
98$B9TL\$r:o=|!%(B

# copy because some machines won't do it right o.w.
atlooklws.o: atlook.c
        cp atlook.c atlooklws.c
        ${CC} ${CFLAGS} -c -DATLOOKLWS atlooklws.c
        rm atlooklws.c
atlooklws:      atlooklws.o ${GETOPT} ${O}
        ${CC} ${LFLAGS} -o atlooklws atlooklws.o ${GETOPT} $(O) $(CA
PLIB) ${SLIB}

$B#7!%(Bcap60/applications/lwsrv/lwsrvconfig.c $B$N=$@5(B
675$B9TL\(B

#if (!(defined(SOLARIS) || defined(bsdi) || defined(__NetBSD__)))
char *
strdup(const char *str)
{
  register char *cp;

  if ((cp = (char *)malloc(strlen(str) + 1)) == NULL)
    errorexit(1, "strdup: Out of memory\n");
  strcpy(cp, str);
  return(cp);
}
#endif /* SOLARIS || bsdi || __NetBSD__ */


$B#6!%%i%$%V%i%j$N%$%s%9%H!<%k$H%5%s%W%k%W%m%0%i%`$N9=C[(B
make programs

$B#7!%%$%s%9%H!<%k(B
make install

$B#9!%(Baarpd $B%G!<%b%s$r5/F0(B

/usr/local/cap/aarpd ed0 ZONE

ZONE $B$O(B AppleTalk $B$N(B Zone $BL>(B

$B#1#0!%(Batis $B%G!<%b%s$r5/F0(B

/usr/local/cap/atis

$B#1#1!%(Batistest $B$G(B atis $B$,$A$c$s$HF0$$$F$k$+3NG'(B

./samples/atistest

CAP distribution 6.00 using EtherTalk Phase 2 encapsulation, August 1995
Copyright (c) 1986,1987,1988 by The Trustees of Columbia University in the City of New York

abInit: [ddp:  72.91, 2], [GW:  72.91, 188] starting
debugging NBP
Registering "atis test:testing@*"
NBP SndNBP: sending
NBP nbp_timeout: 4 tick timeout on -272640268, 3 remain
NBP SndNBP: sending
NBP nbp_timeout: 4 tick timeout on -272640268, 2 remain
NBP SndNBP: sending
NBP nbp_timeout: 4 tick timeout on -272640268, 1 remain
NBP SndNBP: sending
NBP nbp_timeout: 4 tick timeout on -272640268, 0 remain
NBP SndNBP: sending
NBP status done: found -272640268
Okay

$B!I(BOkay$B!I$,$G$?$i%*%C%1!<!%(B

$B#1#2!%(Baufs $B%G!<%b%s$r5/F0(B

/usr/local/cap/aufs

$B#1#2!%<+J,$N%[!<%`%G%#%l%/%H%j$K(B .afpvols $B%U%!%$%k$H(B .finderinfo $B%G%#%l%/%H%j$r:n$k!%(B
      .afpvols $B$NFbMF$O(B

	%cat ~/.afpvols
	~/:yosimura_home

$B#1#3!%(Baufs $B%G!<%b%s$r5/F0$7!$(BMac $B$+$i(B UNIX$B%U%!%$%k%7%9%F%`$,8+$($k$3$H$r3NG'$9$k!%(B
      $B<B:]$K%^%&%s%H$7$F$_$k!%(B

      $B$A$c$s$H%^%&%s%H$G$-$?$i%*%C%1!<(B

$B#1#3!%(Bstart-cap-servers $B$N%3%T!<(B
cap60/etc/start-cap-servers $B$r(B /usr/local/lib/cap/ $B$K%3%T!<!$=$@5!%(B


$B#1#4!%(B/etc/rc.local $B$N=q$-49$(!%(B

if [ -f /usr/local/lib/cap/start-cap-servers ]; then
   /usr/local/lib/cap/start-cap-servers & echo -n " CAP " > /dev/console
fi

$B$r=q$-2C$($k!%(B

$B#1#5!%%j%V!<%H!%(B

sync
sync
sync
reboot

$B;29MJ88%!'5HB<(B $B?-!$(B"Mac $B$H(B UNIX $B$N3Z$7$$%M%C%H%o!<%/(B" UNIX MAGAZINE 1994$BG/(B 7$B7n9f(B

********************************************************************

------------------------------------------------
 $B?@8MBg3XBg3X1!(B $B<+A32J3X8&5f2J(B $B>pJsCNG=9)3X@l96(B
           $B@V_78&5f<<(B (078-881-1191) 		     
                   $B5HB<(B $BBs:H(B	                     
        yosimura@bacchus.in.kobe-u.ac.jp         
------------------------------------------------







