Have you ever seen those large dish-shaped antennas mounted on top of towers, buildings, or hills, often pointed at another dish far away on a distant hill? These are microwave communication links, and they are one of the oldest yet still highly relevant technologies used to move data, voice, and video over long distances without laying a single cable. In this article, we will explain microwave communication completely from first principles — what a microwave actually is, how it carries information, how the equipment is built, and how network professionals design, install, and troubleshoot microwave links in the real world.
Microwave communication may sound like something out of science fiction, but the underlying idea is simple: instead of sending electrical signals through a copper wire or light through a glass fiber, we send radio waves through the air, using a very specific and very high frequency range called the microwave band.
What Is a Microwave, Really?
To understand microwave communication, we first need to understand the electromagnetic spectrum. All wireless communication — radio, Wi-Fi, Bluetooth, satellite, cellular, and microwave — uses electromagnetic waves. These waves are classified by their frequency (how many times they oscillate per second, measured in Hertz) and their wavelength (the physical distance between one wave peak and the next).
graph LR
A[Radio Waves - kHz to MHz] --> B[Microwaves - 300 MHz to 300 GHz]
B --> C[Infrared]
C --> D[Visible Light]
D --> E[Ultraviolet, X-rays, Gamma Rays]Microwaves occupy the frequency range from about 300 MHz to 300 GHz. In practical terrestrial (ground-based) communication systems, most microwave links operate somewhere between 1 GHz and 86 GHz, with common bands being 6 GHz, 11 GHz, 18 GHz, 23 GHz, and higher.
Why “Micro” Wave?
The term “microwave” doesn’t mean the waves are tiny in a mysterious sense — it refers to their short wavelength compared to standard radio waves. A typical AM radio wave might have a wavelength of several hundred meters, while a microwave used in communication systems might have a wavelength of just a few centimeters. Shorter wavelengths behave differently than long radio waves — they travel more like a beam of light, in a straight line, and can be focused very precisely using a dish antenna.
How Does Microwave Communication Actually Work?
The Core Concept: Line-of-Sight
Microwave signals at these high frequencies do not bend around the Earth’s curvature or bounce off the atmosphere the way lower-frequency radio waves can. Instead, they travel in a straight line, much like a flashlight beam. This means microwave communication requires line-of-sight (LOS) — the transmitting dish and the receiving dish must be able to “see” each other, with no mountains, buildings, or even significant tree growth blocking the path.
This is why you often see microwave towers built on hilltops, tall buildings, or dedicated towers — height helps the signal clear obstacles and reach farther before the Earth’s curvature gets in the way.
sequenceDiagram
participant A as Site A Dish Antenna
participant B as Site B Dish Antenna
A->>B: Focused microwave beam (line-of-sight)
B->>A: Return microwave beam (line-of-sight)
Note over A,B: Both directions require clear, unobstructed pathStep-by-Step: How a Signal Travels
- Data enters the system. This could be a phone call, an internet data stream, or a video feed. In modern systems, this data is almost always already digital (a series of 1s and 0s).
- Modulation. The digital data is converted into a form that can “ride” on a radio wave. This process is called modulation. Common modulation schemes for microwave links include QAM (Quadrature Amplitude Modulation), such as 64-QAM or 256-QAM, which encode multiple bits into each change of the wave’s amplitude and phase.
- Up-conversion. The modulated signal, which starts at a lower “intermediate frequency,” gets mixed with a very high-frequency signal to shift it up into the microwave range (for example, 18 GHz).
- Amplification. The signal is boosted in power so it can travel the necessary distance.
- Transmission through the antenna. A parabolic dish antenna focuses this microwave energy into a narrow, concentrated beam, similar to how a flashlight’s reflector focuses light into a beam instead of scattering it in all directions.
- Free space propagation. The beam travels through the air (or vacuum, in the case of satellite links) to the receiving dish.
- Reception. The receiving dish captures the incoming microwave energy and feeds it into a receiver.
- Down-conversion and demodulation. The receiver reverses the process — shifting the frequency back down and demodulating it to recover the original digital data.
- Data exits the system, now available to the network equipment on the receiving end (a router, switch, or telephone exchange).
Why Use a Dish Antenna?
A parabolic dish works on a simple geometric principle: any wave arriving parallel to the dish’s central axis gets reflected toward a single focal point (where the actual antenna feed sits). This concentrates weak, spread-out energy into a strong, focused signal. The larger the dish, the more it can focus the beam, which increases both range and resistance to interference — but also makes the dish heavier and more expensive.
Types of Microwave Links
1. Point-to-Point (PTP) Microwave
This is the classic setup: one dish at Site A points directly at one dish at Site B. This is commonly used to connect:
- Two office buildings across a city where laying fiber is too expensive or slow to permit
- A cell tower back to the core mobile network (called “backhaul”)
- Rural areas where fiber isn’t available
2. Point-to-Multipoint (PTMP) Microwave
Here, one central hub antenna communicates with multiple remote sites simultaneously, somewhat similar to how a Wi-Fi access point serves multiple laptops. This is commonly used by wireless internet service providers (WISPs) to deliver broadband to homes in rural areas.
3. Satellite Microwave
Satellites orbiting the Earth use microwave frequencies to communicate with ground stations. Since the satellite is essentially a very tall “tower” (up to 35,786 km away for geostationary satellites), this allows communication across vast distances, even across oceans, without needing repeater towers every few dozen kilometers.
graph TD
A[Ground Station A] -->|Uplink Microwave Signal| S[Geostationary Satellite]
S -->|Downlink Microwave Signal| B[Ground Station B]Real-World Example: Connecting Two Office Buildings
Imagine a company has its headquarters in a downtown office tower and a secondary office 8 kilometers away, with clear line-of-sight between the two rooftops. Instead of paying a telecom provider for an expensive dedicated fiber circuit, the company installs:
- A microwave dish on the roof of Building A, connected to the network switch via Ethernet
- A matching microwave dish on the roof of Building B
- Both dishes are carefully aligned (a process called “antenna alignment” using a signal strength meter) so they point precisely at each other
Once aligned and configured, the microwave link behaves just like a very long Ethernet cable, and the two buildings’ networks can be bridged together.
Cisco-Style Configuration Example (Bridging Two Sites)
While actual microwave radios are configured through their own vendor-specific software (not Cisco IOS), the network switches on either end are configured normally. For example, on Site A’s switch, the port connecting to the microwave radio might be configured as a trunk port if multiple VLANs need to pass across the link:
Switch(config)# interface GigabitEthernet0/1
Switch(config-if)# description Link to Microwave Radio - Site B Connection
Switch(config-if)# switchport mode trunk
Switch(config-if)# switchport trunk allowed vlan 10,20,30
Switch(config-if)# no shutdown
This allows VLAN 10 (data), VLAN 20 (voice), and VLAN 30 (management) to all pass across the microwave link transparently, as if the two buildings were directly wired together.
Linux Example: Monitoring Link Quality
Many microwave radios expose SNMP or a web-based API that reports signal strength and error rates. A Linux-based monitoring script might poll this information regularly:
#!/bin/bash
# Simple script to log microwave radio signal strength via SNMP
RADIO_IP="192.168.100.10"
COMMUNITY="public"
OID="1.3.6.1.4.1.12345.1.2.1.0" # Example OID for RSL (Received Signal Level)
RSL=$(snmpget -v2c -c $COMMUNITY $RADIO_IP $OID)
echo "$(date): Received Signal Level - $RSL" >> /var/log/microwave_link.log
Python Example: Calculating Free Space Path Loss
One of the most important calculations in microwave link design is Free Space Path Loss (FSPL) — how much signal strength is lost simply because the wave spreads out over distance. The formula is:
FSPL (dB) = 20 log10(d) + 20 log10(f) + 92.45
Where d is distance in kilometers and f is frequency in GHz.
import math
def free_space_path_loss(distance_km, frequency_ghz):
fspl = (20 * math.log10(distance_km)) + (20 * math.log10(frequency_ghz)) + 92.45
return round(fspl, 2)
# Example: 8 km link at 18 GHz
distance = 8
frequency = 18
loss = free_space_path_loss(distance, frequency)
print(f"Free Space Path Loss for {distance} km at {frequency} GHz: {loss} dB")
Output:
Free Space Path Loss for 8 km at 18 GHz: 133.63 dB
This number tells engineers how much signal strength will be lost over the air, which helps them decide how powerful the transmitter needs to be, and how large the dish antennas should be, to maintain a reliable link.
Factors That Affect Microwave Link Performance
| Factor | Effect on Link |
|---|---|
| Distance | Longer distance = more signal loss (Free Space Path Loss) |
| Frequency | Higher frequency = more capacity, but shorter range and more rain sensitivity |
| Rain/Weather (Rain Fade) | Higher frequencies (above ~10 GHz) are significantly attenuated by heavy rain |
| Antenna Size | Larger dish = better focus, more gain, longer range |
| Obstructions | Buildings, trees, or terrain in the path can completely block the signal |
| Fresnel Zone Clearance | Even with visual line-of-sight, an elliptical zone around the direct path must be mostly clear of obstructions for optimal signal |
| Atmospheric Conditions | Temperature inversions can cause signal bending or multipath interference |
Understanding “Rain Fade”
At higher microwave frequencies (especially above 10 GHz, and very noticeably above 20 GHz), raindrops are similar in size to the wavelength of the signal, which causes significant absorption and scattering of the signal — this is called rain fade. Network engineers designing high-frequency microwave links in rainy climates must budget extra signal margin to compensate for this, or accept reduced reliability during storms.
Understanding the Fresnel Zone
Even when you can visually see the other dish antenna, the actual radio signal doesn’t travel in an infinitely thin line — it occupies a three-dimensional, elliptical (football-shaped) region around the direct visual path called the Fresnel zone. If more than about 20% of this zone is blocked (by a tree, a building edge, or even terrain), signal quality can degrade significantly, even though a person looking through a telescope would say the path is “clear.”
graph LR
subgraph Fresnel Zone
A((Site A Dish)) -.->|Elliptical Zone| B((Site B Dish))
endAdvantages and Disadvantages of Microwave Communication
Advantages
- Fast deployment: No trenching or cable-laying required; a link can often be installed in days rather than months.
- Cost-effective over difficult terrain: Mountains, rivers, or protected land can make fiber installation extremely expensive; microwave simply “jumps over” these obstacles.
- High bandwidth: Modern microwave radios can deliver multiple gigabits per second over a single link.
- Reliable for backhaul: Widely used by mobile carriers to connect cell towers back to the core network.
Disadvantages
- Requires line-of-sight: Any obstruction can break the link entirely.
- Weather sensitivity: Rain fade can degrade or interrupt higher-frequency links.
- Licensing requirements: Many microwave frequency bands require government licensing to avoid interference with other users.
- Limited distance per hop: Due to the Earth’s curvature and atmospheric effects, a single hop is typically limited to somewhere between a few kilometers and about 50 kilometers, depending on tower height, frequency, and power.
Best Practices for Microwave Link Design and Installation
- Always perform a proper line-of-sight and Fresnel zone survey before committing to a microwave link — don’t rely on satellite imagery alone.
- Choose the right frequency band based on distance and required capacity — lower frequencies (6-11 GHz) travel farther and handle rain better; higher frequencies (23 GHz+) offer more bandwidth over shorter distances.
- Mount antennas on stable structures — towers or rooftops that won’t sway significantly in wind, since even small misalignment can drastically reduce signal strength.
- Use proper grounding and lightning protection, since rooftop and tower-mounted equipment is highly exposed to electrical storms.
- Build in a signal margin for rain fade and other atmospheric effects, especially in tropical or high-rainfall regions.
- Document antenna alignment settings (azimuth and elevation angles) in case the dish needs to be re-aligned after maintenance or storm damage.
- Monitor link performance continuously using SNMP or vendor management tools, watching for gradual signal degradation that might indicate misalignment or equipment aging.
Troubleshooting Microwave Links
Problem 1: Link Is Completely Down
Steps:
- Check for a new physical obstruction (construction crane, new building, tree growth).
- Verify power to both radio units.
- Check for severe weather currently affecting the path.
- Confirm the dish hasn’t been physically knocked out of alignment (common after storms).
Problem 2: Intermittent Link Drops During Rain
Steps:
- Review historical signal level logs during past rain events — this confirms rain fade as the cause.
- Consider whether the frequency band is too high for the local climate.
- Evaluate whether a larger dish antenna could provide additional margin.
Problem 3: Gradually Degrading Signal Over Weeks or Months
Steps:
- Check for slow antenna misalignment due to tower movement, wind fatigue, or ice loading.
- Inspect for new vegetation growth in the path.
- Check connector and waveguide integrity for corrosion or water ingress.
Problem 4: High Error Rate but Link Stays “Up”
Steps:
- Check for interference from another nearby microwave link operating on a similar frequency.
- Verify the correct channel/frequency plan was applied during installation.
- Check received signal level (RSL) against the manufacturer’s specified operating range.
A Brief History of Microwave Communication
Microwave communication is not a new technology — it dates back to the mid-20th century. In the 1940s and 1950s, telephone companies began building long chains of microwave towers across countries to carry long-distance telephone calls and television broadcasts, replacing thousands of miles of copper cable that would otherwise have been needed. AT&T’s famous “TD-2” microwave relay system, built across the United States starting in 1950, is a classic example — a chain of towers roughly 30 miles apart, each one receiving a signal, amplifying it, and re-transmitting it to the next tower down the line, like a long relay race carrying a phone call across an entire continent.
This “chain of towers” idea is important because it explains a key limitation of microwave communication we touched on earlier: since a single hop is limited to a few dozen kilometers by the Earth’s curvature and terrain, longer distances require multiple hops, each with its own tower and repeater equipment.
graph LR
A[City A] --> B[Repeater Tower 1]
B --> C[Repeater Tower 2]
C --> D[Repeater Tower 3]
D --> E[City B]
Even today, in the era of fiber optics and satellites, this same relay principle is used by telecom carriers and private organizations to move data across mountainous or remote regions where burying fiber cable would be prohibitively expensive or physically impossible.
Microwave Communication vs Other Technologies
It’s useful to place microwave communication side by side with the other main ways of moving data over distance, so you can understand when an engineer would actually choose it.
| Technology | Typical Range per Segment | Installation Speed | Weather Sensitivity | Typical Cost |
|---|---|---|---|---|
| Microwave (terrestrial) | A few km to ~50 km per hop | Fast (days to weeks) | Moderate to high (rain fade at higher frequencies) | Low-Medium (no trenching) |
| Fiber Optic Cable | Tens of km per segment (with repeaters) | Slow (weeks to months, requires trenching/permits) | None (immune to weather) | High upfront, low ongoing |
| Satellite | Global | Fast (if using existing satellite constellation) | High (rain fade, especially Ka-band) | High (equipment and service fees) |
| Copper Cable (Leased Line) | Limited by distance/quality | Slow (requires physical installation) | None | Medium-High recurring cost |
This comparison highlights why microwave is often chosen as a “fast to deploy, no digging required” alternative, especially for temporary installations, disaster recovery links, or connecting sites across terrain where fiber simply isn’t practical.
Microwave Backhaul in Cellular Networks
One of the largest modern uses of microwave communication is cellular backhaul — the link between a cell tower and the mobile carrier’s core network. When your phone connects to a nearby cell tower, that tower needs to forward your call or data session back to the carrier’s central network, often located many kilometers away.
In dense urban environments, this backhaul link is frequently fiber. But in rural or hard-to-reach areas — mountains, islands, or areas with difficult permitting for trenching — carriers rely heavily on microwave links to connect these towers, sometimes through several hops before reaching a point where fiber becomes available.
graph TD
A[Remote Cell Tower] -->|Microwave Hop 1| B[Relay Tower]
B -->|Microwave Hop 2| C[Regional Hub with Fiber]
C -->|Fiber Backbone| D[Carrier Core Network]This hybrid approach — microwave for the “last mile” or “middle mile,” fiber for the core — is extremely common in real-world telecom deployments and is a good example of how different transmission technologies are combined based on cost, terrain, and speed of deployment rather than any single technology being universally “best.”
Licensing and Spectrum Considerations
Because microwave frequencies are a shared, finite public resource, most countries require an organization to obtain a license from their telecommunications regulator (such as the FCC in the United States, Ofcom in the UK, or equivalent bodies elsewhere) before operating a point-to-point microwave link on most licensed bands. This licensing process typically involves:
- Frequency coordination: Verifying that the proposed frequency and location won’t interfere with existing licensed links nearby.
- Path analysis submission: Providing technical details of the link (distance, frequency, antenna sizes, tower heights) to the regulator.
- License fees: Paying an application and/or annual fee for the right to use that specific frequency in that specific location.
Some lower-power or shorter-range microwave equipment operates in license-exempt bands (such as portions of the 60 GHz band), which trades regulatory simplicity for generally shorter range and lower interference protection — since anyone else can also use that same unlicensed spectrum.
Conclusion
Microwave communication is a powerful, time-tested technology that allows organizations to move enormous amounts of data across distances without ever touching the ground with a cable. By understanding the fundamentals — line-of-sight requirements, the Fresnel zone, free space path loss, and the effects of weather — network professionals can design links that are both fast and reliable. Even in an age dominated by fiber optics, microwave communication remains essential for connecting remote sites, backhauling cellular networks, and providing rapid, flexible connectivity wherever running a cable simply isn’t practical.
Further Reading and References
- FCC Microwave Licensing Information — https://www.fcc.gov/wireless/bureau-divisions/broadband-division/microwave-services
- ITU-R Recommendations on Fixed Wireless Systems — https://www.itu.int/en/ITU-R/Pages/default.aspx
- Free Space Path Loss Calculator Concepts — https://en.wikipedia.org/wiki/Free-space_path_loss
- Fresnel Zone Explanation — https://en.wikipedia.org/wiki/Fresnel_zone
- Cisco Wireless Backhaul Solutions — https://www.cisco.com/c/en/us/solutions/service-provider/mobile-internet/index.html
- pysnmp Documentation — https://pysnmp.readthedocs.io/
