Generate Self-Signed SSL Key Pair with OpenSSL
|
1
|
openssl req -new -newkey rsa:2048 -days 365 -nodes -x509 -keyout key.pem -out cert.pem -sha256
|
|
1
|
openssl req -new -newkey rsa:2048 -days 365 -nodes -x509 -keyout key.pem -out cert.pem -sha256
|
There is a lot of confusion on whether DMR is legal to use in the amateur bands. The short answer is an unequivocal yes. DMR is legal on the ham bands.
I have recently had a number of conversations with new DMR users wondering how to use the network without being impolite to other users, even inadvertently. I thought it would be useful to write this all down for everyone’s future…
To revert to your previous commit in Subversion, you’ll need the current revision number and the previous revision number, then:
|
1
2
3
|
svn update
svn merge -r 756:742 .
svn commit -m "Rolled back to previous commit (r742)"
|
KI6WJP has written a useful APRS-IS service called WxBot. Send a message to it with a single character from your APRS-capable radio or application, and it will respond with a forecast for your location. Here is a video demonstrating its…
One feature of many APRS-capable applications and radios is that they support specially-formatted APRS messages called queries or QRU. When the radio receives this message, the text “Q? ” will flash on the top of the screen. Here are the…
AirPrint is a cool technology, but what if you have printers that aren’t officially supported? Here’s how to make it work. Note that this was done on FreeBSD 10.1. This may work on other operating systems, but package installation and…
The Argent Data OpenTracker USB is a fully-featured KISS TNC – and it’s one of the least expensive, clocking in at $45 at the time this article was written. If you’re going to build an APRS digipeater or igate, or…
If you’re trying to interface an external accessory (like a Signalink) to a Motorola CDM via the rear 20-pin connector, and it’s not transmitting PL: Go to “Radio Configuration,” then “Accessory,” then change “Data PTT Audio Source” to “Ext Mic…
If you’d like to run aprx as a service on Debian Jessie, use this systemd script (in ):
|
1
2
3
4
5
6
7
8
9
10
11
|
[Unit]
Description=Amateur Radio APRS Gateway & Digipeater
Documentation=man:aprx(8)
[Service]
Type=simple
ExecStart=/sbin/aprx -i
# doesn't do any internal reload
#
[Install]
WantedBy=multi-user.target
|