<?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 Re: Unable to assign security zone to Check Point R82 Security Gateway VLAN interface in API / CLI Discussion</title>
    <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263448#M9309</link>
    <description>&lt;P&gt;I vaguely remember a bug I found (and internally reported) in the API for this particular function.&lt;BR /&gt;You might also want to make sure you're on the latest recommend JHF.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 21 Nov 2025 21:11:02 GMT</pubDate>
    <dc:creator>PhoneBoy</dc:creator>
    <dc:date>2025-11-21T21:11:02Z</dc:date>
    <item>
      <title>Unable to assign security zone to Check Point R82 Security Gateway VLAN interface</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263387#M9302</link>
      <description>&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;I am new to Check Point or any enterprise grade firewall product.&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;I am trying to automate security zone creation which involves assigning security zone to Security Gateway ethernet bonding interface.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;I need help because I cannot make the zone associated to gateway interface.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;Using Check Point Security Gateway/Mgmt R82. The security gateway is Open server running on a VMware VM.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;Here is the code snippet from my Ansible playbook:&lt;/FONT&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;LI-CODE lang="python"&gt;- name: Check Point Play 
  hosts: check_point_mgmt
  connection: httpapi
  gather_facts: no

  tasks:
    - name: Check Point vars
      ansible.builtin.include_vars:
        file: global_vars/check_point_vars.yml

    - name: Get gateway object info
      check_point.mgmt.cp_mgmt_simple_gateway_facts:
        name: "gw-893628"
      register: rg_gw_info

    - name: Block
      block:
        - name: Add VLAN interface to Management gateway object
          check_point.mgmt.cp_mgmt_interface:
            gateway_uid: "{{ rg_gw_info.ansible_facts.simple_gateway.uid }}"
            name: "eth0.3004"
            ipv4_address: "10.25.178.49"
            ipv4_mask_length: "28"
            topology: internal
            topology_settings:
              ip_address_behind_this_interface: "network defined by the interface ip and net mask"
            security_zone_settings:
              auto_calculated: false
              specific_zone: "testzone1"
              specific_security_zone_enabled: true
            anti_spoofing: true
            anti_spoofing_settings:
              action: detect
              spoof_tracking: log
            state: present
            wait_for_task: true
            wait_for_task_timeout: "{{ g_wait_for_task_timeout }}" # Wait for 10 minutes before failing
          register: rg_update_result

        - name: Debug rg_update_result
          ansible.builtin.debug:
            var: rg_update_result

        - name: Publish changes
          check_point.mgmt.cp_mgmt_publish:
            wait_for_task: true
            wait_for_task_timeout: "{{ g_wait_for_task_timeout }}" # Wait for 10 minutes before failing&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The screenshot below shows VLAN interface settings with security zone which looks assigned but the checkbox not ticked.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Security zone appears but not selected" style="width: 580px;"&gt;&lt;img src="https://community.checkpoint.com/t5/image/serverpage/image-id/32172iB7532EB00884F525/image-dimensions/580x464?v=v2" width="580" height="464" role="button" title="checkpoint_api_issue.png" alt="Security zone appears but not selected" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Security zone appears but not selected&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The next steps in my workflow works only after I manually tick the checkbox for "Specify security zone".&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;Same issue even with command-line. Can you review my command to see if I missed any options?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;Here is the command I ran to set the interface “eth0.3004” to “testzone1”:&lt;/FONT&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;gw-893628&amp;gt; mgmt_cli -r true set interface uid 0ffed6ab-866f-4bd0-9bb9-a859201d0f05 name eth0.3004 security-zone-settings.auto-calculated false security-zone-settings.specific-zone testzone1&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;Here is another command I ran for setting the interface “eth0.3004” to one of the built-in zones “InternalZone”:&lt;/FONT&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;gw-893628&amp;gt; mgmt_cli -r true set interface uid 0ffed6ab-866f-4bd0-9bb9-a859201d0f05 name eth0.3004 security-zone-settings.auto-calculated false security-zone-settings.specific-zone InternalZone&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;Am I missing any step for assigning the security zone to the Gateway interface?&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Nov 2025 08:48:57 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263387#M9302</guid>
      <dc:creator>Govind135438</dc:creator>
      <dc:date>2025-11-21T08:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to assign security zone to Check Point R82 Security Gateway VLAN interface</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263401#M9303</link>
      <description>&lt;P&gt;Update from my side: The following command worked as expected when I include "security-zone-settings.specific-security-zone-enabled true" :&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;gw-893628&amp;gt; mgmt_cli -r true set interface uid 0ffed6ab-866f-4bd0-9bb9-a859201d0f05 name eth0.3004 security-zone-settings.auto-calculated false security-zone-settings.specific-security-zone-enabled true  security-zone-settings.specific-zone testzone1

gw-893628&amp;gt; mgmt_cli -r true publish&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However the Ansible playbook playbook fails when I include "security-zone-settings.specific-security-zone-enabled: true".&lt;/P&gt;&lt;P&gt;Looks like Ansible module "check_point.mgmt.cp_mgmt_interface" needs changes to accept the variable "check_point.mgmt.cp_mgmt_interface".&lt;/P&gt;</description>
      <pubDate>Fri, 21 Nov 2025 12:25:51 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263401#M9303</guid>
      <dc:creator>Govind135438</dc:creator>
      <dc:date>2025-11-21T12:25:51Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to assign security zone to Check Point R82 Security Gateway VLAN interface</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263402#M9304</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/135438"&gt;@Govind135438&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I know&amp;nbsp;&lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/694"&gt;@Duane_Toler&lt;/a&gt;&amp;nbsp;is great with Ansible, so maybe he can help you here.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Nov 2025 12:32:27 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263402#M9304</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2025-11-21T12:32:27Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to assign security zone to Check Point R82 Security Gateway VLAN interface</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263428#M9305</link>
      <description>&lt;P&gt;Good catch! &amp;nbsp;This boolean is indeed not available in the module. &amp;nbsp;Another interesting point is that even the API reference documentation doesn't show that as a valid parameter. &amp;nbsp; &amp;nbsp;However, the example request at the bottom shows this parameter being used. &amp;nbsp;It's the same for API v2 and v2.0.1.&lt;/P&gt;
&lt;P&gt;Meanwhile, the good news is that this can be added to the Ansible module if you want it; you can edit the module code to include it yourself to test it. &amp;nbsp;If you're not in the mood to edit the module code, I added the parameters to the module in my GitHub tree you can test. &amp;nbsp;You can can install this branch with ansible-galaxy with a Git URL:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;ansible-galaxy collection install -U git+https://github.com/duanetoler/CheckPointAnsibleMgmtCollection.git,cp_mgmt_interface&lt;/LI-CODE&gt;
&lt;P&gt;This will install into your existing default collection path, but you if you need it to be installed elsewhere, then add -p &amp;lt;pathname&amp;gt; at the end.&lt;/P&gt;
&lt;P&gt;The -U option will do an in-place upgrade of what you have already. &amp;nbsp;If you have issues, or want to revert back to the original Check Point collection, then re-install the collection from ansible-galaxy like you did originally, but also add the -U &amp;nbsp;option. &amp;nbsp;This will again overwrite what you installed from my branch and put you back to where you started.&lt;/P&gt;
&lt;P&gt;Let us know if it works. &amp;nbsp;If it doesn't, ...let us know, too.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Nov 2025 14:49:34 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263428#M9305</guid>
      <dc:creator>Duane_Toler</dc:creator>
      <dc:date>2025-11-21T14:49:34Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to assign security zone to Check Point R82 Security Gateway VLAN interface</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263429#M9306</link>
      <description>&lt;P&gt;Thanks for the accolades. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Nov 2025 14:54:10 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263429#M9306</guid>
      <dc:creator>Duane_Toler</dc:creator>
      <dc:date>2025-11-21T14:54:10Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to assign security zone to Check Point R82 Security Gateway VLAN interface</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263430#M9307</link>
      <description>&lt;P&gt;Truth ALWAYS has to be told, my friend &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Nov 2025 14:56:37 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263430#M9307</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2025-11-21T14:56:37Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to assign security zone to Check Point R82 Security Gateway VLAN interface</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263432#M9308</link>
      <description>&lt;P&gt;Great! I can test using the code from your branch and confirm soon.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Nov 2025 16:17:09 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263432#M9308</guid>
      <dc:creator>Govind135438</dc:creator>
      <dc:date>2025-11-21T16:17:09Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to assign security zone to Check Point R82 Security Gateway VLAN interface</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263448#M9309</link>
      <description>&lt;P&gt;I vaguely remember a bug I found (and internally reported) in the API for this particular function.&lt;BR /&gt;You might also want to make sure you're on the latest recommend JHF.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Nov 2025 21:11:02 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263448#M9309</guid>
      <dc:creator>PhoneBoy</dc:creator>
      <dc:date>2025-11-21T21:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to assign security zone to Check Point R82 Security Gateway VLAN interface</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263454#M9310</link>
      <description>&lt;P&gt;One more nuance I didn't notice earlier: &amp;nbsp;In your task, be sure that integers are integers. &amp;nbsp;Things like your ipv4 prefix-length, for example. &amp;nbsp;Don't quote those items; they need to be integers not strings. &amp;nbsp;Most of the strings you have quoted also don't need to be quoted. &amp;nbsp;YAML takes strings as they are. &amp;nbsp;Even your interface name doesn't need to be quoted because it has alpha characters with it; it won't be interpolated as a float.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Nov 2025 22:13:44 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263454#M9310</guid>
      <dc:creator>Duane_Toler</dc:creator>
      <dc:date>2025-11-21T22:13:44Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to assign security zone to Check Point R82 Security Gateway VLAN interface</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263456#M9311</link>
      <description>&lt;P&gt;Alwaus super helpful.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Nov 2025 22:21:50 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263456#M9311</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2025-11-21T22:21:50Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to assign security zone to Check Point R82 Security Gateway VLAN interface</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263528#M9312</link>
      <description>&lt;P&gt;I ran the test SUCCESSFULLY after applying the fix from&amp;nbsp;&lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/694"&gt;@Duane_Toler&lt;/a&gt;.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Really appreciate your quick help in resolving this issue.&amp;nbsp;&lt;/P&gt;&lt;P&gt;We need this fix in the public version of the Ansible collection for our customer to accept our automation code.&lt;/P&gt;&lt;P&gt;May I know when I can expect this fix rollout out to Ansible collection?&lt;/P&gt;</description>
      <pubDate>Mon, 24 Nov 2025 08:16:34 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263528#M9312</guid>
      <dc:creator>Govind135438</dc:creator>
      <dc:date>2025-11-24T08:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to assign security zone to Check Point R82 Security Gateway VLAN interface</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263530#M9313</link>
      <description>&lt;P&gt;Thanks for pointing. Will make necessary changes to our code. The actual code uses variables instead of hardcoded values.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Nov 2025 08:19:44 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263530#M9313</guid>
      <dc:creator>Govind135438</dc:creator>
      <dc:date>2025-11-24T08:19:44Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to assign security zone to Check Point R82 Security Gateway VLAN interface</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263531#M9314</link>
      <description>&lt;LI-CODE lang="markup"&gt;# /home/avireddi/.ansible/collections/ansible_collections
Collection                Version
------------------------- -------
check_point.gaia          7.0.0
check_point.mgmt          6.7.0

# /usr/lib/python3/dist-packages/ansible_collections
Collection                Version
------------------------- -------
check_point.mgmt          1.0.6&lt;/LI-CODE&gt;&lt;P&gt;This is what I see from the output of "ansible-galaxy collection list" command.&lt;/P&gt;&lt;P&gt;Can you please confirm if I am on the lastest versions?&lt;/P&gt;</description>
      <pubDate>Mon, 24 Nov 2025 08:23:26 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263531#M9314</guid>
      <dc:creator>Govind135438</dc:creator>
      <dc:date>2025-11-24T08:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to assign security zone to Check Point R82 Security Gateway VLAN interface</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263555#M9315</link>
      <description>&lt;P&gt;The search order for your collections is determined by the "collections_path" option in your ansible.cfg configuration file. &amp;nbsp;You can see where ansible, ansible-playbook, and ansible-galaxy find your configuration path (and collections path) with the "--version" option to each of those commands.&lt;/P&gt;
&lt;P&gt;You want to be careful about always updating to the latest collection versions because newer versions will stop supporting older versions of Ansible over time. This is where Docker is helpful, so you can always have a Docker image available that uses specific versions of Ansible, Python, and (optionally) the collections.&lt;/P&gt;
&lt;P&gt;You can always update to the latest collection version with the ansible-galaxy command to install the collections as you did originally, but add the "-U" parameter to do an in-place upgrade to the latest version available.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Nov 2025 14:14:14 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263555#M9315</guid>
      <dc:creator>Duane_Toler</dc:creator>
      <dc:date>2025-11-24T14:14:14Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to assign security zone to Check Point R82 Security Gateway VLAN interface</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263559#M9316</link>
      <description>&lt;P&gt;Excellent to hear that it works! Thanks! &amp;nbsp;I sent the Ansible collection team a pull request for it. &amp;nbsp;There's no specific time estimate right now, but you can always monitor the status of the PR here:&lt;BR /&gt;&lt;A href="https://github.com/CheckPointSW/CheckPointAnsibleMgmtCollection/pull/192" target="_blank"&gt;https://github.com/CheckPointSW/CheckPointAnsibleMgmtCollection/pull/192&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Nov 2025 15:50:16 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263559#M9316</guid>
      <dc:creator>Duane_Toler</dc:creator>
      <dc:date>2025-11-24T15:50:16Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to assign security zone to Check Point R82 Security Gateway VLAN interface</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263560#M9317</link>
      <description>&lt;P&gt;Excellent as always Duane!&lt;/P&gt;</description>
      <pubDate>Mon, 24 Nov 2025 16:23:20 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/263560#M9317</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2025-11-24T16:23:20Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to assign security zone to Check Point R82 Security Gateway VLAN interface</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/264137#M9325</link>
      <description>&lt;P&gt;Hey FYI: &amp;nbsp;The Ansible module team says they will include this parameter in a future update, but not with the PR patch I made. &amp;nbsp;They will need to do some extra work to get this option added because there are 2 mutually-exclusive booleans involved, which I didn't notice earlier. &amp;nbsp;In the meantime, you're welcome to keep using the module I made or you can revert to the original collection version and you'll need to handle the zone settings manually (or with your own raw API call.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Take care!&lt;/P&gt;</description>
      <pubDate>Tue, 02 Dec 2025 14:04:34 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/264137#M9325</guid>
      <dc:creator>Duane_Toler</dc:creator>
      <dc:date>2025-12-02T14:04:34Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to assign security zone to Check Point R82 Security Gateway VLAN interface</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/265910#M9336</link>
      <description>&lt;P&gt;FYI: The Check Point Ansible module folks have added the&amp;nbsp;&lt;SPAN&gt;specific_security_zone_enabled parameter to their module collection as of version 6.8.0. &amp;nbsp;Update your module collection and you'll have it!&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Dec 2025 13:46:57 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Unable-to-assign-security-zone-to-Check-Point-R82-Security/m-p/265910#M9336</guid>
      <dc:creator>Duane_Toler</dc:creator>
      <dc:date>2025-12-23T13:46:57Z</dc:date>
    </item>
  </channel>
</rss>

