<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Show all SecureXL Parameter - ONELINER in Scripts</title>
    <link>https://community.checkpoint.com/t5/Scripts/Show-all-SecureXL-Parameter-ONELINER/m-p/127162#M809</link>
    <description>&lt;P&gt;This oneliner shows you all SecureXL parameter (int, uint and string) of the firewall gateway with their values. &lt;BR /&gt;This can be useful in the debug case to see an overview of all SecureXL parameters.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;modinfo -p $PPKDIR/boot/modules/sim_kern*.o | sort -u | grep -E 'int param' | awk 'BEGIN {FS=":"} ; {print $1}' | xargs -i -n 1 fw ctl get int {} -a 2&amp;gt; /dev/null | grep PPAK | sed -r 's/PPAK 0://'; modinfo -p $PPKDIR/boot/modules/sim_kern*.o | sort -u | grep -E 'string param' | awk 'BEGIN {FS=":"} ; {print $1}' | xargs -i -n 1 fw ctl get string {} -a 2&amp;gt; /dev/null | grep PPAK | sed -r 's/PPAK 0://'&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Here is an example of the output:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="securexl_param.JPG" style="width: 542px;"&gt;&lt;img src="https://community.checkpoint.com/t5/image/serverpage/image-id/13365i735E7A2FEA066BDB/image-size/large?v=v2&amp;amp;px=999" role="button" title="securexl_param.JPG" alt="securexl_param.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 17 Aug 2021 15:54:21 GMT</pubDate>
    <dc:creator>HeikoAnkenbrand</dc:creator>
    <dc:date>2021-08-17T15:54:21Z</dc:date>
    <item>
      <title>Show all SecureXL Parameter - ONELINER</title>
      <link>https://community.checkpoint.com/t5/Scripts/Show-all-SecureXL-Parameter-ONELINER/m-p/127162#M809</link>
      <description>&lt;P&gt;This oneliner shows you all SecureXL parameter (int, uint and string) of the firewall gateway with their values. &lt;BR /&gt;This can be useful in the debug case to see an overview of all SecureXL parameters.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;modinfo -p $PPKDIR/boot/modules/sim_kern*.o | sort -u | grep -E 'int param' | awk 'BEGIN {FS=":"} ; {print $1}' | xargs -i -n 1 fw ctl get int {} -a 2&amp;gt; /dev/null | grep PPAK | sed -r 's/PPAK 0://'; modinfo -p $PPKDIR/boot/modules/sim_kern*.o | sort -u | grep -E 'string param' | awk 'BEGIN {FS=":"} ; {print $1}' | xargs -i -n 1 fw ctl get string {} -a 2&amp;gt; /dev/null | grep PPAK | sed -r 's/PPAK 0://'&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Here is an example of the output:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="securexl_param.JPG" style="width: 542px;"&gt;&lt;img src="https://community.checkpoint.com/t5/image/serverpage/image-id/13365i735E7A2FEA066BDB/image-size/large?v=v2&amp;amp;px=999" role="button" title="securexl_param.JPG" alt="securexl_param.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Aug 2021 15:54:21 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Scripts/Show-all-SecureXL-Parameter-ONELINER/m-p/127162#M809</guid>
      <dc:creator>HeikoAnkenbrand</dc:creator>
      <dc:date>2021-08-17T15:54:21Z</dc:date>
    </item>
    <item>
      <title>Re: ONELINER - Show all SecureXL Parameter</title>
      <link>https://community.checkpoint.com/t5/Scripts/Show-all-SecureXL-Parameter-ONELINER/m-p/127181#M810</link>
      <description>&lt;P&gt;Moving to ToolBox&lt;/P&gt;</description>
      <pubDate>Tue, 17 Aug 2021 07:04:06 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Scripts/Show-all-SecureXL-Parameter-ONELINER/m-p/127181#M810</guid>
      <dc:creator>_Val_</dc:creator>
      <dc:date>2021-08-17T07:04:06Z</dc:date>
    </item>
    <item>
      <title>Re: Show all SecureXL Parameter - ONELINER</title>
      <link>https://community.checkpoint.com/t5/Scripts/Show-all-SecureXL-Parameter-ONELINER/m-p/127206#M811</link>
      <description>&lt;P&gt;Er no, that command will show all INSPECT kernel values not SecureXL in R80.20+.&amp;nbsp; Try this:&lt;/P&gt;
&lt;P&gt;modinfo -p $PPKDIR/boot/modules/sim_kern*.o | sort -u | grep 'int param' | awk 'BEGIN {FS=":"} ; {print $1}' | xargs -i -n 1 fw ctl get int {} -a 2&amp;gt; /dev/null | grep PPAK&lt;/P&gt;
&lt;P&gt;-a added to query SecureXL, but it also queries INSPECT simultaneously and generates a lot of error messages hence the 2&amp;gt; /dev/null and grep for PPAK so we only see variable results from SecureXL and not INSPECT&lt;/P&gt;</description>
      <pubDate>Tue, 17 Aug 2021 12:30:08 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Scripts/Show-all-SecureXL-Parameter-ONELINER/m-p/127206#M811</guid>
      <dc:creator>Timothy_Hall</dc:creator>
      <dc:date>2021-08-17T12:30:08Z</dc:date>
    </item>
    <item>
      <title>Re: Show all SecureXL Parameter - ONELINER</title>
      <link>https://community.checkpoint.com/t5/Scripts/Show-all-SecureXL-Parameter-ONELINER/m-p/127250#M812</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/597"&gt;@Timothy_Hall&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks, I forgot the -a parameter.&lt;/P&gt;
&lt;P&gt;You can't use your Onliner either, because the strings are not included here. I have now created one that queries "int", "uint" and "string".&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;modinfo -p $PPKDIR/boot/modules/sim_kern*.o | sort -u | grep -E 'int param' | awk 'BEGIN {FS=":"} ; {print $1}' | xargs -i -n 1 fw ctl get int {} -a 2&amp;gt; /dev/null | grep PPAK | sed -r 's/PPAK 0://'; modinfo -p $PPKDIR/boot/modules/sim_kern*.o | sort -u | grep -E 'string param' | awk 'BEGIN {FS=":"} ; {print $1}' | xargs -i -n 1 fw ctl get string {} -a 2&amp;gt; /dev/null | grep PPAK | sed -r 's/PPAK 0://'&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 17 Aug 2021 16:04:30 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Scripts/Show-all-SecureXL-Parameter-ONELINER/m-p/127250#M812</guid>
      <dc:creator>HeikoAnkenbrand</dc:creator>
      <dc:date>2021-08-17T16:04:30Z</dc:date>
    </item>
  </channel>
</rss>

