How to Find Proxy Server Address: Windows, Mac, iPhone, Android (2026)
Whether you're troubleshooting a broken connection, setting up a new device, or verifying which proxy your system is using, the proxy server address and port are stored in a predictable location on every major platform. This guide covers every method β system settings, browsers, command line, and provider dashboards β across Windows, macOS, iOS, Android, and Linux.
β‘ Key Takeaways
- On Windows 10/11: Settings β Network & Internet β Proxy.
- On macOS: System Settings β Network β Details β Proxies.
- On iPhone: Settings β Wi-Fi β tap network β HTTP Proxy.
- On Android: Settings β Wi-Fi β tap network β Advanced β Proxy.
- Chrome and Edge open the OS proxy settings β Firefox has its own independent proxy configuration.
- If you use a paid proxy service like Nstproxy, your address, port, and credentials are available directly in the dashboard.
- Mobile proxy settings apply per Wi-Fi network only β cellular data proxies are managed by carriers, not user settings.
What Is a Proxy Server Address?
A proxy server address is the IP address or hostname that identifies a proxy server on a network. Combined with a port number, it tells your device where to route traffic before it reaches the open internet. When a proxy is active, the target website sees the proxy's address β not your real IP.
A full proxy configuration has four components:
- Host / Address β IP address (e.g.
192.168.1.1) or hostname (e.g.gate.nstproxy.io) - Port β numeric port the proxy listens on (e.g.
8080,1080) - Username β for authenticated proxies (most commercial providers require this)
- Password β paired with the username for authentication
If no proxy is configured, your device connects to the internet directly using your ISP-assigned IP. If proxy settings appear blank or show "Off," there is no active proxy on that network interface.[1]
Quick Reference: Where to Find Proxy Settings
| Platform | Path | Command Line Alternative |
|---|---|---|
| Windows 10/11 | Settings β Network & Internet β Proxy | netsh winhttp show proxy |
| macOS | System Settings β Network β [connection] β Details β Proxies | scutil --proxy |
| iPhone (iOS) | Settings β Wi-Fi β tap (i) β HTTP Proxy | N/A |
| Android | Settings β Wi-Fi β tap network β Advanced β Proxy | N/A |
| Linux | Settings β Network β Network Proxy | env | grep -i proxy |
| Chrome / Edge | Settings β System β Open computer's proxy settings | Defers to OS settings |
| Firefox | Settings β General β Network Settings β Settings | Independent from OS |
| Router | Admin panel at 192.168.1.1 β WAN / Advanced |
ipconfig β Default Gateway |
Navigation paths verified against Decodo's 2026 proxy address guide and Oxylabs.
How to Find Proxy Server Address on Windows 10 / 11
Windows maintains two separate proxy configurations: the WinINet proxy (used by most desktop apps and browsers) and the WinHTTP proxy (used by background services and some system components). Both are worth checking when troubleshooting.
- Press
Windows + Ito open Settings. - Go to Network & Internet.
- Click Proxy in the left sidebar.
- Under Manual proxy setup, if "Use a proxy server" is toggled on, the Address and Port fields show your proxy details.
- Under Automatic proxy setup, a script address (PAC URL) may be listed instead.
- Open Command Prompt or PowerShell as Administrator.
- Run the following command:
# Show WinHTTP proxy (background services) netsh winhttp show proxy # Show WinINet proxy (most apps) β reads registry reg query "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer reg query "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable
netsh winhttp set proxy proxy-server="host:port".How to Find Proxy Server Address on macOS
macOS binds proxy settings to individual network services (Wi-Fi, Ethernet). Switching networks swaps or deactivates the proxy automatically β which is why a proxy active on Wi-Fi may not apply on Ethernet.[2]
- Click the Apple menu β System Settings.
- Select Network from the sidebar.
- Click your active connection (Wi-Fi or Ethernet).
- Click Details⦠in the bottom-right.
- Click the Proxies tab.
- Any checked proxy type (Web Proxy HTTP, Secure Web Proxy HTTPS, SOCKS Proxy) shows its address and port on the right side.
# macOS terminal β print all proxy settings at once scutil --proxy # Check environment proxy variables (set by apps or shell config) env | grep -i proxy
How to Find Proxy Server Address on iPhone (iOS)
iOS only supports proxy configuration per Wi-Fi network β there is no system-wide proxy setting for cellular data. If you are on mobile data, proxy settings are managed by your carrier's APN configuration, not accessible from standard user settings.
- Open the Settings app.
- Tap Wi-Fi.
- Tap the (i) information icon next to your connected network.
- Scroll down to the HTTP Proxy section.
- Tap Configure Proxy.
- If set to Manual, the Server (address) and Port fields show your proxy details. If set to Automatic, a PAC URL is shown. If set to Off, no proxy is active on this network.
How to Find Proxy Server Address on Android
Like iOS, Android applies proxy settings per Wi-Fi network. The exact navigation path varies slightly by manufacturer (Samsung, Pixel, OnePlus) and Android version, but the general structure is consistent.
- Open Settings.
- Tap Network & Internet (or Connections on Samsung).
- Tap Wi-Fi.
- Tap the connected network name (or the gear/pencil icon next to it).
- Tap Advanced or Advanced options.
- Scroll to the Proxy section.
- If set to Manual, the Proxy hostname and Proxy port fields show your proxy address. If set to None, no proxy is active.
How to Find Proxy Server Address on Linux
- GUI: Open Settings β Network β Network Proxy β check if Manual or Automatic is selected and note the address/port.
- Terminal (environment variables): Run
env | grep -i proxyβ shows any proxies set in the shell environment. - System-wide config: Check
/etc/environmentor/etc/profile.d/for lines likehttp_proxy=http://host:port.
# Show all proxy environment variables env | grep -i proxy # Check system-wide proxy config file cat /etc/environment | grep -i proxy # Test if a proxy is in use by checking your exit IP curl -s https://httpbin.org/ip
Finding Proxy Settings in Browsers
Most browsers delegate proxy configuration to the operating system β Chrome and Edge do not store their own proxy settings. Firefox is the exception: it has an independent proxy configuration that can differ entirely from the OS settings.
| Browser | Proxy Settings Path | Independent from OS? |
|---|---|---|
| Chrome | Settings β System β Open your computer's proxy settings | β No β opens OS settings |
| Edge | Settings β System & performance β Open your computer's proxy settings | β No β opens OS settings |
| Firefox | Settings β General β Network Settings β Settingsβ¦ | β Yes β fully independent |
| Safari | Safari β Settings β Advanced β Proxies β Change Settings | β No β opens macOS Network settings |
For Firefox, the Network Settings dialog shows one of five modes: No proxy, Auto-detect, Use system proxy settings, Manual proxy configuration (shows host:port), or Automatic proxy URL (PAC file).[3]
Finding Proxy Address via Command Line
Command-line methods are faster for developers and the only option when checking proxy settings on headless servers.
## Windows β WinHTTP (background services) netsh winhttp show proxy ## Windows β WinINet (apps/browsers) via registry reg query "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer ## macOS β all proxy settings scutil --proxy ## Linux / macOS β environment proxy variables env | grep -i proxy ## Any OS β verify your current exit IP (should show proxy IP if active) curl -s https://httpbin.org/ip ## Any OS β test a specific proxy explicitly curl -x http://user:pass@proxy.example.com:8080 https://httpbin.org/ip ## Windows PowerShell β check internet settings (Get-ItemProperty "HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings").ProxyServer
Finding Your Proxy Address from a Proxy Provider Dashboard
If you use a commercial proxy service, your proxy address, port, username, and password are available directly in the provider's dashboard β you do not need to search device settings. This is the most common scenario for professional proxy users.
Nstproxy Dashboard
Log in at app.nstproxy.com β select your proxy type (Residential, ISP, Datacenter) β the endpoint, port, username, and password are displayed. For residential proxies, the gateway address takes the form gate.nstproxy.io:port with your account credentials as authentication.
PAC File / Auto-Configuration URL
Some enterprise or corporate proxies provide a PAC (Proxy Auto-Configuration) file URL instead of a host:port. Paste this URL into the "Automatic proxy configuration" field in your OS or browser settings. The PAC file contains rules that automatically route different traffic through different proxies.
IP Whitelisting vs Username/Password
Most commercial proxies support two authentication modes. Username/password authentication embeds credentials in the proxy URL: http://user:pass@host:port. IP whitelisting registers your device's IP in the provider dashboard β no credentials needed in the request, but your IP must be registered first. Nstproxy supports both from the same panel.
How to Verify Your Proxy Address Is Working
After locating or configuring your proxy address, confirm it is active before relying on it for sensitive tasks:
- Visit whatismyipaddress.com β if the proxy is active, the displayed IP should match the proxy's address, not your real IP.
- Run
curl -s https://httpbin.org/ipin the terminal β returns a JSON object with the IP making the request. - Use whoer.net β shows IP, location, ISP, and whether proxy/VPN usage is detected.
- Check for DNS leaks at dnsleaktest.com β confirms that DNS queries are also routing through the proxy, not your local ISP.
Why You Might Need to Find or Configure a Proxy Address
Troubleshooting Network Issues
When internet connections behave unexpectedly β certain sites blocked, speeds degraded, or connections failing β checking the proxy settings is one of the first diagnostic steps. A misconfigured proxy address or stale corporate proxy settings are common culprits for "internet not working" calls to IT.
Corporate and School Network Configuration
Enterprise networks route outbound traffic through a centralised proxy for content filtering, compliance logging, and malware protection. Employees setting up a new device need the proxy address, port, and often credentials to access the internet from inside the network.
Web Scraping and Automation
Developers configuring scraping scripts need the proxy host, port, and credentials to route requests through a residential or datacenter proxy pool. The address format for programmatic use is typically http://user:pass@host:port or socks5://user:pass@host:port.
Geo-Restricted Content and Ad Verification
Marketing teams and QA engineers need to verify how content appears from specific countries. Configuring a residential proxy address from the target region into browser or OS settings routes traffic as if the device were located there.
Using Nstproxy: Getting Your Proxy Address in 2 Minutes
If you are looking for a proxy address to use β rather than finding an existing one β Nstproxy provides instant access to residential, ISP, and datacenter proxy addresses with full dashboard configuration:
- Sign up at app.nstproxy.com.
- Select your proxy type: Residential (rotating or sticky), ISP, or Datacenter.
- Choose your target country and city for geo-targeted requests.
- Copy the generated endpoint, port, username, and password.
- Paste into your OS proxy settings, browser, or application using the format:
http://username:password@gate.nstproxy.io:PORT
Nstproxy's 110M+ residential IP pool spans 195 countries with city-level targeting. All proxy types support HTTP, HTTPS, and SOCKS5 from the same credentials. For integration examples, see the proxy server tools guide.
Get a Clean Proxy Address Instantly with Nstproxy
110M+ residential IPs across 195 countries. Copy your proxy address, port, and credentials from the dashboard in under 2 minutes β no configuration needed on your end.
Try Nstproxy for Free βFAQ
Go to Settings β Network & Internet β Proxy. Under "Manual proxy setup," if "Use a proxy server" is toggled on, the Address and Port fields show your proxy details. For command-line access, run netsh winhttp show proxy for WinHTTP proxies used by background services.
Open Settings β Wi-Fi β tap the (i) icon next to your connected network β scroll to HTTP Proxy β tap Configure Proxy. If Manual is selected, your proxy server address and port are displayed. iOS proxy settings apply per Wi-Fi network only β there is no cellular proxy setting accessible from user settings.
Go to Settings β Network & Internet (or Connections on Samsung) β Wi-Fi β tap your connected network β Advanced β Proxy. If set to Manual, the Proxy hostname and port are shown. On some Android versions, long-press the network name and select "Modify network" to access these settings.
At the OS level, yes. However, individual applications may have their own proxy settings configured independently. Firefox manages its own proxy configuration separate from the OS. Corporate VPN clients, anti-virus software, and some browser extensions can also route traffic through proxies without appearing in system proxy settings. Check application-specific settings if you suspect a proxy is active but OS settings show "Off."
A PAC (Proxy Auto-Configuration) file is a JavaScript file that tells your browser or OS which proxy to use for different destinations. It is provided as a URL (e.g., http://proxy.company.com/proxy.pac). Enter this URL in the "Automatic proxy configuration URL" field in macOS Network Settings, Windows proxy settings, or Firefox's Network Settings. The browser downloads and follows the PAC rules automatically.

