<?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: About configuration in forwarding by using SSL. in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/About-configuration-in-forwarding-by-using-SSL/m-p/443518#M77232</link>
    <description>&lt;P&gt;Thank you for answer.&lt;/P&gt;

&lt;P&gt;1- Normally, such a environment like web server and client, I think that server side has server cert, and optionally, client have to send client cert to server.&lt;BR /&gt;
I just wondered that why default value of these attributes is so.&lt;BR /&gt;
I understand that it is not a recommendation, but it depends on the security level I want! Thank you!&lt;/P&gt;

&lt;P&gt;2- OK, I got it!&lt;/P&gt;

&lt;P&gt;-PS: requireClientCert defaults to false.&lt;BR /&gt;
In &lt;CODE&gt;inputs.conf&lt;/CODE&gt;, there is below description, so I think default is true, if I use default certification.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;requireClientCert = &amp;lt;boolean&amp;gt;
* Determines whether a client must present an SSL certificate to authenticate.
* Full path to the root CA (Certificate Authority) certificate store.
* Default: false (if using self-signed and third-party certificates)
* Default: true (if using the default certificates, overrides the 
existing "false" setting)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 27 Jun 2019 09:08:15 GMT</pubDate>
    <dc:creator>yutaka1005</dc:creator>
    <dc:date>2019-06-27T09:08:15Z</dc:date>
    <item>
      <title>About configuration in forwarding by using SSL.</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/About-configuration-in-forwarding-by-using-SSL/m-p/443516#M77230</link>
      <description>&lt;P&gt;I want to ask some point.&lt;/P&gt;

&lt;OL&gt;
&lt;LI&gt;When using the default certificate, &lt;CODE&gt;sslVerifyServerCert&lt;/CODE&gt; in &lt;CODE&gt;outputs.conf&lt;/CODE&gt; is &lt;CODE&gt;false&lt;/CODE&gt;, and &lt;CODE&gt;requireClientCert&lt;/CODE&gt; in &lt;CODE&gt;inputs.conf&lt;/CODE&gt; is &lt;CODE&gt;true&lt;/CODE&gt; by default. In this case, there is no proof on the server side, but it seems that only the client side is proofing. 
Is such a setting recommended?&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/Splunk/7.3.0/Admin/Inputsconf"&gt;https://docs.splunk.com/Documentation/Splunk/7.3.0/Admin/Inputsconf&lt;/A&gt;&lt;BR /&gt;
&lt;A href="https://docs.splunk.com/Documentation/Splunk/7.3.0/Admin/Outputsconf"&gt;https://docs.splunk.com/Documentation/Splunk/7.3.0/Admin/Outputsconf&lt;/A&gt;&lt;/P&gt;

&lt;OL&gt;
&lt;LI&gt;In step of following manual, it is configured &lt;CODE&gt;requireClientCert&lt;/CODE&gt; is &lt;CODE&gt;false&lt;/CODE&gt; in indexer side, also configured &lt;CODE&gt;requireClientCert&lt;/CODE&gt; is &lt;CODE&gt;false&lt;/CODE&gt; in forwarder side.
In this case, I think that it doesn't have to configure &lt;CODE&gt;clientCert&lt;/CODE&gt; AND &lt;CODE&gt;serverCert&lt;/CODE&gt;, am I wrong?.&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/Splunk/7.3.0/Security/ConfigureSplunkforwardingtousethedefaultcertificate"&gt;https://docs.splunk.com/Documentation/Splunk/7.3.0/Security/ConfigureSplunkforwardingtousethedefaultcertificate&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jun 2019 08:26:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/About-configuration-in-forwarding-by-using-SSL/m-p/443516#M77230</guid>
      <dc:creator>yutaka1005</dc:creator>
      <dc:date>2019-06-27T08:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: About configuration in forwarding by using SSL.</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/About-configuration-in-forwarding-by-using-SSL/m-p/443517#M77231</link>
      <description>&lt;P&gt;Hi @yutaka1005,&lt;/P&gt;

&lt;P&gt;1- It depends on the security level you wish to have and the trust you put on each layer of your Splunk deployment. If you set the &lt;CODE&gt;requireClientCert&lt;/CODE&gt; as you mentioned in your question then your forwarders must present a valid certificate to authenticate and send data to the indexers whereas indexers don't have to present anything to the forwarders since &lt;CODE&gt;sslVerifyServerCert&lt;/CODE&gt; is unset in &lt;CODE&gt;outputs.conf&lt;/CODE&gt;. With such a configuration you are saying "I trust my indexers to always be the right destination for data so I will not verify the destination where my data is going" and you're also saying "I don't trust my sources so I need to verify that they are legit sources". This guarantees that your sources are always legit and no one can inject noise to your indexers but doesn't guarantee that your forwarder will only send to your indexers. You will need to set both setting if you wish to have both indexers and forwarders verify that they recognize each others. Again it all depends on your security policy.&lt;/P&gt;

&lt;P&gt;2- You're right, If&lt;CODE&gt;requireClientCert&lt;/CODE&gt;is set to &lt;CODE&gt;false&lt;/CODE&gt; you can keep the default certs so no need to configure &lt;CODE&gt;clientCert&lt;/CODE&gt; or &lt;CODE&gt;serverCert&lt;/CODE&gt;. &lt;BR /&gt;
PS: &lt;CODE&gt;requireClientCert&lt;/CODE&gt; defaults to true when default certificates are used.&lt;/P&gt;

&lt;P&gt;Let me know if you need further details.&lt;/P&gt;

&lt;P&gt;Cheers,&lt;BR /&gt;
David&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jun 2019 08:52:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/About-configuration-in-forwarding-by-using-SSL/m-p/443517#M77231</guid>
      <dc:creator>DavidHourani</dc:creator>
      <dc:date>2019-06-27T08:52:17Z</dc:date>
    </item>
    <item>
      <title>Re: About configuration in forwarding by using SSL.</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/About-configuration-in-forwarding-by-using-SSL/m-p/443518#M77232</link>
      <description>&lt;P&gt;Thank you for answer.&lt;/P&gt;

&lt;P&gt;1- Normally, such a environment like web server and client, I think that server side has server cert, and optionally, client have to send client cert to server.&lt;BR /&gt;
I just wondered that why default value of these attributes is so.&lt;BR /&gt;
I understand that it is not a recommendation, but it depends on the security level I want! Thank you!&lt;/P&gt;

&lt;P&gt;2- OK, I got it!&lt;/P&gt;

&lt;P&gt;-PS: requireClientCert defaults to false.&lt;BR /&gt;
In &lt;CODE&gt;inputs.conf&lt;/CODE&gt;, there is below description, so I think default is true, if I use default certification.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;requireClientCert = &amp;lt;boolean&amp;gt;
* Determines whether a client must present an SSL certificate to authenticate.
* Full path to the root CA (Certificate Authority) certificate store.
* Default: false (if using self-signed and third-party certificates)
* Default: true (if using the default certificates, overrides the 
existing "false" setting)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 27 Jun 2019 09:08:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/About-configuration-in-forwarding-by-using-SSL/m-p/443518#M77232</guid>
      <dc:creator>yutaka1005</dc:creator>
      <dc:date>2019-06-27T09:08:15Z</dc:date>
    </item>
    <item>
      <title>Re: About configuration in forwarding by using SSL.</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/About-configuration-in-forwarding-by-using-SSL/m-p/443519#M77233</link>
      <description>&lt;P&gt;Most welcome @yutaka1005 !&lt;/P&gt;

&lt;P&gt;And yes you're right defaults to &lt;CODE&gt;true&lt;/CODE&gt; if using default certificates, I'll update the answer &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jun 2019 09:13:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/About-configuration-in-forwarding-by-using-SSL/m-p/443519#M77233</guid>
      <dc:creator>DavidHourani</dc:creator>
      <dc:date>2019-06-27T09:13:21Z</dc:date>
    </item>
    <item>
      <title>Re: About configuration in forwarding by using SSL.</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/About-configuration-in-forwarding-by-using-SSL/m-p/537973#M90175</link>
      <description>&lt;P&gt;Hello, isn't Splunk default certificate considered as selfsigned? Thanks.&lt;/P&gt;</description>
      <pubDate>Sat, 30 Jan 2021 09:50:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/About-configuration-in-forwarding-by-using-SSL/m-p/537973#M90175</guid>
      <dc:creator>splunkreal</dc:creator>
      <dc:date>2021-01-30T09:50:46Z</dc:date>
    </item>
  </channel>
</rss>

