Distributing the Internet from a laptop is a lifesaver when you don’t have a router at hand, but urgently need to connect a phone, tablet or second computer. Make it out of a laptop Wi-Fi hotspot is possible in a matter of minutes, but many encounter errors: from the absence of an option in the settings to problems with drivers. In this article - current methods for Windows 10/11, macOS and Linux (including Ubuntu/Debian), as well as analysis of typical problems with step-by-step solutions.
It is important to understand: a laptop will not replace a full-fledged router. The connection speed will be slower (especially when connecting 3+ devices) and the range will be shorter. But for temporary access to the network or setting up a new gadget, this is enough. We tested all methods on ASUS ZenBook (Windows 11), MacBook Pro M1 (Ventura) and Lenovo ThinkPad (Ubuntu 22.04) - instructions are current for 2026.
1. Preparing the laptop: what to check before setting up
Before turning on Wi-Fi sharing, make sure that your laptop physically capable on this. Not all adapters support this mode SoftAP (Software Access Point). Here's what to do:
- 🔍 Check your Wi-Fi adapter driver. Open
Device Manager(Win + X → "Device Manager") and find the "Network adapters" section. If next to the name of your adapter (for example, Intel Wi-Fi 6 AX200 or Qualcomm Atheros QCA61x4) exclamation mark is on - update the driver via the manufacturer’s website. - 📶 Make sure Wi-Fi is turned on. On some laptops (eg Dell XPS or HP Pavilion) there is a hardware switch or key combination (usually
Fn + F2/F12). - 🔌 Connect to the Internet. You can only distribute the connection that already exists: via cable (Ethernet), via a USB modem or mobile Internet (3G/4G).
If you are using mobile internet (SIM card in a laptop), please note: many operators block distribution via hotspot. In this case, only USB tethering or purchasing a separate package for distribution will help.
⚠️ Attention: On laptops with Realtek RTL8188EE or RTL8723BE There are often problems with Wi-Fi distribution in Windows 10/11. The solution is to install the driver from the manufacturer's website (not through Windows Update!).
- ASUS
- Lenovo
- HP
- Dell
- Acer
- Apple
- Other
2. Method 1: Wi-Fi distribution via Mobile Hotspot (Windows 10/11)
The easiest method for Windows users is the built-in function Mobile hotspot. It works on most devices, but has limitations: for example, you can't change the default network name (SSID) or password.
Step by step instructions:
- Open
Options(Win + I) →Network and Internet→Mobile hotspot. - In the drop down menu
Sharingselect the connection through which the laptop receives the Internet (for example,EthernetorLocal network connection*). - Click
Editnext to "Network Data" and set:- 🔑 Network name (in Latin, without spaces)
- 🔒 Password (minimum 8 characters, with numbers)
- 📡 Range (select
5 GHz, if your devices support it, it will be faster)
Allow use of my internet connection.If the power button is inactive, it means:
- 🚫 Your Wi-Fi adapter does not support sharing mode (check the model in
Device Manager). - 🔌 No internet connection (check cable or mobile network).
- 🔄 The system has the mode enabled
On the plane(turn it off in the notification bar).
Make sure Wi-Fi is turned on on your laptop|
Check your internet connection (cable/mobile network)|
Update the Wi-Fi adapter driver (if there are errors in Device Manager)|
Disable your antivirus/firewall (they may be blocking distribution) -->
3. Method 2: Command Line (for advanced users)
If Mobile hotspot doesn't work or you need more control over the settings (for example, choosing a Wi-Fi channel), use command line. This method is universal for all versions of Windows, including Windows 7 (where there is no built-in hotspot).
Run the following commands in order (you can copy and paste into CMDrunning as administrator):
netsh wlan set hostednetwork mode=allow ssid="MyWiFi" key="12345678" keyUsage=persistent
netsh wlan start hostednetwork
Where:
MyWiFi— the name of your network (replace with yours).12345678— password (minimum 8 characters).
After that, enable Internet sharing:
- Open
Control panel→Network and Internet→Network Sharing Center→Changing adapter settings. - Find your main connection (eg
Ethernet), right click →Properties→ tabAccess. - Check the box
Allow other network users to use your Internet connection. - In the drop-down menu, select the created network (usually
LAN connection* X, where X is a number).
⚠️ Attention: After restarting the laptop, Wi-Fi distribution via the command line will be disabled. To start it again, run the commandnetsh wlan start hostednetwork. To run automatically, add it toTask Scheduler.
How to create a shortcut to quickly launch a hotspot?
1. Right-click on the desktop → “New” → “Shortcut”.
2. In the "Specify the location of the object" field, enter:
C:\Windows\System32\cmd.exe /k netsh wlan start hostednetwork
3. Give the shortcut a name (for example, “Start Wi-Fi”) and save.
4. Right-click on the shortcut → “Properties” → “Advanced” → check the “Run as administrator” box.
Now the hotspot will turn on in one click!
4. Method 3: Wi-Fi distribution on macOS (Monterey, Ventura, Sonoma)
On MacBook distributing the Internet is even easier than on Windows, but there are nuances. For example, if you are connected to the network via USB modem, the function may not work. Here are step-by-step instructions for the latest versions of macOS:
Open System Settings → Sharing. From the left menu select Shared Internet. Next:
- In the field
General connectionselect internet source (for example,EthernetorThunderbolt Bridge). - In the section
For computers usingcheck the box next toWi-Fi. - Click
Wi-Fi Settingsand set:- 📛 Network name (For example,
MacBook-Hotspot) - 🔐 Channel (select
Autoor manually specify a free channel, for example, 6 or 11) - 🔑 Password (minimum 8 characters, WPA2/WPA3 recommended)
- 📛 Network name (For example,
Shared Internet in the left menu.If, after turning on distribution, the devices do not connect:
- 🔄 Restart your MacBook.
- 🛠️ Reset network settings:
System Settings→Network→ highlightWi-Fi→ click "−" (delete) → add again. - 📡 Check if your network is conflicting with other access points (use the app WiFi Explorer for ether analysis).
On a MacBook with an M1/M2 chip, Wi-Fi distribution works more stable if you turn off Bluetooth at the time of setup. After turning on the hotspot, Bluetooth can be turned back on.
5. Wi-Fi distribution on Linux (Ubuntu, Debian, Fedora)
In Linux, the process of setting up distribution depends on the distribution and the network manager used (NetworkManager, systemd-networkd etc.). We will consider a universal method through hostapd And dnsmasq, which works on most systems including Ubuntu 22.04 And Debian 11.
Install the required packages:
sudo apt update
sudo apt install hostapd dnsmasq
Next, edit the configuration file hostapd:
sudo nano /etc/hostapd/hostapd.conf
Add the following lines (replace MyWiFi And 12345678 to your data):
interface=wlan0driver=nl80211
ssid=MyWiFi
hw_mode=g
channel=6
wmm_enabled=0
macaddr_acl=0
auth_algs=1
ignore_broadcast_ssid=0
wpa=2
wpa_passphrase=12345678
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP
rsn_pairwise=CCMP
Then configure dnsmasq to distribute IP addresses:
sudo mv /etc/dnsmasq.conf /etc/dnsmasq.conf.orig
sudo nano /etc/dnsmasq.conf
Add:
interface=wlan0
dhcp-range=192.168.100.100,192.168.100.200,255.255.255.0,24h
Start the services:
sudo systemctl unmask hostapdsudo systemctl enable hostapd
sudo systemctl start hostapd
sudo systemctl start dnsmasq
Enable packet forwarding:
sudo sysctl net.ipv4.ip_forward=1sudo iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
sudo iptables -A FORWARD -i eth0 -o wlan0 -m state --state RELATED,ESTABLISHED -j ACCEPT
sudo iptables -A FORWARD -i wlan0 -o eth0 -j ACCEPT
⚠️ Attention: On some distributions (for example, Arch Linux) insteadhostapdusedcreate_ap. Install it viapacmanand run with the command:sudo create_ap wlan0 eth0 MyWiFi 12345678Where
wlan0- Wi-Fi interface,eth0— interface with the Internet.
6. Common mistakes and their solutions
Even with proper configuration, Wi-Fi distribution may not work. We have collected the most common problems and ways to fix them:
| Error | Reason | Solution |
|---|---|---|
| "Could not set up mobile hotspot" | IP address conflict or blocking by antivirus | Disable your antivirus, reset your network settings (netsh int ip reset) |
| Devices connect, but the Internet does not work | Sharing is not enabled or the gateway is incorrect | Check your sharing settings in Network Sharing Center |
| "The hosted network could not be started" | Adapter driver does not support SoftAP |
Update the driver from the manufacturer's website (not through Windows Update!) |
| The network appears but disappears after a few seconds | Conflict with other programs (for example, VirtualBox) | Shut down all virtual machines, disable VPN |
| Low upload speed (less than 1 Mbps) | Channel overload or weak adapter | Change the Wi-Fi channel to 5 GHz (if supported) or reduce the number of connected devices |
If none of the methods help, try:
- 🔧 Use third-party programs: Connectify Hotspot (paid, but with a trial period), MyPublicWiFi (free).
- 📱 Distribute Internet from your phone (if you have an unlimited tariff).
- 🔄 Connect the laptop to the router via cable and use it as a repeater (if the router supports
WISP).
If Wi-Fi distribution is unstable, try disabling power saving for the Wi-Fi adapter. To do this, open Device Manager, find the adapter, in the properties tab Power management uncheck Allow this device to turn off to save power.
FAQ: Answers to frequently asked questions
Is it possible to distribute Wi-Fi from a laptop without an Internet connection?
Yes, but it will local network without internet access. For example, this is how you can connect two computers to transfer files. On Windows, use the command line:
netsh wlan set hostednetwork mode=allow ssid="LocalNet" key="12345678"
netsh wlan start hostednetwork
On macOS, create a network via System Settings → Network → Wi-Fi → Additionally → Create a network.
How many devices can be connected to distribution from a laptop?
Technically - up to 10-15 devices, but in practice, already with 3-4 connections the speed drops noticeably. Optimal quantity:
- 📱 1-2 devices — stable work (YouTube, social networks).
- 💻 3-4 devices — lags are possible when downloading files.
- 🎮 5+ devices - only for text tasks (messengers, mail).
On macOS the restriction is stricter: 2-3 devices work as stably as possible.
How to increase the range of Wi-Fi distribution?
Range depends on power Wi-Fi adapter laptop. To increase it a little:
- Change the channel to
1, 6 or 11(they are less susceptible to interference). - Place the laptop on an elevated surface (for example, on a table rather than on the floor).
- Use
5 GHzinstead of2.4 GHz— the signal passes through walls weaker, but there is less interference. - Buy USB Wi-Fi adapter with external antenna (eg TP-Link TL-WN823N).
⚠️ “People's advice” like foil or cans do not help - they only distort the signal.
Is it possible to distribute Wi-Fi from a laptop if the Internet is via a USB modem?
Yes, but there are nuances:
- 📌 On Windows in
Mobile hotspotselect connectionEthernetorLocal network connection*(even if the Internet is via USB). - 📌 On macOS in sharing settings select
USB 10/100/1000 LAN. - 📌 Some modems (for example, Huawei E3372) block the distribution. The solution is to use the program DC-Unlocker to unlock.
How to distribute Wi-Fi from a laptop to Android TV or Smart TV?
Most Smart TV (Samsung, LG, Sony) connect to the distribution from a laptop as to a regular network. But there are exceptions:
- 📺 Android TV (For example, Xiaomi Mi TV or Nvidia Shield) may not see the network if it is in
802.11n. The solution is to force enable802.11gin the adapter settings. - 📺 Samsung TV (models 2018-2020) sometimes require static IP. Set the TV's IP address manually (for example,
192.168.137.100), where the first three digits must match the laptop address.
If TV does not connect, check:
- Is it disabled on the laptop?
Power Saving Modefor Wi-Fi. - Is the TV using a VPN (it can block local networks).