<?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: TLS between splunk components in Splunk Enterprise</title>
    <link>https://community.splunk.com/t5/Splunk-Enterprise/TLS-between-splunk-components/m-p/695917#M19957</link>
    <description>Here is conf presentation about using TLS with splunk &lt;A href="https://conf.splunk.com/files/2023/slides/SEC1936B.pdf" target="_blank"&gt;https://conf.splunk.com/files/2023/slides/SEC1936B.pdf&lt;/A&gt;</description>
    <pubDate>Sun, 11 Aug 2024 10:46:19 GMT</pubDate>
    <dc:creator>isoutamo</dc:creator>
    <dc:date>2024-08-11T10:46:19Z</dc:date>
    <item>
      <title>TLS between splunk components</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/TLS-between-splunk-components/m-p/695910#M19954</link>
      <description>&lt;P&gt;We have below deployement, UF ----&amp;gt; HF ----&amp;gt; IDX&lt;/P&gt;&lt;P&gt;Uf are sending data to Hf and Hf is acting as and Intermediatry forwarder between UF and IDX.&lt;/P&gt;&lt;P&gt;Now we want to do TLS b/w splunk components. can we do TLS between HF and IDX and leave UFs.&lt;/P&gt;&lt;P&gt;Will UF data will also be TLS complient?&lt;/P&gt;&lt;P&gt;If not will UF still sends data to IDXs or we will stop receiving logs all together?&lt;/P&gt;</description>
      <pubDate>Sun, 11 Aug 2024 08:19:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/TLS-between-splunk-components/m-p/695910#M19954</guid>
      <dc:creator>Nawab</dc:creator>
      <dc:date>2024-08-11T08:19:23Z</dc:date>
    </item>
    <item>
      <title>Re: TLS between splunk components</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/TLS-between-splunk-components/m-p/695912#M19955</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/244855"&gt;@Nawab&lt;/a&gt;- The answer is yes, you can setup SSL on both places and you can also set SSL only for HF to Indexer.&lt;/P&gt;&lt;P&gt;I think it should not matter what you use from UF to HF and HF to Indexer, they should act independent from each other.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Connection with SSL&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;inputs.conf
---------------
[splunktcp-ssl:9997]
serverCert = &amp;lt;string&amp;gt;
sslPassword = &amp;lt;string&amp;gt;
requireClientCert = &amp;lt;boolean&amp;gt;
sslVersions = &amp;lt;string&amp;gt;
cipherSuite = &amp;lt;cipher suite string&amp;gt;
ecdhCurves = &amp;lt;comma separated list of ec curves&amp;gt;
dhFile = &amp;lt;string&amp;gt;
allowSslRenegotiation = &amp;lt;boolean&amp;gt;
sslQuietShutdown = &amp;lt;boolean&amp;gt;
sslCommonNameToCheck = &amp;lt;commonName1&amp;gt;, &amp;lt;commonName2&amp;gt;, ...
sslAltNameToCheck = &amp;lt;alternateName1&amp;gt;, &amp;lt;alternateName2&amp;gt;, ...
useSSLCompression = &amp;lt;boolean&amp;gt;


outputs.conf
------------------
[tcpout]
defaultGroup = my_indexers

[tcpout:my_indexers]
server = &amp;lt;indexer&amp;gt;:9997
sslPassword = password
clientCert = $SPLUNK_HOME/etc/auth/server.pem
(&amp;lt;Check outputs.conf.spec for other SSL configs)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Connection without SSL&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;inputs.conf
---------------
[splunktcp:9997]


outputs.conf
------------------
[tcpout]
defaultGroup = my_indexers

[tcpout:my_indexers]
server = &amp;lt;indexer&amp;gt;:9997&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this helps!!!!&lt;/P&gt;</description>
      <pubDate>Mon, 12 Aug 2024 13:15:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/TLS-between-splunk-components/m-p/695912#M19955</guid>
      <dc:creator>VatsalJagani</dc:creator>
      <dc:date>2024-08-12T13:15:36Z</dc:date>
    </item>
    <item>
      <title>Re: TLS between splunk components</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/TLS-between-splunk-components/m-p/695913#M19956</link>
      <description>&lt;P&gt;Thanks for your answer, let me do it and check if it works.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also why are you doing ssl on inputs.conf as per docs it should be done on outsputs of HF&lt;/P&gt;</description>
      <pubDate>Sun, 11 Aug 2024 09:24:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/TLS-between-splunk-components/m-p/695913#M19956</guid>
      <dc:creator>Nawab</dc:creator>
      <dc:date>2024-08-11T09:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: TLS between splunk components</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/TLS-between-splunk-components/m-p/695917#M19957</link>
      <description>Here is conf presentation about using TLS with splunk &lt;A href="https://conf.splunk.com/files/2023/slides/SEC1936B.pdf" target="_blank"&gt;https://conf.splunk.com/files/2023/slides/SEC1936B.pdf&lt;/A&gt;</description>
      <pubDate>Sun, 11 Aug 2024 10:46:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/TLS-between-splunk-components/m-p/695917#M19957</guid>
      <dc:creator>isoutamo</dc:creator>
      <dc:date>2024-08-11T10:46:19Z</dc:date>
    </item>
  </channel>
</rss>

