For more information regarding the security incident at F5, the actions we are taking to address it, and our ongoing efforts to protect our customers, click here.

Forum Discussion

dirome's avatar
dirome
Icon for Cirrus rankCirrus
Jun 25, 2019
Solved

Email notification for pool members

Hi,   Is possible to send an email when a specific pool member goes down or up? i tried to do configuring the user_alert.conf but i cannot see the email    
  • Snl's avatar
    Jun 26, 2019

    try below sample

     

    create host entry in f5 for email gateway

    mail.ae - 10.1.122.13 

     

    cp /config/user_alert.conf /config/user_alert.conf.SOL3727

     

    modify /sys outbound-smtp mailhub mail.ae:25

     

    save /sys config

     

    echo "ssmtp test mail" | mail -vs "Test email for SOL13180" abc@mail.ae

     

     

    create /sys management-route 10.1.122.13/32 gateway 10.x.x.1

     

     

    echo "ssmtp test mail" | mail -vs "f5 test mail" abc@mail.ae

     

    tmsh restart /sys service alertd

     

     

    Full pool email alert

     

     

    custome pool email alerts

     

    ==================

    user alert file

     

    vi /config/user_alert.conf

     

    alert BIGIP_MCPD_MCPDERR_POOL_MEMBER_MON_DOWN "Pool (.*?) member (.*?):(.*?) monitor status (.*?)." {

        email toaddress="netsec@mail..ae"

        fromaddress="primarybox@mail.ae"

        body="A pool member went down"

    }

     

    alert BIGIP_MCPD_MCPDERR_POOL_MEMBER_MON_UP "Pool (.*?) member (.*?):(.*?) monitor status up." {

        email toaddress="netsec@mail.ae"

        fromaddress="primarybox@mail.ae"

        body="A pool member came back up"

    }