- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- setup proxy client
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2005 09:26 PM
01-16-2005 09:26 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2005 10:56 PM
01-16-2005 10:56 PM
Re: setup proxy client
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2005 11:24 PM
01-16-2005 11:24 PM
Re: setup proxy client
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2005 12:28 AM
01-17-2005 12:28 AM
Re: setup proxy client
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2005 12:44 AM
01-17-2005 12:44 AM
Re: setup proxy client
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2005 01:37 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2005 11:47 AM
01-17-2005 11:47 AM
Re: setup proxy client
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2005 11:53 AM
01-17-2005 11:53 AM
Re: setup proxy client
try to put on the bashrc of the user that will access internet via proxy the following commands :
export http_proxy=http://proxy.domain.com:xxxx
export https_proxy=http://proxy.domain.com:xxxx
where proxy.domain.com is your proxy server and xxxx is the port that the proxy server is listen to.
this procedure is ok if you are using lynx as your text navigator.
regards,
xyko
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2005 01:49 PM
01-17-2005 01:49 PM
Re: setup proxy client
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2005 10:34 PM
01-17-2005 10:34 PM
Re: setup proxy client
from a google search :
* Q3. How do you use apt-get behind a proxy?
export http_proxy=http://YOUR_PROXY:8080/
for ftp use ftp_proxy instead, for the rest the syntax is the same.
or:
export http_proxy=http://user:password@YOUR_PROXY:8080/
or (to get through a Microsoft ISA proxy server):
export http_proxy=http://domainname\\user:password@YOUR_PROXY:8080/
or alternatively, to use it each time you run apt-get, add the following to your /etc/apt/apt.conf file:
Acquire::http::Proxy "http://YOUR_PROXY:8080/";
I suggest to use the last one, i.e., customizing apt.conf file.
From http://www.die.net/doc/linux/man/man5/apt.conf.5.html
http
HTTP
URIs; http::Proxy is the default http proxy to use. It is in the standard form of http://[[user][:pass]@]host[:port]/. Per host proxies can also be specified by using the form http::Proxy::
regards,
xyko