User Tools

Site Tools


packet:xrouter:howtos:xrbpq

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
packet:xrouter:howtos:xrbpq [2025/09/29 13:37] g8pztpacket:xrouter:howtos:xrbpq [2025/09/29 14:16] (current) g8pzt
Line 13: Line 13:
 If we assume that GB7XRP is the XRPi node and GB7BPQ is the BPQ node: If we assume that GB7XRP is the XRPi node and GB7BPQ is the BPQ node:
    
-You need the following two lines in BPQ.CFG...+You need a "BPQAXIP" port in BPQ.CFG...
  
 <code> <code>
-UDP 10093 +PORT 
-MAP GB7XRP localhost 9393 B+    PORTNUM=1 
 +    ID=AXIP 
 +    DRIVER=BPQAXIP 
 +    CONFIG 
 +    UDP 10093 
 +    MAP GB7XRP localhost 9393 B 
 +ENDPORT
 </code> </code>
  
Line 40: Line 46:
 </code> </code>
  
-(if you already have an AXUDP interface, you will only need the **PORT** because the interface will support unlimited ports.)+//(if you already have an AXUDP interface, you will only need to add the **PORT** because the interface will support unlimited ports.)//
  
 IPLINK is the ip address or hostname of the other end of the link, in the case BPQ. Since they are both on the same computer, IPLINK should be "localhost" or "127.0.0.1". The latter is preferable, because it cuts out the domain resolution step. IPLINK is the ip address or hostname of the other end of the link, in the case BPQ. Since they are both on the same computer, IPLINK should be "localhost" or "127.0.0.1". The latter is preferable, because it cuts out the domain resolution step.
Line 48: Line 54:
 UDPREMOTE is the UDP port that XRouter **TRANSMITS** on. It must match one of the "UDP" lines in BPQ.CFG. UDPREMOTE is the UDP port that XRouter **TRANSMITS** on. It must match one of the "UDP" lines in BPQ.CFG.
    
 +==== XRouter and BPQ on Different Computers: ====
 +
 +The only difference is that "localhost" in the BPQ MAP line is replaced by the IP address or hostname of the XRouter node, and "localhost" in XRouter's IPLINK statement must be set to the IP address or hostname of the G8BPQ node.
 +
 +For example, lets assume that GB7BPQ's IP address is 192.168.0.10 and GB7XRP's IP address is 192.168.0.20...
 +
 +In BPQ.CFG the MAP line would be as follows:
 +
 +<code>
 +MAP GB7XRP 192.168.0.20 9393 B
 +</code>
 +
 +And in XROUTER.CFG the IPLINK line would be as follows:
 +
 +<code>
 +PORT=3
 +   ID=Link with GB7BPQ
 +   INTERFACENUM=1
 +   IPLINK=192.168.0.10
 +   UDPLOCAL=9393
 +   UDPREMOTE=10093
 +ENDPORT
 +</code>
 +
 +==== Linking Via The Internet: ====
 +
 +If the two nodes are not at the same location, you must enable (aka "open" or "port-forward") incoming UDP ports on each internet router.
 +
 +Thus at GB7BPQ you would open UDP port 10093, and forward the traffic to the LAN IP address of the BPQ node.
 +
 +And at GB7XRP you would open UDP port 9393, and forward the traffic to the LAN IP address of XRouter.
 +
  
packet/xrouter/howtos/xrbpq.1759153041.txt.gz · Last modified: by g8pzt