7

I am behind a proxy, but I don't know the URL/port. Is there a way to find this out? Thanks,

guntbert
  • 13,134
Ray
  • 121

2 Answers2

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