I am behind a proxy, but I don't know the URL/port. Is there a way to find this out? Thanks,
Asked
Active
Viewed 4.6k times
2 Answers
5
you can find your proxy in two ways. Open your terminal with CTRL+ALT+T then
Method 1:
env | grep -i proxy
Description: It will search proxy string in the env
command which lists all system environmental variables.
Method 2:
cat /etc/environment

Raja G
- 102,391
- 106
- 255
- 328
1
visit http://www.whatismyip.com/
it will show your IP address. If you are behind a proxy it will show the address of proxy

Sreevisakh
- 1,516
-
1doesn't work for me .. i'm behind a proxy but it says "no proxy detected" – philx_x Mar 26 '15 at 15:10