Contents of this page are obsolete. This page is preserved and stored at this URL just from historical viewpoint. Original URL was http://www.mm.media.kyoto-u.ac.jp/members/kameda/...
Please visit www.kameda-lab.org for recent information. (2002/12/06, kameda@ieee.org)

Adaptec ATM Driver for Solaris:SBus Phase 6

Adaptec-52x0 on Solaris:SBus, KUINS-II/ATM 1997/06/30
/etc/rc2.d/S681aatminit と /etc/rc2.d/S683acipinit において、初期設定 では計算機の起動時にATMドライバが導入されないようになっています。これ らをコメントアウトして下さい(下記例の赤色部分 )。

また、Ultraシリーズ(Solaris2.5)とAdaptec ANA5230を使ってKUINS-II/ATMに 繋ごうとすると、最新ドライバ2.00.06 ( pkgadd するときに表示される:でも modinfoでは atms ATM driver v2.05 と acip IP/ATM v2.05[05] というよう に表示される)でも一発では繋がりません。多少修正が必要なようです。(こ れは極秘最新ドライバ2.00.06-Bなら回避されていますが、 ftp.adaptec.comでは入手できません。KUINS-IIに直接お問い合わせ下さ い。)

そこで、2.00.06(2.00.06-Bでないもの)では姑息にも起動したあと一回落す と、次は繋がるようです(なぜ?)。気持ち悪いけど、こうすると動くのでお 茶を濁しています。(下例の青色部分


/etc/rc2.d/S681aatminit
#!/bin/sh

#
#  give the inetsvc script time to complete
#
# start the base driver
#

# comment the following line to enable boot start
#echo Not starting Adaptec ATM Nic.
#exit 0

if [ -f /etc/opt/ADPTaatm/bin/base.db -a -f /opt/ADPTaatm/bin/aatmcnfg ]
then
        echo "starting Adaptec ATM NIC."
        echo "Adaptec ATM NIC (Linkup->Down->Linkup Again by KAMEDA)."
        /opt/ADPTaatm/bin/aatmcnfg -f /etc/opt/ADPTaatm/bin/base.db
        /opt/ADPTaatm/bin/aatmcnfg -s
        /opt/ADPTaatm/bin/aatmcnfg -f /etc/opt/ADPTaatm/bin/base.db
else
        echo "Not starting Adaptec ATM Nic."
        exit 1;
fi

exit 0

/etc/rc2.d/S683acipinit
#!/bin/sh

#
#  give the inetsvc script time to complete
#
# start the acip driver
#

# comment the following line to enable boot start
#echo "Not starting Adaptec ATM Classic IP."
#exit 0

if [ -f /etc/opt/ADPTaatm/bin/acip.db -a -f /opt/ADPTaatm/bin/acipcnfg ]
then
        echo "starting Adaptec ATM Classic IP."
        echo "Adaptec ATM Classic IP (Up->Down->Up Again by KAMEDA)."
        /opt/ADPTaatm/bin/acipcnfg -f /etc/opt/ADPTaatm/bin/acip.db
        /opt/ADPTaatm/bin/acipcnfg -s
        /opt/ADPTaatm/bin/acipcnfg -f /etc/opt/ADPTaatm/bin/acip.db
else
        echo "Not starting Adaptec ATM Classic IP."
fi

exit 0


<kameda@kuis.kyoto-u.ac.jp>