How to Turn Off Proxy on Samsung Devices
As a senior proxy specialist, I often see users confuse "disabling a proxy" with "disconnecting a VPN." While both route traffic, a proxy configured at the operating system level (often found in Wi-Fi settings) acts as a man-in-the-middle for specific connections. If you are experiencing "Cannot Connect to the Internet" errors on a Samsung phone or TV, a stale proxy setting is the most common culprit.
This guide covers the technical steps to remove these settings across the Samsung ecosystem.
1. Disabling Proxy on Samsung Android Phones (One UI)
Modern Samsung Galaxy devices (S8 through S24 and Fold/Flip series) utilize the One UI skin over Android. Proxy settings here are tied to specific Wi-Fi Access Points (SSIDs). You cannot set a global "device-wide" proxy for all connections (Mobile Data and Wi-Fi) simultaneously within the standard settings; you must do it per Wi-Fi network.
Step-by-Step Walkthrough:
1. Open Settings: Swipe down from the top of your screen to access the Quick Panel and tap the Gear icon. 2. Network Selection: Tap on Connections. Select Wi-Fi. 3. Access Point Settings: You will see a list of available networks. Find the network you are currently connected to (it has a blue indicator). Do not just tap the name. Instead, tap the Gear icon located next to the network name. 4. Locate Proxy Menu: Scroll down to the bottom of the network details page. Look for a section labeled Proxy or Advanced. * *Note:* On older Samsung versions (Android 9/10), you might see "Proxy" directly. On Android 11/12/13/14, you may need to tap "View More" or scroll to the "Advanced" section. 5. Switch to None: Tap on the Proxy menu option. It is likely set to "Manual." Change the dropdown or toggle to "None". 6. Save: A "Save" prompt may appear, or it may save automatically. Disconnect and reconnect the Wi-Fi to ensure the settings take effect.
Why is the Proxy stuck?
Sometimes, the "None" option is greyed out. This usually happens if a Private DNS is active, which acts as a secure proxy layer. To fix this:
- Go to Connections > Other Connection Settings > Private DNS.
- Ensure it is set to Automatic or Off, rather than "Private DNS provider hostname."
- Check for Apps: Go to Settings > Apps. Look for apps with names like "Device Policy," "Secure WiFi," or "Proxy Manager."
- Factory Reset: As a last resort, if the proxy persists without any app installed, perform a Factory Data Reset. Do not restore from a backup immediately; test the fresh device to ensure the backup file isn't carrying the corrupted configuration.
2. Disabling Proxy on Samsung Smart TVs (Tizen OS)
Samsung Smart TVs (Tizen OS) use proxy settings to route app traffic. If you previously used a proxy to bypass geo-restrictions and no longer need it, or if the proxy server is down, your apps (Netflix, YouTube, Prime Video) will fail to load.
2025 TV Menu Navigation:
1. Remote Input: Press the Home button on your Samsung remote. 2. Settings: Navigate to the left sidebar and select Settings (Gear icon). 3. Network: Select General > Network. 4. Network Status: Select Network Status to open the connection diagnostics. 5. IP Settings: You will see your connection type (Wireless or Wired). Highlight it and select IP Settings. 6. Proxy Setting: Scroll down using the remote's directional pad until you see Proxy Setting. 7. Disable: * If it says "Enter," the IP address field will be populated. Select the field, clear the numbers (or leave it blank), and select Done/Enter. * If there is a toggle, switch it to Off. * *Tech Note:* In some regions, setting the proxy IP to 0.0.0.0 forces the TV to bypass the proxy check.
3. The Technical Difference: Proxy vs. VPN vs. APN
Users often confuse these three distinct technologies on Samsung devices.
Comparison Table
| Feature | Proxy (Wi-Fi) | VPN (App/System) | APN (Mobile Data) | | :--- | :--- | :--- | :--- | | Scope | Configured per Wi-Fi SSID. | Tunnels all device traffic (App level). | Configured per Mobile Carrier. | | Protocol | HTTP/HTTPS (mostly). | Often generic IP (UDP/TCP). | Point-to-Point Protocol. | | Location in Settings | Wi-Fi > [Network Name] > Advanced. | Settings > Connections > VPN. | Settings > Connections > Mobile Networks. | | Encryption | Usually None (unless HTTPS). | Strong Encryption (AES-256). | Carrier dependent. |
Disabling Proxy on Mobile Data (APN)
If your Samsung phone is trying to use a proxy on 4G/5G/LTE, the setting is hidden deep in the Access Point Names (APN). This is rare for consumers but common in enterprise corporate phones.
1. Go to Settings > Connections > Mobile Networks > Access Point Names. 2. Tap the active APN (usually has a dot or selector next to it). 3. Scroll down to the Proxy and Port fields. 4. Clear the text in the Proxy field and set Port to 0 (or leave empty). 5. Tap the three dots (Menu) > Save.
4. Troubleshooting: Proxy Settings Keep Resetting
A common issue reported by Samsung users is the proxy settings turning back "On" automatically after a reboot.
Cause: Knox or MDM (Mobile Device Management)
If you use a Samsung device provided by an employer, or if you downloaded a malicious "optimization" app, the device might be governed by Samsung Knox policies.
5. Python Script: Automating Proxy Verification
For developers managing fleets of Samsung devices, checking if a proxy is enabled via ADB (Android Debug Bridge) is more efficient than tapping through screens.
This Python snippet uses adb shell to query the current Wi-Fi configuration for a proxy setting.
import subprocess
import re
def get_samsung_proxy_status(): try: # Get the currently connected Wi-Fi interface and config # On modern Samsung/Android, we use 'dumpsys connectivity' result = subprocess.check_output(['adb', 'shell', 'dumpsys', 'connectivity']) output = result.decode('utf-8')
# Regex to find proxy settings in the output # Looking for "Proxy: [type] [host]:[port]" proxy_match = re.search(r'Proxy:\s+(\S+)', output)
if proxy_match: proxy_info = proxy_match.group(1) if "NONE" in proxy_info or "DIRECT" in proxy_info: print("[Status]: Proxy is DISABLED (Direct Connection)") else: print(f"[Status]: Proxy is ENABLED -> {proxy_info}") else: print("[Status]: No proxy information found in connectivity dump.")
except subprocess.CalledProcessError as e: print(f"Error executing ADB: {e}") except FileNotFoundError: print("Error: 'adb' command not found. Ensure ADB is installed and in PATH.")
Run the check
if __name__ == "__main__": get_samsung_proxy_status()
How to use this:
1. Enable Developer Options on your Samsung phone. 2. Turn on USB Debugging. 3. Connect to PC and install ADB drivers. 4. Run this script. It will output whether the OS believes a proxy is active on the current transport.
Conclusion
Disabling a proxy on a Samsung device is a straightforward process of accessing the "Advanced" properties of your network connection. Whether you are debugging a Samsung Galaxy S24 or a 2025 Smart TV, the goal is to revert the network configuration to "Direct" or "None." Always ensure you know *why* a proxy was set in the first place—removing a corporate security proxy may restrict your access to internal work resources.