- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- SSH logging on HPUX11i
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
11-30-2004 03:09 AM
11-30-2004 03:09 AM
Is it possible to log (on the server) the logged in username of the initiator of the connection from the client? I have changed the LogLevel on the server to DEBUG3, but this only records the IP address of the client, port and the username used to log into the server, not the username of the user on the client:
Nov 30 14:17:43 hp1 sshd[2709]: Accepted password for na633 from 199.199.20.2 port 58437 ssh2
One of our sites needs this info for audit purposes.
Many thanks in anticipation.
Phil.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2004 03:12 AM
11-30-2004 03:12 AM
Re: SSH logging on HPUX11i
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2004 04:49 AM
11-30-2004 04:49 AM
Re: SSH logging on HPUX11i
For additional audits make the system a trusted system and then you can run detailed audit reports based on the information stored in the audit database.
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
11-30-2004 05:20 AM
11-30-2004 05:20 AM
Re: SSH logging on HPUX11i
http://www.mindrot.org/mailman/listinfo/openssh-unix-dev
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2004 06:45 PM
11-30-2004 06:45 PM
Re: SSH logging on HPUX11i
When you say you want the initiator, do you mean if they failed to connect, logged-in, or both?
If you want successful connections they are shown in the SSH debug log (sshd.log) at the standard debug level, as they are passed from syslog. If this is not happenning you could have either setup up the signal levels in "sshd_config" and/or "syslogd.conf", or your binary has not been correcty compiled.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2004 07:44 PM
11-30-2004 07:44 PM
SolutionIf you can set up identd on the initiator host, you might be able to use it. To make sshd send identd queries, you need to compile it with tcpwrapper support (--with-tcp-wrappers). Then configure /etc/hosts.[allow|deny] using the form:
sshd: ALL@
Identd does not cope too well with NAT and is not really suitable for untrusted networks, so be sure you understand the limitations before using identd.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2004 02:51 AM
12-01-2004 02:51 AM
Re: SSH logging on HPUX11i
Cheers
Phil