css body, p, .post-body { font-family: 'Google Sans Text', sans-serif !important; } /* Apply Google Sans to Post Titles and Headings */ h1, h2, h3, h4, h5, h6, .post-title, .post h2 { font-family: 'Google Sans', sans-serif; font-weight: 500; }

Wednesday, July 15, 2026

How to automatically Connect and Disconnect an AllStar3 Node to another AllStar Node


Here is a short and easy method on how to connect and disconnect an AllstarLink 3 (ASL 3) node on a schedule.  You need to leverage the ASL3 asterisk CLI tool (asterisk -rx) inside two basic bash scripts. Then, you map those scripts to system execution times using Linux's built-in crontab utility.  

Note:  I know there are more than one way to effect these connections but here I concentrate on the newcomer to Linux and ASL3.

You will create two lightweight bash scripts that sends a command to your local Asterisk instance telling it to connect or disconnect to your target node at specific times.  To instruct  Linux to run the scripts automatically at specific times we will be using the cron tasks scheduler utility.

Let's get started.

Prerequisites: Finding Your Node Numbers

Before starting, write down your two node numbers. You will need them in the steps below:

  1. Your Local Node Number: The number assigned to your physical AllStarLink 3 hotspot or server.

  2. The Target Node Number: The number of the remote node, reflector, or hub you want to connect to.


Step 1: Open Your Node Terminal

  1. Open your terminal program (like PuTTY on Windows, or Terminal on a Mac).

  2. Log into your AllStarLink 3 node using your username and password.

  3. You should see a command prompt waiting for your input (usually ending with a $ sign).


Step 2: Create the Morning Connection Script

We will use a basic text editor inside Linux called nano to create the morning connection command.

  1. Type the following command to create a new file named connect.sh and press Enter:

    bash

    sudo nano connect.sh

  2. A blank screen will open. Copy the text below, but replace <YOUR_NODE> and <TARGET_NODE> with your actual node numbers. Do not include the < > brackets.

    bash

    #!/bin/bash
    /usr/sbin/asterisk -rx "rpt fun <YOUR_NODE> *3<TARGET_NODE>"

    Example of what it should look like if your node is 1234 and the target is 5678: /usr/sbin/asterisk -rx "rpt fun 1234 *35678"

  3. Save and Close the file:

    • Press Ctrl + O on your keyboard (this means "Write Out" / Save).

    • Press Enter to confirm the file name.

    • Press Ctrl + X to exit the text editor and return to the main screen.

  4. Give Permission to Run: Linux blocks files from running automatically until you give them permission. Type this command and press Enter:

    bash

    sudo chmod +x connect.sh


Step 3: Create the Evening Disconnection Script

Now, we will do the exact same thing to create the command that disconnects your node.

  1. Type the following command to create a new file named disconnect.sh and press Enter:

    bash

    sudo nano disconnect.sh

  2. Copy and paste the text below, making the exact same node number replacements as before:

    bash

    #!/bin/bash
    /usr/sbin/asterisk -rx "rpt fun <YOUR_NODE> *1<TARGET_NODE>"

    (Note: The *3 changed to *1, which tells AllStarLink to disconnect instead of connect).

  3. Save and Close the file:

    • Press Ctrl + O

    • Press Enter

    • Press Ctrl + X

  4. Give Permission to Run: Type this command and press Enter:

    bash

    chmod +x disconnect.sh


Step 4: Find Your Secret "Home Path"

Linux needs to know the exact folder path where your scripts live so it can find them later.

  1. Type this command and press Enter:

    bash

    pwd

  2. It will print out a path on your screen. It will look something like /home/admin or /root.

  3. Write this down exactly as it appears. We will use this in the final step.


Step 5: Schedule the Automation (04:00 to 20:00)

We will now use the Linux calendar tool called crontab to schedule your scripts at 04h00 and 20h00.

  1. Type this command to open the scheduler and press Enter:

    bash

    crontab -e

    (If Linux asks you to choose an editor, press 1 and hit Enter to choose nano).

  2. Use the arrow keys on your keyboard to scroll all the way down to the very bottom of the file.

  3. Paste the following two lines at the bottom. Replace /home/yourusername with the exact path you wrote down in Step 4:

    text

    0 4 * * * /home/yourusername/connect.sh >/dev/null 2>&1
    0 20 * * * /home/yourusername/disconnect.sh >/dev/null 2>&1

    • How it works: The 0 4 means Minute 0 of Hour 4 (04h00). The 0 20 means Minute 0 of Hour 20 (20h00 in 24-hour military time).

  4. Save and Close the file:

    • Press Ctrl + O

    • Press Enter

    • Press Ctrl + X

The terminal will say  crontab: installing new crontab

Your node will now automatically connect every morning at 04h00 and cleanly disconnect every evening at 20h00! 

Inside crontab -e , you can also use three-letter text abbreviations instead of numbers for the days of the week if it is easier to remember (e.g., SUN, MON, TUE, WED, THU, FRI, SAT).

For example, a weekend-only entry can look like this:  0 4 * * SAT,SUN

Lets add a bit of "meat" to the above method of connecting and disconnecting an ASL3 Node to another AllStar Node.

An automated system to connect and disconnect specific nodes at different times and days

This step-by-step guide will walk you through setting up an automated system to connect and disconnect specific nodes at different times and days using cron and Bash scripts.

Overview of How It Works

Instead of creating separate files for every single node, we use one connection script and one disconnection script.

We pass the specific node ID (like 49355 or 647030) as an "argument" from the scheduler (cron). The script reads that number, plugs it into your connection command, and executes it.

[cron scheduler] ──(sends node ID)──> [connect.sh] ──> Executed for that node only

Step 1: Create the Automation Scripts

We will place these scripts in a folder called scripts inside your user's home directory.

1. Create the Directory

Open your terminal and run:

Bash

mkdir -p ~/scripts

2. Create the Connection Script

Create and open a new file called connect.sh:

Bash

nano ~/scripts/connect.sh

Paste the following code inside it:

Bash

#!/bin/bash

# 1. Check if the user (or cron) forgot to provide a node number
if [ -z "$1" ]; then
    echo "ERROR: No node specified. Usage: $0 <node_id>"
    exit 1
fi

# 2. Assign the argument to a readable variable
NODE_ID=$1

echo "=========================================="
echo "STARTING CONNECTION: Node $NODE_ID"
echo "Timestamp: $(date)"
echo "=========================================="

# 3. YOUR CONNECTION COMMAND GOES HERE
# Replace the line below with your actual command. 
# Use $NODE_ID wherever the node number needs to go.
echo "Connecting to node $NODE_ID now..."

# Example placeholder (Uncomment and modify if using something like OpenVPN):
# openvpn --config "/home/$USER/vpn/${NODE_ID}.ovpn"

3. Create the Disconnection Script

Create and open a new file called disconnect.sh:

Bash

nano ~/scripts/disconnect.sh

Paste the following code inside it:

Bash

#!/bin/bash

# 1. Check if the user (or cron) forgot to provide a node number
if [ -z "$1" ]; then
    echo "ERROR: No node specified. Usage: $0 <node_id>"
    exit 1
fi

# 2. Assign the argument to a readable variable
NODE_ID=$1

echo "=========================================="
echo "STOPPING CONNECTION: Node $NODE_ID"
echo "Timestamp: $(date)"
echo "=========================================="

# 3. YOUR DISCONNECT COMMAND GOES HERE
# Replace the line below with your actual command.
echo "Disconnecting node $NODE_ID now..."

# Example placeholder:
# killall openvpn

4. Make the Scripts Executable

Linux security requires you to explicitly grant permission for scripts to run. Execute this command in your terminal:

Bash

chmod +x ~/scripts/connect.sh ~/scripts/disconnect.sh

Step 2: Test Your Scripts Manually

Before letting the automation take over, test that the scripts successfully receive your node variables. Run these commands in your terminal:

Bash

~/scripts/connect.sh 49355
~/scripts/disconnect.sh 49355

You should see an output in your terminal confirming it attempted to connect to node 49355.

Step 3: Configure the cron Schedule

cron is the built-in Linux background service that runs tasks at specified times.

1. Open the Cron Editor

Run the following command to edit your personal schedule:

Bash

crontab -e

If it asks you to choose an editor, press 1 for nano (the easiest one).

2. Add Your Node Schedules

Scroll to the very bottom of the file and paste the following lines exactly as shown.

Important: We use ~/scripts/... to point to your home directory, and save logs to your home folder (~/cron_node_...log) to prevent any permission issues.

Code snippet

# ===================================================================
# NODE 49355 SCHEDULE (Fridays)
# ===================================================================
# Connect at 5:00 AM on Friday (Day 5)
0 5 * * 5 /bin/bash /home/USER/scripts/connect.sh 49355 >> /home/USER/cron_49355.log 2>&1

# Disconnect at 8:00 PM (20:00) on Friday (Day 5)
0 20 * * 5 /bin/bash /home/USER/scripts/disconnect.sh 49355 >> /home/USER/cron_49355.log 2>&1


# ===================================================================
# NODE 647030 SCHEDULE (Saturdays)
# ===================================================================
# Connect at 6:00 AM on Saturday (Day 6)
0 6 * * 6 /bin/bash /home/USER/scripts/connect.sh 647030 >> /home/USER/cron_647030.log 2>&1

# Disconnect at 7:00 PM (19:00) on Saturday (Day 6)
0 19 * * 6 /bin/bash /home/USER/scripts/disconnect.sh 647030 >> /home/USER/cron_647030.log 2>&1

3. Critical Adjustment: Fix the Username Path

cron requires absolute system paths to be completely reliable.

  1. In the text you just pasted, look for /home/USER/.

  2. Replace USER with your actual Linux account username. (If your username is johndoe, the path becomes /home/johndoe/scripts/...).

4. Save and Exit

  • If using Nano: Press Ctrl + O then Enter to save.

  • Press Ctrl + X to exit back to the normal terminal.

You should see a message saying: crontab: installing new crontab.

Step 4: Troubleshooting & Monitoring Logs

Because cron tasks run invisibly in the background, the entries above are designed to output everything they do into dedicated text files so you can check on them.

To see if your scripts are running smoothly or to view errors, read your log files using the cat command:

Bash

cat ~/cron_49355.log
cat ~/cron_647030.log

If you ever want to add a third or fourth node in the future, you do not need to modify your scripts at all. Simply open crontab -e again and add two new lines with the new node number and your preferred times.

Comment:  Zayn ZR3VO from Orania is currently using this automated connect and disconnect method and he indicated that it is working well.

Images:  (Click on images for larger view.) 

 

Tuesday, July 14, 2026

#4 - Amateur Radio News and Announcements (14 July 2026)

 In this issue of Amateur Radio News and Announcements:


1.  No-SDR: A New Open Source Multi-User WebSDR for RTL-SDR:  

No SDR hardware on your desk? No problem. Multi-user web receiver with real-time waterfall, stereo FM, and digital mode decoding — all served from Go back end to your browser.  

no-sdr turns cheap RTL-SDR USB dongles into a full-featured web-based radio receiver. Multiple users connect through their browser and independently tune, demodulate, and listen to signals — all sharing the same hardware. No plugins, no installs, just open a URL.

Think of it as your own private, open WebSDR that you can run at your home pc or on a docker container (compose). Works in Raspberry Pi too.

This project aims High Fidelity, weak signals processing, near lossless quality, low bandwidth consumption and aims every feature to be run also on arm architecture (RPi/MAC). For x86 four binaries are included and you CPU capability level is detected on container start, processors with streaming extensions (SSE/AVX etc.) have superior performance and each client consumes less CPU cycles. All of this open, no closed source.


2.  G4NSJ - What happened to amateur radio? Where is everyone? Where is the ionosphere?

What happened to amateur radio? Where is everyone? Where is the ionosphere? Band conditions have been awful, 40 meters is dead. What's all this EQ business about? Why pump up the bass on SSB?  Why run a kilowatt when you have a rubbish antenna? This explains a lot...

G4NSJ examines the decline in activity across various amateur radio bands and repeaters. Discussion focuses on changing communication practices, including the use of high power and audio processing on side-band, while contrasting current experiences with techniques from the past. 

Watch the video HERE.  

 


3.  Tune into the DMR-ZA Net this evening at 19h30 SAST

To my big surprise the article that I wrote about the DMR-Net available HERE is currently one of the most popular posts on the Blog.  It would appear that there is a great interest in DMR in South Africa. 

Herewith a list of different equipment / apps and images that cross transmit / receive the DMR-ZA Net on a Tuesday evening. (Click on images for larger view.)

1.  ZS1I 49355 AllStar Hub Network which incorporates Echolink. (ZS1I-R)

2.  DMR / DVSwitch /AllStar Bridge (TG 65522)

3.  ZS1I MMDVM Digital Repeater (TG 65522)

4.  145.550 Mhz Analogue Simplex RF Link Mossel Bay area.

5.  DroidStar / VoxDMR Applications for DMR  TG655

6.  ASL3 to Mumble Bridge PC (Mumble Client) as well as Mobile Phone (Plumble Client) 

7.  BrandMeister - Hoseline Application (PC or Mobile Phone - Receive only.)

8.  DVSwitch Mobile Application (PC or Mobile Phone)

9.   Many Analog-Repeaters and Links are connected to the ZS1I Hub Network on a daily basis.  Some of these analogue repeaters will be connected to the ZS1I Hub Network on a Tuesday evening and they might also be linked to other repeaters country- and world wide.  So why not link up with your local analogue repeater.  You might just be able to connect to the DMR-ZA Net on a Tuesday evening at 19h30 SAST. 


 4.  Increased Cape Traffic Brings Maritime Security in Focus

The article is available HERE.

Now out of an amateur radio point of view the question arises, with increased maritime traffic around the Cape of Good Hope, what will happen in event of a maritime disaster?  The Western Cape coastal area is well know for many maritime disasters in the past and you will find many shipwrecks around the coastline of South Africa.  With the sinking of the Oseanos cruise ship great challenges were forthcoming in rescuing passengers from the ship.  Radio communications is still today of the utmost importance during any disaster.  

Here are some information regarding South African Maritime Mobile Net (Amateur Radio Maritime Net) and Cape Town Radio (South Africa's primary maritime radio coastal station).

As an amateur radio operator living in Mossel Bay (coastal town) the increase in Maritime traffic and the focus on Maritime security should not be ignored. We as coastal radio amateurs must be ready for any eventuality that might happen.  


(Click on image for larger view.) 

5.  NEW!! - QSO One Amateur Radio, re-imagined. 

The All-in-One Android & Windows Application for Ham Radio Operators 📡
From DMR, AllStarLink, M17, EchoLink, and IAX connections, QSO One makes it easy to bring multiple amateur radio networks together in a single, user-friendly application.

✅ Proper AllStarLink Node Number and IAX2 Password 
✅ Correct EchoLink Callsign and Password
✅ Accurate DMR ID and Network Settings
✅ M17 Reflector and Callsign Configuration
✅ Reliable IAX Connectivity 

QSO One is a software application for amateur (ham) radio operators that consolidates multiple digital voice networks into a single app, eliminating the need to juggle multiple programs.The platform allows users to connect to networks like AllStarLink, EchoLink, DMR (BrandMeister and TGIF), and M17 without requiring extra hardware or a physical hotspot.

Key features of the application include:

Network Integration: Connects to multiple digital voice protocols straight from a PC or mobile device.

Logging and Audio: Includes built-in QSO logging, callsign lookup, and audio recording.

Net Runner: Automatically transcribes and catches callsigns during an active net session, auto-populating a check-in roster.

For more information or to test the beta version, you can visit the QSO One Beta Download. 


Watch the video   HERE 

6.  Amateur Radio in Men’s Sheds: Community Outreach Through Science, Technology and Connection

Amateur radio offers Men’s Sheds a powerful new way to connect with members who may not be drawn to traditional woodworking, metalworking or workshop activities. For many people, the attraction is technology, science, communications, electronics, weather, computers, space, emergency communications and lifelong learning. An amateur radio program gives these members a place to belong, contribute and keep learning, while still delivering the core Men’s Shed goals of social connection, purpose, well-being and practical community benefit.

The community benefits are significant. Amateur radio can help reduce social isolation, encourage participation, support mental health, build confidence and provide opportunities for skills transfer between generations. It also helps strengthen community resilience by developing local communications knowledge and emergency preparedness. With partnerships involving amateur radio clubs, schools, Scouts, libraries, universities, STEM groups and emergency service organizations, a Men’s Shed radio program can become a genuine community outreach hub. 

Comment: Well done Australia!!  I had the great privilege to visit a Men's Shed in Toowoomba, Australia about three years ago.  What an experience for a South African Old Timer.  A pity that there is no Men's Sheds in South Africa.  Information on the Toowoomba Men's Shed available HERE. 

Saturday, July 11, 2026

ZS1I Mossel Bay DMR Repeater Coverage - Radio Mobile Maps


Image:  Mossel Bay Area (Click on image for larger view.) 

The ZS1I DMR Repeater in Heiderand, Mossel Bay has been running from time to  time since June 2023.  It is permanently on the air from the 1 May 2026 after several hardware and software modifications were done for optimum functioning. Several radio amateurs have provided reports and positive comments with regard to the repeater.  It is quite strange that I never plotted the coverage area using Radio Mobile since June 2023.  I have now plotted the expected coverage area of the repeater.  

Before I publish the images it is important to first publish the repeater- , equipment- , feedline- and antenna information. 

ZS1I Digital Mobile Radio (DMR) Repeater

DMR Repeater Talkgroup 65522:   This repeater is NOT located on a remote mountain site but is situated in the Shack of ZS1I in Heiderand, Mossel Bay. This allows ZS1I to monitor and control the repeater while it is on the air.  
Mossel Bay DMR Repeater Information:

Mode: DMR
Band:  70cm
TX Frequency:  438.262500 Mhz
RX Frequency:  430.662500 Mhz
Radio Mode:  Duplex
Talk Group (TG): 65522
Colour Code: 1
Time Slot:  1 or 2 
RF Power Output: 15 Watt
Logarithmic power level: 41.76 dBm
Antenna EIRP:  46.96 dBm
Antenna:  Diamond X50
Antenna Gain:  7.2 dBi
Antenna Height:  12 Meters
Coax Cable:  RG213 Mil-Spec (West Germany)

This repeater is linked to the ZS1I AllStar Hub Network (Node 49355) (Analog Repeaters / Simplex Link Radio / Echolink / SVXLink / AllStar / South Cape Reflector) via the ZS1I DMR Bridge and Repeater.  

With your system operating at 440 MHz (70cm UHF band) with an EIRP of 46.96 dBm from an antenna height of 12 metres at sea level in Mossel Bay, your real-world coverage will be highly asymmetrical.

Because UHF signals rely almost entirely on line-of-sight propagation and are easily blocked by solid earth, your coverage splits into two completely different zones: vast open coverage over the ocean, and a sharp cutoff to the north caused by the Outeniqua Mountains.

Here is how your 46.96 dBm EIRP system will perform under these specific local conditions:

Line-of-Sight Horizon Limit

The theoretical radio horizon for an antenna 12 metres above sea level is calculated using the standard RF horizon formula:

===================================================================

RADIO HORIZON CALCULATION

===================================================================

Formula:

d = √(17 × h)

Where:

d = Distance to the radio horizon (in kilometres)

h = Antenna height above the ground/sea level (in metres)

-------------------------------------------------------------------

Your Setup Calculation (12-Metre Antenna Height):

d = √(17 × 12)

d = √(204)

d ≈ 14.28 km

Result:

The theoretical radio horizon for your repeater antenna is 14.28 kilometres.

===================================================================

  • To a Handheld Radio (Ground Level): If communicating with a person holding a radio at ground level (approx. 1.5 metres high), their radio horizon is about 5 km. Adding your horizons together means you will have clean, high-clarity Line-of-Sight coverage up to 19–20 km away over the flat ocean surface or open coastal flats towards Hartenbos and Klein Brak River.

2. Terrain Obstacles: The Outeniqua Mountains

To the north of Mossel Bay, the Outeniqua Mountains rise sharply to heights between 800 and over 1,500 metres (such as the Robinson Pass area).

  • The Shadow Effect: At 440 MHz, radio waves behave much like light beams. When your signal hits the massive sandstone slopes of the Outeniquas, the mountains will cast a massive "radio shadow" directly behind them.

  • The Cutoff: Your signal will cleanly illuminate the southern, seaward-facing slopes of the mountains. However, coverage will completely drop off on the northern side of the ridge. You will not be able to reach deeper inland areas like the Little Karoo (Oudtshoorn region) unless you bounce a signal off a mountain-top repeater.

3. Signal Penetration in Town (Urban Factor)

Because your antenna is mounted at 12 metres, it is likely sitting just above or level with standard two-story residential rooftops in Mossel Bay.

  • Structural Losses: 440 MHz UHF is excellent at bouncing between buildings and penetrating walls.

  • Local Range: You can expect highly reliable, punchy coverage throughout the immediate town, even over the hilly terrain of the Cape St. Blaize peninsula. The 46.96 dBm (approx. 50 W) of effective directional power is more than enough to overcome urban attenuation within a 10 to 15 km radius through town structures.

Summary of Estimated Range

  • Over Ocean / Flat Coastline: 20–35 km (Excellent clarity to marine traffic or coastal stations with elevated antennas).

  • Urban Mossel Bay: 10–15 km (Robust signal piercing through local neighborhood obstacles).

  • To the North (Mountains): Up to the ridge line (Signal stops abruptly at the mountain peaks; no coverage in valleys behind them).

     

Images: Courtesy Radio Mobile (Click on images for larger view.)

 Above image:  Mossel Bay wide coverage area

 
 Above image:  Mossel Bay close-up image 1

Above image:  Mossel Bay close-up image 2

Above image: Repeater coverage Albertinia Town.  Bad coverage!!

Above image: Repeater coverage George Area.  Good coverage!!

Above image: Repeater coverage Mossel Bay and Hartenbos Areas.  Good coverage!!

Above image: Repeater coverage West of Mossel Bay / Gouritz River Areas.  Spotted coverage!!


 Above image:  Repeater Coverage - Still Bay, Heidelberg, Riversdale, Albertinia and Herbertsdale.  Bad coverage!!

Friday, July 10, 2026

The decline in Amateur Radio during winter is neutralized by creating activity!!


Who said there is a decline in Amateur Radio during the winter months?  I said so.  Look HERE.

My OM had a saying that if a door is closed into your face, you must always find another door to open and continue with what you are doing and enjoying.  This means do not give up and you will be able to continue also in amateur radio.  So true and this saying I have been following throughout the years.  It allowed me to bounce back in life sometimes even with better results than before.

Well amateur radio activity is up here in the Mossel Bay area as well as parts of South Africa.   Let's look at some of the activity by means of illustrated images:  


Image above:  Connected nodes to the ZS1I HUB in Mossel Bay  (Click on image for larger view.)

Image Above:  Bubble Chart of stations connected to the HUB yesterday afternoon.  (Click on image for larger view.

1.  ZS1I HUB Network Activity:  I will let the images speak for themself.  The HUB is alive and active on a daily basis with stations frequently heard also via all the cross-links and connected nodes and repeaters.  A few overseas stations were also heard on the ZS1I HUB Network.  I do not take any credit for this as the network consists of many participating entities.  Great to hear all the activity taking place.

 Image: Some "useless" information? (Click on image for larger view.)

Image:  Winter playing a role in the decline? (Click on image for larger view.)

2.  ZS1I  Amateur Radio Projects / Activities Blog:  This blog is was created in April 2026 and is already being visited by many viewers on a daily basis.  Hopefully the blog is not only my place were I keep some back-up information but also a medium where young and old can learn something.  I am not a person chasing records or wanting any attention in amateur radio.  I am to old for that nonsense.  The Blog for me is like a amateur radio "diary".  Many article might also be bored and not of interest to others.  None the less thank you to all the visitors for visiting the ZS1I Blog.   I hope to keep up rolling articles out that might be of interest to the general amateur radio community. 


Image:  Brandmeister Hoseline  (Click in image for larger view.) 

3.  DMR Activity still on the increase World Wide!  - Need I say anything about the increase in the use of DMR World Wide and in South Africa?   This is great news for amateur radio operators and the future of digital radio modes.  With the cross-linking of analogue systems to digital systems nobody is left out in the cold even if you only have a analogue HT radio.  At times the ZS1I HUB Network is linked to various DMR Talk Groups which resulted in an increase in activity.  The audio is good and the linked systems work great.  Yesterday operators were heard from Germany, Australia, UK, USA, Japan on Hoseline which was cross linked to the ZS1I DMR Bridge and DMR Repeater in Mossel Bay.  And no it was all country talk groups and not the World Wide Talk Group (91).  Great conversations and activity on DMR.  I do have a few ideas and changes that I would like to make to even better the current cross linked system.   Stay tuned!!

 
 
Image: 40 m WSPR Map South Africa (Click in image for larger view.) 

Image:  Stations that spotted the ZS1I 40m WSPR Beacon recently,  thanks to all.  (Click on image for larger view.)

4.  40m WSPR Activity:  WSPR is a great amateur radio propagation tool.  I am amazed on how propagation changes on the 40m band from time to time.  At one stage only a few stations received the 40m ZS1I WSPR Beacon.  Then all of a sudden there was a increase in spotted stations.  I must admit that I have lots to learn about WSPR.  Sure this will come with time.  In the mean time many thanks to all who regularly spot the Mossel Bay WSPR Beacon.  More interesting developments to come relating to WSPR Beacons in the future. 

5.  ZA-Net Network Activity:  For the past few days I have connected the HUB to the ZA-Net Network up in Gauteng.  At times there were activity even from abroad.  The audio quality was good and the network is working great.  Herewith more information about the network:

ZA-Net Network Web-Site:  Click HERE

Tuesday, July 7, 2026

Important change to the ZS1I AllStar HUB in the Mossel Bay Area


In a previous post available HERE I outlay certain changes that were made to the ZS1I HUB Network. 

Once again the need arise to make further changes to the network for the effective working of not only the Mossel Bay Network but also all the other networks that are connected to the ZS1I HUB Network.  Unfortunately this will effect some of our regular users of the  ZS1I HUB Network.  I apologize for any inconvenience but circumstances sometimes force one to make changes in order to better the network or to prevent forthcoming issues and current bad - undesirable practices that will cause unhappiness and worst of all transgressing regulatory statutes and the Amateur Radio Code of Conduct.

Let's get straight to the change:

The Administrator of the ZS1I HUB Network will in future only connect to nodes, repeaters, reflectors etc. if there is no operational or technical issues relating to the connected systems and if there is an interest to do so.  No connections will be made to nodes that demonstrate bad practices and operating procedures by radio amateurs and will those systems be disconnected without any warning or notification.  Once again I do not play policeman or guardian as I explained the reason on many occasions in the past on the old and new Blog.  Now the not connecting will have an effect on all the stations/nodes that regularly connect to the ZS1I HUB Network.  Unfortunately I have to draw the line somewhere as I cannot continue with the issues experienced in the last few weeks / months.

I am not going to mention which nodes/repeaters will be connected and those not connected as your VOIP application dashboard will provide you with that information.  Does this mean that when my favorite node / network is not connected that they transgressed in some way or the other.  NO not at all.  There might be many reasons and I will not speculate on this.  Furthermore the administrator of the ZS1I HUB Network can only monitor so many nodes / repeaters and networks.

Does this now mean that I will be left in the cold?  Not at all.  I am currently busy with many new features for the ZS1I HUB Network as already mentioned briefly in previous articles but there are many more in the pipeline.  One new and popular feature is the cross linking of the weekly DMR-ZA Net to various modes, nodes and repeaters.  More information on this available HERE.

"I cannot access my favorite Net / Bulletin anymore after you stopped connecting to certain nodes / stations!  What now?"   Do not despair.  Your Net Controller is welcome to connect to the ZS1I HUB Network if he so wish permitting there is no other traffic on the network at the time.  Alternatively you can connect directly to the club's / group's node of the Net you want to listen or talk to.  You connect to the specific node of the club / group via AllStar / Echolink / DMR etc., bypassing the ZS1I HUB Network Node.  That way you will not be left in the cold.  

All radio amateur are welcome to use the ZS1I HUB Network as long as they adhere to a few general "rules".  This is the standard practice in all large networks as to ensure orderly operations.   For those not familiar with the "rules - guidelines" a copy is available HERE.  I am sure you will agree that these few lines are really not there to "play policeman" but rather a guideline to good practical operating procedures when using any amateur radio network.

The above change will be implemented with immediate effect.

If you have any questions or suggestions you can contact me HERE


#3 - Amateur Radio News and Announcements (7 July 2026)


In this issue of Amateur Radio News and Announcements:

1.  Tune into the DMR-ZA Net this evening at 19h30 SAST

Herewith a list of different equipment / apps and images that cross transmit / receive the DMR-ZA Net on a Tuesday evening. (Click on images for larger view.)

1.  ZS1I 49355 AllStar Hub Network which incorporates Echolink. (ZS1I-R)

2.  DMR / DVSwitch /AllStar Bridge (TG 65522)

3.  ZS1I MMDVM Digital Repeater (TG 65522)

4.  145.550 Mhz Analogue Simplex RF Link Mossel Bay area.

5.  DroidStar / VoxDMR Applications for DMR  TG655

6.  ASL3 to Mumble Bridge PC (Mumble Client) as well as Mobile Phone (Plumble Client) 

7.  BrandMeister - Hoseline Application (PC or Mobile Phone - Receive only.)

8.  DVSwitch Mobile Application (PC or Mobile Phone)

9.   Many Analog-Repeaters and Links are connected to the ZS1I Hub Network on a daily basis.  Some of these analogue repeaters will be connected to the ZS1I Hub Network on a Tuesday evening and they might also be linked to other repeaters country- and world wide.  So why not link up with your local analogue repeater.  You might just be able to connect to the DMR-ZA Net on a Tuesday evening at 19h30 SAST. 

Finally:  There are an abundance of means illustrated above to connect to the DMR-ZA Net on a Tuesday evening at 19h30 SAST.  The DMR-ZA Net is an open net and all radio amateurs are welcome to join / connect to the net.  Brian ZS5BR is the net controller and I would like to thank him for professionally conducting the net each Tuesday evening.  Highly appreciated!!  

2.  ET still cannot phone home!!

The article is available HERE for those who did not read it.

Transgressions and bad operating practices are still taking place on a daily basis on many of the amateur radio bands and therefor ET cannot phone home!!  Hi Hi!!  Well this is to be expected if nothing is being done to amicably solve these bad practices.   At least I feel a bit better after writing the article.   I guess the Amateur Radio Code of Conduct is not important to some radio amateurs.  However we are living in a comparatively chaotic world with increasingly less social pressure to act or think a certain way. While that freedom is certainly opening the door for plenty of free thought and fresh perspectives, it can be easy to slip into hypocrisy or self-delusion – imagining we’re one thing when we’re actually another. A code, a set of concrete standards which we can objectively understand and vocalize, not only guides us but convicts us. In a world where there’s often no one but ourselves to keep us accountable, the amateur radio code of conduct serve to keep us on track, or at the very least get us to rethink our most fundamental values.3.


3.   ZS Link Network Group yearly get together.

On 18 July 2026, it is once again time for the yearly get together of the ZS Link Network Group at Blandsdrift, Mossel Bay of Jasper ZS1WT and Natasha (LV) with their two young daughters, Larissa and Linelle.

For more information about the gathering listen on the 145.625 Mhz Aasvoelkop Repeater or visit the 625 WhatsApp Group.

On behalf of myself and the family I would like to  render my apology as I will not be able to attend the ZS Link Group gathering on the day.  This is due to another family responsibility that needs my attention.


4.  AI - The New Amateur Radio Elmer?

Yes, AI is increasingly serving as a modern "Elmer" (the traditional amateur radio term for a mentor). While AI will never replace human connection or the hands-on, practical guidance an experienced Elmers offers, it is revolutionizing the learning curve for both newcomers and veteran operators. 

Why AI Makes a Great Elmer

    • 24/7 Availability: You can ask technical questions about antenna theory, RF gain, or operating procedures at any time without waiting for a club meeting. 

    • Personalized Tutoring: AI can break down difficult concepts in multiple ways based on how you learn best, from long-form explanations to specific code snippets. 

    • Study Assistance: Systems can act as digital tutors, tracking where you struggle on practice for the RAE exams and generating targeted questions to improve your understanding. 

Where Human Elmers Still Win

    • Hands-on Help: AI cannot physically help you solder a connector, tune a beam antenna, or show you exactly how to route coax into your shack. 
    • Real-world Experience: Traditional Elmers provide nuanced, practical advice learned over decades on the air—such as how a specific radio behaves in a pile-up or local club politics. 

More detailed information:

Artificial Intelligence functions as a 24/7 technical co-pilot for amateur radio operators by instantly analyzing complex RF data, generating code for digital modes, and explaining dense radio theory. While human Elmers provide essential hands-on mentorship, AI accelerates self-directed learning and troubleshooting.

How AI Functions as a Digital Elmer

1. Accelerated Technical Troubleshooting

    • Schematic Analysis: Operators upload photos of circuit boards or wiring diagrams to identify faulty components.
    • Error Decoding: AI translates obscure error messages from software-defined radio (SDR) programs or digital mode software.
    • Component Substitution: The system suggests modern alternatives for obsolete transistors, capacitors, or vacuum tubes in vintage gear.

2. Specialized Software and Coding Support

    • Microcontroller Programming: AI generates and debugs C++ code for Arduino or Raspberry Pi projects like antenna tuners and rotators.
    • CHIRP Programming Logs: It formats large CSV files containing frequencies, offsets, and tones for bulk radio programming.
    • Automated Logging Scripts: Systems write custom scripts to parse ADIF (Amateur Data Interchange Format) files for contest logging.

3. Interactive Exam Preparation and Theory

    • Formula Breakdown: AI explains the mathematical relationships behind Ohm's Law, SWR calculations, and decibel conversions.
    • Targeted Quizzing: The system dynamically changes its questioning style based on your weak areas in RAE learning.
    • Visual Concepts: It describes spatial concepts like antenna radiation patterns, ionospheric skip zones, and polarization.

Key Comparisons: AI vs. Human Elmers

Capability

AI Elmer

Human Elmer

Availability

Instant, 24/7 access

Subject to personal schedules

Patience

Unlimited repetitions

Varies by individual

Local Knowledge

General geographic data

Knows local repeater blind spots

Physical Assistance

Cannot handle hardware

Helps solder and climb towers

Safety Validation

High-level rule reminders

Real-time high-voltage monitoring



Critical Limitations and Safety Risks

    • Hallucinated Specifications: AI occasionally invents pinout diagrams or incorrect rig specifications, risking hardware damage.
    • Lack of Safety Feedback: A chatbot cannot see if you are about to touch a charged high-voltage capacitor or improperly ground an amplifier.
    • Regulatory Nuances: AI may misinterpret local band plans, emergency traffic priorities, or specific national amateur regulations.


5.  Does the future of Amateur Radio lie in the GHZ Bands?

The future of amateur radio does not lie exclusively in the GHz bands, but these frequencies represent the fastest-growing frontier for technical innovation and experimentation within the hobby.

While traditional High Frequency (HF) bands (1.8 to 30 MHz) remain the beloved backbone for long-distance, ionospheric "rag-chewing" and DXing, the Super High Frequency (SHF) and Extremely High Frequency (EHF) bands (1 GHz to 300 GHz) are revitalizing the maker and hacker culture of ham radio. 

The role of the GHz bands in shaping the future of amateur radio is defined by specific opportunities and challenges: 

Why the GHz Bands Represent the Future of Innovation

    • Massive Available Bandwidth: Traditional HF bands are narrow and congested. In contrast, the GHz bands offer vast allocations of spectrum. This massive bandwidth allows hams to experiment with high-speed data pipelines, high-definition Digital Amateur Television (DATV), and complex digital mesh networking. 
    • Emergence of Commercial Gear: Historically, operating above 1 GHz required advanced homebrewing or repurposing military surplus gear. The release of commercial, multi-band SHF transceivers—like the Icom IC-905—has drastically lowered the barrier to entry, bringing plug-and-play microwave operation to everyday hams. 
    • High-Speed Mesh Networks: Amateur Radio Emergency Data Networks (AREDN) utilize commercial-off-the-shelf wireless hardware modified to operate on amateur 2.4 GHz and 5.8 GHz allocations. This allows hams to build independent, high-speed wireless networks for emergency communications, capable of routing video and VoIP data over large geographic areas. 
    • Cutting-Edge Space & EME Communication: Modern amateur satellites and deep-space projects increasingly rely on GHz links. Additionally, Earth-Moon-Earth (EME) or "moonbounce" communications heavily utilize the 10 GHz and 24 GHz bands, where smaller, highly-directional dish antennas can be used. 
    • Millimeter-Wave (mmWave) Experimentation: At the extreme end (47 GHz, 76 GHz, and 122 GHz), hams are adapting low-power automotive radar ICs and telecom components to break distance records, pushing the physical boundaries of atmospheric propagation. 

The Defensive Battle: "Use It or Lose It"

The greatest reason the GHz bands dominate conversations about the future of ham radio is political. Commercial telecommunications, 5G/6G cellular deployment, and satellite mega-constellations are starved for mid-band and millimeter-wave spectrum. 

Amateur radio allocations at 3.4 GHz and 5.8 GHz have already faced regulatory pressures and partial rollbacks by agencies like the FCC to clear room for mobile networks. If the amateur community does not actively populate and experiment in the GHz bands, regulatory bodies will continue to reallocate this incredibly valuable spectrum to commercial interests. 

The Verdict

The future of amateur radio is fracturing into a vibrant dual ecosystem:

    1. The Traditionalists: Will stay on HF, VHF, and UHF for long-range voice, CW (Morse code), and global weak-signal digital modes like FT8. 
    2. The Technologists: Will push into the GHz bands to merge radio frequency (RF) technology with AI, high-speed computing, and advanced networking. 

The GHz bands may not replace HF, but they are absolutely critical to keeping amateur radio relevant, cutting-edge, and legally protected for decades to come. 

6.  Is AllStarLink in Financial Trouble?

 

 

Donate Here https://www.allstarlink.org/about/donate.php

AllStarlink Inc. is a 501(c)(3) non-profit organization. We are funded by the generosity of our community. While donations are not required, we encourage users to donate $1 per month per node (Billed annually) to keep our servers running and bring new features to the community.

Sunday, July 5, 2026

Change: Broadcast of Bulletins, Nets, Live Link Connections on the ZS1I AllStar HUB Network which will include National and International Broadcasts


Important:  HERE is the current schedule for Bulletins, Nets and Link Connections.  This schedule will soon change as described below.

Many might not know but I am not a monotonous type of person.  I hate when certain repetitive or stale amateur radio activities, nets, chats etc. takes place year in and year out on the same old trend.  To put it plainly - It is mind-numbing !!  Therefor I enjoy making changes on a regular interval to not lose interest or have to listen to useless information over and over.

I had been thinking and that can be rather dangerous.  Well I came up with a new method of broadcasting amateur radio news content.  I am busy setting up a new server that will be used for broadcasting amateur radio news on demand or at a certain time.  I am still working on some detail to achieve a great outcome using AllStarLink, Echolink and DMR.  This setup will run parallel to the current ZS1I Hub Network which will only be used for Nets and QSO's.   Listeners will be able to connect to the News Server and listen to a wide variety of content which will also include podcasts.  Once I have the server operational a final implementation date will be set.

The change will result in the fact that the Sunday morning bulletin schedule will change dramatically.  I envisage that only the two SARL Bulletins will be transmitted at 08h15 and 08h30 SAST on the ZS1I Hub Network.  NO other bulletin or news broadcasts will be transmitted on the ZS1I Hub Network unless prior approval is granted for such broadcasts.

The idea I have is for operators to connect to the dedicated news server either with AllStar, Echolink or DMR to listen to the provided content.  I will provide and list (index) of content that you can listen to and on what day and time.  A nice feature would be a on demand automated digital stream that will stream content on request, maybe something for the future but for the time being, I will use the scheduled method. 

Why not broadcast Amateur Radio News Bulletins on the ZS1I Hub Network anymore?  It is quite easy to explain.

1.   The rapid system expansion of the ZS1I Hub Network resulted in a heavy workload on the equipment of the ZS1I Hub Network  and the administrators of other networks in South Africa.  The SC Network is currently one of the largest networks in South Africa and carries heavy traffic at times.  Control, supervision and maintenance of the network repeaters, nodes, bridges etc. at all times is of the utmost importance to ensure the smooth functioning of the network.  The network consists of many other local and worldwide stations which is linked to the ZS1I Hub Network.  Administrators have to take the rapid expansion, size and workload on all the system into consideration.

2.  The ZS1I Hub Network is a private operated network and is not affiliated to any club, group or organization. The ZS1I Hub Network owner maintain good relations with all clubs, organizations and fellow radio amateurs,  world wide.   The ZS1I Hub owner therefor has no obligation to any club, group or organization when it comes to the broadcast of local amateur radio news bulletins.  

3.  Many national and international amateur radio news bulletins are nowadays automated.  This means that the ZS1I Hub Network System (computer) automatically downloads the audio file from a web-site, cut it up into time slots and then automatically plays it on the network at given time. This is surely the way to go and does the ZS1I Hub Network make use of this helpful AllStar function.  No compiling, editing and live reading of a bulletin on the air.  The  automation of national and international is the preferred method to transmit amateur radio news bulletins as it works great and does not result in a heavy workload on especially RF systems, equipment on the network and administrators.

4.  Many large VOIP and RF Radio Networks has taken the decision not to broadcast any amateur radio news bulletins on their networks.  There are many reasons for this decision.  Some of these networks literally have 100's of systems including RF Repeaters connected together and it makes sense to not broadcast any club bulletins on such networks as a local club bulletin is meant for that specific club members and not for world wide broadcasting.  The ZS1I Hub  Network has therefor also taken the decision not to broadcast local club bulletins over the large network.

5.  Restructuring of the network.  Yes the dreaded word called restructuring, many hate to hear.  Unfortunately we do not live in the stone age and we as radio amateurs need to stay informed of the latest technology and experimenting.  Future changes to the ZS1I Hub Network will be made and some will love it others will hate it.  Amateur Radio means to regularly engage in the activity, developing skills, experiment, learning new things, and finding enjoyment in the process.  Sometimes we need to restructure the network, if not we will stagnate and not move forward with the times.  

The above surely explain the reasons why I will discontinue the broadcasting of local amateur radio news bulletins on the ZS1I Hub Network and create a free standing Amateur Radio News Server as explained above.

Finally:  As indicated the implementation date and how to use the server will be announced in a future posting when the all New  ZS1I Amateur Radio News Server will be operational.  Until then the current method will be still available. Test transmissions might be heard from time to time on the ZS1I Hub Network.

Let's build the Modified "Squeakie" RF Field Strength Meter - Peter Parker VK3YE (Part 3)

I was not satisfied with the functioning and build of the veroboard "Squeakie" Field Strength Meter described in Part 2.  I decide...