According to Peter: While burning my CPU.
>
> I�am trying to make a dos and a linux pc talk to each other via ax25 and
> ethernet. So this is a linux/flexnet mixed question.
>
> I do have 2 pc�s. One is running dos with flexnet version 3.3e on it. De
> module ether is loaded without any comment.
> The other is running linux with ax25. The connection between those 2 is
> ethernet. The connection is only coax with two 50 ohm terminators and no
> other pc�s.
>
> When I start calling at flexnet (pb0aiu) the linux pc (pi4cc) is
> responding. Here is a sample from listen -a:
>
> Port bpq0: AX25: PB0AIU->PI4CC (C C P)
>
> Port bpq0: AX25: PI4CC->PB0AIU (UA R F)
>
> So far, so good. But the flexnet pc keeps on calling and doesn�t receive
> any packets from linux. The counter TX packets at eth0 is increasing (at
> linux) but at flexnet de rxpackets (stat) is still zero.
>
Then it sounds like a flexnet problem, of which i cant help, all i can do is
outline what you need in the linux box, please see the comments below.
>
> Where do I have to look at? Dos or Linux end?
> What are the minimum configuration files at linux to talk via AX25 over
> ethernet? Are there some sample config files on internet for ax25d,
> axports or startup scripts? Do I need more to config?
> Are there also some samples of flexnet startup script?
>
> Any comment is welcome.
I answered your last plee for help, as did a few others, all i can comment
on is the linux side, my setup is 2 linux boxes both running bpqether, the
rc.ax25 file inclided below also shows howto configure netrom to run via
bpq, however the netrom stuff is commented out as i have no use for it at
the minute. I am sure you will see howto configure a linux box to run
BPQether from it, therfor eliminating the doubt about which box needs to be
configured properly.
#!/bin/sh
UDIR="/usr/sbin"
BDIR="/usr/bin"
SDIR="/sbin"
IPADDR="44.137.28.48"
NETMASK="255.255.255.255"
NETWORK="44.0.0.0"
BROADCAST="44.255.255.255"
GATEWAY="44.137.28.57"
BPQ="00:00:C0:52:F8:60"
BPQC="PA3GCU-11"
# ${SDIR}/modprobe netrom
${SDIR}/modprobe bpqether
${SDIR}/ifconfig bpq0 ${IPADDR} hw ax25 ${BPQC} up
${SDIR}/ifconfig bpq0 broadcast ${BROADCAST}
${SDIR}/ifconfig bpq0 netmask ${NETMASK}
${UDIR}/bpqparms bpq0 -d ${BPQ}
# ${UDIR}/nrattach -i ${IPADDR} -m 236 netrom
# ${SDIR}/ifconfig nr0 broadcast ${BROADCAST}
${UDIR}/axparms -assoc pa3gcu pa3gcu
# echo "*** NETROMD ***"
# ${UDIR}/netromd -i -d -l -q220 -p1 -t30 &
# sleep 1
# ${UDIR}/mheardd -l -f -n25 &
# sleep 1
echo "*** AX25D The brain. ***"
echo
# -l = log connects to the syslog, 'man ax25d' for more details.
${UDIR}/ax25d -l &
# ${UDIR}/netdate gw.pe1cig.ampr.org
The entry for the callsign + ssid mentioned above is defined in
/etc/ax25d.conf and looks like;
[PA3GCU-11 VIA BPQ0]
default * * * * * * - root /usr/sbin/node node bpq0 %u
#
A thing to note;
BPQ="00:00:C0:52:F8:60" is the MAC address of the remote host.
By using ax25d -l you can get error messages in your log which will 'help'
you debug whats going on, or at least get some information, anyway you make
no mention of any logs, have you looked in /var/log/* for details ??
As i said before the above concerns two linux boxes connected via bpqether,
i dont see why it cant communicate with any other bpq orientated server, if
that server is configured properly.
>
> 73 peter
> PB0AIU
>
--
Regards Richard.
[EMAIL PROTECTED]