❌

Normal view

There are new articles available, click to refresh the page.
Before yesterdayMain stream

Venturing into the world of AllStarLink

By: M0AWS
27 June 2024 at 22:07

We’ve recently added a new room to the Matrix HAM Radio Space for Digital Voice modes as this was an area of interest that didn’t really fit into any of the other rooms.

The new Digital Voice room has attracted a lot of attention from members, with a lot of the focus being on the AllStarLink system. Michael, DK1MI built an AllStarLink node in the cloud for us all to use for Matrix Nets and so I decided I had to get in on the fun.

Jumbospot SHARI SA818 Amateur Radio AllStarLink Radio Interface Front Panel View
Jumbospot SHARI SA818 Amateur Radio AllStarLink Radio Interface Front Panel View
Jumbospot SHARI SA818 Amateur Radio AllStarLink Radio Interface Rear View
Jumbospot SHARI SA818 Amateur Radio AllStarLink Radio Interface Rear View
Jumbospot SHARI SA818 Amateur Radio AllStarLink Radio Interface stripped down View
Jumbospot SHARI SA818 Amateur Radio AllStarLink Radio Interface stripped down View

The Jumbospot SHARI SA818 Amateur Radio AllStarLink Radio Interface was originally designedΒ byΒ N8ARΒ andΒ implementsΒ aΒ RaspberryPi 2/3/4Β hostedΒ AllStarLinkΒ nodeΒ usingΒ aΒ NiceRFΒ SA818Β embeddedΒ VHF/UHFΒ radioΒ module and sound card.

The two USB connectors on the SHARI device are position such that they plug into two of the available 4 USB ports on the RaspberryPi without the need for cables. This keeps the whole solution together in one neat package.

Before you start you will need to obtain a node number and secret (password) from the AllStarLink Portal. To get this you will need to provide proof to the AllStarLink administrators that you are a licensed Amateur Radio (HAM) operator. This is done by uploading a copy of the first page of your HAM licence to the website for the admin team to check. This can take 24hrs to be completed so make sure you get this all done before trying to build your node. You cannot build a node successfully without a node number and secret.

Of course you will also need a transceiver that can operate on the 438.800Mhz frequency or other frequency of your choice on the 2m or 70cm HAM band.

You will also need to open port 4569 on your internet router and setup port forwarding to the IP Address that you will be using on your RaspberryPi node. It’s important to use a static IP Address on your RaspberryPi.

There are quite a few different Linux based operating system (O/S) images that are available for the RaspberryPi devices that have been specifically tailored for the AllStarLink node and include all the necessary software and library packages out the box.

I decided to use the Raspbian GNU/Linux 10 (buster) based distribution as it is based on the very stable and reliable Debian Linux distro. You can download the exact version I am using from the Raspbian link above or directly from my website here.

Once downloaded you need to burn the ISO image onto a suitable SD card for your RaspberryPi. I use BalenaEtcher as it’s extremely quick and reliable at burning ISO images to SD cards.

Of course if you are a hardline Linux command line junkie you can always use dd to create the SD card.

Once you’ve got your O/S onto your SD card, slot it into your RaspberryPi making sure your SHARI device is connected to the two USB ports and then power it up. Make sure you have a good PSU for the RaspberryPi as the two devices together draw around 3A of current during the transmit cycle. (I use a 3.6A PSU from Amazon).

The default login for the Raspbian O/S is shown below. Login via SSH and configure your RaspberryPi for your local network. It’s important to use a static IP Address configured either directly on the RaspberryPi or via DHCP in your router.

Login: repeater
Passsword: allstarlink
SSH port: 22

Once you have your RaspberryPi connected to your LAN you are ready to start configuring it for AllStarLink.

The first thing you need to do is login to the raspi via SSH and then become root user using sudo as shown below:

sudo su -

Once you are root user, you need to add the AllStarLink repo to the sources file and update the operating system using the following command:

curl -s http://apt.allstarlink.org/repos/repo_signing.key | apt-key add
apt update --allow-releaseinfo-change
apt dist-upgrade

Copy and paste each line one at a time into your terminal. Once the last command finishes, the system is up to date and can be rebooted as follows:

reboot

Once the raspi has rebooted, login again via SSH as user repeater and then become root user again.

You now need to install a couple of Python components that are required by the system to function. Use the commands below as user root:

apt-get install python3-dev python3-pip
pip3 install pyserial

Next you need to change directory into the asterisk config file directory using the command shown below:

cd /etc/asterisk

In this directory you will find all the default config files that come as part of the distro. For this build we’re not going to use them and so we need to move them out of the way ready for a set of config files that have already been configured correctly.

Using the following commands create a new directory, move into that new directory and then move all the unwanted configuration files into it:

mkdir ORIGINAL-CONF-FILES
cd ./ORIGINAL-CONF-FILES
mv ../*.conf ./
ls -la
cd ../

You should now be back in the /etc/asterisk directory which will now be empty apart from the custom directory which we left in place.

You now need to copy the correctly configured configuration files into the /etc/asterisk directory. Start by downloading the zip file containing the new configuration files

Once downloaded, copy the .zip file into the repeater users home directory (/home/repeater) using either scp on the Linux command line or if using Windows you can use the FileZilla Client in SFTP mode using the login details above.

Once you have the .zip file in the repeater user’s home directory you need to copy the file into the /etc/asterisk directory as user root:

cp /home/repeater/AllStarLink-Config-v3.zip /etc/asterisk/

Next as user root, change directory into the /etc/asterisk directory and unzip the .zip file:

cd /etc/asterisk
unzip ./AllStarLink-Config-v3.zip

Once the file is unzipped you need to move a couple of files into the repeater users home directory using the following commands:

mv ./SA818-running.py /home/repeater
mv ./gpio /home/repeater

Once the files have been moved you need to set the correct ownership and privileges on the files using the following commands:

chown -R root:root /etc/asterisk/*.conf
chown repeater:repeater /home/repeater/gpio
chown repeater:repeater /home/repeater/SA818-running.py
chmod 755 /home/repeater/gpio
chmod 755 /home/repeater/SA818-running.py

The gpio BASH script and configuration details were supplied by Mark, G1INU in the Digital Voice room on the Matrix. It adds the COS light functionality to the setup. The COS light will now light every time the SA818 hears RF on the input.

The next thing you need to do is configure the SA818 radio device in the SHARI. The script I used was originally from https://wiki.fm-funknetz.de/doku.php?id=fm-funknetz:technik:shari-sa818 all I’ve done is change the entries to switch off CTCSS and changed the frequency to 438.800Mhz. Configuring the SA818 is done by running the SA818-running.py Python programme that you moved into the repeater user home directory. Making sure you are still user root, run the following commands:

cd /home/repeater
./SA818-running.py

At this point your SHARI SA818 device will be configured to operate on 438.800Mhz and CTCSS will be disabled.

If you want to change the frequency or enable and set a CTCSS tone to access the node you will need to edit the Python programme using your favourite text editor and change the entries accordingly. Once changed rerun the program as shown above and your SHARI will be reconfigured to your new settings.

Next you need to move the allmon.ini.php file into the correct directory so that it enables access to the Allstar Monitor web page on the device so that you can manage connecting/disconnecting nodes. Use the following commands as user root to achieve this:

cd /etc/asterisk
mv ./allmon.ini.php /var/www/html/allmon2/
chown root:root /var/www/html/allmon2/allmon.ini.php
chmod 644 /var/www/html/allmon2/allmon.ini.php

The allmon.ini.php file needs to have your node name entered into it for it to work correctly. As user root, change directory and edit the file using your favourite editor.

cd /var/www/html

Using your text editor, search for the line starting [XXXXX] and change the XXXXX to your node number. Save the change and exit the file.

At this point you are almost complete, all that is left to do is add your node number and node secret into the appropriate configuration files in the /etc/asterisk directory.

Since I am a Linux command line junkie I use vi to edit all the configuration files on the command line as user root, but you can use any editor of your choice.

cd /etc/asterisk

Start with the extensions.conf file. Search for the line starting with NODE = and delete the XXXXX entry and insert your node number. Save the file and edit it.

Next you need to edit the iax.conf file. This time search for the line starting with
register= and change the XXXXX for your node number and the YYYYYYYYYYYY for your node secret. Be careful not to accidentally delete any other characters in the lines otherwise it will corrupt the configuration file.

In the same file search for the two lines that start with secret = and change the YYYYYYYYYYYY for your node secret. Once you have changed both of the secret entries, save and exit the file.

The final file to edit is the rpt.conf file. Once again open the file using your favourite editor and search for the line starting with XXXXX = radio@127.0.0.1:4569/XXXXX, change the XXXXX entries for your node number making sure not to delete any other characters next to the XXXXX entries.

Further down in the same file there is a line that starts with [XXXXX], once again change the XXXXX for your node number making sure to keep the square brackets at each end of the node number as you edit it.

Finally move down to the very bottom of the file and find the two lines that start with /home/repeater/gpio, once again change the XXXXX entries for your node number.

Once this is done, save and exit the file. At this point your node should be fully configured and will only require a reboot to get it working.

As user root, reboot your raspi using the reboot command.

reboot

Once your raspi comes back online, login using SSH as user repeater and then become root user using the sudo command detailed above.

You now need to create the admin user password for the Allstar Monitor web page on the device. This is done using the following commands as user root:

cd /var/www/html/
htpasswd -c .htpasswd admin

You will be asked to enter a password twice for the admin user, make sure you make a note of this password as you will need it to login to the web page.

Once this is done your configuration is complete, logout from the terminal session by entering exit twice (once to logout as user root and another to logout as user repeater).

Using your favourite web browser enter the IP Address of your raspi into the URL bar as shown below:

http://<Your-Raspi-IP>/allmon2

Note: remove the <> from the URL once you have entered the required information.

Once this is done you should be presented with your node control panel as shown below.

First visit to the AllStar Monitor Web Page
First visit to the AllStar Monitor Web Page

Login using Admin and the password you set above and you are now ready to start using your node.

It’s a good idea to connect to node 55553 which is a parrot test node to check your audio levels. you can do this by entering the node into the field at the top left and pressing the connect button.

M0AWS AllStarLink Node 61928 connected to 55553 Parrot
M0AWS AllStarLink Node 61928 connected to 55553 Parrot

Once connected, tune your radio to 438.800Mhz FM and transmit a test message using your callsign and test123, or something similar. The parrot will then play your recording back to you so that you can hear how you sound. It will also comment on your audio level as to whether it is OK or not.

You are now connected to AllStarLink network and have the world at your finger tips. Below is a small list of nodes in the UK, Australia and America to get you started chatting with other HAMs via your node.

55553	ASL Parrot for testing
41522	M0HOY HUBNet Manchester, UK
60349	VK6CIA 439.275 Perth, Western Australia
51077	VK6SEG South West Hub B Albany WA
2167	M0JKT FreeSTAR UK HUB 2 freestar.network
53573	NWAG NW AllStar Group Lancashire, UK
27339	East Coast Hub Wilmington NC USA
M0AWS AllStarLink Node 61928 sitting on the equipment rack
M0AWS AllStarLink Node 61928 sitting on the equipment rack

Thanks to Michael, DK1MI for building and hosting the Matrix HAM Radio Space AllStarLink Node (57881) and getting us all kicked off into the world of AllStarLink!

We hope to be having regular Matrix Net’s on the node soon for all Matrix members and visitors. We’ll organise days/times via the Digital Voice room.

More soon …

AGCW-NTC Friendship QSO party

17 April 2024 at 08:53

Gisteravond meegedaan aan de AGCW-NTC Friendship QSO party georganiseerd door de AGCW activity group en de NTC (Netherlands Telegraphy Club). Een QSO party om de vriendschap tussen beide clubs te vieren. Deze party wordt twee keer per jaar gehouden in april en oktober en duurt 2 uur. In deze twee uur heb ik 17 QSO’s kunnen loggen. De condities waren minder en de storing (QRM) leek heftiger. Gelukkig kon ik 2 stations op 80 meter werken die op de stoorpiek zaten. Gelukkig werken de filters in de Icom IC-7300 best goed.

Voor mij was het de eerste keer dat ik hieraan mee deed en ook de nieuwe BaMaKey TP-II (2) eens goed kon proberen. Ik heb de BaMaKey TP-II (2) de laatste dagen wel af en toe gebruikt maar niet veel. Wat mij er vooral aan opviel was de speling tussen de paddle en de magneetbasis. Dat het iets heen en weer beweegt ligt natuurlijk aan mijn ruwe seinen maar die speling hoort er eigenlijk niet te zijn. Dus toch even contact gezocht met Markus DL6YYM en gevraagd hoe dit op te lossen. En zoals het met techneuten gaat, we lezen de handleiding niet maar gaan gewoon aan de slag met het nieuwe spul. In de handleiding staat netjes dat je met de schroefjes van de rubberen voetjes alle speling, welke kant ook op, weg kunt halen. Na het aandraaien van de schroefjes, waardoor de rubber voetjes wat uitzetten, was de speling verdwenen. Nu seint het heel fijn en soepel. Echt fijner dan de KENT TP1-B, al is dit nog steeds een mooie paddle.

Loggen deed ik gisteravond met N1MM+ op de Windows 10 laptop. En met RustDesk kon ik het op mijn iMac overnemen. Seinen deed ik uiteraard niet met de software, alleen de frequentie en band werden door N1MM+ uit de IC-7300 overgenomen. De manager van deze party is Lothar – DL1DXL die ik ook in het log mocht zetten. Net als het clubstation PI4NTC. Tijdens de NTC QSO Party op 21 maart had ik mijzelf de uitdaging gegeven om bij de eerst volgende NTCQP meer QSO’s te loggen dan de 12 die ik had. De eerstvolgende NTCQP is komende donderdag en dan gaat het mij helaas niet lukken om mee te doen. Dus daarom vind ik dat deze AGCW-NTC Friendship QSO party daarvoor in de plaats is gekomen. En geslaagd met 17 QSO’s!

De volgende AGCW-NTC Friendship QSO party is op 15 oktober. Helaas is dat vlak voor de JOTA-JOTI en dan ben ik te druk met het voorbereiden van de JOTA-JOTI (Jamboree On The Air) en de meeste apparatuur zal dan ook al ingepakt staan.

Het bericht AGCW-NTC Friendship QSO party verscheen eerst op PE2V.

Alexandre Grimberg PY1AHD – SK

By: VA3QV
16 April 2024 at 15:05

It was brought to my attention via a posting on the Ottawa Valley QRP Society – Digest #1381 on Groups IO that Alex of β€œAlexloops” had passed away.

Although I had no dealings with Alex I know several hams in my immediate circle who knew the value of his product.

Most recently I was amazed by the performance of his loop when Martin VA3SIE and myself activated POTA CA-4877 (Murney Tower) in November 2022.

For this activation I used my XIEGU X5105 and a 40m End Fed Half Wave and Martin used his KX3 along with his β€œALEXLOOP”. I think that if you were to compare our logs for the event the loop out performed the EFHW.

Alex made quality antennas and the proof would be in the logs….

73 Alex and thanks for what you have contributed to our hobby….

Bob

Radio Sighting in β€œLet’s Get Harry”

By: Thomas
25 March 2024 at 14:30
Many thanks to SWLing Post contributor, Perry Lusk, who writes: Guess what kids? Another radio sighting from the 1986 film Let’s Get Harry! Lots of big names in this one including Mark Harmon, Robert Duvall, Gary Busey, and former founding member of the Eagles Glenn Frey. While on a covert rescue mission in Columbia, they […]

NTC QSO Party maart 2024

22 March 2024 at 13:02

Gisteravond meegedaan voor de tweede keer aan de NTC (Netherlands Telegraphy Club) QSO Party (NTCQP). Een morse code / CW party waarin je een uur lang contacten legt met andere stations en gegevens uitwisselt. In dit geval minimaal een β€˜echt’-rapport, je naam en NTC nummer. Meer gegevens mag, hoeft niet. Ik heb 11 QSO’s kunnen loggen als S&P (Searching and Pouncing, dus een station opzoeken en proberen te werken). Ik vind S&P gewoon een stuk relaxter.

RUMlogNG en N1MM+
Ik heb met veel gedoe en omwegen in N1MM+ kunnen loggen en met AnyDesk het beeldscherm van de laptop overgenomen op mijn iMac. Ik wilde namelijk voor de NTCQP het logboek programma N1MM+ gebruiken op de laptop en dan koppelen via het netwerk aan RUMlogNG voor de frequentie.

NTC-QSO-Party-N1MM

In RUMlogNG is deze QSO Party niet beschikbaar en in N1MM+ wel. Gelukkig zit er in RL een mogelijkheid om RL met N1MM+ te laten praten maar ik kreeg het niet voor elkaar. Ik kreeg van de RUMlogNG auteur als reactie: als je RL niet wilt gebruiken moet je de TRX aan de laptop hangenβ€œ. Lekker dan. Dus dat uiteindelijk gedaan en de TRX ging spontaan op zenden…… en dat kreeg ik eerst niet goed. Snel vermogen minimaal (4 Watt) en een paar keer hard aan / uit. Uiteindelijk werkte het en zonder dat ik het in de gaten had ging N1MM+ ineens CQ roepen 😱😱 man man man….

Uiteraard werd ik door het RBN opgepikt waarna Rob HA7RJA op mijn CQ reageerde. Helaas hoorde ik Rob niet want ik had het geluid van de TRX heel zacht staan en was veel te druk met het uitzoeken van het hoe en waarom haha. Sry Rob πŸ˜‰

Gemak dient de HAM tijdens de contest
Je hoeft eigenlijk alleen maar de call van het tegenstation te β€˜nemen’ en in te voeren in N1MM+ en daarna een paar keer klikken (als je dit zou willen dan). Is wel erg makkelijk zo. Daarom maken ze 60! QSOs in een uur. Word je ook niet moe van. Ik heb verder alle communicatie uitgeschakeld, alleen de band, mode en frequentie kloppen nu. De rest doe ik met het handje. Dus seinen met de paddle.

En ja, de naam en het NTC nummer worden dan wel automatisch ingevuld. Ook dat kan ik uitschakelen. Maar heb dat laten staan. Ter controle moet je het toch meelezen.

Storing QRM
Ik heb alleen meegedaan op 40 meter, ondanks de vervelende storing van S9 rond 7.036 MHz en die zwabbert wat heen en weer. Gelukkig zijn CW signalen smalbandig en lukte het aardig door de redelijk goede condities. .

vervelende storing van S9 rond 7.036 MHz

Deze storing is op 80 meter helemaal heftig (S9 + 15dB) met veel QRM tussen de pieken, dus daar heb ik geen moeite gedaan om QSO’s te maken.

Deze storing is op 80 meter helemaal heftig (S9 + 15dB)

Ik had na de vorige NTCQP met mijzelf afgesproken om dit keer meer QSO’s te maken dan de eerste NTC QSO Party. En ja, dat is dus ruim gelukt. Voor de volgende keer wil ik wederom van mijzelf winnen. Dus dan minimaal 12 QSO’s in het log. De volgende NTC QSO Party is op 18 april 2024.

Het bericht NTC QSO Party maart 2024 verscheen eerst op PE2V.

Wertheim National Wildlife Refuge K-0481

Introduction:

Since the weather is still very cool here on Long Island, I decided to try out my new β€œMount-It! Car Desk” for this activation. Werthiem is my first attempt at using the table for any deployment.

While I do like the convenience of the new table and the fact that it keeps me out of the weather, like anything else in the world, is not perfect. But for reading, using a laptop, eating or playing Amateur Radio, it’s another good, inexpensive tool for general use.

Benefits of the Mount-It! Car Desk:

The Mount-It Car Desk
  • A car desk is a great way to activate a park from the back seat of your car during nasty weather.
  • The car desk is sturdy enough to hold my KX3, 3Ah 12vdc LIfePO4 battery, UTC clock and notepad sized logbook.
  • I plan to use the car desk for other tasks like using my laptop and reading while killing time between doctor appointments.
  • The car desk can be used with the steering wheel or attached to the headrest of the front seat for back seat operations.
  • The unit is lightweight so you can easily take it with you wherever you go. It’s also easy to set up and take down, which makes it that much more convenient in a pinch.
  • The car desk is a stable surface to work on. The angle of the desk can be altered for use with a QRP rig, laptop or angled for reading.

Check out the Mount-It! Car Desk here

Watch The Mount-It Car Desk Video here

Takeaways:

The railroad bridge over Carmen’s River

My first impression is that the car tray is not rock solid. When using the onboard KX3 with the QRPGUYS paddle kit (shown in photo), there is a very slight up and down movement to the tray, mostly due my heavy hand leaning on it.Β 

Initially I was a bit flustered trying to work my first few contacts with the slight motion of the tray but after a short time I was able to compensate for the movement. Of course using an alternative plug-in paddle would have resolved that problem.

The car desk easily handled the weight of the KX3, Bioenno battery and my heavy handedness. I’d say that the car desk could easily handle the weight of any current QRP rig around. Β 

FAQ:

What can I use a car desk for?
You can use a car desk for a variety of tasks, including eating, working on a laptop, or reading.

How do I use a car desk?
To use a car desk, simply attach it to your steering wheel or front seat headrest and place your belongings on the surface. You can then adjust the height and tilt of the desk to find the most comfortable position for you.

Is a car desk safe to use?
Yes, a car desk is safe to use as long as you follow the instructions. Make sure to attach the desk securely to your steering wheel or front seat headrest.

Where can I buy a car desk?
You can buy a car desk online or at most automotive stores.

How much does a car desk cost?
The price of a car desk varies depending on the brand and model. However, most car desks cost between $20 and $50.

Do I need any special tools to use a car desk?
No, you don’t need any special tools to use or install a car desk. However, some desks may come with a set of instructions that include helpful tips for installation.

Conclusion:

Using the car desk definitely helped with my activation. Rather than leaning over to the left when I had to place the KX3 on the folded left rear seat, it was a pleasure to sit forward while working and logging my contacts.

With a roof mounted Hamstick and 10 watts CW, it’s always a surprise to find out just how far a signal with travel. During this activation I worked as far west as Oregon (K7GT) and to the east it was Poland (SP9RXP).

Check out the Mount-It! Car Desk here

QSO365 #3 is complete – Ten QSOs per day in 2021

By: g6nhu
1 January 2022 at 09:00

I’ll kick off with the statistics for the whole of 2021 and then go into the details. QSOs made: 8,265Unique QSOs made: 5,776Average QSOs per day: 22.6Days missed: 0 <- This is the most important statistic, it means that QSO365 #3 was a success. DXCC entities worked: 168New DXCC entities worked: 1Total DXCC worked and […]

The post QSO365 #3 is complete – Ten QSOs per day in 2021 first appeared on QSO365.
❌
❌