- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- any way to display source computer from cert
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2009 05:48 AM
07-07-2009 05:48 AM
any way to display source computer from cert
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2009 05:55 AM
07-07-2009 05:55 AM
Re: any way to display source computer from cert
An echo statement in the .profile, or a have a script do a lookup. You will need to execute the script from ssh.
echo $SSH_CONNECTION
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2009 05:57 AM
07-07-2009 05:57 AM
Re: any way to display source computer from cert
Don't point both posts.
Silly mistake on my part.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2009 06:01 AM
07-07-2009 06:01 AM
Re: any way to display source computer from cert
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2009 06:07 AM
07-07-2009 06:07 AM
Re: any way to display source computer from cert
Stephen - not sure about your reply - if i do not know the host how do i kick off ssh to that host?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2009 06:19 AM
07-07-2009 06:19 AM
Re: any way to display source computer from cert
starting sshd in debug mode is something I have no experience with but I am sure it can be done somehow. I only know to do this for a single incoming ssh connection. You can stop the sshd by
/sbin/init.d/secsh stop
then start ssh in debug mode for a single connection instance by
/usr/sbin/sshd -vvv
this will dump debug data on your screen. So it is better to start your terminal capture mode prior to running this command, otherwise data could be overwhelming to follow on-screen. Once it is running, you can see the first incoming ssh attempt and correlate the key used to the incoming connection's IP address. If you do this sufficient number of times, especially if you can, with the help of the people on the other end of communication, you can figure all your public keys' owners in time.
Hope this helps.
UNIX because I majored in cryptology...