|
I have one Indexer (IDX) receiving data from one Heavy Forwarder (HF). I configured SSL in both of them and now the Heavy Forwarder is not sending data to the Indexer. However the TCP connection is established between them when doing $ netstat -an. I activated debug messages to appear on logs and I have the following error in "splunkd.log":
My configurations are similar to the ones here: http://wiki.splunk.com/Community:Splunk2Splunk_SSL_DefaultCerts Thank you in advance |
|
Problem solved! It turns out the configuration at inputs.conf:
didn't match with the configuration at outputs.conf:
It was just a matter of setting that right by putting everything alike int both files. hi is there any chance of any more detail on this? i've exactly the same problem but don't understand that resolution posted above? thanks in advance (and in anticipation)
(01 Aug '12, 09:03)
rgill90
Hi rgill90, only saw your message today. I have one example as follows: Inputs.conf [splunktcp://:9997] connection_host = ip _TCP_ROUTING = splunkssl Outputs.conf [tcpout] defaultGroup = splunkssl [tcpout:splunkssl] compressed = true server = <server>:9997 sslCertPath = ... sslPassword = ... sslRootCAPath = ... sslVerifyServerCert = true As you can see, the attribute value at inputs.conf of _TCP_ROUTING is splunkssl and at the outputs you must have that same name at tcpout. Naturally you can give any name you want (no need to be "splunkssl" but they must match in both files)
(09 Aug '12, 02:28)
fernandoandre
|