- CheckMates
- :
- Products
- :
- Quantum
- :
- Security Gateways
- :
- Gaia HealthCheck Script v5.8 released
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Are you a member of CheckMates?
×
Sign in with your Check Point UserCenter/PartnerMap account to access more great content and get a chance to win some Apple AirPods! If you don't have an account, create one now for free!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Gaia HealthCheck Script v5.8 released
Check Point just released v5.8 of it's Gaia HealthCheck Script.
Whats new:
- Output formatting
- PXL Check
- Improvements for VSX
- SND core distribution check
Download
3 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
There is a small cosmetic error with PXL check as fwaccel stats -s returns two lines if you grep for PXL
you will need to change line
pxl_percent=$(echo "$fwaccel_stats_s" | grep PXL | awk -F\( '{print $2}' | awk -F\% '{print $1}')
to
pxl_percent=$(echo "$fwaccel_stats_s" | grep "PXL pkts" | awk -F\( '{print $2}' | awk -F\% '{print $1}')
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Sorry Mate, they didn't include your improvement in v5.11
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Rosemarie Rodriguez (couldn't find Nathan here)
One more thing for VSX. Current script will execute "firewall" type checks (acceleration, clustering etc) against virtual switches and routers. I would suggest to exclude them as those are irrelevant.
So replace VS list generation from this line
#Create list of all VSs except 0 vs_list=$(vsx stat -l 2> /dev/null | grep VSID | awk '{print $2}'| grep -v -w 0)
to this instead
#Create list of all VSs except 0vs_list=$(vsx stat -v | grep " | S " | awk '{print $1}')
