How to find a proxy server using command line
Someone's configured a proxy server on my machine and i want to know what it is What should i do to find the proxy server on the command line?
For any system-wide proxy for HTTP, you can check the value of http_proxy
environment variable.
echo "$http_proxy"
For https.
echo "$https_proxy"
Similarly, there are ftp_proxy
, socks_proxy
for serving the exact purpose of their names. There is also all_proxy
for setting proxy for all these protocols at once. Just to note, no_proxy
unsets proxy for any specific addresses of any (or all) given protocol. Just for sake of completeness, you might want to check the uppercase version of these variables too, although the lowercases are standard for *_proxy
environment variables (only environment variables i am aware of that are lowercased).
Note that these will display any system-wide proxy setting which is not application-specific For example, firefox
, or apt
can have their own proxy settings irrespective of any global one. Some applications do not honor these variables too (e.g. specific gnome
apps use gsettings
), so YMMV.