¿ªÔÆÌåÓý

ctrl + shift + ? for shortcuts
© 2025 Groups.io
Date

Re: New bpq32 install connection refused

 

You only need -p with direwolf if you need to create a kissattach to an axport to use a terminal with direwolf.
Not needed for bpq, as it has it's own ax stack and is just using direwolf as a TCP TNC.
Just start direwolf without the -p.

For that port in bpq, change that in the config to this:
;? Port 1?
PORT
?? PORTNUM=1???????????????????????????????????? ; Port number
?? ID=145.030 MHz 1200 bps?????????????????????? ; PORTS command text
?? TYPE=ASYNC??????????????????????????????????? ; RS232 connection
?? PROTOCOL=KISS???????????????????????????????? ; KISS protocol
?? KISSOPTIONS=NOPARAMS????????????????????????? ; KISS options for TNC
?? FULLDUP=1
?? IPADDR=127.0.0.1
?? TCPPORT=8001
?? SPEED=1200?????????????????????????????????? ; Serial port speed? ?
?? CHANNEL=A???????????????????????????????????? ; TNC channel
?? MAXFRAME=2??????????????????????????????????? ; Max outstanding frames
?? FRACK=7000??????????????????????????????????? ; Level 2 timeout (ms)
?? RESPTIME=1000???????????????????????????????? ; Level 2 delayed ACK (ms)
?? RETRIES=10??????????????????????????????????? ; Level 2 max retries
?? PACLEN=128??????????????????????????????????? ; Max packet length (bytes)
?? TXDELAY=500?????????????????????????????????? ; Transmit keyup delay (ms)
?? SLOTTIME=100????????????????????????????????? ; CMSA interval timer (ms)
?? PERSIST=64??????????????????????????????????? ; Persist(256/(# transmissions-1)
?? DIGIFLAG=1??????????????????????????????????? ; Allow Digipeat on this port
ENDPORT

The line that says noparams means it's going to skip a few items here and rely on direwolf.conf or direwolf default settings. Your direwolf startup shows that there is no direwolf.conf in your home directory, so you should also save the following to a text file called direwolf.conf in /home/pi/ with the following:

############################
#? Configuration file for Dire Wolf? #
#? Simple Linux version for linbpq #
############################

ADEVICE? plughw:1,0 #change this to the results of arecord -l
ACHANNELS 1
CHANNEL 0
MYCALL K3CWP-7,?
MODEM 1200 1200:2200
TXDELAY 40
TXTAIL 10
AGWPORT 8000
KISSPORT 8001
FIX_BITS 1 AX25
MAXV22 0


Re: New bpq32 install connection refused

 

¿ªÔÆÌåÓý

Ok, There is something wrong with bpq startup. When I run your config I get

G8BPQ AX25 Packet Switch System Version 6.0.21.23 February 2021
Copyright ? 2001-2021 John Wiseman G8BPQ
Current Directory is /home/pi/linbpq

Configuration file Preprocessor.
Using Configuration file /home/pi/linbpq/bpq32.cfg
Conversion (probably) successful

PORTS 0x21f9c8 LINKS 0x222410 DESTS 0x225310 ROUTES 0x22b8a0 L4 0x22d2a0 BUFFERS 0x233768

Initialising Port 01???? ASYNC /dev/ttyAMA0 Chan A
Initialising Port 02???? Telnet Server
Initialising Port 03???? AXIP
Starting Mail
Config File is /home/pi/linbpq/linmail.cfg
Config Processed
Mail Started
slave device: /dev/pts/1. symlink to /home/pi/linbpq/com10 created
TNC Emulator Init Complete

If you don't get the Initialising Ports message then you haven't opened the TCP ports. This is odd, as I wouldn't expect linbpq to start without a port definiton. It is just possible that linbpq is hanging trying to open /dev/ttyAMA0. That doesn't happen here, but it might be worth changing the config to one of the suggestions below, or remove that port temporarily, and see what happens.

Direwolf can either use a TCP connection or create a pty pair that allows it to be accessed as a serial port. You can use -p to enable the serial port. You should then use /tmp/kisstnc in the COMPORT line - the pts number may vary but /tmp/kisstnc will always be symlinked to it.

Alternatively you can use the TCP connection. Replace

? COMPORT=/dev/ttyAMA0? ? ? ? ? ? ? ? ? ? ? ? ? ; Serial port
? SPEED=19200? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?; Serial port speed

with
?
?IPADDR=127.0.0.1
?TCPPORT=8001

73,
John





On 16/02/2021 12:56, Carmine Prestia wrote:

John:

Is that the whole of the startup message? You should have lines starting "Initialising Port".

Yes.

This is probably a stupid question, but does linbpq keep running? Ie does it exit?

I believe it does.? The terminal window stays open until I type ^C or exit using the X on the terminal window.

To check that the ports are listening, use

netstat -n -a | grep 8008??? ??? ??? ??? ??? (repeat for 8010, 8011)

Tried this for all three ports and nothing returns, just the command line prompt.

You should be able to test with telnet 127.0.0.1 8010 or browser to 127.0.0.1:8008 (assuming the browser is on the same machine as linbpq - if not use IP address of the linbpq machine instead of 127.0.0.1

Tried all three of these using Telnet and get the connection refused message.

?Not related to your connection refused problem, but your KISS port definition is for a physical TNC connected to the Pi header. For Direwolf you need to use a KISS over TCP connection.

I started thinking about this and remember that elsewhere someone suggested starting Direwolf with the -p command line option.? I made that part of the start line in the menu and now the Direwolf startup message looks like this:

Dire Wolf DEVELOPMENT version 1.7 A (Dec? 6 2020)
Includes optional support for:? gpsd hamlib cm108-ptt
ERROR - Could not open config file /home/pi/direwolf.conf
Try using -c command line option for alternate location.
Audio device for both receive and transmit: default? (channel 0)
Channel 0: 1200 baud, AFSK 1200 & 2200 Hz, A+, 44100 sample rate / 3.
Note: PTT not configured for channel 0. (Ignore this if using VOX.)
Ready to accept KISS TCP client application 0 on port 8001 ...
Virtual KISS TNC is available on /dev/pts/1
Created symlink /tmp/kisstnc -> /dev/pts/1
Ready to accept AGW client application 0 on port 8000 ...
?
Does this mean that I should change the line in Port 1 from:

COMPORT=/dev/ttyAMA0??

to

COMPORT=/dev/pts/1

I also note that I don't see ports 8000 or 8001 anywhere in the bpq32.cfg file.? Should they be in there?


Thank you.
Carmine, K3CWP



Re: New bpq32 install connection refused

Carmine Prestia
 

John:

Is that the whole of the startup message? You should have lines starting "Initialising Port".

Yes.

This is probably a stupid question, but does linbpq keep running? Ie does it exit?

I believe it does.? The terminal window stays open until I type ^C or exit using the X on the terminal window.

To check that the ports are listening, use

netstat -n -a | grep 8008??? ??? ??? ??? ??? (repeat for 8010, 8011)

Tried this for all three ports and nothing returns, just the command line prompt.

You should be able to test with telnet 127.0.0.1 8010 or browser to 127.0.0.1:8008 (assuming the browser is on the same machine as linbpq - if not use IP address of the linbpq machine instead of 127.0.0.1

Tried all three of these using Telnet and get the connection refused message.

?Not related to your connection refused problem, but your KISS port definition is for a physical TNC connected to the Pi header. For Direwolf you need to use a KISS over TCP connection.

I started thinking about this and remember that elsewhere someone suggested starting Direwolf with the -p command line option.? I made that part of the start line in the menu and now the Direwolf startup message looks like this:

Dire Wolf DEVELOPMENT version 1.7 A (Dec? 6 2020)
Includes optional support for:? gpsd hamlib cm108-ptt
ERROR - Could not open config file /home/pi/direwolf.conf
Try using -c command line option for alternate location.
Audio device for both receive and transmit: default? (channel 0)
Channel 0: 1200 baud, AFSK 1200 & 2200 Hz, A+, 44100 sample rate / 3.
Note: PTT not configured for channel 0. (Ignore this if using VOX.)
Ready to accept KISS TCP client application 0 on port 8001 ...
Virtual KISS TNC is available on /dev/pts/1
Created symlink /tmp/kisstnc -> /dev/pts/1
Ready to accept AGW client application 0 on port 8000 ...
?
Does this mean that I should change the line in Port 1 from:

COMPORT=/dev/ttyAMA0??

to

COMPORT=/dev/pts/1

I also note that I don't see ports 8000 or 8001 anywhere in the bpq32.cfg file.? Should they be in there?


Thank you.
Carmine, K3CWP


Re: Connect script via telnet connection #telnet

 

¿ªÔÆÌåÓý

Mike,

The user, password and application should all be given on the connect line:

ATTACH p 
C Hostname TCPport [NEEDLF][TELNET} User Password [Command]
So I used:

att 2
BPQ:G8BPQ-2} Ok
c 192.168.1.44 8011 john xxxxxxxx bbs
*** Connected to Server
POGO4:G8BPQ-9} Connected to BBS
[BPQ-6.0.21.20-B2FWIHJM$]
de G8BPQ>

For BPQ<>BPQ you don't need NEEDLF or TELNET and you should connect to FBBPORT on the remote system. This will give a transparent connection, suitable for compressed forwarding.

73,
John


On 16/02/2021 10:44, Mike wrote:

Hello John and group....

I have been trying to compile a BPQmailbox forwarding script to connect from my BPQmailbox into another BPQmailbox via that station's node; via my telnet port connection [rather than via the AXIP/mapped routing connection that was available via UK broadband but does not work under my current internet connection via my mobile phone]

I tried earlier this year via a Windows setup that also failed to connect.... but the latest combination I am using is now a RPi4 that has the terminal logon screen:
mike@Mike-Pi:~/bpq $ ./pilinbpq
G8BPQ AX25 Packet Switch System Version 6.0.21.24 February 2021
Copyright ? 2001-2021 John Wiseman G8BPQ
Current Directory is /home/mike/bpq

Configuration file Preprocessor.
Using Configuration file /home/mike/bpq/bpq32.cfg
Conversion (probably) successful

PORTS 0x21f9c8 LINKS 0x224058 DESTS 0x226e9c ROUTES 0x233e9c L4 0x23589c BUFFERS 0x23bea8

Initialising Port 01     AXIP 
Initialising Port 02     ASYNC /dev/ttyUSB0 Chan A 
Initialising Port 03     ASYNC /dev/ttyUSB1 Chan A 
Initialising Port 04     ASYNC /dev/ttyUSB2 Chan A 
Initialising Port 05     Telnet Server 
Using Shared Memory /BPQAPRSSharedMem
Map APRS Shared Memory Allocated at 0x43000000
APRS Digi/Gateway Enabled
Starting Chat
Config File is /home/mike/bpq/chatconfig.cfg
Chat Started
Starting Mail
Config File is /home/mike/bpq/linmail.cfg
Config Processed
Config File /home/mike/bpq/WP.cfg Line 0 - file I/O error
Mail Started

= = = =

My connect script for this BBS is currently [as above, my telnet port is nr 5]:


Idletime 60 
att 5
c GB7XXX.DYNDNS.org 8010 telnet g4fvg
pause 3
passwordxxxxx
c gb7xxx [ or entering BBS command]

= =  == 

Using the above does get me to the remote station's normal node prompt [after my login password was accepted], but fails to send [or react to] the last line where I ask the remote node to connect me to the BBS.
The distant node then times out and disconnects after the 60 seconds have elapsed.

Does anyone have a working connect script that works/forwards when connecting via an outgoing telnet connection?

73 Mike







Connect script via telnet connection #telnet

 

Hello John and group....

I have been trying to compile a BPQmailbox forwarding script to connect from my BPQmailbox into another BPQmailbox via that station's node; via my telnet port connection [rather than via the AXIP/mapped routing connection that was available via UK broadband but does not work under my current internet connection via my mobile phone]

I tried earlier this year via a Windows setup that also failed to connect.... but the latest combination I am using is now a RPi4 that has the terminal logon screen:
mike@Mike-Pi:~/bpq $ ./pilinbpq
G8BPQ AX25 Packet Switch System Version 6.0.21.24 February 2021
Copyright ? 2001-2021 John Wiseman G8BPQ
Current Directory is /home/mike/bpq

Configuration file Preprocessor.
Using Configuration file /home/mike/bpq/bpq32.cfg
Conversion (probably) successful

PORTS 0x21f9c8 LINKS 0x224058 DESTS 0x226e9c ROUTES 0x233e9c L4 0x23589c BUFFERS 0x23bea8

Initialising Port 01 AXIP
Initialising Port 02 ASYNC /dev/ttyUSB0 Chan A
Initialising Port 03 ASYNC /dev/ttyUSB1 Chan A
Initialising Port 04 ASYNC /dev/ttyUSB2 Chan A
Initialising Port 05 Telnet Server
Using Shared Memory /BPQAPRSSharedMem
Map APRS Shared Memory Allocated at 0x43000000
APRS Digi/Gateway Enabled
Starting Chat
Config File is /home/mike/bpq/chatconfig.cfg
Chat Started
Starting Mail
Config File is /home/mike/bpq/linmail.cfg
Config Processed
Config File /home/mike/bpq/WP.cfg Line 0 - file I/O error
Mail Started

= = = =

My connect script for this BBS is currently [as above, my telnet port is nr 5]:


Idletime 60
att 5
c GB7XXX.DYNDNS.org 8010 telnet g4fvg
pause 3
passwordxxxxx
c gb7xxx [ or entering BBS command]

= = ==

Using the above does get me to the remote station's normal node prompt [after my login password was accepted], but fails to send [or react to] the last line where I ask the remote node to connect me to the BBS.
The distant node then times out and disconnects after the 60 seconds have elapsed.

Does anyone have a working connect script that works/forwards when connecting via an outgoing telnet connection?

73 Mike


Re: New bpq32 install connection refused

 

¿ªÔÆÌåÓý

Is that the whole of the startup message? You should have lines starting "Initialising Port".

This is probably a stupid question, but does linbpq keep running? Ie does it exit?

To check that the ports are listening, use

netstat -n -a | grep 8008??? ??? ??? ??? ??? (repeat for 8010, 8011)

You should see

tcp??????? 0????? 0 0.0.0.0:8008 ?????????? 0.0.0.0:*?????????????? LISTEN

You should be able to test with telnet 127.0.0.1 8010 or browser to 127.0.0.1:8008 (assuming the browser is on the same machine as linbpq - if not use IP address of the linbpq machine instead of 127.0.0.1

?Not related to your connection refused problem, but your KISS port definition is for a physical TNC connected to the Pi header. For Direwolf you need to use a KISS over TCP connection.

73
John


On 15/02/2021 22:52, Carmine Prestia wrote:

Jeff:

For #1, here is the terminal text after start up:

pi@hampi:~/BPQ $ ./pilinbpq
G8BPQ AX25 Packet Switch System Version 6.0.21.26 February 2021
Copyright ? 2001-2021 John Wiseman G8BPQ
Current Directory is /home/pi/BPQ
?
Configuration file Preprocessor.
Using Configuration file /home/pi/BPQ/bpq32.cfg
Conversion (probably) successful
?
PORTS 0x21f9d8 LINKS 0x222420 DESTS 0x225320 ROUTES 0x22b8b0 L4 0x22d2b0 BUFFERS 0x233778
?
Route/Node recovery file BPQNODES.dat not found - Continuing without it

For #2, I did not think of that but I'll set those ports on the router and see what happens.

Thank you.
Carmine, K3CWP

?


Re: New bpq32 install connection refused

 

It's also worth noting that John recommends changing the name of pilinbpq to linbpq before use, and naming that directory that everything is in linbpq.

"I suggest you create a directory linbpq to hold the software and files. The simplest way to download is to use wget. If you use the pi version, rename to linbpq after downloading."


Re: New bpq32 install connection refused

 

If nothing shows that your pi is listening to the ports in the config, it's quite possible that you need to setcap:

sudo setcap "CAP_NET_ADMIN=ep CAP_NET_RAW=ep CAP_NET_BIND_SERVICE=ep" pilinbpq



then restart



Re: New bpq32 install connection refused

Carmine Prestia
 

Jeff et al.:

2. On your home router, do you have ports 8008, 8010, 8011 and 10093 forwarded for the IP address of your linbpq machine?

I'm a newbie to RPi and Linux and don't know if I'm doing this right but based on some other posts in another topic I tried the commands netstat, SS, and cat and in none of the reports did I see the above ports as listening.

Could that mean something?

Carmine, K3CWP


Re: New bpq32 install connection refused

 

Some additional things to try:

Given you have vnc access, I would start a web browser on the Pi and try . Also start a terminal session and try this:
telnet 127.0.0.1 8010?
(no colon on the telnet line)?

73
Lee K5DAT?

_._,_._,_


APRSDIGI vs. BPQ32 Beacon

 

I see one 80m BPQ32 system beaconing with an APRS packet rather than the BPQ32 UI beacon capability.? This web page on the APRS BPQ32 feature...

?

...has this to say about configuration...

The code is enabled by adding an "APRSDIGI" section to BPQ32.cfg. There is a commented example below. Note that if you enable the APRSDIGI on a port, you should normally disable the normal BPQ32 beacon and Digi functions on that port by setting DIGIFLAG=0 and omitting UNPROTO.

Emphasis added.? I can understand why you should select APRSDIGI "or" the usual BPQ32 beacon.? I was just curious if folks had a preference either way for, say, an 80m Robust Packet port on 3598.

Thanks for any input.

73
John, kx4o


Re: New bpq32 install connection refused

Carmine Prestia
 

Lee:

Does it work if you run pilibbpq as root, e.g. sudo ./pilibbpq

No difference.

Carmine, K3CWP


Re: New bpq32 install connection refused

 

Does it work if you run pilibbpq as root, e.g. sudo ./pilibbpq

Lee K5DAT?


On Mon, Feb 15, 2021, 5:34 PM Carmine Prestia <k3cwp@...> wrote:
Jeff

2. On your home router, do you have ports 8008, 8010, 8011 and 10093 forwarded for the IP address of your linbpq machine?

I set forwarding on HTTP and Telnet for these ports and it made no difference.? My router does have the IP address of the RPi allowed in both directions.

Carmine, K3CWP


Re: New bpq32 install connection refused

Carmine Prestia
 

Jeff

2. On your home router, do you have ports 8008, 8010, 8011 and 10093 forwarded for the IP address of your linbpq machine?

I set forwarding on HTTP and Telnet for these ports and it made no difference.? My router does have the IP address of the RPi allowed in both directions.

Carmine, K3CWP


Re: Linbpq Upgrade

 

Glad to hear it worked. One thing I forgot to mention was the setcap command.

sudo setcap "CAP_NET_ADMIN=ep CAP_NET_RAW=ep CAP_NET_BIND_SERVICE=ep" pilinbpq

I usually run that after replacing the older file with the latest.?

73,
Lee K5DAT?


On Sun, Feb 14, 2021, 8:24 PM N1RCW <rwtech61@...> wrote:
Thanks Lee, that worked great! Appreciate the info!


Re: New bpq32 install connection refused

Carmine Prestia
 

Jeff:

For #1, here is the terminal text after start up:

pi@hampi:~/BPQ $ ./pilinbpq
G8BPQ AX25 Packet Switch System Version 6.0.21.26 February 2021
Copyright ? 2001-2021 John Wiseman G8BPQ
Current Directory is /home/pi/BPQ
?
Configuration file Preprocessor.
Using Configuration file /home/pi/BPQ/bpq32.cfg
Conversion (probably) successful
?
PORTS 0x21f9d8 LINKS 0x222420 DESTS 0x225320 ROUTES 0x22b8b0 L4 0x22d2b0 BUFFERS 0x233778
?
Route/Node recovery file BPQNODES.dat not found - Continuing without it

For #2, I did not think of that but I'll set those ports on the router and see what happens.

Thank you.
Carmine, K3CWP

?


Re: New bpq32 install connection refused

 

Two questions:

1. In the terminal where you started linbpq, were there any error statements, a few lines after the ports configuring?

2. On your home router, do you have ports 8008, 8010, 8011 and 10093 forwarded for the IP address of your linbpq machine?


New bpq32 install connection refused

Carmine Prestia
 

I know this has been posted before but the messages there don't seem to apply to my situation and confused me as to what exactly was being suggested.

My system is a Raspberry Pi 4B using the HamPi environment.? If I run Direwolf as supplied I can see traffic on the VHF channel 145.030.

Today I installed bpq32 using the detailed instructions from the link?.? This used an interactive dialog to set up a basic configuration.

The system worked and after starting Direwolf I opened another terminal and went to the BPQ directory and ran pilinbpq which seemed to start up the system.

To check it out I went to another system on my network and entered the local IP address of the RPi followed by 8008.? The result is a 'connection refused' message.

From the config file I also tried ports 8010 and 8011.? I tried them without the colon between the IP address and the port and with the colon.? No difference.? I can VNC to the RPi from the other machines as expected.? I have also disabled my firewall on the client machine with no difference.

Here's the configuration file.? I'm at a loss, any help would be appreciated.

; CWP BBS config File
?
SIMPLE? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?; This set a whole load of paramters to reasonable defaults
NODECALL=K3CWP-7? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?; Default node callsign
LOCATOR=FN10bs? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?; Defailt node location
LINMAIL? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ; Enable BBS
?
IDINTERVAL=10? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ; UI broadcast interval (minutes)
IDMSG:? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?; UI broadcast text
Carmine Prestia BBS.? Connect to K3CWP-1.
***
?
CTEXT:? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?; Connect Message
Welcome to the Carmine Prestia BPQ32 Node.
K3CWP> BBS CONNECT BYE INFO NODES ROUTES PORTS USERS MHEARD
***
?
BTINTERVAL=10? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ; Beacon interval (minutes)
BTEXT:? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?; Beacon text
Carmine Prestia BBS.? Connect to K3CWP-1.
***
?
INFOMSG:? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?; Text for INFO command
This is the BPQ32 Node for the Carmine Prestia.
Sysop K3CWP.
Type BBS to connect to the BBS.
***
?
TNCPORT? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ; Host Port
? ?COMPORT=/home/pi/BPQ/com10? ? ? ? ? ? ? ? ? ? ; Serial connection (created by BPQ)
? ?TYPE=TNC2? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?; TNC2,KANT,SCS,DED
? ?APPLNUM=32? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ; Last Application
? ?APPLFLAGS=6? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?; Display Connected Message
ENDPORT
?
;? Port 1?
PORT
? ?PORTNUM=1? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?; Port number
? ?ID=145.030 MHz 1200 bps? ? ? ? ? ? ? ? ? ? ? ?; PORTS command text
? ?TYPE=ASYNC? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ; RS232 connection
? ?COMPORT=/dev/ttyAMA0? ? ? ? ? ? ? ? ? ? ? ? ? ; Serial port
? ?SPEED=19200? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?; Serial port speed
? ?PROTOCOL=KISS? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?; KISS protocol
? ?KISSOPTIONS=PITNC,NOPARAMS? ? ? ? ? ? ? ? ? ? ; KISS options for TNC
? ?CHANNEL=A? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?; TNC channel
? ?MAXFRAME=2? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ; Max outstanding frames
? ?FRACK=7000? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ; Level 2 timeout (ms)
? ?RESPTIME=1000? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?; Level 2 delayed ACK (ms)
? ?RETRIES=10? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ; Level 2 max retries
? ?PACLEN=128? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ; Max packet length (bytes)
? ?TXDELAY=500? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?; Transmit keyup delay (ms)
? ?SLOTTIME=100? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ; CMSA interval timer (ms)
? ?PERSIST=64? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ; Persistence (256/(# transmissions-1)
? ?DIGIFLAG=1? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ; Allow Digipeat on this port
ENDPORT
?
;? Port 2?
PORT
? ?PORTNUM=2? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?; Port number
? ?ID=Telnet Server? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ; PORTS command text
? ?DRIVER=TELNET? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?; TCP/IP connection
? ?CONFIG? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ; Driver specific configuration from here to ENDPORT
? ?LOGGING=1? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?; Log all connections
? ?DisconnectOnClose=1? ? ? ? ? ? ? ? ? ? ? ? ? ?; Disconnect on close
? ?TCPPORT=8010? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ; Port for telnet connections
? ?FBBPORT=8011? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ; Port for FBB protocol BBS connections
? ?HTTPPORT=8008? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?; Port for web interface
? ?LOGINPROMPT=user:? ? ? ? ? ? ? ? ? ? ? ? ? ? ?; Telnet login prompt
? ?PASSWORDPROMPT=password:? ? ? ? ? ? ? ? ? ? ? ; Telnet password prompt
? ?LOCALECHO=NO? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ; Do not echo input
? ?MAXSESSIONS=10? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ; Maxmimum simultaneous connections
? ?CTEXT=CWP BPQ32 Telnet Server\nEnter ? for list of commands\n\n ; Telnet connect message
? ?USER=carmine,Password1234,K3CWP,NODE,SYSOP? ? ? ?; Telnet user
ENDPORT
?
;? Port 3?
PORT
? ?PORTNUM=3? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?; Port number
? ?ID=AX/IP/UDP? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ; Displayed by PORTS command
? ?DRIVER=BPQAXIP? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ; Uses BPQAXIP
? ?QUALITY=220? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?; Quality factor applied to node broadcasts heard on
? ?MINQUAL=165? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?; Entries in the nodes table with qualities greater or
? ?MAXFRAME=5? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ; Max outstanding frames (1 thru 7)
? ?FRACK=3000? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ; Level 2 timeout in milliseconds
? ?RESPTIME=1000? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?; Level 2 delayed ack timer in milliseconds
? ?RETRIES=5? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?; Level 2 maximum retry value
? ?PACLEN=236? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ; Maximum packet length
? ?CONFIG? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ; Driver specific configuration from here to ENDPORT
? ?MHEARD? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ; Keep heard stats
? ?UDP 10093? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?; UDP port
? ?AUTOADDMAP? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ; Automatically add new connections
? ?BROADCAST NODES? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?; Broadcast
ENDPORT
?
;? Applications?
APPLICATION 1,BBS,,K3CWP-1,CWPBBS,255? ? ? ? ? ? ; BBS Application
APPLICATION 32,TALK,,K3CWP? ? ? ? ? ? ? ? ? ? ? ?; Node Application


Re: BPQ32, IC7610, SCS MODEM, VARAHF

 

John

?

Rich NS7K updated the bpq32.dll file on his system

?

The radio does transmit ,but shows no power out or alc out unless he switches to d2 manually .

?

Ray N3HYM


Re: Connection refused

Carmine Prestia
 

What was the bad line and the correction.? I'm experiencing the same problem after just installing and configuring bpq32.

Thank you.