<?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 Re: HP-UX Log Forwarding in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-log-forwarding/m-p/4055884#M305263</link>
    <description>may be this link will help u&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/5992-2331/ch06s03.html" target="_blank"&gt;http://docs.hp.com/en/5992-2331/ch06s03.html&lt;/A&gt;</description>
    <pubDate>Fri, 17 Aug 2007 03:18:04 GMT</pubDate>
    <dc:creator>AwadheshPandey</dc:creator>
    <dc:date>2007-08-17T03:18:04Z</dc:date>
    <item>
      <title>HP-UX Log Forwarding</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-log-forwarding/m-p/4055883#M305262</link>
      <description>Hi all,&lt;BR /&gt;&lt;BR /&gt;I'm running hp-ux v.B.11.11.&lt;BR /&gt;Is there any possibility to forward the syslog to a windows system?&lt;BR /&gt;&lt;BR /&gt;I need this for SOX compliance - "intrust" from Quest has been purchased and we're to forward the logs to that win system hosting the Itrust application.&lt;BR /&gt;&lt;BR /&gt;Could this be configured on HP-UX ?&lt;BR /&gt;Are there any docs /"log forwarding for dummies" on how to do it ?&lt;BR /&gt;&lt;BR /&gt;I've read this, tried to configure accordingly but to no further result...&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/T2786-90090/ch03s03.html#chdgjaai" target="_blank"&gt;http://docs.hp.com/en/T2786-90090/ch03s03.html#chdgjaai&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thank you,&lt;BR /&gt;Alex.</description>
      <pubDate>Fri, 17 Aug 2007 03:13:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-log-forwarding/m-p/4055883#M305262</guid>
      <dc:creator>Alexandru Grigore</dc:creator>
      <dc:date>2007-08-17T03:13:58Z</dc:date>
    </item>
    <item>
      <title>Re: HP-UX Log Forwarding</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-log-forwarding/m-p/4055884#M305263</link>
      <description>may be this link will help u&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/5992-2331/ch06s03.html" target="_blank"&gt;http://docs.hp.com/en/5992-2331/ch06s03.html&lt;/A&gt;</description>
      <pubDate>Fri, 17 Aug 2007 03:18:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-log-forwarding/m-p/4055884#M305263</guid>
      <dc:creator>AwadheshPandey</dc:creator>
      <dc:date>2007-08-17T03:18:04Z</dc:date>
    </item>
    <item>
      <title>Re: HP-UX Log Forwarding</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-log-forwarding/m-p/4055885#M305264</link>
      <description>HP-UX can certainly forward the log messages, but the Windows OS has no facility for receiving syslog-style log messages by default.&lt;BR /&gt;&lt;BR /&gt;(The syslog message forwarding uses UDP port 514. It's a very simple protocol.)&lt;BR /&gt;&lt;BR /&gt;I'm not familiar with Quest Intrust, but a quick Googling (using the words "quest intrust syslog") reveals that Intrust seems to have some sort of syslog functionality. Apparently newer versions of Intrust may have it built-in, but for older versions you may need to install an additional plugin named "Intrust for Syslog". &lt;BR /&gt;&lt;BR /&gt;Of course, you'll need to configure Intrust to receive syslog messages, and you'll need to configure any firewalls in between the HP-UX and the Windows machine to allow UDP packets from HP-UX to port 514 of the Windows machine.&lt;BR /&gt;&lt;BR /&gt;The instructions in &lt;BR /&gt;&lt;A href="http://docs.hp.com/en/T2786-90090/ch03s03.html#chdgjaai" target="_blank"&gt;http://docs.hp.com/en/T2786-90090/ch03s03.html#chdgjaai&lt;/A&gt;&lt;BR /&gt;are assuming that an optional, enhanced version of syslog daemon (called syslog-ng) is used to receive the forwarded logs on a HP-UX system. Syslog-ng is very different from standard syslog: the enhanced version has a lot more functionality and a different configuration syntax.&lt;BR /&gt;&lt;BR /&gt;To forward *everything* using HP-UX's standard syslog, you'll need to write something like this to /etc/syslog.conf on HP-UX:&lt;BR /&gt;&lt;BR /&gt;*.*&lt;TAB&gt;&lt;TAB&gt;@&lt;FORWARD_DESTINATION&gt;&lt;BR /&gt;&lt;BR /&gt;Note: replace &lt;FORWARD_DESTINATION&gt; with the FQDN or the IP address of the windows system running Intrust, and the &lt;TAB&gt;s with actual tab characters. You can use one or more tabs, but it's important there's at least one TAB character. Using spaces instead of tabs will make the configuration line ineffective.&lt;BR /&gt;&lt;BR /&gt;After editing the /etc/syslog.conf file, find the PID of the syslogd process and send a "kill -HUP" signal to that process. This causes syslogd to re-read its configuration file and will make the changes effective.&lt;BR /&gt;After doing this, run "tail -10 /var/adm/syslog/syslog.log": you should see a log message indicating that syslog configuration was changed. If there was an error in the syslog configuration file, the error message should be in the syslog.log too.&lt;BR /&gt;&lt;BR /&gt;Note that syslog uses UDP protocol, so you cannot use telnet to verify that the connection from HP-UX to the windows host can be established.&lt;BR /&gt;You can use the "logger" command on HP-UX to test log forwarding. You can specify the log facility (the "class" of the message), the severity level and the actual message text.&lt;BR /&gt;&lt;BR /&gt;Remember that UDP packets can sometimes be lost in the network. There is no system for acknowledging that a forwarded log message was actually received: syslog forwarding works on a "fire-and-forget" principle.&lt;BR /&gt;&lt;BR /&gt;MK&lt;/TAB&gt;&lt;/FORWARD_DESTINATION&gt;&lt;/FORWARD_DESTINATION&gt;&lt;/TAB&gt;&lt;/TAB&gt;</description>
      <pubDate>Fri, 17 Aug 2007 03:52:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-log-forwarding/m-p/4055885#M305264</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2007-08-17T03:52:37Z</dc:date>
    </item>
    <item>
      <title>Re: HP-UX Log Forwarding</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-log-forwarding/m-p/4055886#M305265</link>
      <description>Thank you  Matti for your detailed answer,  and thank you Awadhesh for the link. &lt;BR /&gt;&lt;BR /&gt;I'll let you know of the result as soon as I'll have any results. &lt;BR /&gt;&lt;BR /&gt;Thanks again, &lt;BR /&gt;Alex.</description>
      <pubDate>Fri, 17 Aug 2007 04:54:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-log-forwarding/m-p/4055886#M305265</guid>
      <dc:creator>Alexandru Grigore</dc:creator>
      <dc:date>2007-08-17T04:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: HP-UX Log Forwarding</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-log-forwarding/m-p/4055887#M305266</link>
      <description>Kiwi Syslogger works great to collect syslog entries &lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.kiwisyslog.com" target="_blank"&gt;www.kiwisyslog.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Runs on M$ can collect from any platform using syslogd&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 17 Aug 2007 14:58:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-log-forwarding/m-p/4055887#M305266</guid>
      <dc:creator>Tim Nelson</dc:creator>
      <dc:date>2007-08-17T14:58:34Z</dc:date>
    </item>
  </channel>
</rss>

