Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Update for PDF export

...

# /opt/charon/utils/charon_expchk 15 -nomail -expdat=2423-JulJan-20202021


Div
classpagebreak

The This command above, with forced expiration date, will provide the following results:

...

  • $1 = level that can be (case sensitive): Informational, Minor, MAJOR, CRITICAL, EXPIRED or NEUTRAL
    • Note: NEUTRAL is sent when no alert is detected, used to send counter alert.
  • $2 = message starting with ":" followed by the license expiration date, the license number and the product.
    • Example: : 2423-JulJan-20202021. License: 1001687. Product: CHARON-PA9-64-AXPL4


Script example using Zabbix software:

...


Div

...

class

...

small

#!/bin/sh

...


#-------------------------------------------------------------------------------

...


#

...

charon_expchk.custom

...


#-------------------------------------------------------------------------------

...


ZABSEND=/usr/bin/zabbix_sender

...


ZABCONF=/etc/zabbix/zabbix_agentd.conf

...

if

...

test

...

-x

...

${ZABSEND}

...


then
  if test -s

...

${ZABCONF}

...


  then
    case "$1"

...


    in
      Informational) LVL="INFORMATION";;

...


      Minor) LVL="WARNING";;

...


      MAJOR) LVL="AVERAGE";;

...


      CRITICAL) LVL="HIGH";;

...


      EXPIRED) LVL="DISASTER";;

...


      *) LVL="NEUTRAL";;

...


    esac
    ${ZABSEND}

...

-c

...

${ZABCONF}

...

-k

...

charon_expchk

...

-o

...

"${LVL};$2"

...

>/dev/null

...


  else
    echo "The

...

Zabbix

...

agent

...

configuration

...

file

...

is

...

missing.

...

Cannot

...

send

...

alert!"

...


  fi
fi


Include Page
KBCOMMON:DOC-GoToToc
KBCOMMON:DOC-GoToToc