Likewise AD Authenication with proxy


 
Thread Tools Search this Thread
Operating Systems Linux Ubuntu Likewise AD Authenication with proxy
# 1  
Old 11-02-2010
Likewise AD Authenication with proxy

I am running Ubuntu 10.04 on my laptop and have successfully joined it to our domain for authentication. we use a proxy server for internet access that requires the AD user and password. Even though the computer is added and I am logged on as the AD user when accessing the internet via Firefox, SSH, APT, and everything else. Its still requiring a login.

Is there a configuration I am missing that sends the user and pwd to the proxy for all the apps?
# 2  
Old 11-03-2010
What kind of proxy is it? if it's an HTTP proxy, you can use this environment variable:

Code:
export http_proxy=http://username:password@host:port

# 3  
Old 11-05-2010
I know I can use that but I need it to use the logon credentials for the person logged in, which is authenticated to Active Directory.

If I use the http_proxy, then when the password changes I would have to change it everytime. http_proxy and ftp_proxy does not control all applications. apt-get has their own setting in /etc/apt.conf similar to http_proxy but is separate and there are more.

I would like to make it system wide for all apps.
# 4  
Old 11-05-2010
Quote:
Originally Posted by Ikon
http_proxy and ftp_proxy does not control all applications. apt-get has their own setting in /etc/apt.conf similar to http_proxy but is separate and there are more.

I would like to make it system wide for all apps.
Not even Windows can easily force things which aren't proxy-aware (or which don't obey global proxy settings) to use an authenticated proxy.

To do this for all HTTP traffic bar none, you'd need to redirect, capture, and process it. Which, actually, could be possible. You would run a squid HTTP proxy locally, and redirect traffic into it with iptables rules, and configure squid to use your local authentication. Squid has a huge variety of authentication options.
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. IP Networking

Connecting via proxy chain to Upstream proxy

I need to configure a proxy on my local machine to use an upstream proxy (installed on another machine). The upstream proxy requires Digest/NTLM authorization. I want the local proxy to deal with the upstream proxy's authorization details and provides authorization free access to users that connect... (0 Replies)
Discussion started by: Russel
0 Replies

2. IP Networking

Software/tool to route an IP packet to proxy server and capture the Proxy reply as an

Hi, I am involved in a project on Debian. One of my requirement is to route an IP packet in my application to a proxy server and receive the reply from the proxy server as an IP packet. My application handles data at the IP frame level. My application creates an IP packet(with all the necessary... (0 Replies)
Discussion started by: Rajesh_BK
0 Replies

3. Shell Programming and Scripting

ssh login authenication

Hi, I need to shell script if anyone logins Via ssh to my box a mail authentication should be received to my email id. Thank you Siva (2 Replies)
Discussion started by: gsiva
2 Replies
Login or Register to Ask a Question