up vote 46 down vote favorite
18
share [g+] share [fb]

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

UPDATE: This also works for "igem", part of the IronRuby project

link|improve this question

76% accept rate
2  
+1 i've been stuck on this for a day. thanks for asking. – Gishu Jul 22 '09 at 8:22
feedback

7 Answers

up vote 38 down vote accepted

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:8080

You 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.

link|improve this answer
2  
It seems 'gem' fails to recognize backslashes in the proxy string, whether by http_proxy env var or --http-proxy argument. e.g. from my Ubuntu box --http-proxy http ://domain\\userid@server:port gives me the error: "invalid argument: --http-proxy ..."; Fortunately, my proxy server didn't require the domain specification and gem worked without it. – spoulson Apr 29 '09 at 18:57
ISA lets the admin specify a default domain to authenticate against. You can try to leave out the domain and just use your username like spoulson suggests. If your ISA admin has specified said default domain and your useraccount is in that domain, this should work for you (assuming there are no blocking rules on the firewall) – squillman Jun 16 '09 at 15:07
Thanks this worked! Wonder why it didnt work when i tried the -p and --http-proxy command line args. It seems like the env var is what works. – Gishu Jul 22 '09 at 8:23
3  
@spoulson You need to URI encode the backslash if you need the domain, e.g. http ://domain%5Cuserid@server:port. – Ian G Nov 1 '10 at 11:31
2  
FYI, in Windows, you can add the set http_proxy line to gem.bat so that you don't have to remember to set the proxy each time. – Ed Manet Aug 18 '11 at 15:28
feedback

For the Windows OS, I used Fiddler to work around the issue.

Step 1: Install/Run Fiddler from www.fiddler2.com

Step 2: Run gem
$ gem install --http-proxy http://localhost:8888 $gem_name

link|improve this answer
1  
Worked a treat, much easier than ntlmaps and cntlm. – atomicules Jan 7 '11 at 13:13
Awesome simple solution. – Doobi Apr 5 '11 at 1:39
1  
This worked for me. Note that Fiddler isn't needed in all situations. Just gem install --http-proxy http://COMPANY.PROXY.ADDRESS $gem_name is all that was needed for me. – Polaris878 Apr 13 '11 at 20:02
Loved this. Great solution. – program247365 Oct 20 '11 at 14:35
Magic - works like a bomb - and most of us have it already... – Jim Nov 25 '11 at 10:26
feedback

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

link|improve this answer
feedback

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.

link|improve this answer
feedback

A workaround is to install http://apserver.sourceforge.net on your local machine, configure it and run gems through this proxy.

  • Install: Just download apserver 097 (and not the experimental 098!) and unpack.
  • Configure: Edit the server.cfg file and put the values for your MS proxy in PARENT_PROXY and PARENT_PROXY_PORT. Enter the values for DOMAIN and USER. Leave PASSWORD blank (nothing after the colon) – you will be prompted when launching it.
  • Run apserver: cd aps097; python main.py
  • Run Gems: gem install—http-proxy http://localhost:5865/ library
link|improve this answer
3  
Read in a google group that 'apserver' is now 'NTLM Authorization Server'; shame that searching for the former doesn't redirect to that latter. – Darren Aug 11 '10 at 11:35
Hi Jarin, I went to the link you provided in your comment and couldn't find that download. Is there any way I can download it from anywhere else? – Matrich Aug 26 '10 at 6:49
@Matrich as per Darren's comment. apserver is now renamed and found here: ntlmaps.sourceforge.net – atomicules Jan 7 '11 at 9:38
feedback

I tried all the above solutions, however none of them worked. If you're on linux/macOS i highly suggest using tsocks over an ssh tunnel. What you need in order to get this setup working is a machine where you can log in via ssh, and in addition to that a programm called tsocks installed.

The idea here is to create a dynamic tunnel via SSH (a socks5 proxy). We then configure tsocks to use this tunnel and to start our applications, in this case:

tsocks gem install ...

or to account for rails 3.0:

tsocks bundle install

A more detailed guide can be found under:

http://blog.byscripts.info/2011/04/bypass-a-proxy-with-ssh-tunnel-and-tsocks-under-ubuntu/

Despite being written for Ubuntu the procedure should be applicable for all Unix based machines. An alternative to tsocks for Windows is FreeCap (http://www.freecap.ru/eng/). A viable SSH client on windows is called putty.

link|improve this answer
feedback

rubysspi-1.3.1 worked for me on Windows 7, using the instructions from this page:

http://www.stuartellis.eu/articles/installing-ruby/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.