<?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 SSL between forwarders and indexers in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/SSL-between-forwarders-and-indexers/m-p/427255#M74864</link>
    <description>&lt;P&gt;Is it possible to have index cluster tier which can support both non-ssl and ssl forwarders without running multiple instances? &lt;/P&gt;</description>
    <pubDate>Thu, 24 Jan 2019 16:31:41 GMT</pubDate>
    <dc:creator>jatin_patel</dc:creator>
    <dc:date>2019-01-24T16:31:41Z</dc:date>
    <item>
      <title>SSL between forwarders and indexers</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/SSL-between-forwarders-and-indexers/m-p/427255#M74864</link>
      <description>&lt;P&gt;Is it possible to have index cluster tier which can support both non-ssl and ssl forwarders without running multiple instances? &lt;/P&gt;</description>
      <pubDate>Thu, 24 Jan 2019 16:31:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/SSL-between-forwarders-and-indexers/m-p/427255#M74864</guid>
      <dc:creator>jatin_patel</dc:creator>
      <dc:date>2019-01-24T16:31:41Z</dc:date>
    </item>
    <item>
      <title>Re: SSL between forwarders and indexers</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/SSL-between-forwarders-and-indexers/m-p/427256#M74865</link>
      <description>&lt;P&gt;Yes, but they cannot be on the same port.  You will need to have one [splunktcp-ssl:] stanza and [splunktcp:] stanza in your inputs.conf.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jan 2019 19:54:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/SSL-between-forwarders-and-indexers/m-p/427256#M74865</guid>
      <dc:creator>jkuepker_splunk</dc:creator>
      <dc:date>2019-01-24T19:54:12Z</dc:date>
    </item>
    <item>
      <title>Re: SSL between forwarders and indexers</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/SSL-between-forwarders-and-indexers/m-p/427257#M74866</link>
      <description>&lt;P&gt;Sure, you can do that by setting on each forwarder &lt;CODE&gt;outputs.conf&lt;/CODE&gt; as you choose to with or without ssl. If your &lt;CODE&gt;outputs.conf&lt;/CODE&gt; is deployed via the apps then you can deploy to each set of forwarders the desired ssl or not configurations. &lt;/P&gt;</description>
      <pubDate>Thu, 24 Jan 2019 20:02:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/SSL-between-forwarders-and-indexers/m-p/427257#M74866</guid>
      <dc:creator>ddrillic</dc:creator>
      <dc:date>2019-01-24T20:02:25Z</dc:date>
    </item>
    <item>
      <title>Re: SSL between forwarders and indexers</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/SSL-between-forwarders-and-indexers/m-p/427258#M74867</link>
      <description>&lt;P&gt;Thanks so  much for two answers!!&lt;/P&gt;

&lt;P&gt;so,&lt;BR /&gt;
I need inputs.conf with two ports one for one port for non-ssl(default 9997) and another for SSL?&lt;BR /&gt;
Then just use SSL configs in outputs.conf for each forwarders where we need SSL?&lt;/P&gt;

&lt;P&gt;is there some splunk docs out there which I can take a look?&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jan 2019 20:12:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/SSL-between-forwarders-and-indexers/m-p/427258#M74867</guid>
      <dc:creator>jatin_patel</dc:creator>
      <dc:date>2019-01-24T20:12:54Z</dc:date>
    </item>
    <item>
      <title>Re: SSL between forwarders and indexers</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/SSL-between-forwarders-and-indexers/m-p/427259#M74868</link>
      <description>&lt;P&gt;Just look at the &lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/Admin/inputsconf#Data_distribution:"&gt;inputs.conf specifictaions&lt;/A&gt;. It's all described there.&lt;/P&gt;

&lt;P&gt;Skalli&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jan 2019 10:32:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/SSL-between-forwarders-and-indexers/m-p/427259#M74868</guid>
      <dc:creator>skalliger</dc:creator>
      <dc:date>2019-01-29T10:32:07Z</dc:date>
    </item>
    <item>
      <title>Re: SSL between forwarders and indexers</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/SSL-between-forwarders-and-indexers/m-p/427260#M74869</link>
      <description>&lt;P&gt;Building on above answers. Here are examples at least for Splunk 6.6&lt;/P&gt;

&lt;P&gt;inputs.conf on the indexer&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;# non ssl
[splunktcp://&amp;lt;non_ssl_port&amp;gt;]

# ssl
[splunktcp-ssl:&amp;lt;ssl_port&amp;gt;]
[SSL]
requireClientCert = true
sslCommonNameToCheck = mycommonName
serverCert = /path/to/ssl/servercert.pem
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;outputs.conf on a forwarder using SSL&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[tcpout]
defaultGroup             = splunkindexer-ssl

[tcpout:splunkindexer-ssl]
autoLBFrequency = 30
compressed  = false
server  = server1:&amp;lt;ssl_port&amp;gt;,server2:&amp;lt;ssl_port&amp;gt;,server3:&amp;lt;ssl_port&amp;gt;
clientCert  = /path_to_cert/servercert.pem
sslPassword  = password
sslRootCAPath  = /path_to_ca_cert/ca.cert.pem
sslCommonNameToCheck = mycommonName
sslVersions = tls1.2
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 29 Jan 2019 19:55:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/SSL-between-forwarders-and-indexers/m-p/427260#M74869</guid>
      <dc:creator>burwell</dc:creator>
      <dc:date>2019-01-29T19:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: SSL between forwarders and indexers</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/SSL-between-forwarders-and-indexers/m-p/427261#M74870</link>
      <description>&lt;P&gt;Thanks everyone!!&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jan 2019 20:02:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/SSL-between-forwarders-and-indexers/m-p/427261#M74870</guid>
      <dc:creator>jatin_patel</dc:creator>
      <dc:date>2019-01-29T20:02:54Z</dc:date>
    </item>
  </channel>
</rss>

