Bob -
Thank you and please excuse my ignorance.
I'm trying to run AX25, Netrom, and TCP/IP.
AX25 and Netrom seem to be somewhat functional as I can call (via c
radio k1cf-1 ((which is my local node)). However -
call nr0 k1cf-1 outputs:
GW4PTS AX.25 Connect v1.11
call: NET/ROM callsign or alias not found
and an attempt to ping k1cf-1 (44.56.14.11) {which is my local node}
[pgrace@bones ax25]$ ping -i30 -c5 44.56.14.11
PING 44.56.14.11 (44.56.14.11) from 192.168.1.5 : 56 data bytes
>From cx374276-a.lncln1.ri.home.com (24.0.248.100): Destination Host
Unreachable
Does this look okay to you? You seem to be a wonderful guru!
This is now what my config files look like:
___
#rc.local- runs at boot:
/usr/sbin/kissattach -i 44.56.20.25 -m 512 /dev/axip axip
/usr/sbin/kissattach -i 44.56.20.25 -m 512 /dev/radio radio
/usr/sbin/axparms -assoc kb1cvh pgrace
/sbin/route add -net 44.56.20.0 netmask 255.255.255.0 ax0
/usr/sbin/kissparms -p radio -t 300 -s 300 -r 25
/usr/sbin/nrattach -i 44.56.20.25 -m 512 nr0
route add 44.56.20.25 nr0
/usr/sbin/ax25ipd
/usr/sbin/ax25d
/usr/sbin/mheardd -n 100
/usr/sbin/nrparms -routes radio K1CF-1 + 120
/sbin/route add -net 44.56.14.11 nr0
/sbin/arp -t netrom -s 44.56.14.11 K1CF-1
/sbin/ifconfig ax0 44.56.20.25 netmask 255.255.255.255 up
/sbin/ifconfig ax1 44.56.20.25 netmask 255.255.255.255 up
/sbin/ifconfig nr0 44.56.20.25 netmask 255.255.255.0 up
/usr/sbin/netromd -i -t 120
/usr/sbin/nrparms -nodes KA1TUZ + BBSTUZ 120 5 radio K1CF-1
/usr/sbin/nrparms -nodes KA1TUZ-11 + "*" 120 5 radio K1CF-1
/usr/sbin/nrparms -nodes WZ1L + BBSWZL 120 5 radio K1CF-1
/usr/sbin/nrparms -nodes WB1DSW-2 + EKINGS 120 5 radio K1CF-1
/usr/sbin/nrparms -nodes W1UU + MASS 120 5 radio K1CF-1
/usr/sbin/nrparms -nodes WZ1L-5 + POWOW 120 5 radio K1CF-1
/usr/sbin/nrparms -nodes K1TR-10 + WHDHM 120 5 radio K1CF-1
/usr/sbin/nrparms -nodes K1UGM + BBSUGM 120 5 radio K1CF-1
___
#and ax25ipd.conf has:
socket ip
mode tnc
device /dev/axipd
speed 9600
loglevel 0
route w1uu-5 44.56.20.1 b
route wg1i-6 44.56.17.1 b
route n1uan-5 44.56.26.4
route n1uan-5 44.56.26.1
route ka1rci-8 44.104.6.1
route wg1i-10 44.56.17.9
route w3ki-5 44.56.10.147
route w1uu-2 44.56.20.2
route ka1tuz-3 44.56.17.14 b
route ka1tuz-1 44.56.17.15 b
route wa1ykn-8 44.56.10.128
route ka1rci-8 44.104.0.128
route ns1n-1 44.56.16.68
route wa1phy-6 44.56.4.1
route wg1i-5 44.56.17.4
route wg1i-4 44.56.17.3
route wg1i-3 44.56.17.2
route ko6ri-* 44.2.1.2
#
# a default route. Careful here, all undefined traffic end's up here.
#
route k1cf-1 44.56.14.11 d
___
73, Peter KB1CVH [EMAIL PROTECTED] kb1cvh@ka1tuz.#ema.us.noam
Bob Meyer wrote:
>
> Peter Grace wrote:
>
> > Tomi and Bob-
> > Thanks for your help with this.
> > I have ax25ipd running now.
>
> Peter it's running but it's not doing anything. /dev/ttyS0 is your serial
> port where I'm guessing your TNC is connected. It looks like both your axip's
> and your radio's interfaces are not working correctly.
>
> make these symbolic links
>
> ln -sf /dev/ttyS0 /dev/radio
> ln -sf /dev/ptyp0 /dev/axip
> ln -sf /dev/ttyp0 /dev/axipd
>
> Make your /etc/axports file look like this...
>
> radio KB1CVH 9600 512 2 ax25 on an unknown frequency
> axip KB1CVH-1 9600 512 2 axip link
>
> # attach the devices Ya got two, the radio and the axip
> /usr/sbin/kissattach -i 44.56.20.25 -m 512 /dev/radio radio
> /usr/sbin/kissattach -i 44.56.20.25 -m 512 /dev/axip axip
>
> I have a redhat6 host too and when I do a kissattach the interface is given a
> netmask of 255.0.0.0 and an net route to match. If you want to send all IP
> traffic with an address from 44.56.20.0 thru 44.56.29.255 out the radio on
> ttyS0 all you need to is enter the command...
> ifconfig ax0 netmask 255.255.255.0
> and the route will change for you.
>
> If you want to control these things yourself set the netmask to
> 255.255.255.255 and add the route manually. You won't want a route on the
> axip interface so set the netmask to 255.255.255.255.
>
> # configure the interface
> ifconfig ax0 netmask 255.255.255.255
> ifconfig ax1 netmask 255.255.255.255
> route add -net 44.56.20.0 netmask 255.255.255.0 ax0
>
> This is all you need in your ax25ipd.conf file if you use tnc mode. Well, you
> need more routes but... ;-)
>
> socket ip
> mode tnc
> device /dev/axipd
> route ko6ri-* 44.2.1.2
>
> # start the application
> /usr/sbin/ax25ipd
>
> Bob