Linux Admin Steps Into Management

proxy settings for the command line

  

When using applications from the command line,
you will sometimes need to setup a specific proxy for them to use, if you don’t have a direct access to the Internet from the server you are working on.

in some of these application you can setup this through the app switches itself, but simpler apps just use the system network settings.

to fix this you can first check what current settings you have now with:

ENV | grep -i proxy

this should show you the current proxy settings you have.

to add your own settings do:

export http_proxy=”http://<proxy-server-ip>:<port>”
export ftp_proxy=”http://<proxy-server-ip>:<port>”

for example:

export http_proxy=”http://192.168.0.10:8080″

after that, just run your command line app, it should pick up and use these settings.

   

 

Technorati Tags: , , ,

Related posts:

  1. check smtp from commnad line
  2. Test http server from windows command line
  3. Check apache from command line
  4. Linux Commands – Top 20 Most Used
  5. Linux Server Information – The Easy Way
  • thorn says:

    Although its quite old and I haven’t tested it recently, there is tsocks (http://tsocks.sourceforge.net/about.php) and probably some other solutions out there who can transparently connect your application using a socks proxy even if the application doesn’t support it.

    May 7, 2009 at 2:14 pm
  • Paid Proxy says:

    Crazy how many people still use and others profit with web proxies.

    May 11, 2009 at 3:51 pm
  • proxy bypass says:

    you can use my proxy site for surfing the web anonymously

    January 17, 2010 at 8:23 am
  • onetom says:

    we use an “ssh -D 1080 company.server socks5″ proxy as a simple VPN-like solution to access the intranet (which is in a datacenter) from our workstations.

    proxies are not just about anonymity…
    they are like a glue between services.

    you can plug in services to a proxy and provide common features to them, like authentication, authorization, load balancing, clustering, caching, logging.

    this allows you to keep the services simple and hence robust and abstracted from the actual infrastructure they are built into.

    April 1, 2010 at 7:04 pm
    • yonitg says:

      onetom: sure, the whole post wasnt just about anonymity – it was aimed at allowing Linux command line applications reach the internet via an internal proxy server. I totally agree :)

      April 5, 2010 at 1:42 am
  • aisensiy says:

    thanks for your blog, it helps me a lot :-)

    May 12, 2011 at 7:52 pm

Your email address will not be published. Required fields are marked *

*