4

My Linux server group uses Kerberos authentication. When I try to connect to one of the servers using Net::SSH2, auth_list() returns gssapi-keyex and gssapi-with-mic. However, auth() doesn't support either.

Is there a Perl module that naively (e.g., without using Expect.pm) supports GSSAPI authentication over SSH?

derobert
  • 49,731
  • 15
  • 94
  • 124
chenryn
  • 121
  • 5
  • 1
    I think you may be out of luck. I don't think there's a Perl module that implements GSSAPI. One could probably build one on top of Net::SSH2 and the GSSAPI module, but implementing the ssh protocol for GSSAPI is non-trivial. – rra Mar 17 '13 at 10:21

1 Answers1

0

Maybe give this module a shot?

http://metacpan.org/pod/LWP::Authen::Negotiate

Or possibly this one as well...

http://metacpan.org/pod/Authen::Simple::Kerberos

szabgab
  • 6,202
  • 11
  • 50
  • 64
squiguy
  • 32,370
  • 6
  • 56
  • 63