<?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: What is the recipe for creating new SSL certs for forwarding with no auth? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/What-is-the-recipe-for-creating-new-SSL-certs-for-forwarding/m-p/29206#M5018</link>
    <description>&lt;P&gt;Can you clarify just a little?  Are you wanting to make a new CA and issue a certificate to each forwarder?  Or, are you wanting to create a new self-signed certificate for the indexer?  Or is it something else entirely?&lt;/P&gt;</description>
    <pubDate>Fri, 13 Aug 2010 02:44:32 GMT</pubDate>
    <dc:creator>dwaddle</dc:creator>
    <dc:date>2010-08-13T02:44:32Z</dc:date>
    <item>
      <title>What is the recipe for creating new SSL certs for forwarding with no auth?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/What-is-the-recipe-for-creating-new-SSL-certs-for-forwarding/m-p/29205#M5017</link>
      <description>&lt;P&gt;What are the steps to setup a new CA and generate new certs for SSL forwarding with no auth:&lt;/P&gt;</description>
      <pubDate>Fri, 13 Aug 2010 02:14:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/What-is-the-recipe-for-creating-new-SSL-certs-for-forwarding/m-p/29205#M5017</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2010-08-13T02:14:09Z</dc:date>
    </item>
    <item>
      <title>Re: What is the recipe for creating new SSL certs for forwarding with no auth?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/What-is-the-recipe-for-creating-new-SSL-certs-for-forwarding/m-p/29206#M5018</link>
      <description>&lt;P&gt;Can you clarify just a little?  Are you wanting to make a new CA and issue a certificate to each forwarder?  Or, are you wanting to create a new self-signed certificate for the indexer?  Or is it something else entirely?&lt;/P&gt;</description>
      <pubDate>Fri, 13 Aug 2010 02:44:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/What-is-the-recipe-for-creating-new-SSL-certs-for-forwarding/m-p/29206#M5018</guid>
      <dc:creator>dwaddle</dc:creator>
      <dc:date>2010-08-13T02:44:32Z</dc:date>
    </item>
    <item>
      <title>Re: What is the recipe for creating new SSL certs for forwarding with no auth?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/What-is-the-recipe-for-creating-new-SSL-certs-for-forwarding/m-p/29207#M5019</link>
      <description>&lt;P&gt;First you probably want to create your own root CA:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;mkdir -p /opt/splunk/etc/certs
/opt/splunk/bin/genRootCA.sh -d /opt/splunk/etc/certs
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This will create the files:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;ca.pem
cacert.pem
cakey.pem
careq.pem
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;in the given directory. Then you can issue signed server certificates for your indexer:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;/opt/splunk/bin/genSignedServerCert.sh -d /opt/splunk/etc/certs -n indexer -c indexer.mydomain.com
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;and for your forwarder:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;/opt/splunk/bin/genSignedServerCert.sh -d /opt/splunk/etc/certs -n forwarder1 -c forwarder1.mydomain.com
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Copy over the files forwarder1.pem and cacert.pem to your forwarder.&lt;/P&gt;

&lt;P&gt;To configure your forwarder to send the data via SSL add the following to $SPLUNK_HOME/etc/system/local/outputs.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[indexAndForward]
index=false

[tcpout]
defaultGroup = forward-ssl

[tcpout:forward-ssl]
server = &amp;lt;indexer-ip&amp;gt;:9443

[tcpout-server://&amp;lt;indexer-ip&amp;gt;:9443]
sslCertPath=$SPLUNK_HOME/etc/certs/forwarder1.pem
sslPassword=password
sslRootCAPath=$SPLUNK_HOME/etc/certs/cacert.pem
sslVerfyServerCert=false
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;and add the following on the indexer in the $SPLUNK_HOME/etc/system/local/inputs.conf to listen on a port with SSL enabled:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[SSL]
serverCert=$SPLUNK_HOME/etc/certs/indexer.pem
password=password
rootCA=$SPLUNK_HOME/etc/auth/cacert.pem
requireClientCert=false

[splunktcp-ssl:9443]
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;It's also possible to distribute the SSL configuration via deployment services.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Aug 2010 04:05:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/What-is-the-recipe-for-creating-new-SSL-certs-for-forwarding/m-p/29207#M5019</guid>
      <dc:creator>ziegfried</dc:creator>
      <dc:date>2010-08-13T04:05:45Z</dc:date>
    </item>
    <item>
      <title>Re: What is the recipe for creating new SSL certs for forwarding with no auth?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/What-is-the-recipe-for-creating-new-SSL-certs-for-forwarding/m-p/29208#M5020</link>
      <description>&lt;P&gt;Information about setting up SSL forwarding with host authentication and self-signed certificates can be found here : &lt;A href="http://answers.splunk.com/questions/7164/how-do-i-set-up-ssl-forwarding-with-new-self-signed-certificates-and-host-authen"&gt;http://answers.splunk.com/questions/7164/how-do-i-set-up-ssl-forwarding-with-new-self-signed-certificates-and-host-authen&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Sep 2010 13:56:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/What-is-the-recipe-for-creating-new-SSL-certs-for-forwarding/m-p/29208#M5020</guid>
      <dc:creator>hexx</dc:creator>
      <dc:date>2010-09-23T13:56:18Z</dc:date>
    </item>
    <item>
      <title>Re: What is the recipe for creating new SSL certs for forwarding with no auth?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/What-is-the-recipe-for-creating-new-SSL-certs-for-forwarding/m-p/29209#M5021</link>
      <description>&lt;P&gt;@ziegfried -- very interesting. I am interested in how to distribute this via deployment services. I can't seem to find anything that explains how you would push updated certs out to the forwarders.&lt;/P&gt;</description>
      <pubDate>Tue, 06 May 2014 23:25:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/What-is-the-recipe-for-creating-new-SSL-certs-for-forwarding/m-p/29209#M5021</guid>
      <dc:creator>wrangler2x</dc:creator>
      <dc:date>2014-05-06T23:25:00Z</dc:date>
    </item>
  </channel>
</rss>

