Thanks Gergely,<div>I was trying to <span style="font-family:arial,sans-serif;font-size:13px">replace myhostname with the IP (removing the &quot;</span><span style="font-family:arial,sans-serif;font-size:13px">Original </span><span style="font-family:arial,sans-serif;font-size:13px">Host=$IP&quot; part of the message would be optional).</span></div>
<div><span style="font-family:arial,sans-serif;font-size:13px">I thought it would have to be done using something like patterndb, but wasn&#39;t sure.</span></div><div><span style="font-family:arial,sans-serif;font-size:13px">I&#39;ll try to read up and figure out how to do it, as my patterndb experience is a bit lacking still :-)</span></div>
<div><span style="font-family:arial,sans-serif;font-size:13px"><br></span></div><div class="gmail_extra"><br clear="all">______________________________________________________________ <br><br>Clayton Dukes<br>______________________________________________________________<br>

<br><br><div class="gmail_quote">On Wed, Nov 14, 2012 at 5:26 AM, Gergely Nagy <span dir="ltr">&lt;<a href="mailto:algernon@balabit.hu" target="_blank">algernon@balabit.hu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="im">Clayton Dukes &lt;<a href="mailto:cdukes@gmail.com">cdukes@gmail.com</a>&gt; writes:<br>
<br>
&gt; Hi Folks,<br>
&gt; How can I extract a hostname from the message and replace the source ip<br>
&gt; with that name/ip address?<br>
&gt;<br>
&gt; Sample message:<br>
&gt; Nov 13 18:11:00 myhostname mymessage: Original<br>
&gt; Host=192.168.6.3:LOW_THRESHOLD_EVENT<br>
&gt; - 0 AUTHORIZED sessions<br>
&gt;<br>
&gt; So, I need a rewrite rule(?) to take 192.168.6.3 and replace $HOST with it:<br>
&gt; Nov 13 18:11:00 92.168.6.3 mymessage:LOW_THRESHOLD_EVENT - 0<br>
&gt; AUTHORIZED sessions<br>
<br>
</div>Do you want to replace &#39;myhostname&#39; with the IP, or the IP with<br>
myhostname?<br>
<br>
If you want to replace myhostname with the IP, and remove the &quot;Original<br>
Host=$IP&quot; part of the message, you will need to pick out the IP from the<br>
message part (either with patterndb, or some other way), then create a<br>
rewrite rule that removes it from $MESSAGE. Then, on the destination<br>
side, I&#39;d use a template to re-assemble the thing, replacing $HOST with<br>
the extracted IP address.<br>
<br>
If you want to replace the IP with the hostname, that&#39;s a little bit<br>
easier:<br>
<br>
rewrite r_subst_ip {<br>
 subst(&quot;Original Host=[0-9]*\.[0-9]*\.[0-9]*\.[0-9]*&quot;, &quot;$HOST&quot;,<br>
       value(&quot;MESSAGE&quot;));<br>
};<br>
<span class="HOEnZb"><font color="#888888"><br>
--<br>
|8]<br>
<br>
</font></span></blockquote></div><br></div>