- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: sshd2_config file
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
09-05-2007 05:54 AM
09-05-2007 05:54 AM
sshd2_config file
Any info, greatly appreciated.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2007 06:00 AM
09-05-2007 06:00 AM
Re: sshd2_config file
http://www.ssh.com/support/documentation/online/ssh/adminguide-zos/54/Default_sshd2_config_Configuration_File.html
http://h30097.www3.hp.com/docs/ssh/DOCS/HTML/MAN/MAN4/0002____.HTM
http://www.astro.caltech.edu/cgi-bin/man.cgi?section=5&topic=sshd2_config
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
09-05-2007 06:01 AM
09-05-2007 06:01 AM
Re: sshd2_config file
Those are different facilities: auth typically refers to authentication where as local[1-7] can be used for (appropriately enough) local/unspecified logging requirements.
You can then send the syslogs where ever you'd like via the /etc/syslog.conf
man syslog
man syslogd
should give you the more detailed information that you man need.
You could also check out http://www.olearycomputers.com/ll/syslog_config.html for more (if perhaps somewhat dated) information on configuring syslog.
HTH;
Doug
------
Senior UNIX Admin
O'Leary Computers Inc
linkedin: http://www.linkedin.com/dkoleary
Resume: http://www.olearycomputers.com/resume.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2007 06:54 AM
09-05-2007 06:54 AM
Re: sshd2_config file
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2007 08:20 AM
09-05-2007 08:20 AM
Re: sshd2_config file
Second, each line is processed for every message. If you want all messages for a specific facility and priority to *only* go to one file, you must exclude (using .none) the messages from other logfiles. LOCAL0 through LOCAL7 are loosely defined as local services but several HP-UX services also use a LOCALx facility.
Here is a sample syslog.conf where all mail messages are logged to mail.log, local5 messages to an ftpd log, authentication to auth.log and daemon messages to daemon.log. Note how mail, ftpd, mail and daemon messages are excluded from syslog.log:
mail.debug /var/adm/syslog/mail.log
*.info;mail.none;local5.none;auth.none;daemon.notice /var/adm/syslog/syslog.log
local5.info /var/adm/syslog/ftpd.log
auth.info /var/adm/syslog/auth.log
daemon.info /var/adm/syslog/daemon.log
*.warning @pdrbk
*.err /var/adm/syslog/syslog-err.log
*.alert /dev/console
*.alert root
*.emerg *
Attached is a syslog decoder which takes syslogd messages and decodes the facility/priority value. That way, you can see exactly how each message was logged. NOTE: you must restart syslogd with the -v option (put into /etc/rc.config.d also).
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2007 08:46 AM
09-05-2007 08:46 AM
Re: sshd2_config file
Tremendous help. I double checked the syslog.conf and the ssh config file and it was correct .The daemon is currently logging, it turns out that I was inpatient and didn't wait long enough for sessions to be logged. I just checked and she's logging. Thank you, very much.
Regards,
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2007 09:38 AM
09-05-2007 09:38 AM