Connecting a TV to the internet via a laptop is a practical solution when a router or cable connection is unavailable. This method allows you to stream movies from online cinemas, watch YouTube on a big screen, or update Smart TV firmware without the hassle of cables. However, not everyone knows that modern laptops can function as full-fledged Wi-Fi hotspots while maintaining a stable connection to the main network.
In this article, we will look at three main methods of distributing the Internet - through built-in tools Windows, macOS And LinuxWe'll also consider alternative solutions for cases where standard methods don't work. We'll pay special attention to configuration. Smart TV from popular brands (Samsung, LG, Sony), as their interfaces may differ. You'll also learn how to avoid common errors, such as when the TV "sees" the network but doesn't connect.
Before you begin, please check two key conditions: your laptop must have Wi-Fi adapter (Almost all modern models have it), and the TV must support a wireless connection (even budget models released after 2018 usually support this). If any of these conditions are not met, you'll have to use alternative methods, which we'll also discuss.
1. Sharing Wi-Fi using built-in Windows tools (without software)
The easiest way to turn your laptop into a hotspot is to use the feature Mobile hotspot, available in Windows 10 And Windows 11This method does not require installing additional software and works on most devices with adapters. Wi-Fi 4/5/6The main advantage is automatic IP address and DHCP management, which eliminates the need for manual configuration.
To activate the hotspot:
- 🖥️ Open
Settings → Network & Internet → Mobile Hotspot(V Windows 11 the path may differ:Settings → Networks & Internet → Access Point). - 🔄 In the drop-down menu
Sharingselect the connection through which the laptop receives the Internet (for example,EthernetorWi-Fi, if you are connected to a different network). - 📶 Click
Changenext to the fieldsNetwork nameAndPasswordto set convenient parameters (the password must be at least 8 characters long). - 🔘 Toggle the slider
Allow use of my internet connectionin positionOn.
After this, your TV should see the new network in the list of available connections. If this doesn't happen, check if it's turned on. Wi-Fi adapter on the laptop (sometimes it turns off after device Manager or function keys, for example, Fn + F2). Also, make sure that the network search mode is activated on your TV - on some models Samsung this is done through Settings → General → Network → Open network settings.
The laptop is connected to the Internet (via cable or another Wi-Fi network)
The Wi-Fi adapter is enabled and working (check in Device Manager)
The TV is in Wi-Fi network search mode.
The hotspot password has been entered correctly (case sensitive!)
-->
⚠️ Attention: On some laptops with Wi-Fi 6 (For example, Intel AX200 or Killer Wi-Fi) The hotspot function may conflict with the drivers. If the network is not created, update the adapter driver via device Manager or the manufacturer's website.
2. Alternative method for Windows: Command Prompt
If the interface Mobile hotspot does not work (for example, due to limitations of the corporate version of Windows), you can create an access point via command lineThis method gives you more control over network settings, such as setting a specific Wi-Fi channel or encryption type.
Open Command Prompt as Administrator (press Win + X and select Terminal (administrator)) and enter the following commands in sequence:
netsh wlan set hostednetwork mode=allow ssid="Network Name" key="Network Password" keyUsage=persistent
netsh wlan start hostednetwork
Replace Network Name And NetworkPassword to your values. After executing the second command, the network will be active. To grant it internet access:
- Open
Control Panel → Network and Sharing Center → Change adapter settings. - Find the connection through which the laptop receives the Internet (for example,
Ethernet), right-click on it and selectProperties. - Go to the tab
Accessand put a check mark next toAllow other network users to share your Internet connection. - In the drop-down menu, select the network you created (it will be called
Local Area Connection* X, where X is a number).
If after these steps the TV connects to the network, but the internet still doesn't work, check your firewall settings: sometimes it blocks connection sharing. Add an exception for svchost.exe in the firewall rules or temporarily disable it for the test.
What to do if the netsh command doesn't work?
If after entering the command netsh wlan start hostednetwork an error appears Failed to start hosted network, the reasons may be the following:
1. The Wi-Fi adapter driver does not support the hosted network mode (relevant for some chip-based adapters) Realtek).
2. Service Automatic WLAN configuration disabled. Please start it through services.msc.
3. Conflict with antivirus (for example, Kaspersky or Avast may block network creation).
Solution: Try updating your driver or use third-party programs like Connectify or MyPublicWiFi.
3. Sharing Wi-Fi from a macOS laptop
On MacBook or other laptops with macOS Sharing the internet is even easier than on Windows. Apple has built in the feature Internet access sharing, which works reliably and supports all modern Wi-Fi standards. The main requirement is that your Mac must be connected to the internet via Ethernet, another Wi-Fi (in bridge mode) or USB modem.
Setup instructions:
- 🍎 Open
System Preferences → Sharing. - 🔄 In the left menu, select
Internet access sharing. - 📡 In the field
Share your connectionPlease specify the internet source (e.g.EthernetorThunderbolt Bridge). - 📱 In the section
For computers usingput a tick next toWi-Fi. - ⚙️ Click
Wi-Fi settingsand ask:- Network Name (
SSID) - Channel (recommended)
Autoor6for minimal interference) - Safety:
WPA2/WPA3 Personal - Password (at least 8 characters)
- Network Name (
- 🔘 Check the box to the left of
Internet access sharingand pressStart.
On your TV, select the created network and enter the password. If the connection fails, check if it's blocked. macOS firewall traffic. To do this, temporarily disable it in System Preferences → Security & Privacy → Firewall.
⚠️ Attention: On some models MacBook Pro with chips Apple M1/M2 A problem may arise when the network is created, but the internet connection isn't transmitted to the connected devices. In this case, resetting the network settings via System Preferences → Network → Advanced → TCP/IP → Renew DHCP.
4. Internet distribution from Linux (Ubuntu, Mint, Fedora)
Users Linux can distribute Wi-Fi through a terminal or graphical utilities like NetworkManagerWe will consider a universal method using hostapd And dnsmasq, which works on most distributions, including Ubuntu 22.04+ And Fedora 36+.
First, install the required packages:
sudo apt update && sudo apt install hostapd dnsmasq -y # For Debian/Ubuntu
sudo dnf install hostapd dnsmasq -y # For Fedora
Next, configure hostapd — a program that converts your Wi-Fi adapter into an access point. Create a configuration file:
sudo nano /etc/hostapd/hostapd.conf
Paste the following template into it (replace YourSSID And YourPassword to their values):
interface=wlan0driver=nl80211
ssid=YourSSID
hw_mode=g
channel=6
wmm_enabled=0
macaddr_acl=0
auth_algs=1
ignore_broadcast_ssid=0
wpa=2
wpa_passphrase=YourPassword
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP
rsn_pairwise=CCMP
Then set up dnsmasq to distribute IP addresses. Edit the file /etc/dnsmasq.conf:
sudo nano /etc/dnsmasq.conf
Add the following lines:
interface=wlan0
dhcp-range=192.168.100.100,192.168.100.200,255.255.255.0,24h
Now start the services:
sudo systemctl unmask hostapdsudo systemctl enable hostapd
sudo systemctl start hostapd
sudo systemctl start dnsmasq
To provide internet access, enable packet forwarding:
sudo sysctl net.ipv4.ip_forward=1
sudo iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
If everything is configured correctly, the TV will detect the new network. To ensure permanent operation, add rules. iptables to startup and configure startup hostapd/dnsmasq at system startup.
5. Setting up the connection on the TV
Once you've created a hotspot on your laptop, all that's left to do is connect your TV to it. The process varies slightly depending on the manufacturer and model. Smart TV, but the general scheme is the same. Let's look at instructions for popular brands.
| Manufacturer | Path to Wi-Fi settings | Peculiarities |
|---|---|---|
| Samsung (Tizen OS) | Settings → General → Network → Open network settings → Wireless network |
On 2020+ models, you may need to confirm via a button on the remote. |
| LG (webOS) | Settings → Network → Wi-Fi connection |
Supports WPA3, but may not see networks with a hidden SSID |
| Sony (Android TV/Google TV) | Settings → Network & Internet → Wi-Fi |
May request firmware update upon first connection |
| Xiaomi (PatchWall) | Settings → Network → Wi-Fi |
Automatically connects to networks with saved passwords (if another Xiaomi device was previously connected) |
If your TV doesn't see the network, try the following:
- 🔄 Restart the access point on your laptop (turn the hotspot off and on).
- 📡 Check if it is hidden
SSIDyour network (in Windows/macOS/Linux settings). - 🔋 Make sure Wi-Fi is turned on on your TV (some models have a separate button on the remote).
- 🔄 Change the Wi-Fi channel in the access point settings (for example, from
6on11), if there is interference from other networks.
⚠️ Attention: On TVs Samsung series QLED 2021-2023 an error may occur"Unable to obtain IP address"when connecting to access points with WindowsSolution: In the hotspot settings, change the IP address range to192.168.137.1(default) or disable IPv6 in the connection properties.
6. Solving typical problems
Even with proper setup, difficulties can arise. Let's look at the most common errors and how to fix them.
Problem 1: The TV connects to the network, but the Internet does not work.
- Check if it is enabled
Internet access sharingin the connection settings (see the section on Windows). - Make sure that the laptop is not in sleep mode.
On the plane. - Check your settings DNS: Sometimes manual installation of DNS from Google helps (
8.8.8.8) in the connection properties.
Problem 2: The network is not created (error "Unable to set up mobile hotspot" in Windows).
- Update your Wi-Fi adapter driver via
device Manager. - Try turning it off antivirus (For example, Avast or ESET may block network creation).
- Run the command prompt as administrator and run:
netsh wlan set hostednetwork mode=disallownetsh wlan set hostednetwork mode=allowThen try creating the network again.
Problem 3: Slow internet speed or connection drops.
- Check if your laptop is using two Wi-Fi networks simultaneously (for example, connected to a router and sharing the internet). This can cause interference.
- Change the Wi-Fi channel in the access point settings (optimal channels:
1,6,11For2.4 GHz). - If the laptop is connected to the Internet via
Wi-Fi, and not a cable, the distribution speed will be lower due to the limitations of the adapter.
7. Alternative methods of distributing the Internet
If standard methods don't work, you can try alternative solutions. These can be useful, for example, if your laptop's Wi-Fi adapter doesn't support access point mode or if software conflicts occur.
Method 1: USB cable (for Android TV).
Some TVs on Android TV (For example, Sony Bravia or Philips) support internet connection via USB cable in mode USB-tetheringTo do this:
- Connect your laptop to your TV via
USB-CorMicro-USB(OTG adapter may be required). - Activate the mode on your laptop
USB modemin the network settings (in Windows this is done throughSettings → Network & Internet → Mobile Hotspot → USB). - On your TV, in the network settings, select
USB connection.
Method 2: Using a smartphone as a bridge.
If your laptop can't distribute Wi-Fi, but you have a smartphone that supports it Wi-Fi Direct or USB-tethering, you can organize a chain: Laptop → Smartphone (via USB or Wi-Fi) → TV. For example:
- Connect your smartphone to your laptop via
USBand activateUSB modem. - Turn on your smartphone
Wi-Fi hotspot. - Connect your TV to the network created by your smartphone.
Method 3: Powerline adapters.
If the TV and laptop are in different rooms and the Wi-Fi signal is weak, you can use Powerline adapters (For example, TP-Link AV600). They transmit the Internet through electrical wiring:
- One adapter connects to the laptop via
Ethernet. - The second one is to the TV (if it has one)
LAN port). - Both adapters are plugged into sockets of the same electrical network.
FAQ: Frequently Asked Questions
Is it possible to share the Internet from a laptop if it is connected to Wi-Fi?
Yes, but it depends on the capabilities of the Wi-Fi adapter. Most modern adapters support the mode. AP+STA (connecting to the network and distributing data at the same time), but the speed may decrease. In Windows 10/11, this works through Mobile hotspot, on macOS - via Internet access sharing (select source connection as Wi-Fi). On Linux, manual configuration will be required. hostapd indicating two interfaces.
The TV connects to the network, but says "No internet access." What should I do?
The reasons may be as follows:
- It's not turned on on the laptop.
Internet access sharingfor the created connection. - DNS servers aren't responding. Try manually entering your DNS.
8.8.8.8or1.1.1.1in the TV network settings. - Your firewall or antivirus is blocking traffic. Temporarily disable them to check.
- IP addresses are conflicting. Change the IP range in the hotspot settings (for example, to
192.168.10.0/24).
How to increase the signal range of an access point?
If the TV is far from the laptop, try:
- Move the laptop closer to the TV or vice versa.
- Use
Wi-Fi repeater(repeater) connected to the hotspot network. - Change the Wi-Fi channel to a less busy one (use utilities like Wi-Fi Analyzer for ether analysis).
- If the laptop adapter supports
5 GHz, create a network in this range - it is less susceptible to interference, but passes through walls worse.
Is it possible to share internet from a laptop to several TVs at the same time?
Yes, but with some reservations:
- The standard Windows/macOS/Linux access point supports connections up to
8-10 devices, but the actual throughput depends on the adapter. - When connecting multiple TVs (for example, for synchronous viewing), lags may occur due to limited bandwidth.
- On Linux You can increase the connection limit by editing the parameter
max_num_stain the confighostapd.
Will my laptop drain faster when using Wi-Fi?
Yes, Wi-Fi sharing increases the load on the processor and adapter, leading to increased power consumption. In practice:
- On Windows laptops with Intel Core i5/i7 discharge accelerates by
15-20%. - On macOS (chips Apple M1/M2) the impact is minimal due to energy consumption optimization.
- To reduce the load, plug your laptop into a power outlet or reduce the screen brightness.