<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Republic by Jason Page — Hardware</title>
    <link>https://blog.amfile.org/</link>
    <description>hardware how-to</description>
    <language>en-us</language>
    <lastBuildDate>Wed, 17 Jun 2026 09:02:23 +0000</lastBuildDate>
    <generator>IndexGram v1.00</generator>
    <atom:link href="https://blog.amfile.org/rss/hardware" rel="self" type="application/rss+xml"/>
    <item>
      <title>Vonets WAP-11g-300 </title>
      <link>https://blog.amfile.org/topic/hardware/vonets-wap-11g-300</link>
      <guid isPermaLink="true">https://blog.amfile.org/topic/hardware/vonets-wap-11g-300</guid>
      <pubDate>Tue, 07 Apr 2026 17:36:30 +0000</pubDate>
      <description><![CDATA[<h1 id="vonets-wifi-bridge-to-ethernet-setup-guide">Vonets WiFi Bridge to Ethernet Setup Guide</h1>
<p>This guide covers setting up a Vonets 2.4GHz WiFi bridge/repeater (VAP11G-300 or similar) for use as a portable WiFi-to-Ethernet adapter on Linux and OS/2 Warp, with easy reconfiguration for different networks.</p>
<hr>
<h2 id="hardware-overview">Hardware Overview</h2>
<p>The Vonets bridge operates in <strong>WISP (Wireless ISP) mode</strong>: it connects to an upstream WiFi network and provides a wired Ethernet port to your device. Your machine sees a standard Ethernet connection regardless of which WiFi the Vonets is bridging.</p>
<p><strong>Default device settings:</strong></p>
<ul>
<li>Web UI IP: <code>192.168.254.254</code></li>
<li>Default SSID (AP mode): <code>VONETS_XXXXXX</code> (last 6 chars of MAC)</li>
<li>Default credentials: <code>admin</code> / <code>admin</code></li>
</ul>
<hr>
<h2 id="factory-reset-vonets-24ghz-models">Factory Reset (Vonets 2.4GHz Models)</h2>
<p>Perform a factory reset before initial setup or when switching to a new deployment.</p>
<ol>
<li>Power on the device and wait ~30 seconds for it to fully boot.</li>
<li>Locate the <strong>RESET</strong> pinhole on the device body.</li>
<li>With the device powered on, insert a straightened paperclip or pin into the RESET hole.</li>
<li>Hold for <strong>10 seconds</strong> until the status LED flashes rapidly, then release.</li>
<li>The device will reboot. Wait ~60 seconds for it to fully restart.</li>
<li>The device is now restored to factory defaults (<code>192.168.254.254</code>, <code>admin</code>/<code>admin</code>).</li>
</ol>
<blockquote>
<p><strong>Note:</strong> Some Vonets models (VAP11N, VAR11N-300) use a side button instead of a pinhole. Hold it for 10 seconds with the device powered on.</p>
</blockquote>
<hr>
<h2 id="connecting-to-a-new-wifi-network-reconfiguration">Connecting to a New WiFi Network (Reconfiguration)</h2>
<p>Each time you want to bridge a different WiFi network, repeat this process.</p>
<h3 id="step-1--access-the-web-ui">Step 1 — Access the Web UI</h3>
<p>Connect your computer to the Vonets device via Ethernet cable.</p>
<p><strong>On Linux:</strong></p>
<pre><code class="language-bash"># Find your Ethernet interface name
ip link show

# Assign a temporary static IP in the Vonets subnet
sudo ip addr add 192.168.254.100/24 dev eth0   # replace eth0 with your interface
sudo ip link set eth0 up</code></pre>

<p><strong>On OS/2 Warp:</strong></p>
<p>Open a command prompt and run:</p>
<pre><code>ifconfig lan0 192.168.254.100 netmask 255.255.255.0</code></pre>

<p>If using IBM TCP/IP for OS/2, you can also set this in the <strong>TCP/IP Configuration</strong> notebook in the System Setup folder.</p>
<h3 id="step-2--log-in-to-the-web-interface">Step 2 — Log in to the Web Interface</h3>
<p>Open a web browser and navigate to:</p>
<pre><code>http://192.168.254.254</code></pre>

<p>Log in with:</p>
<ul>
<li>Username: <code>admin</code></li>
<li>Password: <code>admin</code> (or your changed password)</li>
</ul>
<h3 id="step-3--configure-the-wifi-uplink">Step 3 — Configure the WiFi Uplink</h3>
<ol>
<li>Click <strong>WISP</strong> or <strong>WiFi Repeater</strong> from the menu (exact label varies by firmware).</li>
<li>Click <strong>Scan</strong> to list available WiFi networks.</li>
<li>Select your target network from the list.</li>
<li>Enter the WiFi password when prompted.</li>
<li>Click <strong>Save</strong> or <strong>Apply</strong>.</li>
<li>The device will reboot and connect to the new network (allow ~60 seconds).</li>
</ol>
<h3 id="step-4--verify-connection">Step 4 — Verify Connection</h3>
<p>After reboot, the device's WAN/Internet LED should be solid. Test connectivity:</p>
<p><strong>Linux:</strong></p>
<pre><code class="language-bash"># Remove the static IP assigned earlier
sudo ip addr del 192.168.254.100/24 dev eth0

# Let DHCP take over (the Vonets will now provide an address from the upstream router)
sudo dhclient eth0
# or with systemd-networkd / NetworkManager:
nmcli device connect eth0</code></pre>

<p><strong>OS/2 Warp:</strong></p>
<p>In the <strong>TCP/IP Configuration</strong> notebook, switch the LAN adapter back to DHCP (if it was set to static for setup). Then restart the TCP/IP stack:</p>
<pre><code>[C:\] stop tcpip
[C:\] start tcpip</code></pre>

<p>Or reboot. The Vonets will hand off a DHCP lease from the upstream WiFi network.</p>
<hr>
<h2 id="linux--full-setup-notes">Linux — Full Setup Notes</h2>
<h3 id="persistent-network-configuration">Persistent Network Configuration</h3>
<p>To avoid manually reconfiguring the Ethernet interface each time, configure your network manager to use DHCP on the wired interface. When the Vonets is connected and bridging a network, it will serve DHCP automatically.</p>
<p><strong>NetworkManager (most desktop distros):</strong></p>
<pre><code class="language-bash"># Ensure the wired connection is set to DHCP
nmcli connection modify &quot;Wired connection 1&quot; ipv4.method auto
nmcli connection up &quot;Wired connection 1&quot;</code></pre>

<p><strong>systemd-networkd:</strong></p>
<p>Create <code>/etc/systemd/network/20-wired.network</code>:</p>
<pre><code class="language-ini">[Match]
Name=eth0

[Network]
DHCP=yes</code></pre>

<p>Then:</p>
<pre><code class="language-bash">sudo systemctl enable --now systemd-networkd</code></pre>

<h3 id="reconfiguring-without-a-gui-browser">Reconfiguring Without a GUI Browser</h3>
<p>Use <code>curl</code> to access the Vonets web UI from the command line during setup:</p>
<pre><code class="language-bash"># Authenticate and trigger a WiFi scan (exact paths vary by firmware version)
curl -u admin:admin http://192.168.254.254/goform/WifiBasicSet \
  -d &quot;ssid=YourNetworkName&amp;key=YourPassword&amp;enc=3&quot;</code></pre>

<p>For reliable scripting, use a browser with the web UI — the form field names differ across Vonets firmware versions.</p>
<hr>
<h2 id="os2-warp--full-setup-notes">OS/2 Warp — Full Setup Notes</h2>
<h3 id="requirements">Requirements</h3>
<ul>
<li>OS/2 Warp 3 or 4 with <strong>IBM TCP/IP for OS/2</strong> or <strong>MPTS</strong> (Multi-Protocol Transport Services) installed.</li>
<li>A supported Ethernet NIC with an OS/2 NDIS driver (e.g., NE2000-compatible, 3Com, Intel cards with OS/2 drivers).</li>
</ul>
<h3 id="initial-tcpip-configuration">Initial TCP/IP Configuration</h3>
<ol>
<li>Open <strong>System Setup</strong> folder on the Desktop.</li>
<li>Open <strong>TCP/IP Configuration</strong>.</li>
<li>Select your LAN adapter (e.g., <code>IBMTOK0</code>, <code>SLIPLINK0</code>, or <code>LAN0</code> depending on your NIC driver).</li>
<li>Set <strong>IP Address</strong> to <code>192.168.254.100</code> and <strong>Subnet Mask</strong> to <code>255.255.255.0</code> for initial Vonets setup access.</li>
<li>Save and restart the TCP/IP stack or reboot.</li>
</ol>
<h3 id="browser-for-the-web-ui">Browser for the Web UI</h3>
<p>OS/2 Warp includes <strong>WebExplorer</strong> (Warp 3) or <strong>Netscape Navigator</strong> (Warp 4 bonus pack). Either can access the Vonets web UI at <code>http://192.168.254.254</code>.</p>
<ul>
<li>WebExplorer: launch from the <strong>Internet</strong> folder or via <code>EXPLORE.EXE</code>.</li>
<li>Netscape: standard launch from the desktop.</li>
</ul>
<h3 id="switching-back-to-dhcp-after-setup">Switching Back to DHCP After Setup</h3>
<p>Once the Vonets is configured and bridging your WiFi network:</p>
<ol>
<li>Open <strong>TCP/IP Configuration</strong> again.</li>
<li>For your LAN adapter, check <strong>Obtain IP address automatically</strong> (DHCP).</li>
<li>Save and restart TCP/IP or reboot.</li>
</ol>
<p>The Vonets will forward a DHCP lease from the upstream WiFi router to your OS/2 machine.</p>
<p><strong>Command-line alternative (TCP/IP for OS/2):</strong></p>
<pre><code>ifconfig lan0 dhcp</code></pre>

<p>Or edit <code>\MPTN\ETC\SETUP.CMD</code> and set <code>DHCP=YES</code> for your adapter, then restart.</p>
<h3 id="troubleshooting-on-os2">Troubleshooting on OS/2</h3>
<ul>
<li>If <code>http://192.168.254.254</code> does not load, verify the static IP was applied: run <code>ifconfig lan0</code> and confirm the address shows <code>192.168.254.100</code>.</li>
<li>Some OS/2 TCP/IP stacks require a full reboot after IP changes rather than a stack restart.</li>
<li>If your NIC is not detected, confirm the NDIS 2 driver is bound in MPTS (run <code>MPTS.EXE</code> from <code>\IBMCOM\</code>).</li>
</ul>
<hr>
<h2 id="quick-reference-changing-networks-in-the-field">Quick-Reference: Changing Networks in the Field</h2>
<ol>
<li>Plug the Vonets into power and wait 60 seconds.</li>
<li>Connect Ethernet from Vonets to your machine.</li>
<li>Set your machine's IP to <code>192.168.254.100/24</code> (static).</li>
<li>Browse to <code>http://192.168.254.254</code>, log in as <code>admin</code>/<code>admin</code>.</li>
<li>Go to WISP settings, scan, select network, enter password, save.</li>
<li>Wait for reboot (~60 seconds). Set your machine back to DHCP.</li>
<li>Done — the Vonets bridges to the new WiFi and your machine gets internet over Ethernet.</li>
</ol>
<hr>
<h2 id="tips">Tips</h2>
<ul>
<li>The Vonets remembers the last configured WiFi network across power cycles. You only need to reconfigure when switching networks.</li>
<li>If the web UI becomes unreachable, perform a factory reset (see above) and start over.</li>
<li>For security, change the admin password in the web UI after initial setup: <strong>Management > Password</strong>.</li>
<li>The Vonets 2.4GHz models do not support 5GHz networks. Ensure your target network is on 2.4GHz.</li>
</ul>
]]></description>
            <dc:creator>pagetelegram</dc:creator>
                </item>
    <item>
      <title>IOGear GWU637 </title>
      <link>https://blog.amfile.org/topic/hardware/iogear-gwu637</link>
      <guid isPermaLink="true">https://blog.amfile.org/topic/hardware/iogear-gwu637</guid>
      <pubDate>Tue, 07 Apr 2026 17:34:42 +0000</pubDate>
      <description><![CDATA[<h1 id="iogear-gwu637-ethernet-2-wifi-adapter-setup-guide">IOGear GWU637 Ethernet-2-WiFi Adapter Setup Guide</h1>
<p>This guide covers setting up the IOGear GWU637 Universal Wireless-N Adapter as a WiFi-to-Ethernet bridge on Linux and OS/2 Warp, with easy reconfiguration for different networks.</p>
<p>Sources: <a href="https://www.manualslib.com/manual/3182700/Iogear-Gwu637.html" rel="noopener" target="_blank">ManualsLib</a> · <a href="https://manuals.plus/iogear/gwu637-ethernet-2-wifi-universal-wireless-adapter-manual" rel="noopener" target="_blank">manuals.plus</a> · <a href="https://usermanual.wiki/ATEN-Technology-IOGEAR/GWU637/html" rel="noopener" target="_blank">usermanual.wiki</a></p>
<hr>
<h2 id="hardware-overview">Hardware Overview</h2>
<p>The GWU637 operates in <strong>client/bridge mode</strong>: it connects to an upstream WiFi network and provides a standard Ethernet port to your device. Your machine sees an ordinary wired connection regardless of which WiFi the adapter is bridging.</p>
<p><strong>Default device settings:</strong></p>
<ul>
<li>Web UI IP: <code>192.168.1.254</code></li>
<li>Subnet mask: <code>255.255.255.0</code></li>
<li>Default credentials: username and password are <strong>blank</strong> (leave both fields empty)</li>
</ul>
<p>  - Some firmware versions use <code>admin</code> / <code>admin</code> — try blank first, then admin/admin if blank fails</p>
<p><strong>LED indicators:</strong></p>
<table>
<thead><tr><th>LED</th><th>Behavior</th></tr></thead>
<tbody>
<tr><td>WLAN</td><td>Flashes during wireless data activity; off when idle</td></tr>
<tr><td>Ethernet</td><td>On when port is linked; flashes during data transfer</td></tr>
<tr><td>WPS/Reset</td><td>Flashes when WPS is active</td></tr>
</tbody></table>
<blockquote>
<p><strong>Browser compatibility warning:</strong> The GWU637 web UI's wireless site survey function <strong>does not work in Chrome or standard Edge</strong>. Use <strong>Firefox</strong> or <strong>Internet Explorer / Edge in IE compatibility mode</strong> to configure the adapter.</p>
</blockquote>
<hr>
<h2 id="factory-reset-gwu637">Factory Reset (GWU637)</h2>
<p>Perform a factory reset before initial setup or when switching deployments.</p>
<ol>
<li>Power on the device and wait ~30 seconds for it to fully boot.</li>
<li>Locate the <strong>RESET</strong> pinhole on the device body (shared with the WPS button on some units).</li>
<li>With the device powered on, insert a straightened paperclip into the RESET hole.</li>
<li>Hold for <strong>5–10 seconds</strong> until the WPS/Reset LED flashes, then release.</li>
<li>The device will reboot. Wait ~60 seconds for it to fully restart.</li>
<li>The device is now restored to factory defaults (<code>192.168.1.254</code>, blank credentials).</li>
</ol>
<hr>
<h2 id="connecting-to-a-new-wifi-network-reconfiguration">Connecting to a New WiFi Network (Reconfiguration)</h2>
<p>Each time you want to bridge a different WiFi network, follow this process.</p>
<h3 id="step-1--assign-a-static-ip-on-your-machine">Step 1 — Assign a Static IP on Your Machine</h3>
<p>Connect your computer to the GWU637 via Ethernet cable.</p>
<p><strong>On Linux:</strong></p>
<pre><code class="language-bash"># Find your Ethernet interface name
ip link show

# Assign a temporary static IP in the GWU637 subnet
sudo ip addr add 192.168.1.100/24 dev eth0   # replace eth0 with your interface
sudo ip link set eth0 up</code></pre>

<p><strong>On OS/2 Warp:</strong></p>
<p>Open a command prompt:</p>
<pre><code>ifconfig lan0 192.168.1.100 netmask 255.255.255.0</code></pre>

<p>Or open the <strong>TCP/IP Configuration</strong> notebook in the System Setup folder, set your LAN adapter to IP <code>192.168.1.100</code>, subnet mask <code>255.255.255.0</code>, then restart the TCP/IP stack.</p>
<h3 id="step-2--log-in-to-the-web-interface">Step 2 — Log in to the Web Interface</h3>
<p>Open a browser (<strong>Firefox</strong> on Linux; <strong>WebExplorer</strong> or <strong>Netscape</strong> on OS/2 Warp) and navigate to:</p>
<pre><code>http://192.168.1.254</code></pre>

<p>At the login prompt, leave both username and password <strong>blank</strong> and click <strong>Log In</strong>. If that fails, try <code>admin</code> / <code>admin</code>.</p>
<blockquote>
<p>On Linux, if Firefox is not installed:
```bash</p>
<h1 id="debianubuntu">Debian/Ubuntu</h1>
<p>sudo apt install firefox-esr</p>
<h1 id="fedora">Fedora</h1>
<p>sudo dnf install firefox
```</p>
</blockquote>
<h3 id="step-3--scan-for-and-select-a-wifi-network">Step 3 — Scan for and Select a WiFi Network</h3>
<ol>
<li>The configuration utility loads in the browser.</li>
<li>Click <strong>Search</strong> (or <strong>Site Survey</strong>) to scan for nearby networks.</li>
<li>The <strong>Wireless Site Survey</strong> window opens, listing available SSIDs with signal strength and encryption type.</li>
<li>Select your target network and click <strong>Done</strong>.</li>
</ol>
<h3 id="step-4--enter-the-wifi-password">Step 4 — Enter the WiFi Password</h3>
<ol>
<li>Confirm the <strong>Encryption</strong> type in the dropdown matches your network (WPA2-PSK is most common).</li>
<li>Enter the WiFi password in the <strong>Key</strong> or <strong>Password</strong> field.</li>
<li>Click <strong>Apply</strong> to save the settings.</li>
</ol>
<h3 id="step-5--finish-and-wait-for-reboot">Step 5 — Finish and Wait for Reboot</h3>
<ol>
<li>Click <strong>Finish</strong> to apply the configuration.</li>
<li>The adapter will reboot for approximately <strong>90 seconds</strong>.</li>
<li>During reboot the Ethernet link will drop briefly — this is normal.</li>
<li>Once complete, the <strong>Wireless Connection</strong> status changes to <strong>ACTIVE</strong> and the WLAN LED will flash with traffic.</li>
</ol>
<h3 id="step-6--switch-your-machine-back-to-dhcp">Step 6 — Switch Your Machine Back to DHCP</h3>
<p>After the adapter reboots, remove the static IP and let the GWU637 forward a DHCP lease from the upstream WiFi router.</p>
<p><strong>Linux:</strong></p>
<pre><code class="language-bash"># Remove the static IP
sudo ip addr del 192.168.1.100/24 dev eth0

# Request a DHCP lease
sudo dhclient eth0
# or with NetworkManager:
nmcli device connect eth0</code></pre>

<p><strong>OS/2 Warp:</strong></p>
<p>In <strong>TCP/IP Configuration</strong>, switch the LAN adapter back to DHCP, then restart TCP/IP:</p>
<pre><code>stop tcpip
start tcpip</code></pre>

<p>Or simply reboot.</p>
<hr>
<h2 id="linux--full-setup-notes">Linux — Full Setup Notes</h2>
<h3 id="persistent-dhcp-configuration">Persistent DHCP Configuration</h3>
<p>To avoid manually reconfiguring the interface each session, set the wired interface to DHCP in your network manager. Once the GWU637 is bridging a network it will pass through DHCP leases automatically.</p>
<p><strong>NetworkManager:</strong></p>
<pre><code class="language-bash">nmcli connection modify &quot;Wired connection 1&quot; ipv4.method auto
nmcli connection up &quot;Wired connection 1&quot;</code></pre>

<p><strong>systemd-networkd</strong> — create <code>/etc/systemd/network/20-wired.network</code>:</p>
<pre><code class="language-ini">[Match]
Name=eth0

[Network]
DHCP=yes</code></pre>

<pre><code class="language-bash">sudo systemctl enable --now systemd-networkd</code></pre>

<h3 id="wps-alternative-push-button-setup">WPS Alternative (Push-Button Setup)</h3>
<p>If the target router supports WPS push-button pairing, you can skip the web UI entirely:</p>
<ol>
<li>Press the <strong>WPS button</strong> on the GWU637 (the WPS/Reset LED will flash).</li>
<li>Within 2 minutes, press the <strong>WPS button</strong> on the WiFi router.</li>
<li>The devices will negotiate and connect automatically.</li>
<li>Set your machine to DHCP on the Ethernet interface — no web UI access needed.</li>
</ol>
<h3 id="verifying-connectivity">Verifying Connectivity</h3>
<pre><code class="language-bash"># Check that an IP was assigned
ip addr show eth0

# Test internet access
ping -c 4 8.8.8.8</code></pre>

<hr>
<h2 id="os2-warp--full-setup-notes">OS/2 Warp — Full Setup Notes</h2>
<h3 id="requirements">Requirements</h3>
<ul>
<li>OS/2 Warp 3 or 4 with <strong>IBM TCP/IP for OS/2</strong> or <strong>MPTS</strong> installed.</li>
<li>A supported Ethernet NIC with an OS/2 NDIS 2 driver.</li>
</ul>
<h3 id="browser-for-the-web-ui">Browser for the Web UI</h3>
<ul>
<li><strong>OS/2 Warp 3:</strong> WebExplorer (launch from the <strong>Internet</strong> folder or run <code>EXPLORE.EXE</code>).</li>
<li><strong>OS/2 Warp 4:</strong> Netscape Navigator (included in the BonusPak) is preferred as it renders the GWU637 UI more reliably than WebExplorer.</li>
</ul>
<p>Both browsers can access <code>http://192.168.1.254</code> for configuration. The GWU637 web UI is simpler than many modern pages and renders adequately in both.</p>
<h3 id="static-ip-for-setup">Static IP for Setup</h3>
<p>In the <strong>TCP/IP Configuration</strong> notebook:</p>
<ol>
<li>Select your LAN adapter.</li>
<li>Set <strong>IP Address</strong> to <code>192.168.1.100</code>, <strong>Subnet Mask</strong> to <code>255.255.255.0</code>.</li>
<li>Clear any default gateway entry (not needed for setup).</li>
<li>Save and restart TCP/IP or reboot.</li>
</ol>
<h3 id="switching-back-to-dhcp-after-setup">Switching Back to DHCP After Setup</h3>
<ol>
<li>Re-open <strong>TCP/IP Configuration</strong>.</li>
<li>Enable <strong>Obtain IP address automatically</strong> (DHCP) for your LAN adapter.</li>
<li>Save and restart TCP/IP:</li>
</ol>
<p>   ``<code>
   [C:\] stop tcpip
   [C:\] start tcpip
   </code>``
   Or reboot — OS/2 Warp's TCP/IP stack sometimes requires a full reboot for DHCP to activate.</p>
<h3 id="verifying-connectivity-on-os2-warp">Verifying Connectivity on OS/2 Warp</h3>
<pre><code>ping 8.8.8.8</code></pre>

<p>If <code>ping</code> is unavailable, use <code>netstat -r</code> to confirm a default route was received via DHCP, or try loading a web page in Netscape/WebExplorer.</p>
<h3 id="troubleshooting-on-os2-warp">Troubleshooting on OS/2 Warp</h3>
<ul>
<li>If <code>http://192.168.1.254</code> does not load, run <code>ifconfig lan0</code> to confirm the static IP <code>192.168.1.100</code> is active.</li>
<li>If the NIC is not detected, open <strong>MPTS</strong> (<code>\IBMCOM\MPTS.EXE</code>) and verify the NDIS 2 driver is bound to the adapter.</li>
<li>Some OS/2 TCP/IP versions do not honor DHCP without a reboot — if the machine has no IP after switching back, reboot.</li>
</ul>
<hr>
<h2 id="quick-reference-changing-networks-in-the-field">Quick-Reference: Changing Networks in the Field</h2>
<ol>
<li>Power on the GWU637 and wait ~60 seconds.</li>
<li>Connect Ethernet from GWU637 to your machine.</li>
<li>Set your machine's IP to <code>192.168.1.100 / 255.255.255.0</code> (static).</li>
<li>Open <strong>Firefox</strong> (Linux) or <strong>Netscape/WebExplorer</strong> (OS/2 Warp) and go to <code>http://192.168.1.254</code>.</li>
<li>Log in with blank credentials (or <code>admin</code> / <code>admin</code>).</li>
<li>Click <strong>Search</strong>, select your network, enter the password, click <strong>Apply</strong>, then <strong>Finish</strong>.</li>
<li>Wait ~90 seconds for the adapter to reboot.</li>
<li>Set your machine back to DHCP. Done.</li>
</ol>
<hr>
<h2 id="tips">Tips</h2>
<ul>
<li>The GWU637 remembers the last configured WiFi network across power cycles — you only need to reconfigure when switching networks.</li>
<li><strong>Do not use Chrome or standard Edge</strong> for the web UI — the site survey will not function. Use Firefox or IE/Edge IE mode.</li>
<li>The GWU637 supports 802.11 b/g/n on <strong>2.4GHz only</strong>. The target network must be on 2.4GHz.</li>
<li>WPS push-button pairing is the fastest method when available — no static IP or browser required.</li>
<li>For security, change the admin password after initial setup via the <strong>Management</strong> section of the web UI.</li>
<li>If the web UI becomes unreachable, factory reset (5–10 second hold on RESET) and start over.</li>
</ul>
]]></description>
            <dc:creator>pagetelegram</dc:creator>
                </item>
  </channel>
</rss>
