<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Network on VPNReview — Independent VPN Tests: Speed Benchmarks &amp; Privacy Audits in 2026</title><link>https://vpnreview.nxtniche.com/tags/network/</link><description>Recent content in Network on VPNReview — Independent VPN Tests: Speed Benchmarks &amp; Privacy Audits in 2026</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Mon, 03 Aug 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://vpnreview.nxtniche.com/tags/network/index.xml" rel="self" type="application/rss+xml"/><item><title>LAN Orangutan: Self-Hosted Network Scanner for Homelabs</title><link>https://vpnreview.nxtniche.com/posts/lan-orangutan-quick-review-2026/</link><pubDate>Mon, 03 Aug 2026 00:00:00 +0000</pubDate><guid>https://vpnreview.nxtniche.com/posts/lan-orangutan-quick-review-2026/</guid><description>LAN Orangutan is a self-hosted LAN network scanner with nmap discovery, persistent labeling, and Tailscale integration — hands-on quick review for homelabbers.</description><content:encoded><![CDATA[<h1 id="lan-orangutan-self-hosted-network-scanner-for-homelabs">LAN Orangutan: Self-Hosted Network Scanner for Homelabs</h1>
<p>Anyone running a homelab knows the feeling. Half a dozen devices on the network, and you&rsquo;re not sure which is which. MAC addresses blur together, IPs shuffle, and remembering &ldquo;the little box in the closet is the PiHole&rdquo; takes real detective work. LAN Orangutan is a self-hosted network scanner built for exactly that problem — it discovers devices on your LAN via nmap, labels them, and tracks them across scans. Network discovery is a solved problem in theory, but the usual tools live on a command line and forget everything between runs. That said, LAN Orangutan goes further: it ships as a single Go binary under MIT, sits at 494 stars on GitHub, and runs from a web UI or a JSON-output CLI.</p>
<h2 id="what-lan-orangutan-does">What LAN Orangutan Does</h2>
<p>The core loop is simple: scan, see what&rsquo;s alive, label it once, forget it.</p>
<p>Persistence is the differentiator.</p>
<p>A device you tag as &ldquo;Living Room TV&rdquo; stays tagged on the next scan, instead of vanishing into a pile of fresh MAC addresses. Grouping and notes ride along too, which is the part most plain nmap wrappers skip.</p>
<p>Multi-network support matters if your homelab spans more than one subnet or site. Also, each network gets scanned independently, and the results come together in one clean dashboard with light and dark modes.</p>
<p>Yet Tailscale is where it gets interesting. Tailnet peers show up automatically, so a scanner running on one box still maps the whole tailnet without extra config — a real win if you&rsquo;re managing remote nodes over a mesh VPN. If you&rsquo;re still weighing mesh options, our <a href="/posts/headscale-vs-tailscale-2026/">headscale vs Tailscale comparison</a> breaks down the self-hosted route.</p>
<table>
	<thead>
			<tr>
					<th style="text-align: left">Feature</th>
					<th style="text-align: center">LAN Orangutan</th>
					<th style="text-align: center">Plain nmap + scripts</th>
			</tr>
	</thead>
	<tbody>
			<tr>
					<td style="text-align: left">Device discovery</td>
					<td style="text-align: center">nmap auto-scan</td>
					<td style="text-align: center">Manual commands</td>
			</tr>
			<tr>
					<td style="text-align: left">Persistent labeling</td>
					<td style="text-align: center">Built-in</td>
					<td style="text-align: center">DIY, forgettable</td>
			</tr>
			<tr>
					<td style="text-align: left">Tailscale auto-discovery</td>
					<td style="text-align: center">Yes</td>
					<td style="text-align: center">No</td>
			</tr>
			<tr>
					<td style="text-align: left">Web UI</td>
					<td style="text-align: center">Light/dark dashboard</td>
					<td style="text-align: center">No</td>
			</tr>
			<tr>
					<td style="text-align: left">CLI / JSON output</td>
					<td style="text-align: center">Yes</td>
					<td style="text-align: center">Yes</td>
			</tr>
			<tr>
					<td style="text-align: left">Install</td>
					<td style="text-align: center">Single binary</td>
					<td style="text-align: center">Depends on setup</td>
			</tr>
	</tbody>
</table>
<h2 id="hands-on-setting-it-up">Hands-On: Setting It Up</h2>
<p>Honestly, setup took me under five minutes. Then I pulled the Docker image on an Ubuntu box, ran docker compose up -d, and pointed a browser at port 291.</p>
<p>From there, it&rsquo;s straight to the dashboard once you&rsquo;ve set a password on first load. I kicked off a scan of my main subnet. The web UI showed live progress, and within a few minutes the device list filled in with hostnames, IPs, and MACs. So I labeled one of them, re-ran the scan, and the tag stuck — the feature that sold me.</p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>curl -O https://raw.githubusercontent.com/291-Group/LAN-Orangutan/main/docker-compose.yml
</span></span><span style="display:flex;"><span>docker compose up -d
</span></span><span style="display:flex;"><span><span style="color:#75715e"># open http://&lt;that-machine&gt;:291 and set a password</span>
</span></span></code></pre></div><p>The CLI hands you the same data as JSON, so you can pipe device inventory into a script or a Grafana dashboard if you&rsquo;re into that. Though for a home network, the web UI is honestly enough — that level of visibility is plenty.</p>
<h2 id="what-to-watch-out-for">What to Watch Out For</h2>
<p>Docker requires Linux because it uses host networking. But on Docker Desktop for macOS or Windows, the container sees the VM&rsquo;s network, not your LAN. Still, if you&rsquo;re on a Mac or Windows desktop, the native single-binary build is the safer path.</p>
<p>LAN Orangutan isn&rsquo;t the only self-hosted scanner around — we&rsquo;ve also <a href="/posts/ragnar-pi-network-scanner-quick-review-2026/">tested the Ragnar Pi network scanner</a> for a Raspberry Pi flavor of the same idea. Documentation is thin for a young project. At 494 stars it&rsquo;s early, so treat it as a homelab tool rather than mission-critical infra. Even so, password protection is per-instance, not multi-user — fine for a single admin, not a team.</p>
<h2 id="bottom-line">Bottom Line</h2>
<p>LAN Orangutan earns a spot if you run a real homelab and you&rsquo;re tired of squinting at nmap output. Persistent labeling, Tailscale auto-discovery, and a clean web UI cover the everyday pain points, and it&rsquo;s free and open source.</p>
<p>If you just want a one-off scan, plain nmap is enough. But if you want a network discovery tool you&rsquo;ll actually keep using, this is worth a weekend.</p>
]]></content:encoded></item></channel></rss>