How to connect DXSpider to RBN: Difference between revisions

From DXSpider Documentation Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 37: Line 37:
Although bear in mind if you added the crontab entries, disconnecting them will only work until the crontab fire the next connect command, so you would need to remove or comment out the two lines in the crontab file to permanently disconnect.
Although bear in mind if you added the crontab entries, disconnecting them will only work until the crontab fire the next connect command, so you would need to remove or comment out the two lines in the crontab file to permanently disconnect.


More details can be found on the [[RBN.mojo] RBN Mojo] page.
More details can be found on the [[RBN.mojo| RBN Mojo]] page.

Latest revision as of 19:38, 19 February 2025

Configuring your DXSpider node receive skimmer spots from the RBN (Reverse Beacon Network) is very straight forward, here is bare bones howto:

Create two RBN users:

set/rbn sk0mmr sk1mmr

Create two connect scripts:

/spider/connect/sk0mmr

which contains:

connect telnet telnet.reversebeacon.net 7000
'call:' 'sk0mmr'

and:

/spider/connect/sk1mmr

which contains:

connect telnet telnet.reversebeacon.net 7001
'call:' 'sk1mmr'

Then in your crontab file:

/spider/local_cmd/crontab

Add these two lines:

* * * * * start_connect('sk0mmr') unless connected('sk0mmr')
* * * * * start_connect('sk1mmr') unless connected('sk1mmr')

You can also startup the connections manually in the normal way:

connect sk0mmr
connect sk1mmr

and of course drop the connections:

disconnect sk0mmr
disconnect sk1mmr

Although bear in mind if you added the crontab entries, disconnecting them will only work until the crontab fire the next connect command, so you would need to remove or comment out the two lines in the crontab file to permanently disconnect.

More details can be found on the RBN Mojo page.