OpenBCM V1.07b12 (Linux)

Packet Radio Mailbox

DB0FHN

[JN59NK Nuernberg]

 Login: GUEST





  
DL5ZBM > LINUX    30.12.02 16:49l 330 Lines 11606 Bytes #999 (14) @ DL
BID : UCCDB0PV_04N
Read: GUEST DL7NDR
Subj: ? (2) HELP: SuSE 7.3 / LinKT 0.6.99
Path: DB0FHN<DB0RGB<DB0FSG<DB0PV
Sent: 021230/1506z @:DB0PV.#BAY.DEU.EU [Muenchen JN58sc] bcm1.42n $:UCCDB0PV_04
From: DL5ZBM @ DB0PV.#BAY.DEU.EU  (Matthias)
To:   LINUX @ DL
Reply-To: DL5ZBM @ DB0FFB.#BAY.DEU.EU
X-Info: No login password

Salut rundum,
um das Problem genauer zu spezifieren zu meiner Frage von heute:

---------------------------------------------------------------Mal alles auf einen Blick:

Vorhandene Software:
LinKT 0.6.99-49
MonKT 0.6.0
AX25Apps 0.0.5-66
ax25tool 0.0.6-179
libax 0.0.7-280
ax25spyd 0.23-257
ax25-config 0.3.3

Kernel 2.4.10

---------------------------------------------------------------AX25-Konfiguration:

# /etc/ax25/axports
#Name	Call		Baudrate	PacLen	MaxFrame	Beschreibung
6pac0	DL5ZBM-1  	9600		256	4		6pack-9600 Bd


# /etc/ax25/config.6pac0
# Don't add lines in this file, these will be lost next time you
# Use the ax25-config utility.
# Changes of existing lines will *not* being lost.
Rufzeichen="DL5ZBM-1"
Modem="6pack"
Ax25Device="6pac0"
NetDevice="sp0"
KernelModules="ax25;6pack"
TxDelay="25"
TxTail="20"
Persistance="128"
SlotTime="10"
Paclen="256"
MaxFrame="4"
T1="100"
T2="30"
T3="30000"
Retry="10"
IpNr="192.168.1.1"
Netmask="255.255.255.0"
Broadcast="192.168.1.255"
Port="/dev/ttyS1"
SoftDcd=""
Baudrate="9600"
Bitrate=""
IoBase=""
Irq=""
IntExt=""
Clk=""
Divider=""
ChipClock=""
Type=""
ClockSource=""
Mode=""
StartAx25d="n"
TcpIp="n"
Zugang="n"
GastName="no"
BenutzerGruppe="nogroup"
BenutzerHome="/tmp"
DMA="1"
PTT=""
PTT=""
START_AX25RTD=""
START_NETROM=""
START_NODE=""
NetRomCall=""
NetRomAlias=""
START_NETROMD=""
Gateway=""
GatewayAx25Path=""
GatewayARP="44.130.25.80 db0ais-10"
dns=""
DataA=""
DataB=""
ctrlA=""
ctrlB=""
MIX=""
Pipe=""
kjd=""


------ ax25-up
#!/bin/bash
# Version = ax25-config-0.3.3
# Start6pac0
# 6pack-Modul einbinden
modprobe ax25; modprobe 6pack
#
# 6pack-Gerät an /dev/ttyS1 als Port "6pac0" anbinden
/usr/sbin/spattach /dev/ttyS1 6pac0 192.168.1.1
#
# Parameter einstellen: P=128, W=10, txtail 20 TX-Delay=25
/usr/sbin/kissparms -p 6pac0 -r 128 -s 10 -l 20 -t 25
echo 100 > /proc/sys/net/ax25/sp0/t1_timeout
echo 30 > /proc/sys/net/ax25/sp0/t2_timeout
echo 30000 > /proc/sys/net/ax25/sp0/t3_timeout
echo 10 > /proc/sys/net/ax25/sp0/maximum_retry_count
echo 4 > /proc/sys/net/ax25/sp0/standard_window_size
echo 256 > /proc/sys/net/ax25/sp0/maximum_packet_length
# End6pac0
# StartARNM
#
# Monitor auf Terminal 11 starten
/usr/bin/listen -artc > /dev/tty11 &
echo $! > /var/run/listen.pid
# EndARNM



#! /bin/bash
#
# /etc/init.d/ax25
#
# Kernel-Parameter "ax25=yes|no" ?

     StartAx25="yes"
      if [ "`grep -e [Aa][Xx]25=[Nn][Oo] /proc/cmdline`" != "" ] ; then
        StartAx25="no"
      fi

# Parameter "START_AX25" in /etc/rc.config ?

     . /etc/rc.config
      if [ "$START_AX25" != "yes" ]; then
        exit 0
      fi

case "$1" in
  start)
    if [ "$StartAx25" == "no" ]; then
      echo -e "ax25: Aborting startup on user request (kernel boot parameter)."
      exit 1
    fi

    echo "/etc/init.d/ax25: Starting AX25..."
    /etc/ax25/ax25-up
    ;;
   -start)
    echo "/etc/init.d/ax25: Starting AX25..."
    /etc/ax25/ax25-up
    ;;
    stop)
    echo "Shutting down AX25..."
    /etc/ax25/ax25-down
    ;;
   -stop)
    echo "Shutting down AX25..."
    /etc/ax25/ax25-down
    ;;
   -restart)
    echo "AX25 Restart"
    /etc/ax25/ax25-down
    sleep 1
    /etc/ax25/ax25-up
    ;;
   -status)
    if [ ! -d /proc/sys/net/ax25 ] ; then
      echo "ax25 is down"
    else
      echo "$(ls /proc/sys/net/ax25)" > /tmp/ax25-config.tmp
      read Auswahl < /tmp/ax25-config.tmp
      i=0
      while [ "$Auswahl" != "" ]
      do
      let i=i+1
      awk ' NR == '$i' { print $1 }' /tmp/ax25-config.tmp > /tmp/ax25-config-tmp
      read Auswahl < /tmp/ax25-config-tmp
        if [ "$Auswahl" != "" ]; then
          /sbin/ifconfig "$Auswahl"
        fi
      done
        if [ -z "$(uname -r | grep kjd)" ] ;then
          netstat --ax25
        else
          /sbin/ifconfig ipax0
          cat /proc/net/ax25
        fi
    fi
    ;;
  *)
    echo "Usage: $0 {-start|-stop|-restart|-status}"
    exit 1
    ;;
esac

/usr/sbin/ax25spyd

exit 0

---------------------------------------------------------------Boot-Vorgang


lines, that surprises me are marked with   <<<----------

------------------------- /var/log/boot.msg

Setting up loopback devicedone
Setting up hostnamedone
Mount SHM FS on /dev/shmdone
Configuring serial ports...
ttyS0 at 0x03f8 (irq = 4) is a 16550A
ttyS1 at 0x02f8 (irq = 3) is a 16550A
Configured serial ports
doneRunning /etc/init.d/boot.local
... ... ...
<notice>'/etc/init.d/rc5.d/S02i4l start' exits with status 0
<notice>/etc/init.d/rc5.d/S03ax25 start
/etc/init.d/ax25: Starting AX25...
AX.25 port 6pac0 bound to device sp0

ax25spyd 0.23 - compiled: Sep 20 2001 05:55:57
 running as daemon
<notice>'/etc/init.d/rc5.d/S03ax25 start' exits with status 0
<notice>/etc/init.d/rc5.d/S04ax25 start
/etc/init.d/ax25: Starting AX25...
spattach: device /dev/ttyS1 already in use <<<---------

ax25spyd 0.23 - compiled: Sep 20 2001 05:55:57
failed to bind server socket     <<<---------
<notice>'/etc/init.d/rc5.d/S04ax25 start' exits with status 0
<notice>/etc/init.d/rc5.d/S05network start
Setting up network device eth0
done<notice>'/etc/init.d/rc5.d/S05network start' exits with status 0
<notice>/etc/init.d/rc5.d/S06hotplug start


------------------------- /var/log/messages



Dec 30 15:09:14 mplinux syslogd 1.4.1: restart.
Dec 30 15:09:16 mplinux in.identd[702]: started
Dec 30 15:09:19 mplinux kernel: klogd 1.4.1, log source = /proc/kmsg started.
Dec 30 15:09:19 mplinux kernel: Inspecting /boot/System.map-2.4.10-4GB
Dec 30 15:09:19 mplinux kernel: Loaded 11713 symbols from /boot/System.map-2.4.10-4GB.
Dec 30 15:09:19 mplinux kernel: Symbols match kernel version 2.4.10.
Dec 30 15:09:19 mplinux kernel: Loaded 376 symbols from 13 modules.
Dec 30 15:09:19 mplinux kernel: ip_tables: (c)2000 Netfilter core team
Dec 30 15:09:19 mplinux kernel: ip_conntrack (1023 buckets, 8184 max)
Dec 30 15:09:19 mplinux kernel: NET4: G4KLX/GW4PTS AX.25 for Linux. Version 0.37 for Linux NET4.0
Dec 30 15:09:19 mplinux kernel: AX.25: 6pack driver, Revision: 0.3.0 (dynamic channels, max=31)
Dec 30 15:09:19 mplinux kernel: kissparms uses obsolete (PF_INET,SOCK_PACKET)
Dec 30 15:09:19 mplinux kernel: PCI: Found IRQ 9 for device 00:09.0
Dec 30 15:09:19 mplinux kernel: PCI: Sharing IRQ 9 with 00:04.2
Dec 30 15:09:19 mplinux kernel: PCI: Sharing IRQ 9 with 00:04.3
Dec 30 15:09:19 mplinux kernel: 3c59x: Donald Becker and others. www.scyld.com/network/vortex.html
Dec 30 15:09:19 mplinux kernel: 00:09.0: 3Com PCI 3c905C Tornado at 0xa400. Vers LK1.1.16
Dec 30 15:09:19 mplinux kernel: usb.c: registered new driver usbdevfs
Dec 30 15:09:19 mplinux kernel: usb.c: registered new driver hub
Dec 30 15:09:19 mplinux kernel: PCI: Found IRQ 9 for device 00:04.2
Dec 30 15:09:19 mplinux kernel: PCI: Sharing IRQ 9 with 00:04.3
Dec 30 15:09:19 mplinux kernel: PCI: Sharing IRQ 9 with 00:09.0
Dec 30 15:09:19 mplinux kernel: uhci.c: USB UHCI at I/O 0xd400, IRQ 9
Dec 30 15:09:19 mplinux kernel: usb.c: new USB bus registered, assigned bus number 1
Dec 30 15:09:19 mplinux kernel: hub.c: USB hub found
Dec 30 15:09:19 mplinux kernel: hub.c: 2 ports detected
Dec 30 15:09:19 mplinux kernel: PCI: Found IRQ 9 for device 00:04.3
Dec 30 15:09:19 mplinux kernel: PCI: Sharing IRQ 9 with 00:04.2
Dec 30 15:09:20 mplinux kernel: PCI: Sharing IRQ 9 with 00:09.0
Dec 30 15:09:20 mplinux kernel: uhci.c: USB UHCI at I/O 0xd000, IRQ 9
Dec 30 15:09:20 mplinux kernel: usb.c: new USB bus registered, assigned bus number 2
Dec 30 15:09:20 mplinux kernel: hub.c: USB hub found
Dec 30 15:09:20 mplinux kernel: hub.c: 2 ports detected
Dec 30 15:09:20 mplinux kernel: uhci.c: :USB Universal Host Controller Interface driver
Dec 30 15:09:20 mplinux kernel: IPv6 v0.8 for NET4.0
Dec 30 15:09:20 mplinux kernel: IPv6 over IPv4 tunneling driver
Dec 30 15:09:20 mplinux kernel: 6pack: resyncing TNC     <<<---------
Dec 30 15:09:20 mplinux kernel: protocol 0000 is buggy, dev sp0   <<<--------- etc
Dec 30 15:09:20 mplinux last message repeated 5 times
Dec 30 15:09:20 mplinux dhcpd: Internet Software Consortium DHCP Server V3.0rc12
Dec 30 15:09:20 mplinux dhcpd: Copyright 1995-2001 Internet Software Consortium.
Dec 30 15:09:20 mplinux dhcpd: All rights reserved.
Dec 30 15:09:20 mplinux dhcpd: For info, please visit http://www.isc.org/products/DHCP
Dec 30 15:09:20 mplinux dhcpd: Internet Software Consortium DHCP Server V3.0rc12
Dec 30 15:09:20 mplinux dhcpd: Copyright 1995-2001 Internet Software Consortium.
Dec 30 15:09:20 mplinux dhcpd: All rights reserved.
Dec 30 15:09:20 mplinux dhcpd: For info, please visit http://www.isc.org/products/DHCP
Dec 30 15:09:20 mplinux dhcpd: Wrote 2 leases to leases file.
Dec 30 15:09:20 mplinux dhcpd: Listening on LPF/eth0/00:04:75:80:21:dc/192.168.0.0/24
Dec 30 15:09:20 mplinux dhcpd: Sending on   LPF/eth0/00:04:75:80:21:dc/192.168.0.0/24
Dec 30 15:09:20 mplinux dhcpd: Sending on   Socket/fallback/fallback-net
Dec 30 15:09:21 mplinux kernel: 6pack: resyncing TNC    <<<---------
Dec 30 15:09:21 mplinux kernel: protocol 0000 is buggy, dev sp0   <<<---------
Dec 30 15:09:21 mplinux last message repeated 4 times
Dec 30 15:09:22 mplinux /usr/sbin/cron[1161]: (CRON) STARTUP (fork ok)
Dec 30 15:09:23 mplinux kernel: eth0: no IPv6 routers present
Dec 30 15:09:26 mplinux kernel: 6pack: resyncing TNC
Dec 30 15:09:26 mplinux kernel: NET: 1 messages suppressed.
Dec 30 15:09:26 mplinux kernel: protocol 0000 is buggy, dev sp0
Dec 30 15:09:31 mplinux kernel: 6pack: resyncing TNC
Dec 30 15:09:31 mplinux kernel: NET: 5 messages suppressed.
Dec 30 15:09:31 mplinux kernel: protocol 0000 is buggy, dev sp0
Dec 30 15:09:31 mplinux kernel: spurious 8259A interrupt: IRQ7.
Dec 30 15:09:36 mplinux kernel: 6pack: resyncing TNC
Dec 30 15:09:46 mplinux last message repeated 2 times
Dec 30 15:09:48 mplinux PAM-unix2[1259]: session started for user root, service xdm
Dec 30 15:09:51 mplinux kernel: 6pack: resyncing TNC
Dec 30 15:09:56 mplinux kernel: 6pack: resyncing TNC
Dec 30 15:10:01 mplinux /USR/SBIN/CRON[1515]: (mdom) CMD (/usr/bin/python -S /usr/lib/mailman/cron/qrunner)
Dec 30 15:10:01 mplinux /USR/SBIN/CRON[1516]: (mdom) CMD (/usr/bin/python -S /usr/lib/mailman/cron/gate_news)
Dec 30 15:10:01 mplinux kernel: 6pack: resyncing TNC
Dec 30 15:10:31 mplinux last message repeated 6 times
Dec 30 15:10:32 mplinux dhcpd: DHCPREQUEST for 192.168.0.50 from 00:80:ad:73:aa:79 (mpwin2000) via eth0
Dec 30 15:10:32 mplinux dhcpd: DHCPACK on 192.168.0.50 to 00:80:ad:73:aa:79 (mpwin2000) via eth0
Dec 30 15:10:36 mplinux kernel: 6pack: resyncing TNC
Dec 30 15:10:56 mplinux last message repeated 4 times
Dec 30 15:11:00 mplinux /USR/SBIN/CRON[1565]: (mdom) CMD (/usr/bin/python -S /usr/lib/mailman/cron/qrunner)
Dec 30 15:11:01 mplinux kernel: 6pack: resyncing TNC
Dec 30 15:11:36 mplinux last message repeated 7 times
Dec 30 15:11:56 mplinux last message repeated 4 times
Dec 30 15:12:00 mplinux /USR/SBIN/CRON[1567]: (mdom) CMD (/usr/bin/python -S /usr/lib/mailman/cron/qrunner)
Dec 30 15:12:01 mplinux kernel: 6pack: resyncing TNC
Dec 30 15:12:36 mplinux last message repeated 7 times
Dec 30 15:12:56 mplinux last message repeated 4 times
Dec 30 15:13:00 mplinux /USR/SBIN/CRON[1569]: (mdom) CMD (/usr/bin/python -S /usr/lib/mailman/cron/qrunner)
Dec 30 15:13:01 mplinux kernel: 6pack: resyncing TNC
Dec 30 15:13:36 mplinux last message repeated 7 times
Dec 30 15:13:56 mplinux last message repeated 4 times
Dec 30 15:14:00 mplinux /USR/SBIN/CRON[1572]: (mdom) CMD (/usr/bin/python -S /usr/lib/mailman/cron/qrunner)
Dec 30 15:14:01 mplinux kernel: 6pack: resyncing TNC



Read previous mail | Read next mail


 29.09.2024 17:24:53lGo back Go up