Firewall I'm behind is running Microsoft ISA server (NTLM only mode), anyone have success getting their Ruby gems to install/update via Ruby SSPI gem or other method?
... or am I just being lazy?
Edit: rubysspi-1.2.4 does not work
|
|
|||
|
|
|
I wasn't able to get mine working from the command line switch but I have been able to do it just by setting my HTTP_PROXY environment variable (note that case seems to be important). I have a batch file that has a line like this in it: SET HTTP_PROXY=http://%USER%:%PASSWORD%@%SERVER%:%PORT%I set the four referenced variables before I get to this line obviously. As an example if my username is wolfbyte, my password is secret and my proxy is called pigsy and operates on port 8080: SET HTTP_PROXY=http://wolfbyte:secret@pigsy:8080You might want to be careful how you manage that because it stores your password in plain text in the machine's session but I don't think it should be too much of an issue. |
||||||||
|
|
|
Posts abound regarding this topic, and to help others save hours of trying different solutions, here is the final result of my hours of tinkering. The three solutions around the internet at the moment are: rubysspi apserver cntlm rubysspi only works from a Windows machine, AFAIK, as it relies on the Win32Api library. So if you are on a Windows box trying to run through a proxy, this is the solution for you. If you are on a Linux distro, you're out of luck. apserver seems to be a dead project. The link listed in the posts I've seen lead to 404 page on sourceforge. I search for "apserver" on sourceforge returns nothing. The sourceforge link for cntlm that I've seen redirects to http://cntlm.awk.cz/, but that times out. A search on sourceforge turns up this link, which does work: http://sourceforge.net/projects/cntlm/ After downloading and configuring cntlm I have managed to install a gem through the proxy, so this seems to be the best solution for Linux distros. |
|||
|
|
|
|
I've been using cntlm (http://cntlm.sourceforge.net/) at work. Configuration is very similar to ntlmaps.
Works great, and also allows me to connect my Ubuntu box to the ISA proxy. Check out http://cntlm.wiki.sourceforge.net/ for more information |
||
|
|
|
|
A workaround is to install http://apserver.sourceforge.net on your local machine, configure it and run gems through this proxy.
|
||
|
|