Skip to content

Instantly share code, notes, and snippets.

@apisznasdin
Created March 3, 2014 05:01
Show Gist options
  • Save apisznasdin/9318693 to your computer and use it in GitHub Desktop.
Save apisznasdin/9318693 to your computer and use it in GitHub Desktop.
Configure Linux to used Windows Proxy
# Refer http://www.w3schools.com/tags/ref_urlencode.asp for URL-encoding for ASCII Character if used in password eg
# %23 = #
# %40 = @
# %5C = /
#
# example http://putrajaya/apisznasdin:password@proxysvr:8080
export http_proxy=http://domain%5Cusername:password@proxysvr:8080
export https_proxy=http://domain%5Cusername:password@proxysvr:8080
export ftp_proxy=http://domain%5Cusername:password@proxysvr:8080
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment