How to connect DXSpider to RBN: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
No edit summary |
||
| (3 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
Configuring your DXSpider node receive skimmer spots from the RBN (Reverse Beacon Network) is very straight forward, here is bare bones howto: | Configuring your DXSpider node receive skimmer spots from the RBN (Reverse Beacon Network) is very straight forward, here is a bare bones howto: | ||
Logged into your cluster with Sysop privileges, create two RBN users: | |||
set/rbn | set/rbn sk0mmr sk1mmr | ||
Create two connect scripts: | Create two connect scripts: | ||
/spider/connect/ | /spider/connect/sk0mmr | ||
which contains: | which contains: | ||
timeout 15 | |||
connect telnet telnet.reversebeacon.net 7000 | connect telnet telnet.reversebeacon.net 7000 | ||
'call:' '<YOUR-CALL-SIGN>' | 'call:' '<YOUR-CALL-SIGN>' | ||
and: | and: | ||
/spider/connect/ | /spider/connect/sk1mmr | ||
which contains: | which contains: | ||
timeout 15 | |||
connect telnet telnet.reversebeacon.net 7001 | connect telnet telnet.reversebeacon.net 7001 | ||
'call:' '<YOUR-CALL-SIGN>' | 'call:' '<YOUR-CALL-SIGN>' | ||
| Line 24: | Line 26: | ||
Add these two lines: | Add these two lines: | ||
* * * * * start_connect(' | * * * * * start_connect('sk0mmr') unless connected('sk0mmr') | ||
* * * * * start_connect(' | * * * * * start_connect('sk1mmr') unless connected('sk1mmr') | ||
You can also startup the connections manually in the normal way: | You can also startup the connections manually in the normal way: | ||
connect | connect sk0mmr | ||
connect | connect sk1mmr | ||
and of course drop the connections: | and of course drop the connections: | ||
disconnect | disconnect sk0mmr | ||
disconnect | disconnect sk1mmr | ||
Although bear in mind if you added the crontab entries, disconnecting them will only work until the crontab | Although bear in mind if you added the crontab entries, disconnecting them will only work until the crontab fires 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 17:03, 29 July 2026
Configuring your DXSpider node receive skimmer spots from the RBN (Reverse Beacon Network) is very straight forward, here is a bare bones howto:
Logged into your cluster with Sysop privileges, create two RBN users:
set/rbn sk0mmr sk1mmr
Create two connect scripts:
/spider/connect/sk0mmr
which contains:
timeout 15 connect telnet telnet.reversebeacon.net 7000 'call:' '<YOUR-CALL-SIGN>'
and:
/spider/connect/sk1mmr
which contains:
timeout 15 connect telnet telnet.reversebeacon.net 7001 'call:' '<YOUR-CALL-SIGN>'
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 fires 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.