LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 01-03-2012, 10:44 AM   #1
scampsd
LQ Newbie
 
Registered: Jan 2012
Posts: 3

Rep: Reputation: Disabled
Unhappy rsh/ssh problem: POSSIBLE BREAK-IN ATTEMPT, most probably due to DNS configuration


Good afternoon,
On a HP server, I am running Linux Red Hat 5.
I have an application that launches "rsh PSMF" or "ssh PSMF" in background, which goes wrong: the entry "PSMF" is created in the file "/etc/hosts" and the corresponding IP address is found, but there seems to be a mismatch in the other way, as can be seen in following excerpt:

smf1 linus> rsh -v PSMF
OpenSSH_4.3p2, OpenSSL 0.9.8e-fips-rhel5 01 Jul 2008
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Applying options for *
debug1: Connecting to PSMF [xxx.xxx.xxx.xxx] port 22.
debug1: Connection established.
debug1: identity file /osp/local/home/linus/.ssh/id_rsa type 1
debug1: identity file /osp/local/home/linus/.ssh/id_dsa type -1
debug1: loaded 2 keys
debug1: Remote protocol version 2.0, remote software version OpenSSH_4.3
debug1: match: OpenSSH_4.3 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_4.3
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-md5 none
debug1: kex: client->server aes128-ctr hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: Host 'psmf' is known and matches the RSA host key.
debug1: Found key in /osp/local/home/linus/.ssh/known_hosts:1
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,gssapi-with-mic,password
debug1: Next authentication method: gssapi-with-mic
Address xxx.xxx.xxx.xxx maps to smf1, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!
debug1: Unspecified GSS failure. Minor code may provide more information
Unknown code krb5 195

debug1: Unspecified GSS failure. Minor code may provide more information
Unknown code krb5 195

debug1: Unspecified GSS failure. Minor code may provide more information
Unknown code krb5 195

debug1: Next authentication method: publickey
debug1: Offering public key: /osp/local/home/linus/.ssh/id_rsa
debug1: Server accepts key: pkalg ssh-rsa blen 277
debug1: read PEM private key done: type RSA
debug1: Authentication succeeded (publickey).
debug1: channel 0: new [client-session]
debug1: Entering interactive session.
debug1: Sending environment.
debug1: Sending env LANG = C
Last login: Tue Jan 3 17:31:27 2012 from xxx.xxx.xxx.xxx

[1] 2916
End of linus profile


I have been looking on the internet and it seems that a wrong DNS configuration might be causing this issue. Unfortunately I don't know how to verify my DNS configuration and even then, I don't know how to interpret the "rsh -v" output.

(As there seems to be a security issue, I have blanked out the IP address (xxx.xxx.xxx.xxx), but I confirm that it is correct.)

Can somebody help me?
Thanks
Dominique
 
Old 01-03-2012, 11:46 AM   #2
unSpawn
Moderator
 
Registered: May 2001
Posts: 29,415
Blog Entries: 55

Rep: Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600
Quote:
Originally Posted by scampsd View Post
Code:
debug1: Authentications that can continue: publickey,gssapi-with-mic,password
debug1: Next authentication method: gssapi-with-mic
Address xxx.xxx.xxx.xxx maps to smf1, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!
debug1: Unspecified GSS failure.  Minor code may provide more information
Unknown code krb5 195
If 'ssh -o GSSAPIAuthentication no PSMF' doesn't produce those lines try disabling anything GSSAPI in your configuration?
 
Old 01-04-2012, 04:05 AM   #3
scampsd
LQ Newbie
 
Registered: Jan 2012
Posts: 3

Original Poster
Rep: Reputation: Disabled
Thanks for the fast reply.
I have launched the mentioned command and I get the following:
ssh -o GSSAPIAuthentication no PSMF
command-line line 0: Missing yes/no argument.


When you write about disabling GSSAPI, how can I do this (I know, I'm a newbie)?
Thanks
Dominique
 
Old 01-04-2012, 07:24 AM   #4
unSpawn
Moderator
 
Registered: May 2001
Posts: 29,415
Blog Entries: 55

Rep: Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600
Quote:
Originally Posted by scampsd View Post
Code:
ssh -o GSSAPIAuthentication no PSMF
command-line line 0: Missing yes/no argument.
Sorry, should be 'ssh -o GSSAPIAuthentication=no PSMF'.


Quote:
Originally Posted by scampsd View Post
When you write about disabling GSSAPI, how can I do this
If you have one, your personal ~/.ssh/config may list defaults for all connections. To tweak just one connection add a section (below what's there already):
Code:
Host PSMF
GSSAPIAuthentication no
That's all.
 
1 members found this post helpful.
Old 01-04-2012, 08:12 AM   #5
scampsd
LQ Newbie
 
Registered: Jan 2012
Posts: 3

Original Poster
Rep: Reputation: Disabled
Thumbs up

Thanks a lot, you have saved my day!
 
Old 01-04-2012, 08:35 AM   #6
unSpawn
Moderator
 
Registered: May 2001
Posts: 29,415
Blog Entries: 55

Rep: Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600
You're welcome, please mark the thread solved.
 
Old 01-08-2021, 08:11 AM   #7
teknopaul
LQ Newbie
 
Registered: Apr 2006
Posts: 4

Rep: Reputation: 0
other solution

This was also caused by

PermitRootLogin no

usually we have PermitRootLogin without-password so pub/priv keys are allowed

If this fails the next type is tried with is GSS and that fails with this message.
 
Old 01-08-2021, 08:31 AM   #8
sevendogsbsd
Senior Member
 
Registered: Sep 2017
Distribution: FreeBSD
Posts: 2,252

Rep: Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011
9 year old thread...
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
New to Linux, Getting a logwatch email about Possible Break In Attempt Blueleaf Linux - Newbie 3 11-15-2010 12:04 PM
reverse mapping checking getaddrinfo for ... failed - POSSIBLE BREAK-IN ATTEMPT eteck Linux - Server 1 08-29-2010 10:02 AM
Break-In attempt on www.centos.org unSpawn Linux - Security 0 07-08-2009 06:16 PM
Possible Break In Attempt stlyz3 Linux - Security 2 08-05-2005 09:37 AM
SSH Hangs (not due to DNS problems!) diberri Linux - Software 4 07-22-2003 11:18 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 10:44 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration