<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="https://dev1galaxy.org/extern.php?action=feed&amp;tid=1668&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / [SOLVED] GNU/Linux laptop as router, vpn router, or wifi repeater]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=1668</link>
		<description><![CDATA[The most recent posts in [SOLVED] GNU/Linux laptop as router, vpn router, or wifi repeater.]]></description>
		<lastBuildDate>Sun, 06 Sep 2026 02:46:35 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: [SOLVED] GNU/Linux laptop as router, vpn router, or wifi repeater]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=65402#p65402</link>
			<description><![CDATA[<p>Thanks Bruno,</p><p>Sorry for the late response.</p><p>I am getting things setup to give it a try.</p><p>Will get back to you.</p>]]></description>
			<author><![CDATA[dummy@example.com (mtbvfr)]]></author>
			<pubDate>Sun, 06 Sep 2026 02:46:35 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=65402#p65402</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] GNU/Linux laptop as router, vpn router, or wifi repeater]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=65333#p65333</link>
			<description><![CDATA[<p>Hi mtbvfr. Rather than trying to debug dnsmasq, let&#039;s just use busybox&#039;s minimalistic dhcp server instead.</p><p>I tested the script below and it is working on my Devuan Excalibur laptop.</p><div class="codebox"><pre class="vscroll"><code>#!/bin/sh

# skinny-create-ap v2.5 (August 27, 2026)
# Bruno &quot;GNUser&quot; Dantas (GPLv3)

# Purpose: Turn a GNU/Linux system into a wireless router
# Dependencies: $ sudo apt install iproute2 iptables busybox hostapd net-tools
# Syntax: $ sudo skinny-create-ap &lt;lan_if&gt; &lt;wan_if&gt; &lt;ssid&gt; &lt;passphrase&gt;
# Example usage: $ sudo skinny-create-ap wlan0 eth0 DevuanHotspot TopSecret123
# To turn off the hotspot: $ sudo pkill hostapd; sudo pkill -f udhcpd

# user variables:
lan_if=&quot;$1&quot;
wan_if=&quot;$2&quot;
ssid=&quot;$3&quot;
password=&quot;$4&quot;
channel=6
dns_server=9.9.9.9

main()
{
	prevent_nm_interference
	select_subnet
	setup_kernel
	setup_nat
	setup_dhcp
	setup_ap
}

prevent_nm_interference()
{
	nmcli dev set &quot;$lan_if&quot; managed no &gt;/dev/null 2&gt;&amp;1
}

select_subnet()
{
	# let&#039;s make sure the subnet/&quot;ip_stem&quot; we use for wlan isn&#039;t already being used by the host:
	ip_stem_part1=192.168
	ip_stem_part2=60
	while netstat -tulpn | grep -q &quot;$ip_stem_part1.$ip_stem_part2&quot;; do
		ip_stem_part2=$(( ip_stem_part2 + 10 ))
	done
	ip_stem=$ip_stem_part1.$ip_stem_part2
	echo &quot;$(basename $0): will use ip_stem $ip_stem&quot;
}

setup_kernel()
{
	echo 1 &gt;/proc/sys/net/ipv4/conf/&quot;$wan_if&quot;/forwarding
	echo 1 &gt;/proc/sys/net/ipv4/ip_forward
}

setup_nat()
{
	iptables -t nat -A POSTROUTING -o &quot;$wan_if&quot; -j MASQUERADE
	iptables -A FORWARD -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
	iptables -A FORWARD -i &quot;$lan_if&quot; -o &quot;$wan_if&quot; -j ACCEPT
}

setup_dhcp()
{
	# first, bring up $lan_if and give it a suitable ip address:
	if ip link set &quot;$lan_if&quot; up; then
		ip addr add $ip_stem.1/24 dev &quot;$lan_if&quot;
	else
		echo &quot;$lan_if does not exist or cannot be brought up. Make sure necessary driver +/- firmware is installed.&quot; &gt;&amp;2
		exit 1
	fi

	# create config file:
	echo &quot;
start $ip_stem.100
end $ip_stem.200
interface $lan_if
opt dns $dns_server
opt subnet 255.255.255.0
opt router $ip_stem.1
&quot; &gt;/etc/udhcpd.conf

	# start dhcp server:
	busybox udhcpd
}

setup_ap()
{
	# create hostapd config file:
	echo &quot;
ssid=$ssid
interface=$lan_if
driver=nl80211
channel=$channel
ignore_broadcast_ssid=0
hw_mode=g
auth_algs=1
wpa=2 
wpa_passphrase=$password
wpa_key_mgmt=WPA-PSK
wpa_pairwise=CCMP
rsn_pairwise=CCMP

# N
ieee80211n=1
wmm_enabled=1
&quot; &gt;/tmp/hostapd.conf

	# start hostapd:
	hostapd /tmp/hostapd.conf &amp;
}

main</code></pre></div><p>How-to (3 steps):</p><p>1. Put the script somewhere in your PATH and make it executable. I&#039;d call it <span class="bbc">skinny-create-ap</span> or similar.</p><p>2. Install the script&#039;s dependencies:</p><div class="codebox"><pre><code>$ sudo apt install iproute2 iptables busybox hostapd net-tools</code></pre></div><p>3. Run the script. Syntax is <span class="bbc">sudo skinny-create-ap &lt;lan_if&gt; &lt;wan_if&gt; &lt;ssid&gt; &lt;passphrase&gt;</span> so, for example:</p><div class="codebox"><pre><code>$ sudo skinny-create-ap wlan0 eth0 DevuanHotspot TopSecret123</code></pre></div><p>If your goal is a wifi repeater (i.e., the Devuan host creating the AP is itself connected to the internet by wifi), the host needs to have two wireless nics. For example, the host could use wlan0 to connect to the internet and wlan1--or wlx00127b20535e or whatever <span class="bbc">ifconfig</span> shows--to create the AP. In this situation, the command would look something like this:</p><div class="codebox"><pre><code>$ sudo skinny-create-ap wlx00127b20535e wlan0 DevuanHotspot TopSecret123</code></pre></div><p>At thist point, clients should be able to connect to the AP/hotspot you created <img src="https://dev1galaxy.org/img/smilies/smile.png" width="15" height="15" alt="smile" /></p><p>Once you&#039;re done and want to take down the hotspot, run these commands on the host machine:</p><div class="codebox"><pre><code>$ sudo pkill hostapd; sudo pkill -f udhcpd</code></pre></div><p>Let me know how it goes.</p><p>P.S. If after running the script you find that your host machine cannot resolve domain names, check the file <span class="bbc">/etc/resolv.conf</span> and make sure it contains the ip address of your preferred dns server. Here is what my minimal, working <span class="bbc">/etc/resolv.conf</span> looks like:</p><div class="codebox"><pre><code>nameserver 9.9.9.9</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (GNUser)]]></author>
			<pubDate>Fri, 28 Aug 2026 02:58:22 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=65333#p65333</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] GNU/Linux laptop as router, vpn router, or wifi repeater]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=65329#p65329</link>
			<description><![CDATA[<p>Hi mtbvfr. I tried the above script and am able to reproduce your problem. Something must have changed in dnsmasq--either its internal logic or its command line syntax. I&#039;m going to have to investigate this and get back to you.</p>]]></description>
			<author><![CDATA[dummy@example.com (GNUser)]]></author>
			<pubDate>Thu, 27 Aug 2026 17:51:54 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=65329#p65329</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] GNU/Linux laptop as router, vpn router, or wifi repeater]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=65328#p65328</link>
			<description><![CDATA[<p>Hi mtbvfr. I don&#039;t understand what&#039;s going on there--if you are trying stems/subnets other than 192.168.90, then dnsmasq shouldn&#039;t care that 192.168.90.1 is in use.</p><p>Maybe you&#039;re not changing the stem/subnet in the right place? Try this:</p><p>First run <span class="bbc">sudo pkill -f dnsmasq</span> just to make sure there isn&#039;t an instance of dnsmasq already running and interfering.</p><p>Then try this script. I added a function to make sure the selected ip_stem isn&#039;t already being used. I haven&#039;t tested it but it should work.</p><div class="codebox"><pre class="vscroll"><code>#!/bin/sh

# skinny-create-ap v2.4 (August 27, 2026)
# Bruno &quot;GNUser&quot; Dantas (GPLv3)

# Purpose: Turn a GNU/Linux system into a wireless router
# Dependencies: iproute2 iptables dnsmasq hostapd
# Not a dependency but highly recommended: haveged
# Syntax: $ sudo skinny-create-ap &lt;lan_if&gt; &lt;wan_if&gt; &lt;ssid&gt; &lt;passphrase&gt;
# Example usage: $ sudo skinny-create-ap wlan0 eth0 DevuanHotspot TopSecret123
# To turn off the hotspot: $ sudo pkill hostapd; sudo pkill -f &#039;dnsmasq.*/tmp/dnsmasq.conf&#039;

# user variables:
lan_if=&quot;$1&quot;
wan_if=&quot;$2&quot;
ssid=&quot;$3&quot;
password=&quot;$4&quot;
channel=6
#dns_server=1.1.1.1

main()
{
	prevent_nm_interference
	select_subnet
	setup_kernel
	setup_nat
	setup_dhcp
	setup_ap
}

prevent_nm_interference()
{
	nmcli dev set &quot;$lan_if&quot; managed no &gt;/dev/null 2&gt;&amp;1
}

select_subnet()
{
	# let&#039;s make sure the subnet/&quot;ip_stem&quot; we use for wlan isn&#039;t already being used by the host:
	ip_stem_part1=192.168
	ip_stem_part2=60
	while sudo netstat -tulpn | grep -q &quot;$ip_stem_part1.$ip_stem_part2&quot;; do
		ip_stem_part2=$(( ip_stem_part2 + 10 ))
	done
	ip_stem=$ip_stem_part1.$ip_stem_part2
	echo &quot;$(basename $0): will use ip_stem $ip_stem&quot;
}

setup_kernel()
{
	echo 1 &gt;/proc/sys/net/ipv4/conf/&quot;$wan_if&quot;/forwarding
	echo 1 &gt;/proc/sys/net/ipv4/ip_forward
}

setup_nat()
{
	iptables -t nat -A POSTROUTING -o &quot;$wan_if&quot; -j MASQUERADE
	iptables -A FORWARD -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
	iptables -A FORWARD -i &quot;$lan_if&quot; -o &quot;$wan_if&quot; -j ACCEPT
}

setup_dhcp()
{
	# first, bring up $lan_if and give it a suitable ip address:
	if ip link set &quot;$lan_if&quot; up; then
		ip addr add $ip_stem.1/24 dev &quot;$lan_if&quot;
	else
		echo &quot;$lan_if does not exist or cannot be brought up. Make sure necessary driver +/- firmware is installed.&quot; &gt;&amp;2
		exit 1
	fi

	# create dnsmasq config file:
	echo &quot;
dhcp-leasefile=/tmp/dnsmasq.leases
dhcp-range=$ip_stem.100,$ip_stem.200,255.255.255.0,24h
#dhcp-option-force=option:dns-server,$dns_server
&quot; &gt;/tmp/dnsmasq.conf

	# start dnsmasq (with care not to clash with any dnsmasq instances that might already be running):
	dnsmasq --interface=&quot;$lan_if&quot; --bind-interfaces --except-interface=lo -C /tmp/dnsmasq.conf 
}

setup_ap()
{
	# create hostapd config file:
	echo &quot;
ssid=$ssid
interface=$lan_if
driver=nl80211
channel=$channel
ignore_broadcast_ssid=0
hw_mode=g
auth_algs=1
wpa=2 
wpa_passphrase=$password
wpa_key_mgmt=WPA-PSK
wpa_pairwise=CCMP
rsn_pairwise=CCMP

# N
ieee80211n=1
wmm_enabled=1
&quot; &gt;/tmp/hostapd.conf

	# start hostapd:
	hostapd /tmp/hostapd.conf &amp;
}

main</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (GNUser)]]></author>
			<pubDate>Thu, 27 Aug 2026 17:44:23 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=65328#p65328</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] GNU/Linux laptop as router, vpn router, or wifi repeater]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=65270#p65270</link>
			<description><![CDATA[<p>@GNUser<br />Hi Bruno,</p><p>I tried 192.168.60, 192.168.70, 192.168.80 &amp;, 192.168.90 and I was getting the same response.</p><p>When I got to 192.168.100, I got the following response:</p><div class="codebox"><pre><code>RTNETLINK answers: File exists

dnsmasq: failed to create listening socket for 192.168.90.1: Address already in use</code></pre></div><p>When I tried 192.168.110, 192.168.120 &amp; 192.168.130, I got the following response:</p><div class="codebox"><pre><code>dnsmasq: failed to create listening socket for 192.168.90.1: Address already in use</code></pre></div><p>What else can I look at or try?</p><p>Thanks!! again, mtbvfr.</p>]]></description>
			<author><![CDATA[dummy@example.com (mtbvfr)]]></author>
			<pubDate>Thu, 20 Aug 2026 04:47:31 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=65270#p65270</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] GNU/Linux laptop as router, vpn router, or wifi repeater]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=65269#p65269</link>
			<description><![CDATA[<p>Hi mtbvfr. Since your machine is already using 192.168.50.X, just change the <span class="bbc">ip_stem=192.168.50</span> line in the script to something else. For example, you could change that line to <span class="bbc">ip_stem=192.168.60</span> and then the script should work for you.</p>]]></description>
			<author><![CDATA[dummy@example.com (GNUser)]]></author>
			<pubDate>Thu, 20 Aug 2026 03:19:45 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=65269#p65269</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] GNU/Linux laptop as router, vpn router, or wifi repeater]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=65250#p65250</link>
			<description><![CDATA[<p>Hi Folks,</p><p>Looks like the script has been broken by dnsmasq in the setup_dhcp() procedure.</p><p>I get the following output:</p><div class="codebox"><pre><code>dnsmasq: failed to create listening socket for 192.168.50.1: Address already in use</code></pre></div><p>The best I can do to help pinpoint the problem is the following.</p><p>sudo ss -tulpn | grep &quot;192.168.50.1&quot; provides the following output:</p><div class="codebox"><pre><code>udp   UNCONN 0      0        192.168.50.1:137        0.0.0.0:*    users:((&quot;nmbd&quot;,pid=2996,fd=21))        
udp   UNCONN 0      0        192.168.50.1:138        0.0.0.0:*    users:((&quot;nmbd&quot;,pid=2996,fd=23))</code></pre></div><p>pid=2996 refers to &quot;nmbd -D&quot;</p><p>TIA!!</p>]]></description>
			<author><![CDATA[dummy@example.com (mtbvfr)]]></author>
			<pubDate>Wed, 19 Aug 2026 09:00:12 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=65250#p65250</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] GNU/Linux laptop as router, vpn router, or wifi repeater]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=48879#p48879</link>
			<description><![CDATA[<p>Just a quick follow-up regarding <span class="bbc">haveged</span>.</p><p>TL;DR version: <br />&#160; &#160; With modern linux kernels (5.6 or later) there is no need to install <span class="bbc">haveged</span> on a GNU/Linux box being used as a wireless router.</p><p>Detailed version: <br />&#160; &#160; Entropy is needed for fast communication between wireless router and wireless clients (due to wpa2 cryptography operations). It used to be recommended to run <span class="bbc">cat /proc/sys/kernel/random/entropy_avail</span> on the router and, if result was less than 1000, to install haveged and run it as a daemon to augment router&#039;s entropy pool.<br />&#160; &#160; Turns out that linux 5.6 incorporated a haveged-inspired mechanism that generates entropy extremely quickly (~200 MiB/s), making the haveged daemon obsolete for this use case (fast entropy generation). Also, result of <span class="bbc">cat /proc/sys/kernel/random/entropy_avail</span> is now meaningless (the command always returns &quot;256&quot;).</p><p>Ref: <a href="https://github.com/jirka-h/haveged/issues/57" rel="nofollow">https://github.com/jirka-h/haveged/issues/57</a></p><p>P.S. Would the forum moderator kindly delete <span class="bbc">haveged</span> from Reply #18 (two places) and Reply #21 (one place)? I tried to delete it myself, but was denied (&quot;You do not have permission to access this page&quot;).</p>]]></description>
			<author><![CDATA[dummy@example.com (GNUser)]]></author>
			<pubDate>Tue, 12 Mar 2024 19:23:18 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=48879#p48879</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] GNU/Linux laptop as router, vpn router, or wifi repeater]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=48477#p48477</link>
			<description><![CDATA[<p>Hi Bruno et al,</p><p>The nmcli command fixes things on the Lenovo L540.</p><p>After I enter my sudo password for running v2.3 of skinny-create-ap, there is no more output in the Terminal app. It simply returns to the Command Prompt.</p><p>Thanks! again, MTB.</p>]]></description>
			<author><![CDATA[dummy@example.com (mtbvfr)]]></author>
			<pubDate>Sun, 25 Feb 2024 21:17:36 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=48477#p48477</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] GNU/Linux laptop as router, vpn router, or wifi repeater]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=48358#p48358</link>
			<description><![CDATA[<div class="quotebox"><blockquote><div><p>If I run nmcli dev set wlan0 managed no, how do I undo the effects of this when I&#039;ve finished using the Access Point</p></div></blockquote></div><p>With <span class="bbc">nmcli dev set wlan0 managed yes</span></p><div class="quotebox"><blockquote><div><p>or does the command sudo pkill hostapd; sudo pkill -f &#039;dnsmasq.*/tmp/dnsmasq.conf&#039; take care of this?</p></div></blockquote></div><p>No.</p><p>Regarding wicd, its last stable release was in 2016 and last merge request from 2019. You could try it but the software is unmaintained.</p>]]></description>
			<author><![CDATA[dummy@example.com (GNUser)]]></author>
			<pubDate>Wed, 21 Feb 2024 04:10:38 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=48358#p48358</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] GNU/Linux laptop as router, vpn router, or wifi repeater]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=48333#p48333</link>
			<description><![CDATA[<p>Hi Bruno,</p><p>NetworkManager is installed and running when I experience the <span class="bbc">handle_probe_req: send failed</span> issue.</p><p>If I run <span class="bbc">nmcli dev set wlan0 managed no</span>, how do I undo the effects of this when I&#039;ve finished using the Access Point or does the command <span class="bbc">sudo pkill hostapd; sudo pkill -f &#039;dnsmasq.*/tmp/dnsmasq.conf&#039;</span> take care of this?</p><p>Is wicd a viable alternative to NetworkManager?</p><p>I will try testing tomorrow.</p><p>Thanks, MTB.</p>]]></description>
			<author><![CDATA[dummy@example.com (mtbvfr)]]></author>
			<pubDate>Tue, 20 Feb 2024 12:31:45 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=48333#p48333</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] GNU/Linux laptop as router, vpn router, or wifi repeater]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=48321#p48321</link>
			<description><![CDATA[<p>Hello again, mtbvfr. The nmcli command (see reply #25 just above) made the &quot;handle_probe_req: send failed&quot; messages disappear on my ThinkPad X230 with Devuan Daedalus <img src="https://dev1galaxy.org/img/smilies/smile.png" width="15" height="15" alt="smile" /> Now the hotspot created with <span class="bbc">skinny-create-ap</span> is completely stable.</p><p>I updated the script in reply #18 to include the nmcli command. I will go ahead and mark the thread as &quot;Solved&quot; (almost 7 years later--haha).</p><p>P.S. Please let me know if the nmcli command fixes things on your Lenovo L540. As for your other laptops, I&#039;ll leave those for you and other users to troubleshoot. I suggest scrutinizing the wifi hardware (not all hardware supports AP mode), excluding interference from network managers, and excluding interference from other software (e.g., <span class="bbc">rfkill</span>).</p>]]></description>
			<author><![CDATA[dummy@example.com (GNUser)]]></author>
			<pubDate>Mon, 19 Feb 2024 18:43:57 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=48321#p48321</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] GNU/Linux laptop as router, vpn router, or wifi repeater]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=48319#p48319</link>
			<description><![CDATA[<div class="quotebox"><blockquote><div><p>Sometimes, after a while, &quot;handle_probe_req: send failed&quot; is output multiple times.</p></div></blockquote></div><p>Hi mtbvfr. I cannot reproduce the problem on my ThinkPad X200 with ALFA USB wifi adapter and Tiny Core Linux.</p><p>I don&#039;t normally run the <span class="bbc">skinny-create-ap</span> script on my ThinkPad X230 with Devuan Daedalus but I gave it a try and I am able to reproduce your problem:</p><div class="codebox"><pre><code>$ sudo skinny-create-ap wlx00127b20535e wlan0 DevuanHotspot TopSecret123
...
[I can connect to the hotspot using my phone, and phone can access the internet without any problems for several minutes]
wlx00127b20535e: INTERFACE-DISABLED 
wlx00127b20535e: INTERFACE-ENABLED 
[here the phone loses connection to the hotspot]
handle_probe_req: send failed
handle_probe_req: send failed
handle_probe_req: send failed
handle_probe_req: send failed
handle_probe_req: send failed
handle_probe_req: send failed</code></pre></div><p>Since the hotspot works perfectly for several minutes before failing, I suspect the sudden failure is related to either power management or a networking daemon (e.g., NetworkManager) interfering.</p><p>One big difference between my X200 with TCL and X230 with Daedalus is that the latter uses NetworkManager.</p><p>Two questions for you, mtbvfr:</p><p>1. On your Lenovo L540 using Devuan Daedalus, is NetworkManager installed and running when you experience the &quot;handle_probe_req: send failed&quot; issue?</p><p>2. If you run <span class="bbc">nmcli dev set wlan0 managed no</span> and then start the hotspot with <span class="bbc">sudo skinny-create-ap wlan0 eth0 DevuanHotspot TopSecret123</span> does the &quot;handle_probe_req: send failed&quot; problem go away?</p><p>I&#039;m testing #2 right now.</p>]]></description>
			<author><![CDATA[dummy@example.com (GNUser)]]></author>
			<pubDate>Mon, 19 Feb 2024 17:53:27 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=48319#p48319</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] GNU/Linux laptop as router, vpn router, or wifi repeater]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=48318#p48318</link>
			<description><![CDATA[<p>The idea is interesting, but one thing is not entirely good.<br />I don’t know how it is in other countries, but our cost&#160; ALFA AWUS036ACHM&#160; &#160;is approximately the same as TP-LINK Archer AX1500 Wi-Fi 6.<br /><a href="https://www.tp-link.com/us/home-networking/wifi-router/archer-ax1500/" rel="nofollow">https://www.tp-link.com/us/home-network … er-ax1500/</a></p><p>But repeaters are simply much cheaper.</p>]]></description>
			<author><![CDATA[dummy@example.com (aluma)]]></author>
			<pubDate>Mon, 19 Feb 2024 17:37:32 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=48318#p48318</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] GNU/Linux laptop as router, vpn router, or wifi repeater]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=48316#p48316</link>
			<description><![CDATA[<p>Hi mtbvfr. There are a lot of moving parts here. I will look at this on the weekend when I have more time.</p><p>But I do have two cents of advice that I can give right away:</p><p>Over the years, I&#039;ve had many headaches of the type you&#039;re having now. I am not exaggerating when I say that <em>all</em> of my wifi-related headaches went away when I started using hand-picked hardware (ALFA AWUS036ACHM) and hand-picked minimalist OS (Tiny Core Linux) on my GNU/Linux box being used as a wireless router.</p><p>In other words, every problem I&#039;ve ever encountered related to creating wifi hotspots were either due to poor hardware support or an OS that was getting in the way by doing things that I did not expect or desire.</p>]]></description>
			<author><![CDATA[dummy@example.com (GNUser)]]></author>
			<pubDate>Mon, 19 Feb 2024 15:04:40 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=48316#p48316</guid>
		</item>
	</channel>
</rss>
