Check Point released v7.11 of it's Gaia Health Check Script
Also available as SmartConsole Extension!
Script author: @Nathan_Davieau (LinkedIn profile)
QA Director: @Barak_Ran (LinkedIn profile)
What's new:
- Updated Jumbo Hotfix version info
- Added Smart-1 RAID checks (Virtual Disk State, Physical Drives State, Backup Battery State)
- Revised API port and login check on security managements
What's missing:
- many checks listed in Check Points Professional Service health check (sample report)
- USFW best practices checks as described in sk167052
- Recognition of expired 1-year licenses to avoid warnings on such systems (example: CPSB-COMP-5-1Y)
Download
Package |
Link |
Date |
healthcheck.sh script v7.11 |
|
26May2020 |
Installation
nc -z -w 3 supportcenter.checkpoint.com 443; if [[ $? -eq 0 ]]; then curl_cli -o healthcheck.tmp -f -s -k "https://supportcenter.checkpoint.com/supportcenter/portal/role/supportcenterUser/page/default.psml/media-type/html?action=portlets.DCFileAction&eventSubmit_doGetdcdetails=&fileid=59369"; l=`grep "HashKey" healthcheck.tmp | head -n1 | awk '{print $3}' | sed 's/href="//' | sed 's/">//'`; s=`echo $l | awk -F/ '{print $6}'`; curl_cli -o healthcheck.sh -f -s -k $l; if [[ `md5sum healthcheck.sh | cut -d " " -f1` == $s ]]; then chmod +x healthcheck.sh; ls -la healthcheck.sh; else echo "MD5 hash mismatch of Gaia healthcheck script. Aborting."; rm healthcheck.sh; fi; rm -f healthcheck.tmp; else echo "No HTTPS access to supportcenter.checkpoint.com for script download -> see sk83520"; fi