Have you found yourself in a situation where you urgently need to connect your smartphone, tablet or other computer to the Internet, but you don’t have a router at hand? Modern laptops can easily turn into a Wi-Fi access point, allowing you to distribute the Internet wirelessly. This function will come in handy when traveling, at the dacha, or even at home if the main router suddenly breaks down.
In this article we will look at all the possible ways to organize Internet distribution from a laptop - from built-in tools Windows 10/11, macOS And Linux to specialized programs. You will learn how to set up mobile hotspot via GUI, launch the access point via command line, and even how to get around common errors like the lack of the “Mobile hotspot” option or problems with Wi-Fi adapter drivers.
It doesn't matter what kind of laptop you have - ASUS ZenBook, Lenovo ThinkPad, MacBook Pro or budget Acer — the instructions are suitable for any model, provided that it has a Wi-Fi adapter. And if you encounter a rare problem, there is an FAQ at the end of the article with answers to frequently asked questions.
1. Internet distribution via “Mobile hotspot” in Windows 10 and 11
The easiest way to distribute Wi-Fi from a laptop to Windows — use the built-in Mobile Hotspot function. It is available in both latest versions of the OS and does not require the installation of additional software. Here's how to use it:
- Open Settings via menu
Startor by pressingWin + I. - Go to section
Network and Internet → Mobile hotspot. - In the "Sharing" drop-down menu, select the connection through which the laptop receives the Internet (for example,
EthernetorWireless networkif you are connected to another Wi-Fi). - Click "Edit" next to the "Network name" and "Password" fields to set your parameters (minimum 8 characters for the password).
- Activate the "Allow use of my Internet connection" switch.
Done! Now other devices can connect to the created network. The maximum number of connected gadgets depends on the Wi-Fi adapter model (usually 5–10 devices).
Make sure your laptop's Wi-Fi is turned on|
Check that your main internet connection is active|
Disable the VPN (it may block the feed)|
Update Wi-Fi adapter drivers (if errors occur)
-->
⚠️ Attention: If the "Mobile hotspot" option is missing in the parameters, then your Wi-Fi adapter does not support the mode SoftAP (software access point). In this case, try the methods in the following sections.
Advantages of this method:
- 🔹 Does not require technical knowledge - everything is configured in 3 clicks.
- 🔹 Automatically manages the IP addresses of connected devices (DHCP).
- 🔹 Supports
WPA2-PSK— a reliable encryption standard.
Disadvantages:
- 🔸 Limited Wi-Fi channel setting (you cannot select 5 GHz if the adapter supports it).
- 🔸 In some builds Windows The function is unstable after updates.
2. Wi-Fi distribution via command line (CMD)
If the Mobile Hotspot graphical interface is unavailable or malfunctions, you can start the access point via command line. This method is universal and works even on older versions Windows 7/8.
Open CMD as administrator (click Win + X and select "Terminal (Administrator)") and run the following commands in order:
netsh wlan set hostednetwork mode=allow ssid="MyWiFi" key="12345678" keyUsage=persistent
netsh wlan start hostednetwork
Where:
MyWiFi— the name of your network (can be replaced).12345678— password (minimum 8 characters).
To allow other devices to access the Internet, you need to share the connection:
- Open
Control Panel → Network and Internet → Network and Sharing Center. - Click "Change adapter settings."
- Right-click on the main connection (for example,
Ethernet) → "Properties" → "Access" tab. - Check the box "Allow other network users to use the connection" and select the created network in the drop-down menu (it will be called
LAN connection* X).
Done! Now the Internet will be distributed through the created access point. To stop distribution, run the command:
netsh wlan stop hostednetwork
If an error appears after executing commands "The hosted network could not be started", update the Wi-Fi adapter driver via Device Manager or download it from the laptop manufacturer's website (for example, Intel, Qualcomm Atheros, Realtek).
⚠️ Attention: After rebooting the laptop, distribution viaCMDturns off. To run it automatically, create.bat-file with commands and add it to startup.
3. Setting up Internet distribution on macOS (MacBook)
On laptops Apple Wi-Fi distribution is configured through the "Sharing" function. Interface macOS more intuitive than Windows, but there are some nuances. Here are the step-by-step instructions:
- Open
System Preferences → Sharing. - In the left menu, select "Internet Sharing".
- In the "Shared connection" field, specify the Internet source (for example,
EthernetorThunderbolt Bridge, if you are connected via cable). - In the "For computers using" section, check the box
Wi-Fi. - Click "Wi-Fi Settings" and set:
- Network name (
SSID). - Channel (recommended
Auto). - Security:
WPA2/WPA3 Personal. - Password (minimum 8 characters).
- Network name (
Now other devices can connect to yours MacBook like a regular router. The maximum number of connections is up to 10 devices (depending on the Wi-Fi adapter model).
Features of distribution on macOS:
- 🔹 Both ranges are supported:
2.4 GHzAnd5 GHz(if the adapter is dual-band). - 🔹 You can distribute the Internet even with
USB modem(3G/4G). - 🔹 The function works more stable than in Windows, but may conflict with the VPN.
Windows (10/11)|
macOS (MacBook)|
Linux (Ubuntu/Fedora, etc.)|
I don’t share the Internet from my laptop
-->
4. Internet distribution from a laptop on Linux (Ubuntu, Fedora, Mint)
In distributions Linux There is no universal graphical tool for distributing Wi-Fi, but the task can be easily solved through the terminal. We will look at two ways: using nmcli (NetworkManager) and via hostapd.
Method 1: Via NetworkManager (nmcli)
This is the fastest method if your distribution uses NetworkManager (most modern versions Ubuntu, Fedora, Linux Mint). Run the commands:
sudo nmcli dev wifi hotspot ifname wlp3s0 ssid "LinuxHotspot" password "12345678"
Where:
wlp3s0— the name of your Wi-Fi adapter (you can find it out with the commandip aoriwconfig).LinuxHotspot— network name.12345678— password.
To stop distribution, do:
sudo nmcli dev disconnect wlp3s0
Method 2: Via hostapd (for advanced users)
If NetworkManager does not support your adapter, use hostapd. Install packages:
sudo apt install hostapd dnsmasq
Then create a config file /etc/hostapd/hostapd.conf with the following content:
interface=wlp3s0driver=nl80211
ssid=MyLinuxAP
hw_mode=g
channel=6
wpa=2
wpa_passphrase=12345678
wpa_key_mgmt=WPA-PSK
Start the access point:
sudo systemctl unmask hostapdsudo systemctl enable hostapd
sudo systemctl start hostapd
To configure DHCP (IP address distribution), edit /etc/dnsmasq.conf and add:
interface=wlp3s0
dhcp-range=192.168.100.100,192.168.100.200,255.255.255.0,24h
Restart the service:
sudo systemctl restart dnsmasq
⚠️ Attention: On some laptops (for example, with adapters Broadcom)hostapdmay not work due to proprietary drivers. In this case usecreate_ap— script for simplified setup:git clone https://github.com/oblique/create_apcd create_ap
sudo make install
sudo create_ap wlp3s0 eth0 MyLinuxAP 123456785. Using third-party programs to distribute Wi-Fi
If the built-in tools Windows or Linux do not work, specialized utilities will come to the rescue. They offer advanced settings (channel selection, speed limit, device blacklist) and often solve driver problems.
Program Platform Features Link Connectify Hotspot Windows Support for 3G/4G modems, adblock, traffic monitoring Official website MyPublicWiFi Windows Free, simple interface, connection logging Download Virtual Router Plus Windows Open source, WPA2 support Softonic Linux AP Linux GUI for hostapd, multiple SSID supportGitHub Example setup in Connectify Hotspot:
- Download and install the program (there is a free version with limitations).
- In the field
Internet to Shareselect a source (egEthernet).- Set the network name (
SSID) and password.- Tab
Advanced Settingsallows you to select a channel (recommended6for2.4 GHzor36for5 GHz).- Click
Start Hotspot.Benefits of third party programs:
- 🔹 They work even if the built-in “Mobile Hotspot” is disabled by system policies.
- 🔹 Support guest networks with limited access to local resources.
- 🔹 Can be customized traffic limit for connected devices.
How to bypass the restriction on Wi-Fi distribution in corporate versions of Windows?
In some builds Windows 10/11 Pro or Enterprise The Mobile Hotspot feature can be blocked via Group Policy. To unlock it:
- Click
Win + R, entergpedit.msc.- Go to
Computer Configuration → Administrative Templates → Networks → Wi-Fi Network Connections.- Find the option "Prohibit the use of the Internet connection for shared connections" and set it to "Disabled".
If
gpedit.mscabsent (in Windows Home), use Registry Editor (regedit) and delete the keyHKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\NetworkConnections\NC_ShowSharedAccessUI.6. Solving typical problems when distributing Wi-Fi
Even with proper configuration, Internet distribution from a laptop may not work properly. Here are the most common errors and how to fix them:
Problem Reason Solution "The hosted network could not be started" Outdated Wi-Fi driver or adapter does not support SoftAPUpdate the driver via Device Manager or from the manufacturer's website Devices connect, but the Internet does not work Sharing not enabled or IP address conflict Check your sharing settings (Section 2) or reset your network settings: netsh int ip resetLow upload speed Channel overloaded 2.4 GHzor provider restrictionsSwitch to 5 GHz(if the adapter supports) or change the channel manually"Network without Internet access" DHCP server does not assign IP addresses Set a static IP manually (for example, 192.168.137.1for the host and192.168.137.100-200for clients)If the laptop does not distribute Wi-Fi after the update Windows, try:
- Roll back the adapter driver to a previous version.
- Perform a network reset:
Settings → Network and Internet → Status → Network reset.- Install the driver in compatibility mode Windows 8.
If none of the methods worked, check if your Wi-Fi adapter supports the AP (Access Point). You can find out with the command
netsh wlan show drivers— look for the line “Hosted network support: yes.”7. Security when distributing Wi-Fi from a laptop
By turning your laptop into an access point, you open up potential access to your local network. Follow these rules to minimize risks:
- 🔐 Always use WPA2-PSK or WPA3 (never leave the network open).
- 🔐 Change your password after each public use (for example, in a cafe or hotel).
- 🔐 Turn off distribution when it is not needed - this will reduce the load on the battery and processor.
- 🔐 Turn on the firewall (
Control Panel → Windows Defender Firewall).- 🔐 If you distribute the Internet in a public place, use a VPN on your laptop (for example, ProtonVPN or Windscribe).
Important: When distributing the Internet through a mobile hotspot, your laptop becomes vulnerable to Man-in-the-Middle (MITM) attacks. An attacker can intercept traffic if they connect to your network. To avoid this, regularly check the list of connected devices and use complex passwords (for example,
k7#pL9!xQ2$vinstead of12345678).If you distribute Internet from a laptop to work or school, consider creating guest network (in Windows this is done through
Control Panel → Network and Sharing Center → Advanced sharing settings). This will limit connected devices' access to your local folders and printers.FAQ: Frequently asked questions about distributing the Internet from a laptop
Is it possible to distribute Wi-Fi from a laptop if it is itself connected to another Wi-Fi network?
Yes, but with reservations. B Windows this is only possible if the underlying network uses
WPA2, notWPA3or enterprise authentication. On macOS And Linux There are no such restrictions, but the distribution speed will be lower due to the double load on the adapter.To improve stability, connect your laptop to the Internet via cable (
Ethernet), and use Wi-Fi only for distribution.Why does my laptop get very hot and discharge after distributing Wi-Fi?
A Wi-Fi adapter in access point mode consumes significantly more energy than in normal mode. In addition, the laptop processor is loaded by processing network packets. To reduce the load:
- Connect your laptop to a power outlet.
- Close resource-intensive programs (for example, Photoshop or games).
- Limit the number of connected devices (optimally - no more than 5).
- Use a cooling pad.
How to distribute the Internet from a laptop to a Smart TV or set-top box (Xbox, PlayStation)?
Connection process Smart TV or a game console is no different from connecting a smartphone:
- Start Wi-Fi distribution on your laptop (by any of the described methods).
- On your TV or set-top box, open your network settings.
- Select the created network and enter the password.
If the device does not connect:
- Check if it supports
WPA2(some older models Samsung TV work only withWEP, which is unsafe).- Try changing the Wi-Fi channel to
6or11(they are less overloaded).- Disable power saving for the Wi-Fi adapter on your laptop (
Device Manager → Network Adapters → Properties → Power Management).Is it possible to distribute the Internet from a laptop at 5 GHz?
Yes, if your Wi-Fi adapter supports dual-band mode (
2.4 GHz + 5 GHz). To force enable5 GHz:
- B Windows through
CMDadd a parameter to the commandhwmode=a(when usinghostapdin Linux).- B macOS select a channel from the range
36–165in the sharing settings.Please note that
5 GHzhas a smaller coverage area, but high speed - this is important for transmitting video to Smart TV or online games.How can I make Wi-Fi distribution turn on automatically when I start my laptop?
B Windows:
- Create a file
start_hotspot.batwith lines:@echo offnetsh wlan start hostednetwork
timeout /t 5- Place it in a folder
C:\Users\Your_name\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup.B Linux add the run command to
crontab:@reboot sudo create_ap wlp3s0 eth0 MyLinuxAP 12345678B macOS use
launchdto create a service.