You always need to be keeping your “eyes” on everything… well have the Blue Coat ProxySG monitor itself so you can sit back and be more productive.
Here’s a quick example of how to create a ‘Health Check’ on a Blue Coat ProxySG appliance to help notify you when the appliance can no longer reach the Internet. In the example below I decided to poll Google and Yahoo each every minute. The actual health check looks for a “200 OK” similar to the help check of a Layer 7 switch or content load balancer.
!- BEGIN health_checks health-check default e-mail healthy enable default e-mail sick enable default event-log healthy information default event-log sick severe default snmp healthy enable default snmp sick enable create icmp "user.Internet" 10.1.1.10 edit "user.Internet" interval healthy 60 interval sick 60 exit create http "user.InternetTest1" http://www.google.com edit "user.InternetTest1" interval healthy 60 interval sick 120 exit create http "user.InternetTest2" http://www.yahoo.com edit "user.InternetTest2" interval healthy 60 interval sick 120 exit exit !- END health_checks
Cheers!