1
0
mirror of https://github.com/krislamo/graylog_demo synced 2024-09-19 21:50:36 +00:00

Use built-in TLS forwarding support

This commit is contained in:
Kris Lamoureux 2020-07-24 11:56:06 -04:00
parent 651a26584a
commit b4e33f4b41
Signed by: kris
GPG Key ID: A30022791E1719A4
3 changed files with 26 additions and 16 deletions

16
Vagrantfile vendored
View File

@ -56,11 +56,25 @@ Vagrant.configure("2") do |config|
systemctl restart rsyslog
fi
# Setup TLS
if [ ! -f /vagrant/tmp/ca_key.pem ]; then
echo "Generating TLS certificates..."
cd /vagrant/tmp
openssl req -newkey rsa:4096 \
-x509 \
-sha256 \
-days 3650 \
-nodes \
-out ca_cert.pem \
-keyout ca_key.pem \
-subj "/C=US/ST=Local/L=Local/O=Org/OU=IT/CN=example.com" \
2> /dev/null
fi
# Install td-agent
cp /vagrant/td-agent.repo /etc/yum.repos.d/
yum check-update
yum install -y td-agent
td-agent-gem install fluent-plugin-secure-forward
td-agent-gem install fluent-plugin-gelf-hs gelf
systemctl -q enable td-agent

View File

@ -1,12 +1,12 @@
<source>
@type secure_forward
shared_key test
self_hostname 172.28.128.30
@type forward
port 2514
secure true
ca_cert_path /vagrant/tmp/ca_cert.pem
ca_private_key_path /vagrant/tmp/ca_key.pem
ca_private_key_passphrase test
<transport tls>
version TLSv1_2
insecure true
cert_path /vagrant/tmp/ca_cert.pem
private_key_path /vagrant/tmp/ca_key.pem
</transport>
</source>
<source>

View File

@ -46,15 +46,11 @@
</match>
<match **>
@type secure_forward
shared_key test
self_hostname 172.28.128.31
flush_interval 0s
num_threads 2
secure true
ca_cert_path /vagrant/tmp/ca_cert.pem
@type forward
transport tls
tls_cert_path /vagrant/tmp/ca_cert.pem
<server>
name example.com
host 172.28.128.30
port 2514
</server>