At a glance
Two little radios sit on the bench. One speaks LoRa at 915 megahertz, a slow long range signal with no Wi-Fi anywhere in it. The other speaks ordinary 2.4 gigahertz Wi-Fi with no long range radio at all. Different frequencies, different modulation, different silicon. By every rule of how mesh radios normally work, they cannot exchange a single byte. And then they do. Data Slayer opens the video on exactly that impossible handshake, and spends the next twenty three minutes explaining the one idea that makes it possible: the internet is not cables or towers, it is just routing, and once you accept that, you can rebuild it out of whatever radios you happen to own.
The tool that pulls it off is Reticulum, a cryptography first networking stack that some people call "the hacker network." It is not a radio protocol like Meshtastic. It is a full network layer that treats every physical medium, a 5 bit per second Morse key, a LoRa link, Wi-Fi, Wi-Fi HaLow, Ethernet, serial cable, or fiber, as an interchangeable interface. The video is a build log and an escalating set of live demos: a hand soldered RNode, then two radios bridged across mismatched hardware, then Reticulum running over a long range HaLow IP mesh on a pair of Raspberry Pi "Haven" nodes, and finally the Department of Defense mapping app ATAK routing its tactical traffic across that homemade sovereign network. This page rebuilds the whole thing in order, with every board, frequency, number, and gotcha he put on screen.
The cold open: two radios that should not understand each other
The hook is a magic trick with the reveal withheld. One device runs a long range 915 megahertz radio and no Wi-Fi. The other runs Wi-Fi and no long range radio. They share no modulation technique, no radio hardware, and not even the same frequency band, so they "definitely shouldn't understand each other." Then a message crosses between them anyway. Data Slayer freezes on the contradiction and states the thesis that resolves it: what we call the internet "isn't actually cables or towers, it's just routing." Accept that one sentence and, in his words, "some very strange things become possible." He promises that by the end he will show the strangest rig he has ever built, one he is "still shocked actually worked," but first he has to explain the idea underneath.
He has spent years on this beat: covering decentralized radio tech, building nodes, breaking things, testing systems most people never see. Across the comments, the forums, and his DMs, one name kept surfacing, a project he had "mostly ignored," Reticulum. People call it the hacker network, he clarifies, not because it is illegal but because it embodies a different philosophy of communication: open, autonomous, and sovereign, needing no permission and no centralized infrastructure. Rather than keep talking about it, he decided to build one and find out whether the philosophy survives contact with the real world.
The thesis: why we need a parallel network at all
The problem statement is domestic and a little absurd. Our devices are capable, diverse, and always changing, yet the moment they try to talk, the data has to flow through remote infrastructure owned by other people. His example: he wants to message Amelia, who is "literally downstairs in the same house." The packet does not hop the few feet between the two phones. It leaves the home network, travels out to remote infrastructure run by companies he does not control, possibly bounces across multiple data centers, sometimes across state lines, sometimes across national borders, passes through a chain of intermediaries, and only then loops all the way back into the house to land on her phone. Two devices a few feet apart, one absurd round trip. "To me, that just feels wrong."
He gives the detour a name: the "communication cartels." These are the centralized platforms and infrastructure that sit between us and decide how, when, and sometimes whether we can talk. They "control our action potential in the digital world," and they can cut it off two ways. Intentionally, as in real world crises where communication channels suddenly vanish. Or accidentally, "like the Verizon outage last month that left millions without service." A network you rent can be switched off. A network you own cannot.
Meeting Reticulum, and the doubt
He is careful not to arrive as a believer. "When I first looked at Reticulum, I wasn't sold." The ideas are beautiful, but he has "seen a lot of beautiful ideas die in a GitHub repo." So he went deep: read the docs, watched creator Mark Qvist's "Unstoppable Networks" talk from the Chaos Communication Congress, and studied real deployments, naming community networks like Fry Funk, Meshen NYC, Gyet, and various Meshtastic communities. The deeper he went, the more one plain question nagged at him: does anyone actually use this, or is it one more gorgeous idea nobody runs? He stopped wondering and decided to build the thing himself, to see whether he could stand up his own parallel network.
Building the RNode from scratch
The first build is a full RNode from parts. Mark posted a broad strokes guide on his blog, unsigned.io, and Data Slayer follows it with a LILYGO T-Beam LoRa board, an Adafruit NeoPixel, a small OLED display, and a "very serious looking" military inspired antenna. The enclosure is 3D printed and everything runs on open source software. He specs this unit with a LoRa radio on purpose so he can carry it into the mountains, and he mostly reuses gear he already had, grabbing only a few small parts from Adafruit. Full transparency, he says: he "hit a few walls," so he wrote his own complete builder guide to capture the parts that are not obvious.
Reticulum is not Meshtastic
Anyone who has touched Meshtastic or MeshCore will see the same LoRa hardware and similar form factor and ask what the difference is. He answers it squarely. Meshtastic is an incredible project, and it "treats the radio as the network." Every device talks to nearby devices, messages hop node to node, and everything revolves around a single LoRa transport layer. For lightweight messaging and telemetry, it is hard to beat.
Reticulum is doing something fundamentally different because it is not a radio protocol at all, it is a full networking stack. Radios, Wi-Fi, Ethernet, and serial cables are all just interchangeable interfaces to it, because "the network lives above the hardware." That is why a single Reticulum network can span "an incredibly slow 5 bit per second Morse code key on one end and a fiber optic line on the other." The spec has no physical upper bound on bandwidth, and the protocol is smart about the spread: it discovers routes, measures link quality, and knows to send large transfers over the fast links rather than the slow ones. Crucially, a packet does not replicate endlessly across every node. It follows an established route, so as hop counts climb the overhead "scales linearly and not exponentially." That is the core difference in one line: Meshtastic builds a mesh of radios locked to one frequency and configuration, while Reticulum builds a network that can use radios but is never limited by them.
| Question | Meshtastic | Reticulum |
|---|---|---|
| What is it | A LoRa radio mesh | A full networking stack, above the radio |
| Transport | One LoRa layer, one frequency and config | Any interface: LoRa, Wi-Fi, HaLow, Ethernet, serial, fiber |
| Talk across different hardware | No, everyone shares the radio | Yes, 5 bit per second Morse key to fiber on one net |
| Addressing | Node ids on the mesh | Cryptographic identity, no usernames or IP |
| Encryption | Layered on the messaging | The foundation, on by default, origin obscured |
| Scaling with hops | Flood and repeat across nodes | Follows a route, overhead grows linearly |
| Best at | Lightweight messaging and telemetry | Bridging dissimilar radios into one sovereign net |
Identity and encryption as the floor, not the frosting
The second thing that sets Reticulum apart is identity. There are no usernames, no phone numbers, and no IP addresses. Every device generates its own cryptographic identity, and your address on the network is derived from that identity. Encryption is not bolted on after the fact, it is the foundation: all traffic is encrypted by default and the origin of a message is obscured by design. He reaches for a familiar analogy, saying to think of it "less like traditional networking and more like how web3 treats cryptography as a base layer that everything else is built on." And you do not even need an RNode to try it. You can run Reticulum over Wi-Fi with an app like Mesh Chat, or bridge several interface types at once.
Bringing it to life: flashing and choosing a client
The RNode is built, now it has to boot. For a stock supported board you can flash the firmware straight from a web flasher, much like Meshtastic. Because his is a custom build, he had to modify a few things: he opens his IDE, tweaks the code, compiles a build, and flashes the device by hand. One node alone is interesting, but proving the thesis needs a pair, so he also flashes a bare Heltec LoRa 32 V3, noting with a grin that the very same board "was running Meshtastic about an hour ago." Same hardware, completely different network. On the client side he lists the options, Sideband and Nomad Net, but the one he had the most luck with is the desktop app Mesh Chat, so that is what the demos use.
The demo ladder: four steps, each stranger than the last
He does not jump to the finale. He climbs to it, and each rung removes a piece of the traditional internet.
- Demo 1 Two devices, both on Wi-Fi. Reticulum discovers the path automatically and the messages go through. Nothing exotic yet, but watch the network visualizer: you can see the route form in real time.
- Demo 2 The same message, now traveling over 915 megahertz LoRa. No Wi-Fi, no internet, no infrastructure at all. Just two radios and open spectrum.
- Demo 3 The one he teased at the top. One device on LoRa, one device on Wi-Fi. His phone runs Sideband over Wi-Fi with no LoRa radio in it. The other node is a T-Beam RNode using only LoRa. They talk anyway, because a third node carries both a Wi-Fi and a LoRa interface and bridges them automatically.
- Demo 4 Reticulum on a pair of long range Haven nodes over Wi-Fi HaLow, then the ATAK tactical mapping app routed on top of it. The internet, gone entirely, the app none the wiser.
On Demo 3 he narrates the rig from his own mouth. On the phone, Sideband "spins up its own local instance of Reticulum" and connects over the Wi-Fi interface only, with no LoRa radio present. The other node is a standard RNode on a T-Beam using LoRa as its sole Reticulum interface, and the client watching the conversation is Mesh Chat on his computer. He types "let's go," the NeoPixel light flicks on over on the RNode, and the message appears on the other client. "It's just cool that you can basically bridge dissimilar radios." The magic under the hood, he explains, is that third node holding both a Wi-Fi and a LoRa interface, which is what lets a LoRa only device reach a Wi-Fi only 2.4 gigahertz device. "Completely different radios, completely different frequencies, and Reticulum bridges them like it's nothing. That's what a hardware agnostic network stack looks like in practice."
He keeps the honesty valve open. The software "didn't work perfectly out of the box." He had to tweak configs, resolder one connection, and debug quite a bit, and he says he documented all those hard won insights, "the ones that aren't obvious until you've already broken something," in the builder guide.
Going bigger: Reticulum over a long range HaLow IP mesh
LoRa was only ever one pathway, which got him thinking. What if the interface were not LoRa at all, but something faster, longer range, and already sitting on his desk? So he did "something slightly ridiculous." He installed Reticulum on his Haven nodes and used their Wi-Fi HaLow card as the transport layer. Suddenly he was not merely sending messages between radios. He had a long range IP mesh with a sovereign routing layer on top, running completely independent of traditional infrastructure. "Just two nodes, open spectrum, and a whole lot of math."
The hardware: two Haven nodes, essentially Raspberry Pis running OpenMANET, which he describes as "essentially OpenWRT," acting as router boards. Inside each is a Morse Micro Wi-Fi HaLow card, 802.11ah, and it is also running "fancy stuff" like 802.11s mesh. He labels them the blue node and the green node, and the unusual part is that both run the Linux build of Reticulum. In Reticulum you define interfaces, and although each Pi has traditional Wi-Fi, Bluetooth, and other radios on board, the interface he binds is the Morse Micro HaLow card, "configured currently at 916 megahertz on channel 28." He checks the channel width live in quick config: 8 megahertz on channel 28, though he notes he could just as easily drop to 4, 2, or 1 megahertz to optimize for range instead of throughput. The point stands: the interface is Wi-Fi HaLow, and "Reticulum doesn't really care what the radio is."
He then shows a Python stats script he says he will drop in the repo, refreshing in real time. The nodes "address each other over their unique hashes," and the readout carries live metrics: the channel frequency, and a signal reading of about minus 1 dBm, essentially no loss, because the antennas are right next to each other, with the other side reporting around minus 6. To prove it is a genuine live feed and not a fake dashboard, he yanks an antenna off and the signal degrades to roughly minus 34, still passing conductor to conductor but far weaker. The metrics move as he changes the physical setup, and packets are flowing from the green node to the blue node, with the blue node not replying, which is fine. This particular link runs over a plain UDP interface.
WPA3 versus being cryptographically complete
This is where he sharpens the security argument, and it is subtler than "it is encrypted." With Wi-Fi HaLow and these OpenMANET setups he is already using WPA3 SAE to encrypt the link over the air. But that protection covers the hop only. "Once it hits the device, that encryption terminates and you get plain text." Reticulum, by contrast, is "cryptographically complete." You have to have a hash, each entity signs with the others, and everything is more private end to end. You also cannot tell the origin of a given node, because the source is not carried in the header the way it is in TCP/IP.
What excites him more than the privacy, though, is the bridging. He points out that when Mark first designed Reticulum, HaLow was probably not popular, and "I'm not even sure if he had HaLow on his radar," yet it works fine with HaLow because the stack is agnostic to the radio. Better still, you can add a second interface to the same Reticulum node running over Wi-Fi 2.4 or 5 gigahertz, and then a 5 gigahertz Wi-Fi device can reach a HaLow device as long as a bridge exists somewhere, and all that bridging happens automatically. And because Reticulum follows routes instead of flooding and repeating packets everywhere, it scales up linearly rather than exponentially. His summary of the tailwinds: it is designed to scale, to be autonomous, to be interoperable, to be secure, and it is all open source. If it keeps working the way he has watched it work, Reticulum "is going to be part of standard operating procedure for Haven," and the troubleshot scripts are headed to GitHub.
The final rig: ATAK riding on Reticulum
Then he tried the thing he genuinely did not expect to work: he ran ATAK over it. For the uninitiated, ATAK is the Android Team Awareness Kit, a mapping tool built for search and rescue and small units in off grid situations, with a lot of networking capability under the hood. It is fully open source and was originally released by, he believes, the Department of Defense, and it is used in the military, domestically, and by various government agencies.
The setup mirrors the HaLow mesh. Two Haven nodes running OpenMANET on Raspberry Pi hardware, bridged only by a Morse Micro Wi-Fi HaLow 802.11ah chip over 915 megahertz. ATAK runs on two Android end user devices. One Android is joined to one node's 2.4 gigahertz Wi-Fi, the other Android to the green node's 2.4 or 5 gigahertz Wi-Fi. The two apps can see each other, on the chat and on the map, but the data underneath is actually flowing over Reticulum, and Reticulum is using the HaLow card as its interface.
On each computer he runs a logging script, tailing the OpenWRT Luci interface of its node, and the logs show frequency, RSSI, and the occasional Cursor on Target message that ATAK emits every few seconds. He types "can you hear me now?" and the message appears on both ends. In the log it is tagged as chat rather than cursor on target, and, tellingly, it was "compressed and chunked into two different fragments and then sent," visible in both SSH logs. The mechanism: ATAK's cursor on target and situational awareness data is sent over multicast on a fixed IP and port out of the box, and a "Reticulum bridge Python script kind of hijacks that and then sends it over Reticulum." You run the script on both devices, start it on one where it generates a hash, then start it on the other with that hash as an argument.
He steps back to say why the fragmentation matters. ATAK normally expects Wi-Fi or cellular, a traditional network stack. Underneath, Reticulum is routing cursor on target traffic across HaLow radios, compressing it, fragmenting it to fit within Reticulum's 500 byte MTU, and reassembling it on the other side, encrypted end to end. In his words it is "a fully open source, decentralized, cryptographically complete tactical networking stack, which I'm sure is going to earn me another email from the Department of Defense." He could hand one node to a search and rescue team and another to a second team, on a camp or a farm, and they would have communication that is private, secure, and powerful on both the software and hardware fronts. If Reticulum keeps delivering with no major hurdles, "it's definitely going to be part of the parallel tech stack." He credits the community directly, the people who show up in the Discord with something they built, for pushing toward "a parallel network we don't rent, we actually own," and promises the Haven plus ATAK bridge scripts will be open sourced on GitHub.
One more thing: the titanium face plate
He closes on a flourish. For the RNode he built, he ordered a few different faces in different composites from 3D printing services JLC3DP and Craftcloud, and admits he "may have gone a little bit overboard." The showpiece is the RNode face plate printed in TC4 titanium, aerospace grade, "stronger than steel at half the weight." Completely unnecessary, which is exactly why he loves it: "if building infrastructure doesn't depend on anyone's permission, it might as well look like it belongs on a spacecraft." He signs off pointing to more in the off grid IP mesh radio space.
Key takeaways
- The internet is routing, not wires. Once you treat "the internet" as a routing problem rather than specific cables or towers, you can rebuild connectivity out of whatever radios you own.
- Reticulum is a network layer, not a radio protocol. That single distinction from Meshtastic is the whole video. The network lives above the hardware, so LoRa, Wi-Fi, HaLow, Ethernet, serial, and fiber are all just interfaces.
- Mismatched radios can talk if a bridge exists. A LoRa only device reaches a Wi-Fi only device through any node that holds both interfaces, and Reticulum handles the bridging automatically.
- Encryption and identity are the floor. No usernames, phone numbers, or IP addresses. Every device has a cryptographic identity, traffic is encrypted by default, and origins are obscured, which he contrasts with WPA3 that protects only the single hop.
- It scales linearly, not exponentially, because packets follow discovered routes instead of flooding every node.
- It runs real apps. A Department of Defense mapping tool, ATAK, ran unmodified on top by hijacking its multicast traffic and fragmenting it to a 500 byte MTU.
- This is a build log, not a lecture. Custom RNode, tweaked firmware, resoldered joints, live signal proofs, and honest "it did not work out of the box" moments throughout.
Where it stands
For the honest footnote near the end: Reticulum is a real, actively maintained, open source project by Mark Qvist, and everything demonstrated here is a genuine capability of the stack, not a mockup. The bridging of dissimilar radios, the cryptographic identity model, and route based scaling are documented properties, not marketing. Two honest calibrations. First, the demos are bench proofs with antennas inches apart and one directional UDP traffic, so they show that the routing works, not that a kilometer scale deployment performs a given way. Second, "communication cartels," "sovereign," and "a network we own" are Data Slayer's framing, and he has skin in the game: Data Slayer is the media arm of Parallel, which sells the Haven nodes and the build guides he links, so the enthusiasm is real and also commercial. None of that undercuts the core result, which is genuinely striking: a hand built radio net carried an unmodified defense grade app end to end with no traditional infrastructure in the path. The "email from the Department of Defense" line is a joke, but the technical claim under it is not.
Chapters
00:00 The impossible handshake, two radios that should not talk 01:05 Reticulum, the network people call the hacker net 01:31 Why we need this, the message to Amelia downstairs 02:28 The communication cartels and the Verizon outage 03:35 Building an RNode from scratch 04:30 Reticulum versus Meshtastic and MeshCore 05:53 Identity and encryption as the foundation 06:40 Flashing firmware and choosing a client 07:21 Demo 1, two nodes over Wi-Fi 07:38 Demo 2, the same message over 915 MHz LoRa 08:38 Demo 3, bridging LoRa and Wi-Fi, the teased rig 10:18 Reticulum on Haven nodes over Wi-Fi HaLow 11:01 Reading the live link, blue node and green node 13:27 WPA3 versus cryptographic completeness 15:40 Running ATAK over Reticulum 16:17 The final rig, ATAK across two Haven nodes 21:48 Under the hood, fragmenting to a 500 byte MTU 22:35 A parallel network we own 23:00 One more thing, the titanium face plate
Notable quotes
- "Unless what we think of as the internet isn't actually cables or towers. It's just routing. And once you realize that, some very strange things become possible." (00:26)
- "Some people have started calling it the hacker network. Not because it's illegal, but because it represents a completely different philosophy about how communication should work." (01:07)
- "Two devices just a few feet apart. And to me, that just feels wrong." (01:52)
- "Most of our communication today is controlled by the communication cartels, which are centralized platforms and infrastructure that sit between us and decide how, when, and sometimes if we can talk." (02:20)
- "The ideas are beautiful, but I've seen a lot of beautiful ideas die in a GitHub repo." (02:56)
- "It's not a radio protocol. It's a full networking stack." (04:50)
- "A single Reticulum network can span an incredibly slow 5 bit per second Morse code key on one end and a fiber optic line on the other." (05:10)
- "Completely different radios, completely different frequencies, and Reticulum bridges them like it's nothing. That's what a hardware agnostic network stack looks like in practice." (09:40)
- "Reticulum doesn't really care what the radio is." (11:44)
- "A fully open source, decentralized, cryptographically complete tactical networking stack, which I'm sure is going to earn me another email from the Department of Defense." (21:55)
- "A parallel network we don't rent, we actually own." (22:33)
- "If building infrastructure doesn't depend on anyone's permission, it might as well look like it belongs on a spacecraft." (23:20)
Resources mentioned
- Reticulum and the Reticulum source on GitHub, the cryptography first networking stack at the center of the video.
- Mark Qvist and unsigned.io, Reticulum's creator and the blog that hosts the original RNode guide.
- Mark's "Unstoppable Networks" talk archive at the Chaos Communication Congress.
- RNode firmware, the open radio node firmware flashed onto the boards.
- Meshtastic and MeshCore, the LoRa mesh projects he contrasts against Reticulum.
- Sideband, Nomad Net, and Reticulum Mesh Chat, the Reticulum client apps.
- LILYGO T-Beam and Heltec LoRa 32 V3, the LoRa boards used for the RNodes.
- Adafruit NeoPixel, the addressable LED on the build.
- Morse Micro and Wi-Fi HaLow, 802.11ah, the sub gigahertz Wi-Fi used for the long range IP mesh.
- 802.11s and BATMAN mesh routing and OpenWRT, the router foundation of the Haven nodes.
- WPA3 SAE, the link layer encryption he compares to Reticulum's end to end model.
- ATAK, the Android Team Awareness Kit, and TAK, plus Cursor on Target, the tactical app and message format bridged over Reticulum.
- JLC3DP and Craftcloud, the 3D printing services for the RNode faces, including the TC4 titanium plate.
- Parallel, Data Slayer's project, with the Haven IP mesh radio guide and the RNode build guide.
- Data Slayer on YouTube and on X.


