Forum Discussion
Hassan_Hireche1
Nimbostratus
Sep 13, 2013Open SSL error on ltm logs since v11 upgrade
Hello,
We upgraded our viprion 4802 from 10.2.4 to 11.2.1. Since this upgrade, we see ltm logs concerning Open SSL error every 5 seconds:
Sep 13 04:02:14 slot1/A-EB2-BIGIP-DMZ-BCK err bigd[...
ldesfosses
Cirrus
Jun 11, 2015I've seen multiple solutions that require to run multiple tmsh command on the running BigIP.
I've made a (dirty) script that parse the bigip.conf and return a CSV list of node on port 80 with a https monitor. The only downside is all the monitor doing https check must have the word "https" in it.
! /usr/bin/sh
nbl=0 ;
runningPool=""
runningIRule=""
runningVS=""
runningNode=""
while IFS= read -r bigipconf
do
if [[ $bigipconf == ltm\ pool\ \/Common\/* ]]
then
runningPool=$(echo $bigipconf | awk '{print $3}' | awk -F '/' '{print $3}')
echo $runningPool
poolNode=""
fi
if [[ $runningPool != "" ]]
then
if [[ $bigipconf == *\/Common\/*\:80* ]]
then
runningNode=$(echo $bigipconf | awk -F '/' '{print $3 }' | awk '{ print $1 }')
poolNode=$(echo "$poolNode;$runningNode")
fi
if [[ $bigipconf == *monitor* ]]
then
monitor=$(echo $bigipconf | awk -F '/' '{ print $3 }')
if [[ $monitor == *https* ]]
then
echo -e "$runningPool;$monitor;$poolNode" | grep ':'
fi
fi
fi
if [[ $bigipconf == ltm\ virtual\ \/Common\/* ]]
then
runningPool=""
fi
done < input/bigip.conf
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects