Need to quickly share internet with your phone or tablet, but don't have a router handy? Or want to create a separate network for guests without sharing your main Wi-Fi? It's easy to turn a computer or laptop into a full-fledged access point — you don't need any additional devices for this, just the right settings. In this article, we'll look at all the working methods for Windows 10/11, macOS And Linux, as well as typical errors that interfere with distribution.
Many people mistakenly think that this requires special software or in-depth knowledge of networks. In fact, Built-in OS tools perform just as well as third-party programs, and sometimes even more reliable. The main thing is to know the nuances: from choosing the right frequency range (2.4 GHz or 5 GHz) to setting up a firewall that could block connections. We've tested all methods on current OS versions and compiled checklists to save you time.
1. Preparing your computer for Wi-Fi distribution: what to check before you start
Before setting up a virtual access point, make sure your computer is physically capable of doing so. The main requirement is a Wi-Fi adapter., which supports the mode SoftAP (Software Access Point). Modern laptops and most PCs with Wi-Fi modules (including external USB adapters) support this, but there are exceptions.
How to check compatibility:
- 🔍 Open device Manager (
Win + X → Device Manager) and find the sectionNetwork adaptersThe list should contain an adapter with the words Wireless, Wi-Fi or 802.11. - 📋 If you have an adapter but sharing isn't working, update the driver. To do this, right-click the device →
Update driver → Automatic search. - ⚡ For USB adapters (For example, TP-Link TL-WN725N) check if the model supports the mode AP — this is indicated in the specifications on the manufacturer’s website.
The second critical point is Internet sourceA computer can only distribute the traffic it receives. This could be:
- 🌐 Connection via Ethernet (cable from a router or provider).
- 📡 Mobile Internet via USB modem (4G/5G-dongle).
- 📱 Connecting via USB to a smartphone in mode USB modem.
⚠️ Attention: If you are connected to the Internet via another Wi-Fi (for example, from a router), you won't be able to share it with the same adapter. In this case, you'll need to either use Ethernet or buy a second Wi-Fi adapter.
And the last step of preparation is - antivirus and firewall checkSome programs (for example, Kaspersky Internet Security or Avast) block the creation of virtual networks. Temporarily disable them or add an exception for the process. svchost.exe (V Windows).
2. Method 1: Sharing Wi-Fi via the command line (Windows)
This is the most universal method that works on all versions. Windows from 7 to 11. Advantage — does not require installation of third-party software and provides full control over network settings. Flaw — Commands must be entered manually, but we've simplified the process with ready-made templates.
Open command prompt as administrator (Win + X → Terminal (Admin)) and run the following commands in order:
- Network creation:
netsh wlan set hostednetwork mode=allow ssid="MyWiFi" key="12345678" keyUsage=persistentReplace
MyWiFito the desired network name, and12345678— password (minimum 8 characters). - Distribution start:
netsh wlan start hostednetwork - Allow Internet Sharing:
- Open
Control Panel → Network and Internet → Network and Sharing Center. - Click on your primary connection (Ethernet or USB modem) →
Properties → Access. - Check the box
Allow other network users to share your Internet connectionand select the created network (Local Area Connection* X).
- Open
If everything is done correctly, the following message will appear in the command line after launch: "The hosted network has started."Now you can connect to your Wi-Fi from other devices.
⚠️ Note: After restarting your computer, sharing will be disabled. To restart it, simply run the command netsh wlan start hostednetwork (without creating the network again).
Make sure there are no errors in the command line|Check that the network is visible on other devices|Connect to the network and try opening a website|If there is no internet, check the sharing settings-->
3. Method 2: Sharing via Mobile Hotspot (Windows 10/11)
In modern versions Windows there is a built-in function Mobile Hotspot, which simplifies setup. Pros: no need to enter commands, the interface is intuitive. Cons: less flexibility (for example, you can't select a Wi-Fi channel manually).
Instructions:
- Open
Settings → Network & Internet → Mobile Hotspot. - In the field
SharingSelect your primary internet connection (Ethernet or USB modem). - Click
Changeto set the network name (SSID) and password (minimum 8 characters). - Turn on the switch
Mobile hotspot.
If the power button is inactive or an error appears, the reasons may be as follows:
- 🔌 The Wi-Fi adapter does not support the mode SoftAP (the solution is to update the driver or buy an external adapter).
- 🔒 Your antivirus or firewall is blocking the feature (the solution is to temporarily disable protection).
- 🔄 You already have distribution running via the command line (the solution is to disable it with the command
netsh wlan stop hostednetwork).
Important: In Windows 11, the Mobile Hotspot feature may turn off automatically when idle. To prevent this, open Settings → Network & Internet → Wi-Fi → Manage known networks, find your network and disable the "Connect automatically when the device is in range" option.
What should I do if Mobile Hotspot won't turn on?
If the switch is inactive, try:
1. Update the Wi-Fi adapter driver manually (download it from the manufacturer's website, not via Windows Update).
2. Start the "WLAN Automatic Configuration Service" service (services.msc → WlanSvc → Run).
3. Check if the adapter is disabled in the BIOS (relevant for some laptops) Lenovo And HP).
4. Method 3: Sharing Wi-Fi on macOS and Linux
For users MacBook or PC with Linux Wi-Fi sharing is also available, but the setup is different. Let's look at both options.
For macOS (Monterey, Ventura, Sonoma)
Apple has simplified the process to a minimum:
- Open
System Preferences → Sharing. - In the left menu, select
Public Internet. - In the field
General connectionSpecify the Internet source (Ethernet or USB modem). - In the field
For computers usingmarkWi-Fi. - Click
Wi-Fi settings, set the network name (SSID) and password, then save. - Turn on
Public Internetflag on the left.
If option Wi-Fi inactive, check:
- 🔌 Internet connection (without it, distribution is not possible).
- 🔄 No other active access points (for example, via Terminal).
For Linux (Ubuntu, Debian, Fedora)
In most distributions, distribution is configured through nmcli (Network Manager) or hostapdLet's consider a simple method with nmcli:
- Open a terminal and create an access point:
nmcli dev wifi hotspot ifname wlp3s0 ssid "MyLinuxWiFi" password "12345678"Replace
wlp3s0the name of your Wi-Fi adapter (you can find it out with the commandip a). - Allow internet sharing:
sudo sysctl net.ipv4.ip_forward=1sudo iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADEHere
eth0- your main connection (Ethernet).
To make distribution start automatically at system startup, add commands to rc.local or create a service systemd.
| OS | Max devices | 5 GHz support | Autostart |
|---|---|---|---|
| Windows 10/11 | up to 8 | Yes (depending on adapter) | Through the task scheduler |
| macOS | up to 10 | Yes | Through settings |
| Linux (nmcli) | up to 15 | Yes | Via systemd |
5. Common mistakes and their solutions
Even with the correct setup, Wi-Fi sharing may not work. We've compiled TOP 5 mistakes and ways to correct them.
Error 1: "The hosted network failed to start" (Windows)
Reasons and solutions:
- 🔧 The driver does not support SoftAP mode.Solution: Update the driver from the manufacturer's website (not through Windows Update!). For adapters Realtek And Broadcom Manual installation of the driver often helps Microsoft (in the device manager →
Update driver → Search this computer → Select from the list→Standard Wi-Fi adapter). - 🔄 WLAN AutoConfig service is disabledSolution: Run it through
services.msc(findWlanSvc→Launch).
Error 2: Devices connect, but there is no internet connection
The problem is usually in the sharing settings:
- 🌐 Check that in
Network and Control Centeris enabled for your primary connectionGeneral access(cm. Method 1). - 🔒 Make sure your antivirus isn't blocking traffic. Add an exception for
svchost.exe. - 🔄 Restart the service
Internet Connection Sharing (ICS)throughservices.msc.
Error 3: Network not visible on other devices
Possible reasons:
- 📡 The Wi-Fi adapter is in the mode
802.11n(2.4 GHz), and the device searches for networks only in5 GHzSolution: Specify the standard explicitly on the command line:netsh wlan set hostednetwork mode=allow ssid="MyWiFi" key="12345678" keyUsage=persistent standard=802.11n - 🔇 The Wi-Fi channel is overloaded. Try changing it manually (for Windows you will need third-party software like NetSetMan).
⚠️ Warning: If you use VPN On your computer, the traffic you share will also go through the VPN. This may slow down your speed or block access to some websites (for example, Netflix when connecting via a foreign VPN).
6. How to boost the signal and increase the distribution speed
If your devices connect, but the speed is slow or the connection keeps dropping, try these optimization methods:
- 📶 Change Wi-Fi channel. By default Windows selects the channel automatically, but it may be overloaded. Use the utility Wi-Fi Analyzer (For Android) or NetSpot (For macOS/Windows) to find a free channel and set it manually via the command line:
netsh wlan set hostednetwork channel=6 - 🔋 Disable power saving for your Wi-Fi adapter. IN Windows:
Device Manager → Network Adapters → [your adapter] → Properties → Power Management→ uncheck the boxAllow the computer to turn off this device to save power. - 🖥️ Use an external Wi-Fi adapterBuilt-in modules in laptops are often weaker than external ones. For example, ASUS USB-AC68 gives speed up to
1300 Mbpsand supports5 GHz.
For Linux You can increase the transmission power (within legal limits):
sudo iwconfig wlp3s0 txpower 20
Where 20 — power in dBm (usually maximum 30, but exceeding it may violate local laws).
7. Security: How to protect your access point
By sharing Wi-Fi from your computer, you're opening up access to your local network. To avoid risks, follow these guidelines:
- 🔐 Use a complex password. Minimum 12 characters with numbers, capital letters and special characters (e.g.
WiFi@Home2026!). Don't use simple combinations like12345678orqwerty. - 🔄 Turn off distribution when it is not neededThis will reduce the risk of unauthorized connection.
- 🛡️ Set up your firewall. IN Windows open
Windows Defender Firewall → Advanced settingsand create a rule to block incoming connections to local ports (for example,445,139), if they are not used. - 📡 Hide the SSID (network name)This will not provide 100% protection, but it will reduce the number of connection attempts. Windows You can hide the network only through third-party utilities (for example, MyPublicWiFi).
For Linux You can restrict access by MAC addresses:
sudo iptables -A INPUT -m mac --mac-source 00:11:22:33:44:55 -j ACCEPT
sudo iptables -A INPUT -p tcp --dport 80 -j DROP
Where 00:11:22:33:44:55 — MAC address of the authorized device.
8. Alternative programs for distributing Wi-Fi
If built-in tools don't work, you can use third-party software. We tested five popular programs and selected the best:
| Program | OS support | Pros | Cons |
|---|---|---|---|
| MyPublicWiFi | Windows 7-11 | Simple interface, support hiding SSID | Advertising in the free version |
| Connectify Hotspot | Windows 10/11 | 3G/4G distribution, traffic monitoring | Paid license for all functions |
| Baidu WiFi Hotspot | Windows, macOS | Support for Cyrillic SSIDs, autostart | Closed project (last updated in 2019) |
For macOS will also work WiFi Explorer - it allows you to flexibly configure channels and signal strength.
⚠️ Attention: Some programs (for example, mHotspot) may contain adware. Download them only from official websites and check the installation files through VirusTotal.
FAQ: Frequently asked questions about sharing Wi-Fi from your computer
Is it possible to share Wi-Fi and be connected to another network at the same time?
No, not if you have only one Wi-Fi adapter. It can operate in either client mode (connecting to the network) or access point mode (distributing). The solution is to use a second adapter (external USB) or connect to the internet via cable.
Why is the upload speed lower than the internet speed on my computer?
This is normal: with software distribution, some resources are spent on processing packets. Typical overhead is 10-30%. Speed is also limited by the Wi-Fi standard: for example, 802.11n (2.4 GHz) gives maximum 150 Mbps, A 802.11ac (5 GHz) - up to 867 Mbps.
Is it possible to share Wi-Fi from a computer? Android TV or Smart TV?
Yes, but there are some nuances:
- 📺 Android TV (For example, Nvidia Shield or Xiaomi Mi Box) connects without problems.
- 📺 TVs on Tizen (Samsung) or webOS (LG) may not see networks in range
5 GHz- use2.4 GHz. - 📺 For Sony Bravia Sometimes you need to disable MAC address filtering in your TV settings.
How to share Wi-Fi from a computer if the Internet is via a USB modem (4G/5G)?
The algorithm is the same, but there are two key points:
- In the sharing settings (
Network and Sharing Center) select the connection that matches your modem (usually it isEthernetorNDIS). - Some modems (eg. Huawei E3372) block distribution. The solution is to enable the mode
Only modemin the modem settings (via the web interface)192.168.8.1).
Is it legal to share Wi-Fi from a computer in public places?
In most countries (including Russia) Sharing your own internet is not prohibited., but there are nuances:
- 🏢 If you provide internet access in a cafe, hotel, or other public place, it may be considered telecommunications services—you need a license for this.
- 📵 It is prohibited to distribute internet received from a provider if this is contrary to the contract (for example, some tariffs prohibit "retransmission of traffic").
There are no restrictions for home use.