ITEM: AS1161L

Change trace file size of SNA Server LS trace.



Description:  AIX SNA Server link station (LS) trace is fixed at 1.5MB.
.Since the underlying AIX trace command supports configurable trace
size the AIXSNA LS trace should also support configurable trace size.
See InfoExplorer for details on the trace command.
.A design change request (DCR) has been submitted under CMVC item 2696.
AIX SNA development will review this issue.
.The following workaround has been tested and it works; however this 
workaround would be considered customer implemented code and is not 
supported as AIXSNA code.
...
   \#!/bin/ksh
   \#
   \# to increase size of aixsna LS trace to 10MB
   \# mv /bin/trace /bin/trace.real
   \# then replace /bin/trace with this script
   \# chmod 555 /bin/trace
   \#
   LOPT=10000000
   OPT=""
   while [[ "$1" != "" ]]
   do
     if [[ "$1" = "-L" ]]
     then
       LOPT="$2"
       shift
       if [[ "$1" != "" ]]
       then
         shift
       fi
     else
       OPT="$OPT $1"
       shift
     fi
   done
    /bin/trace.real -L $LOPT $OPT
   rc=$?
   exit $rc
...


Support Line: Change trace file size of SNA Server LS trace. ITEM: AS1161L
Dated: January 1996 Category: N/A
This HTML file was generated 99/06/24~13:30:25
Comments or suggestions? Contact us