<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Redirecting ssh messages in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/redirecting-ssh-messages/m-p/5005548#M425376</link>
    <description>Does anyone know a way to make ssh redirect log messages (e.g. "Accepted publickey for user from x.x.x.x") to a seperate logfile instead of syslog.log?  I'd love to cean up all that clutter...</description>
    <pubDate>Tue, 26 Sep 2006 12:44:40 GMT</pubDate>
    <dc:creator>Matthew Gwin</dc:creator>
    <dc:date>2006-09-26T12:44:40Z</dc:date>
    <item>
      <title>Redirecting ssh messages</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/redirecting-ssh-messages/m-p/5005548#M425376</link>
      <description>Does anyone know a way to make ssh redirect log messages (e.g. "Accepted publickey for user from x.x.x.x") to a seperate logfile instead of syslog.log?  I'd love to cean up all that clutter...</description>
      <pubDate>Tue, 26 Sep 2006 12:44:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/redirecting-ssh-messages/m-p/5005548#M425376</guid>
      <dc:creator>Matthew Gwin</dc:creator>
      <dc:date>2006-09-26T12:44:40Z</dc:date>
    </item>
    <item>
      <title>Re: Redirecting ssh messages</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/redirecting-ssh-messages/m-p/5005549#M425377</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;You should be able to configure that in the /etc/syslog.conf file&lt;BR /&gt;&lt;BR /&gt;Then restart the syslog daemon.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 26 Sep 2006 12:49:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/redirecting-ssh-messages/m-p/5005549#M425377</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2006-09-26T12:49:50Z</dc:date>
    </item>
    <item>
      <title>Re: Redirecting ssh messages</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/redirecting-ssh-messages/m-p/5005550#M425378</link>
      <description>you could to something like:&lt;BR /&gt;&lt;BR /&gt;in syslogd.conf&lt;BR /&gt;SyslogFacility AUTH&lt;BR /&gt;LogLevel INFO&lt;BR /&gt;&lt;BR /&gt;Then restart sshd.&lt;BR /&gt;&lt;BR /&gt;Then add this line to /etc/syslog.conf&lt;BR /&gt;&lt;BR /&gt;auth.info;mail.none /var/adm/syslog/sshd.log&lt;BR /&gt;&lt;BR /&gt;Or use a local facility.</description>
      <pubDate>Tue, 26 Sep 2006 12:54:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/redirecting-ssh-messages/m-p/5005550#M425378</guid>
      <dc:creator>Kevin Wright</dc:creator>
      <dc:date>2006-09-26T12:54:36Z</dc:date>
    </item>
    <item>
      <title>Re: Redirecting ssh messages</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/redirecting-ssh-messages/m-p/5005551#M425379</link>
      <description>Kevin - I can't find a syslogd.conf file anywhere on my servers.  I'm running 11.11.  Is this a file I should create, and if so, where does it belong.  Thanks!</description>
      <pubDate>Tue, 26 Sep 2006 15:22:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/redirecting-ssh-messages/m-p/5005551#M425379</guid>
      <dc:creator>Matthew Gwin</dc:creator>
      <dc:date>2006-09-26T15:22:30Z</dc:date>
    </item>
    <item>
      <title>Re: Redirecting ssh messages</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/redirecting-ssh-messages/m-p/5005552#M425380</link>
      <description>Thanks for setting me in the right direction Kevin - here's what I ended up doing:&lt;BR /&gt;&lt;BR /&gt;(1) Enabled the following lines in /opt/ssh/etc/sshd_config:&lt;BR /&gt;&lt;BR /&gt;SyslogFacility AUTH&lt;BR /&gt;LogLevel INFO&lt;BR /&gt;&lt;BR /&gt;(2) Restarted sshd&lt;BR /&gt;&lt;BR /&gt;(3) Added the following line to /etc/syslog.conf:&lt;BR /&gt;&lt;BR /&gt;auth.info;mail.none     /var/adm/syslog/sshd.log&lt;BR /&gt;&lt;BR /&gt;(4) Changed this line in /etc/syslog.conf:&lt;BR /&gt;*.info;mail.none      /var/adm/syslog/syslog.log&lt;BR /&gt;&lt;BR /&gt;to:&lt;BR /&gt;*.info;auth.none;mail.none      /var/adm/syslog/syslog.log&lt;BR /&gt;&lt;BR /&gt;(5) kill -HUP `cat /var/run/syslog.pid`</description>
      <pubDate>Tue, 26 Sep 2006 15:54:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/redirecting-ssh-messages/m-p/5005552#M425380</guid>
      <dc:creator>Matthew Gwin</dc:creator>
      <dc:date>2006-09-26T15:54:40Z</dc:date>
    </item>
    <item>
      <title>Re: Redirecting ssh messages</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/redirecting-ssh-messages/m-p/5005553#M425381</link>
      <description>Solution described in comments above</description>
      <pubDate>Tue, 26 Sep 2006 15:56:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/redirecting-ssh-messages/m-p/5005553#M425381</guid>
      <dc:creator>Matthew Gwin</dc:creator>
      <dc:date>2006-09-26T15:56:11Z</dc:date>
    </item>
  </channel>
</rss>

