Here is an ax25 script that I use to control the Dual port KPC-9612 with mkiss and kissattach.
# Dual port TNC KPC-9612 mkiss -s 9600 -x 2 /dev/ttyUSB1 > /tmp/unix98 export PTS0=`more /tmp/unix98 | grep -w /dev | cut -b -11` export PTS1=`more /tmp/unix98 | grep -w /dev | cut -b 12-` sleep 1 # Port 1k2 144.850Mhz echo "Starting ax0 " if grep ax0 /etc/ax25/axports ; then kissattach $PTS0 ax0 || return=$rc_failed ifconfig ax0 44.137.31.73 netmask 255.255.255.224 sleep 2 else echo "Error ax0 not found in the file axports" return="Failed" fi echo "$1 $return" # Port 9k6 430.950Mhz echo "Starting ax1 " if grep ax1 /etc/ax25/axports ; then kissattach $PTS1 ax1 || return=$rc_failed ifconfig ax1 44.137.31.73 netmask 255.255.255.224 sleep 2 else echo "Error ax1 not found in the file axports" return="Failed" fi echo "$1 $return"