<?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 Splunk for Cisco IPS - connects to IPS every second regardless of &amp;quot;interval&amp;quot; setting in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Splunk-for-Cisco-IPS-connects-to-IPS-every-second-regardless-of/m-p/71068#M14449</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;I've noticed after changing the interval setting within the inputs.conf for our various IPS' it still connects to the IPS' every 1 second regardless of what I set the interval to.  Is there a reason for it not respecting this value?  or is there a setting that I may be missing?&lt;/P&gt;

&lt;P&gt;Thanks,
Josh&lt;/P&gt;</description>
    <pubDate>Thu, 31 Mar 2011 00:11:51 GMT</pubDate>
    <dc:creator>joshd</dc:creator>
    <dc:date>2011-03-31T00:11:51Z</dc:date>
    <item>
      <title>Splunk for Cisco IPS - connects to IPS every second regardless of "interval" setting</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Splunk-for-Cisco-IPS-connects-to-IPS-every-second-regardless-of/m-p/71068#M14449</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;I've noticed after changing the interval setting within the inputs.conf for our various IPS' it still connects to the IPS' every 1 second regardless of what I set the interval to.  Is there a reason for it not respecting this value?  or is there a setting that I may be missing?&lt;/P&gt;

&lt;P&gt;Thanks,
Josh&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2011 00:11:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Splunk-for-Cisco-IPS-connects-to-IPS-every-second-regardless-of/m-p/71068#M14449</guid>
      <dc:creator>joshd</dc:creator>
      <dc:date>2011-03-31T00:11:51Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk for Cisco IPS - connects to IPS every second regardless of "interval" setting</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Splunk-for-Cisco-IPS-connects-to-IPS-every-second-regardless-of/m-p/71069#M14450</link>
      <description>&lt;P&gt;Hey Josh, the SDEE connection module, used by &lt;CODE&gt;get_ips_feed.py&lt;/CODE&gt;, has a default 1 second retry on unsuccessful connections.  As such, it sounds like it might be a connection issue.&lt;/P&gt;

&lt;P&gt;The scripted input writes to log file &lt;CODE&gt;$SPLUNK_HOME/var/log/splunk/sdee_get.log&lt;/CODE&gt; which contains status information for the connection.  Have you tried checking that to see if there's any information there?&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2011 03:30:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Splunk-for-Cisco-IPS-connects-to-IPS-every-second-regardless-of/m-p/71069#M14450</guid>
      <dc:creator>dleung</dc:creator>
      <dc:date>2011-03-31T03:30:12Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk for Cisco IPS - connects to IPS every second regardless of "interval" setting</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Splunk-for-Cisco-IPS-connects-to-IPS-every-second-regardless-of/m-p/71070#M14451</link>
      <description>&lt;P&gt;Yeah, I looked into the sdee_get.log initially and it does not report any issues, it shows successful connections to the IPS and then no more repeat messages.  When I actually look at the process list on the machine (ps aux), I see the processes constantly running, should this be the case or should I only see them in the process list every X-minutes as they are configured within the inputs.conf&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2011 23:05:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Splunk-for-Cisco-IPS-connects-to-IPS-every-second-regardless-of/m-p/71070#M14451</guid>
      <dc:creator>joshd</dc:creator>
      <dc:date>2011-03-31T23:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk for Cisco IPS - connects to IPS every second regardless of "interval" setting</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Splunk-for-Cisco-IPS-connects-to-IPS-every-second-regardless-of/m-p/71071#M14452</link>
      <description>&lt;P&gt;Hi Josh,&lt;/P&gt;

&lt;P&gt;I have the same troubles than you. After a quick look, I think I found the mistake :&lt;/P&gt;

&lt;P&gt;File get_ips_feed.py :&lt;/P&gt;

&lt;P&gt;[...]&lt;BR /&gt;
58         while 1:&lt;/P&gt;

&lt;P&gt;59                 try:&lt;/P&gt;

&lt;P&gt;60                         sdee.get()&lt;/P&gt;

&lt;P&gt;61                 except:&lt;/P&gt;

&lt;P&gt;[...]&lt;/P&gt;

&lt;P&gt;I do not know why, but the loop runs forever, there is no exit / break into this loop.&lt;BR /&gt;
We should ask Splunk why....maybe it's a bug.&lt;/P&gt;

&lt;P&gt;A quick and dirty fix, add a break at the end of the loop :&lt;/P&gt;

&lt;P&gt;167         ### Commen/Uncomment to write to stdout&lt;/P&gt;

&lt;P&gt;168         #               print syslog_msg +"\n"&lt;/P&gt;

&lt;P&gt;169                 break&lt;/P&gt;

&lt;P&gt;It seems to work for me. Do not forget to change the "interval" option to 60 for example.&lt;BR /&gt;
Let me know if it works for you too.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 09:55:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Splunk-for-Cisco-IPS-connects-to-IPS-every-second-regardless-of/m-p/71071#M14452</guid>
      <dc:creator>ysouchon</dc:creator>
      <dc:date>2020-09-28T09:55:24Z</dc:date>
    </item>
  </channel>
</rss>

