Some folks are having trouble with sensors trying to ssh to the master server
before the link has fully negotiated. /etc/init/securityonion.conf needs to be
updated such that sensors sleep for 60 seconds before trying to ssh.
Original issue reported on code.google.com by doug.bu...@gmail.com on 24 Feb 2013 at 9:15
The text was updated successfully, but these errors were encountered:
/etc/init/securityonion.conf updated as follows:
#
#/etc/init/securityonion.conf
#
description "Security Onion"
start on (net-device-up
and remote-filesystems
and runlevel [2345])
stop on runlevel [016]
script
sleep 5
# If this is a SLAVE start SSH tunnel and start ELSA if required
SSH_DIR="/root/.ssh"
SSH_CONF="$SSH_DIR/securityonion_ssh.conf"
if [ -f $SSH_CONF ]
then
# Some folks are having problems with link negotiation taking too long
# and the tunnel failing to come up.
# This is a quick and dirty fix until we come up with a better solution.
sleep 60
Original comment by doug.bu...@gmail.com on 26 Feb 2013 at 5:10
Original issue reported on code.google.com by
doug.bu...@gmail.com
on 24 Feb 2013 at 9:15The text was updated successfully, but these errors were encountered: