- CheckMates
- :
- CheckMates Toolbox
- :
- Scripts
- :
- Show all Gateway Registry Parameter - ONELINER
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Show all Gateway Registry Parameter - ONELINER
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content


This oneliner shows you all Registry parameter (int, uint and string) of the firewall gateway with their values.
This can be useful in the debug case to see an overview of all Registry parameters.
cpprod_util 2>&1 |grep -v Usage |grep -v "ome " | grep -v init | egrep -v '^\s*$|^#'|sort -u| awk '{printf $1 " = "} {system("cpprod_util " $1 " 2>&1")}' | grep -v 'cpprod_util: function'
This oneliner shows you all Registry parameter (int, uint and string) of the firewall gateway with their values.
This can be useful in the debug case to see an overview of all Registry parameters.
cpprod_util 2>&1 |grep -v Usage |grep -v "ome " | grep -v init | egrep -v '^\s*$|^#'|sort -u| awk '{printf $1 " = "} {system("cpprod_util " $1 " 2>&1")}' | grep -v 'cpprod_util: function'
;
Disclaimer: Check Point does not provide maintenance services or technical or customer support for third party content provided on this Site, including in CheckMates Toolbox. See also our Third Party Software Disclaimer.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

@HeikoAnkenbrand Why don't you post directly to ToolBox and force me to do that for you? 🙂
@HeikoAnkenbrand Why don't you post directly to ToolBox and force me to do that for you? 🙂
;- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content


Hi @_Val_,
Sorry, it does not work under Andriod/DeX (Edge, Firefox, Chrome) on my TAB S4. When I use "Toolbox" it always goes to "General Topics".
I think this is a Android/DeX or forum bug.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi, the "grep -v init" is hiding some parameters like "FwIsFwdStaticAffinity" and "FwSetFwdStaticAffinity".
You should use "grep -vw init" instead.
You could also use awk to get rid of the headers and the empty lines like this:
cpprod_util 2>&1 | awk 'NR>4&&NF==3{printf $1 " = "} NR>4&&NF==3{system("cpprod_util " $1 " 2>&1")}' | grep -v 'cpprod_util: function'|sort -u
Hi, the "grep -v init" is hiding some parameters like "FwIsFwdStaticAffinity" and "FwSetFwdStaticAffinity".
You should use "grep -vw init" instead.
You could also use awk to get rid of the headers and the empty lines like this:
cpprod_util 2>&1 | awk 'NR>4&&NF==3{printf $1 " = "} NR>4&&NF==3{system("cpprod_util " $1 " 2>&1")}' | grep -v 'cpprod_util: function'|sort -u
;