On Nov 17, 2023, at 9:46 AM, Benjamin Seidenberg <astr...@gmail.com> wrote:
I'd like to remind folks that Pat is open source. If it's missing a feature that's important to you, you can just build that feature yourself, or find someone in your region to do so.
--
You received this message because you are subscribed to the Google Groups "pat-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pat-users+...@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/pat-users/e00654df-1ad8-45ca-9315-0471ea057869n%40googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/pat-users/1d44dcfb-3b00-456e-a901-72743cda05d3n%40googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/pat-users/CAAUuLGn5vqM63w03Vk0D%2BJ9Dgc8AuyPT1NyuTdE5Sy5vhHr56A%40mail.gmail.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/pat-users/CAAUuLGn5vqM63w03Vk0D%2BJ9Dgc8AuyPT1NyuTdE5Sy5vhHr56A%40mail.gmail.com.
--
You received this message because you are subscribed to the Google Groups "pat-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pat-users+...@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/pat-users/d149ffcf-e124-4df0-b793-7dd9410549cbn%40googlegroups.com.
Hi, Have you got and answer about using Nodes with PAT? I have been searching and cannot find any working script.
--
You received this message because you are subscribed to the Google Groups "pat-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pat-users+...@googlegroups.com.
To view this discussion, visit https://groups.google.com/d/msgid/pat-users/7bf089c1-7b5f-44da-8838-682b1c300615n%40googlegroups.com.
I would like to ask a follow on question....
How do I manually connect to a given node (i.e. XX9XXX-1) and then issue the MHEARD command?
Doing this from Winlink Express.................
Respectfully, Ed Bloom
--
I would like to ask a follow on question....
How do I manually connect to a given node (i.e. XX9XXX-1) and then issue the MHEARD command?
Doing this from Winlink Express.................
Packet scripts contain three types of lines:
1. Command lines beginning with the character "!" (exclamation point). Command lines are optional. If they are not specified, default values are used. Command lines may be placed anywhere in the script. Currently, three commands are defined:
!CONNECTTIME seconds -- This specifies the number of seconds allowed for each connection through the network. The default value is 60.
!TOTALTIME seconds -- This specifies the total number of seconds that will be allowed for the entire script to be completed. The default value is 300.
!WAITFOR text -- Specifies that the script is to pause until the specified text is found in the response from the packet server.
2. Connection/Response pairs -- Other than command lines, the script must have an even number of lines. The first line of each pair is the command to be sent to the network to establish the connection to the next node. The second line of the pair is the response that the script will wait for. Note, the response may be long, and the script will proceed once the specified response is found anywhere in the response from the packet node.
The first connection/response pair specifies the initial, entry-point packet node into the network. The last connection/response pair specifies the node that has the RMS server (Winlink session) or the destination packet station running the client program (peer-to-peer connections).
When building packet network scripts, keep the script as simple as possible. Use "C" for "CONNECT", and "CONN" for "CONNECTED".
Sample packet network Netrom (X1J4, TheNet, K-Net, BPQ, etc.) connect scripts are shown below.
In this example, Winlink Express VE1YZ-8 connects through network node VE1PKT to RMS Packet server VE1HRE-10.
C VE1PKT
CONN
C VE1HRE-10
CONN
In this example, Winlink Express VE1YZ-8 connects through network nodes VE1PKT and VE1PKT-1 (alternate route), to RMS Packet server VE1HRE-10.
C VE1PKT
CONN
C VE1PKT-1
CONN
C VE1HRE-10
CONN
In this example, Winlink Express VE1YZ-8 connects through BPQ network node VE1DAR port 4, to RMS Packet server VE1HRE-10.
C VE1DAR
CONN
C 4 VE1HRE-10
CONN
Kantronics KA-Nodes are somewhat more complex in the construction of the connect script. When initially connected to a KA-Node (VE1EPC-7 in this example), the KA-Node responds with:
###CONNECTED TO NODE VE1EPC-7(VE1EPC) CHANNEL A
ENTER COMMAND: B,C,J,N, OR HELP ?
In this case, the "!WAITFOR" command line is used in the script to look for the last unique character, or text string, before proceeding with the next connect line in the script. In the menu above, the "?" at the end of the menu line is used as the desired response in the script.
When the KA-Node connects to the next node or station, the KA-Node responds with:
###LINK MADE
"LINK" is used as the desired response in the script.
In the KPC-4 (and other Kantronics dual port TNCs), "X" (XCONNECT) may be used to initiate the connect on the opposite port.
In this example, Winlink Express VE1YZ-8 connects through KA-Node VE1EPC-7 to RMS Packet server VE1HRE-10.
C VE1EPC-7
CONN
!WAITFOR ?
C VE1HRE-10
LINK
In this example, Winlink Express VE1YZ-8 connects through KA-Node VE1EPC-7 to network node VE1PKT, then to RMS Packet server VE1HRE-10.
C VE1EPC-7
CONN
!WAITFOR ?
C VE1PKT
LINK
C VE1HRE-10
CONN
-Scott,NS7C
The reason you have not received feedback is because the low-level support you added is not a workable solution for most people. I know several who have tried to get it working and just gave up. Building a local node test environment is trivial. Everything you need to know about scripts is in the Winlink Express help file. I'll post it here so you don't have to look it up:
....