All public logs

Jump to navigation Jump to search

Combined display of all available logs of The DXSpider Documentation Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 18:06, 16 February 2023 EA3CV talk contribs created page Create a secure connection between nodes (Created page with "In order to avoid possible impersonation, it is necessary that connections between neighbouring nodes are made with authentication. The steps to follow are 1. Register node 2. Assign password to the node 3. Set node type Although it is not necessary for both nodes to have authentication enabled, it is desirable. <b>The following is an example of how it is implemented at one endpoint</b> <b>Scenario</b> Node-A: <b>XX0XX-2</b> Node-B: <b>ZZ8ZZ-...")
  • 09:24, 16 February 2023 EA3CV talk contribs created page List of nodes for mobile use (Created page with "Displays a list of connected nodes reporting: Type of NODE And the duration of the connection This command has been created to be used from a mobile app. It is possible to use it from a terminal or from console. The script is called <b>mnode.pl</b> Using the sysop user, it has to be copied to: /spider/local_cmd To run it use <b>mnode</b> or <b>mn</b> The output would look something like this example: <pre> List of connected Nodes: Callsign Type Con...")
  • 08:57, 16 February 2023 EA3CV talk contribs created page List of users for mobile use (Created page with "Shows a list of users connected to the node reporting: If the user is registered with an <b>R</b> Type of USER which can be either <b>EXT</b> or <b>LOCL</b> And the duration of the session. This command has been created to be used from a mobile app. It is possible to use it from a terminal or from console. The script is called <b>muser.pl</b> Using the sysop user, it has to be copied to: /spider/local_cmd To run it use <b>muser</b> or <b>mu</b> The output woul...")
  • 14:57, 15 February 2023 EA3CV talk contribs created page Restoring the user DB (Mojo branch) (Created page with "From the command line as <b>sysop</b> user: Stopped service <pre> sudo service dxspider stop </pre> Change to the directory that contains the user backup: <b>user_json</b> <pre> cd /spider/local_data </pre> Run regeneration of <b>users.v3j</b> <pre> perl user_json </pre> Start cluster service <pre> sudo service dxspider start </pre>")
  • 18:24, 14 February 2023 EA3CV talk contribs created page RBN.mojo (Created page with "IF YOU ARE ON THE MASTER BRANCH, STOP (I REPEAT) STOP READING THIS DOCUMENT AND READ UPGRADE.mojo FIRST. If you are not on an existing 'mojo' branch, or you have a build less than 260, please stop reading as well and read UPGRADE.mojo (in the section about installing packages), as you need to install some extra packages before restarting the new version of the code. If in doubt try installing the packages again as this will either confirm that all is already done or wi...")
  • 18:10, 14 February 2023 EA3CV talk contribs created page UPDATE.mojo (Created page with "There are the notes for upgrading to the mojo branch. PLEASE NOTE THERE HAVE BEEN CHANGES FOR all MOJO BRANCH USERS. See APPENDIX(i) at the end of this document. The BIG TICKET ITEM in this branch is that (potentially) '''long lived''' commands such as sh/dx and commands that poll external internet resources now don't halt the flow of data through the node. I am also using a modern, event driven, web socket "manager" called Mojolicious which is considerably more efficie...")
  • 16:16, 14 February 2023 EA3CV talk contribs created page Configure Node with more than one local IP (Mojo branch) (Created page with "Add the variable '''@main::localhost_names''' to allow other IP addresses to be treated in the same way as localhost in '''Configure node with Dynamic IP (Mojo branch)'''. You must include ALL the normal localhost names + any other interface names that you might want to include: <pre> set/var @main::localhost_names qw(127.0.0.1 ::1 192.168.1.30 172.16.0.20) </pre> using the qw() construction is easier than: <pre> set/var @main::localhost_names ('127.0.0.1', '::1', '19...")
  • 16:11, 14 February 2023 EA3CV talk contribs created page Configure node with Dynamic IP (Mojo branch) (Created page with "Introduce aliasing for localhost in DX Spots and outgoing PC92 A records on login. There are two variables which can be set with the alias to use: <pre> $main::localhost_alias_ipv4 $main::localhost_alias_ipv6 </pre> These can be set in the '''/spider/scripts/startup''' <pre> set/var $main::localhost_alias_ipv4 = "your_IP" </pre> but this is only necessary if the node has more than one interface, virtual hosts or Dynamic IP. You can check what your IP is with the foll...")
  • 18:45, 9 February 2023 EA3CV talk contribs created page NODE CONFIGURATION FOR USER ACCESS (This is a beta version to be reviewed)