Blogs Classifieds Downloads FlashChat Gallery Googlemap Invite Friends Links Projects Reviews Wiki
 


Welcome to the pSeries Tech Forums, our free peer-based support site for administrators, engineers and architects working with IBM pSeries servers and software.

You are currently viewing our site as a guest which gives you limited access to view most discussions, articles, tutorials and access our other free features. By joining our community you will be able to collaborate with administrators, engineers and architects charged with designing, delivering or maintaining IBM pSeries server environments.

Founded by a recognized IBM pSeries consultant and IBM Redbook author, pSeries Tech Forums was developed with the single mission of bringing IBM pSeries professionals together into a single self-help community.

Registration is fast, simple and absolutely free to all IT professionals with responsibility for or interest in IBM pSeries servers. We invite you to join our community today!

If you have any problems with the registration process or your account login, please contact contact support.

Our Sponsors
Want to advertise?  


Reply
 
LinkBack Thread Tools
  #1  
Old September 20th, 2006
SargentSpang's Avatar
SargentSpang Offline
Junior Member
 
Join Date: June 2006
Location: Cardiff, South Wales
Posts: 8
openssh/openssl

I use the latest openssl from the Linux toolkit, currently 0.9.7g and openssh fromt he Sourceforge openssh on AIX project, version 4.1. Both of these appear to be very stale and have had no update for some time (a year or so I think) and there are vulnerabilities about fixed in later openssl/openssh releases.

What does everyone do ssh wise at their shops? Do you compile or do you purchase a third party solution or, like me, wait for IBM to update the openssl in the toolkit and whoever looks after the sourceforge project to release a new compile??

Thanks,

Sam
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #2  
Old September 20th, 2006
alexisl's Avatar
alexisl Offline
Senior Member
 
Join Date: June 2006
Posts: 147
Re: openssh/openssl

I wait for IBM, mostly because I don't know of any needed upgrades unless they tell me, even then it may not directly apply to me (I am not in a clustered environment). Sometimes even if they have an upgrade it is good to wait, as was the case with TL5 and us Oracle users (still haven't upgraded to TL5 because I am not sure if they have everything fixed with the patch). I am just trying not to make my job turn into a nightmare, which can happen very quickly around here.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old September 20th, 2006
steevojb's Avatar
steevojb Offline
Senior Member
 
Join Date: June 2006
Location: manchester, england
Posts: 185
Re: openssh/openssl

Hi There

I use the latest from the AIX toolbox (openssl) and SSH from the AIX install CD's (these are updated with ML/TL levels)

openssl-0.9.7g-1

openssh.base.client 4.1.0.5300 COMMITTED Open Secure Shell Commands
openssh.base.server 4.1.0.5300 COMMITTED Open Secure Shell Server

Unless I receive notification of a specific issue or experience problems, they stay at the level when installed.

HTH

Steve
__________________
Take your time and think things through !!
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old September 22nd, 2006
rzs0502's Avatar
rzs0502 Offline
System Engineer/Developer
 
Join Date: July 2006
Location: Johannesburg, South Africa
Posts: 26
Re: openssh/openssl

I've always preferred Darren Tuckers OpenSSH for AIX:
Darren Tucker's OpenSSH Page

Latest release is openssh-4.3p2-1

I used to use the Sourceforge project's package but found that it ignores AIX's rlogin=false setting.
The workaround is change the sshd_config's PermitRootLogin = No
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5  
Old October 16th, 2006
capeme's Avatar
capeme Offline
Member
 
Join Date: July 2006
Posts: 39
Re: openssh/openssl

Is there anyway around the need to generate a key and still use ssh?
If not, do you generate it as root?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #6  
Old October 16th, 2006
pedz's Avatar
pedz Offline
Member
 
Join Date: July 2006
Location: Leander, TX (just north of Austin)
Posts: 58
Re: openssh/openssl

I always compile my own stuff. So, now you have about five replies each with a different approach.

If you make it yourself, the make file has something to create the key file. I've always done it root but I don't think it matters as long as you can put them in the right place(s).
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #7  
Old October 17th, 2006
capeme's Avatar
capeme Offline
Member
 
Join Date: July 2006
Posts: 39
Re: openssh/openssl

Does any one actualy know if you can get around generating a key nad still be able to use ssh?? Be able to get aroudn the password request??maybe make it automatic???
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #8  
Old October 17th, 2006
pedz's Avatar
pedz Offline
Member
 
Join Date: July 2006
Location: Leander, TX (just north of Austin)
Posts: 58
Re: openssh/openssl

I'm not clear what you are wanting here.

I'm going to guess that you are trying to ssh from host A to host B (but if that is not really your question, please give us more details of what you want to do).

There are a couple of options.

1) When you do the ssh-keygen to create your public and private key, you do not have to give a password. If you do not, then it will not ask you for the password to access you private keys. (Your public keys are public). I have personally never tried this. So I may be all wet but that is my interpretation of the man pages.

2) You can use ssh-agent. You start ssh-agent up and it detachs. Then you add keys to the agent. When you ssh from host A to host B, instead of asking you for the password, ssh asks the agent. I have a shell function. (I happen to use bash, but you can do the same type of thing with ksh.) In the function I look for ~/.ssh/ssh-agent. If it is there, I read it. Then I do a kill -0 of the ssh agent pid. The kill will return without an error if the process is still alive and it will error off it the process is dead. If it is dead, I start up ssh-agent and then call ssh-add.

I can help more if you need details or you can look at ssh-keygen, ssh-agent, and ssh-add.

Hope this helps
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #9  
Old October 17th, 2006
capeme's Avatar
capeme Offline
Member
 
Join Date: July 2006
Posts: 39
Re: openssh/openssl

yes I am going from host a to host b via ssh and am trying to learn if there is a way to get around having to gen a key at all. I want to script this process and want to use ssh.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #10  
Old October 17th, 2006
pedz's Avatar
pedz Offline
Member
 
Join Date: July 2006
Location: Leander, TX (just north of Austin)
Posts: 58
Re: openssh/openssl

Somehow you have to get host b to trust host a. ssh and sshd can use /etc/hosts.equiv and ~/.rhosts just like rlogin. But you still have the problem of getting these in place before you run your script. I have not used this method. You might need to generate the host keys but I'm not sure of that either.

I see in my sshd_config file an option named PermitEmptyPasswords. If it is an option to set up an initial account with no password, you might explore that path as well.

Also, it might be better to ask this on a ssh specific forum or mailing list.

If you want, send me a private message with your email address and we can collaborate quicker that way. I still have more questions as to what and why you are trying to do.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Bookmarks

These are the 100 most searched terms
Search Cloud
0042-001 0042-001 nim 0513-001 the system resource controller daemon is not active 0513-001 the system resource controller daemon is not active. 0514-061 0514-061 cannot find a child device 0514-061 cannot find a child device. 0516-787 0516-787 extendlv 0516-787 extendlv: maximum allocation for logical volume 110000ac aa00e1f3 aio aix aix aio aix freeware aixif_arp_dup_addr b150f22a b181fb53 ba010004 c1001020 d133c002 dacnone dcb47997 dlpar fcp_array_err6 fget_config gnu tar aix gsclvmd gtar aix hi yall hmc root password hmc vmware hscl05db ibm p6 ibm p6 520 libpopt aix libpopt.a libpopt.a(libpopt.so.0) is needed by rsync-2.6.2-1 migratelv mksysb navisphere agent nim server pseries pseriestech rsync aix sc_disk_err4 scan_error_chrp vio server websm xhost file ... powered by Simple Search Cloud


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

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 On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
Powered by vbWiki Pro 1.3 RC5. Copyright ©2006-2007, NuHit, LLC

vBulletin Skin developed by: vBStyles.com


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48