<?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: Assistance Required: Issue with UDP Port 5060 Packet Drop in Firewall and Security Management</title>
    <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237557#M49710</link>
    <description>&lt;P&gt;Does not seem to be the case in R81.20 (sip-tcp-proto), but in R82, I checked demo and its exact same thing.&lt;/P&gt;
&lt;P&gt;Andy&lt;/P&gt;</description>
    <pubDate>Fri, 03 Jan 2025 17:28:40 GMT</pubDate>
    <dc:creator>the_rock</dc:creator>
    <dc:date>2025-01-03T17:28:40Z</dc:date>
    <item>
      <title>Assistance Required: Issue with UDP Port 5060 Packet Drop</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237153#M49702</link>
      <description>&lt;P&gt;Dear Checkpoint Experts,&lt;/P&gt;&lt;P&gt;I am encountering a unique issue while connecting to one of the voice servers on UDP port 5060. The behavior observed in the logs is inconsistent:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;The zdebug logs indicate the reason for the packet drop as &lt;STRONG&gt;"fw_record_data_conn_module."&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;However, the Tracker shows the reason as &lt;STRONG&gt;"SIP Re-invite exceeds the limit."&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I have attached a screenshot below for your reference.&lt;/P&gt;&lt;P&gt;Could you please guide me on how to resolve this issue? Your assistance would be greatly appreciated.&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="debug_dropped_Logs.PNG" style="width: 400px;"&gt;&lt;img src="https://community.checkpoint.com/t5/image/serverpage/image-id/29047i963FE4896AB0BD03/image-size/medium?v=v2&amp;amp;px=400" role="button" title="debug_dropped_Logs.PNG" alt="debug_dropped_Logs.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dropped logs.PNG" style="width: 400px;"&gt;&lt;img src="https://community.checkpoint.com/t5/image/serverpage/image-id/29048iA9F52B7ACD6EEA4F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="dropped logs.PNG" alt="dropped logs.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Mon, 30 Dec 2024 10:16:59 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237153#M49702</guid>
      <dc:creator>yourshamim</dc:creator>
      <dc:date>2024-12-30T10:16:59Z</dc:date>
    </item>
    <item>
      <title>Re: Assistance Required: Issue with UDP Port 5060 Packet Drop</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237155#M49703</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Have you checked this sk already?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.checkpoint.com/results/sk/sk114769" target="_blank"&gt;https://support.checkpoint.com/results/sk/sk114769&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;---------------------&lt;/P&gt;
&lt;H2 class="css-3eqwxe"&gt;Solution&lt;/H2&gt;
&lt;DIV&gt;
&lt;P&gt;Use this formula to tune the parameter that controls the interval at which re-INVITE messages (sip_expire):&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;Session-Expires * sip_expire / 100 &amp;lt; Min-SE&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Where:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Session-Expires = SIP session expiration lifetime, as agreed by the SIP hosts&lt;/LI&gt;
&lt;LI&gt;sip_expire = Interval at which the Check Point Firewall will expire a re-INVITE from the call queue&lt;/LI&gt;
&lt;LI&gt;Min-SE = Interval at which the SIP hosts will send re-INVITE messages to refresh the SIP session&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;To determine the "Session-Expires" value in the SIP header, capture the SIP INVITE request and response:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;Expert# cppcap -c 0 -f 'port 5060 and ((udp[20:4] = 0x52454749) or (udp[20:4] = 0x494e5649))' -o /var/log/sip-invite.pcap&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Open the capture in Wireshark and filter for INVITE requests that contain a Min-SE value and INVITE responses that contain a Session-Expires value:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;Filter= (sip.Request-Line ~ "INVITE" &amp;amp;&amp;amp; sip.Min-SE) || (sip.Status-Code == 200 &amp;amp;&amp;amp; sip.Session-Expires)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;Review the data pane of the filtered packets for the value in the relevant fields:&lt;/P&gt;
&lt;P&gt;Min-SE value from INVITE request:&lt;/P&gt;
&lt;PRE&gt;Session Initiation Protocol (INVITE) → Message Header → Min-SE&lt;/PRE&gt;
&lt;P&gt;Session-Expires value from INVITE response:&lt;/P&gt;
&lt;PRE&gt;Session Initiation Protocol (200) → Message Header → Av-Global-Session-ID → Session-Expires&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;For example, if analysis of the SIP handshake determines that Session-Expires=120 and Min-SE=60, sane values for&lt;CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;sip_expire&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;can be determined by solving for x in this inequality:&lt;/P&gt;
&lt;PRE&gt;120 * x / 100 &amp;lt; 60&lt;BR /&gt;120 * x &amp;lt; 60 * 100&lt;BR /&gt;120 * x &amp;lt; 6000&lt;BR /&gt;x &amp;lt; 6000 / 120&lt;BR /&gt;x &amp;lt; 50&lt;/PRE&gt;
&lt;P&gt;Therefore, a sane value for the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;sip_expire&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;kernel parameter in this example would be 45.&lt;/P&gt;
&lt;P&gt;To check the current values of the kernel parameters on the Check Point Firewall:&lt;/P&gt;
&lt;PRE&gt;Expert# fw ctl get int sip_max_reinvite&lt;BR /&gt;Expert# fw ctl get int sip_expire&lt;/PRE&gt;
&lt;P&gt;Should modification of these kernel parameters prove necessary, refer to&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A title="sk26202: Changing the kernel global parameters on Check Point Security Gateways" href="https://support.checkpoint.com/results/sk/sk26202" target="_blank" rel="noopener"&gt;sk26202&lt;/A&gt;, or the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://support.checkpoint.com/product/73#f-commonsource=C.%20Documentation" target="_blank" rel="noopener"&gt;Quantum Security Gateway Administration Guide&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;for your version.&lt;/P&gt;
&lt;P&gt;If, after tuning the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;sip_expire&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;parameter according to the configuration of your SIP implementation, you still observe intermittent drops of this nature, consider also tuning up the sip_max_reinvite parameter to allow for calls to be held longer.&lt;/P&gt;
&lt;/DIV&gt;
&lt;P&gt;Akos&lt;/P&gt;</description>
      <pubDate>Mon, 30 Dec 2024 10:29:57 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237155#M49703</guid>
      <dc:creator>AkosBakos</dc:creator>
      <dc:date>2024-12-30T10:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: Assistance Required: Issue with UDP Port 5060 Packet Drop</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237269#M49704</link>
      <description>&lt;P&gt;I tried, but no packets were captured in the pcap file (zero packets). Traffic is continuously coming on port 5060.&lt;/P&gt;</description>
      <pubDate>Tue, 31 Dec 2024 02:37:23 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237269#M49704</guid>
      <dc:creator>yourshamim</dc:creator>
      <dc:date>2024-12-31T02:37:23Z</dc:date>
    </item>
    <item>
      <title>Re: Assistance Required: Issue with UDP Port 5060 Packet Drop</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237321#M49705</link>
      <description>&lt;P&gt;I know in the old days of CP, people would use below method, though back then, it would say NONE (that exact word), now its bit different, but sort of same principle.&lt;/P&gt;
&lt;P&gt;Andy&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot_2.png" style="width: 999px;"&gt;&lt;img src="https://community.checkpoint.com/t5/image/serverpage/image-id/29063i609CC09B62F5987C/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot_2.png" alt="Screenshot_2.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Dec 2024 15:05:48 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237321#M49705</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2024-12-31T15:05:48Z</dc:date>
    </item>
    <item>
      <title>Re: Assistance Required: Issue with UDP Port 5060 Packet Drop</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237350#M49706</link>
      <description>&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":middle_finger:"&gt;🖕&lt;/span&gt;True Story!&lt;/P&gt;</description>
      <pubDate>Tue, 31 Dec 2024 19:44:51 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237350#M49706</guid>
      <dc:creator>AkosBakos</dc:creator>
      <dc:date>2024-12-31T19:44:51Z</dc:date>
    </item>
    <item>
      <title>Re: Assistance Required: Issue with UDP Port 5060 Packet Drop</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237351#M49707</link>
      <description>&lt;P&gt;Fixed LOTS of issues that way back in R77 lol&lt;/P&gt;</description>
      <pubDate>Tue, 31 Dec 2024 20:09:13 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237351#M49707</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2024-12-31T20:09:13Z</dc:date>
    </item>
    <item>
      <title>Re: Assistance Required: Issue with UDP Port 5060 Packet Drop</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237453#M49708</link>
      <description>&lt;P&gt;sip-tcp already has the protocol signature disabled (at least in R82).&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jan 2025 18:55:08 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237453#M49708</guid>
      <dc:creator>PhoneBoy</dc:creator>
      <dc:date>2025-01-02T18:55:08Z</dc:date>
    </item>
    <item>
      <title>Re: Assistance Required: Issue with UDP Port 5060 Packet Drop</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237454#M49709</link>
      <description>&lt;P&gt;How precisely are you capturing packets?&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jan 2025 18:55:47 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237454#M49709</guid>
      <dc:creator>PhoneBoy</dc:creator>
      <dc:date>2025-01-02T18:55:47Z</dc:date>
    </item>
    <item>
      <title>Re: Assistance Required: Issue with UDP Port 5060 Packet Drop</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237557#M49710</link>
      <description>&lt;P&gt;Does not seem to be the case in R81.20 (sip-tcp-proto), but in R82, I checked demo and its exact same thing.&lt;/P&gt;
&lt;P&gt;Andy&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jan 2025 17:28:40 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237557#M49710</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2025-01-03T17:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: Assistance Required: Issue with UDP Port 5060 Packet Drop</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237558#M49711</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/120333"&gt;@yourshamim&lt;/a&gt;&amp;nbsp;, were you able to make any progress?&lt;/P&gt;
&lt;P&gt;Andy&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jan 2025 17:29:32 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237558#M49711</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2025-01-03T17:29:32Z</dc:date>
    </item>
    <item>
      <title>Re: Assistance Required: Issue with UDP Port 5060 Packet Drop</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237608#M49712</link>
      <description>&lt;P&gt;Not yet. I have raised a TAC case, and the TAC engineer is currently looking into it.&lt;/P&gt;</description>
      <pubDate>Sun, 05 Jan 2025 11:51:09 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237608#M49712</guid>
      <dc:creator>yourshamim</dc:creator>
      <dc:date>2025-01-05T11:51:09Z</dc:date>
    </item>
    <item>
      <title>Re: Assistance Required: Issue with UDP Port 5060 Packet Drop</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237611#M49713</link>
      <description>&lt;P&gt;Please let us know the outcome.&lt;/P&gt;</description>
      <pubDate>Sun, 05 Jan 2025 13:15:57 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237611#M49713</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2025-01-05T13:15:57Z</dc:date>
    </item>
    <item>
      <title>Re: Assistance Required: Issue with UDP Port 5060 Packet Drop</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237632#M49714</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/120333"&gt;@yourshamim&lt;/a&gt;&amp;nbsp;...just wondering, are you able to try what was suggested with protocol none in the service and see if it makes any difference?&lt;/P&gt;
&lt;P&gt;Andy&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jan 2025 01:28:44 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237632#M49714</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2025-01-06T01:28:44Z</dc:date>
    </item>
    <item>
      <title>Re: Assistance Required: Issue with UDP Port 5060 Packet Drop</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237778#M49715</link>
      <description>&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;On the user's side, they restarted the server during troubleshooting. FW is getting a Virt Defrag Timeout error in the tracker and Zdebug. The tracker is receiving traffic on UDP port 0.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;surprisingly TCPdump capture showing UDP port 5060.&amp;nbsp; we have another round of troubleshooting call today with CP TAC and Avaya team.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="virt-Defrag_error.PNG" style="width: 400px;"&gt;&lt;img src="https://community.checkpoint.com/t5/image/serverpage/image-id/29105i8206FA008CC845B8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="virt-Defrag_error.PNG" alt="virt-Defrag_error.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Tue, 07 Jan 2025 03:33:21 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237778#M49715</guid>
      <dc:creator>yourshamim</dc:creator>
      <dc:date>2025-01-07T03:33:21Z</dc:date>
    </item>
    <item>
      <title>Re: Assistance Required: Issue with UDP Port 5060 Packet Drop</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237893#M49716</link>
      <description>&lt;P&gt;Hey,&lt;/P&gt;
&lt;P&gt;How is sip-tcp service configured atm? What does protocol option show?&lt;/P&gt;
&lt;P&gt;Andy&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jan 2025 18:03:15 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237893#M49716</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2025-01-07T18:03:15Z</dc:date>
    </item>
    <item>
      <title>Re: Assistance Required: Issue with UDP Port 5060 Packet Drop</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237900#M49717</link>
      <description>&lt;P&gt;You can allow traffic on port 0, FYI.&lt;BR /&gt;See:&amp;nbsp;&lt;A href="https://support.checkpoint.com/results/sk/sk27109" target="_blank"&gt;https://support.checkpoint.com/results/sk/sk27109&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jan 2025 19:09:09 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237900#M49717</guid>
      <dc:creator>PhoneBoy</dc:creator>
      <dc:date>2025-01-07T19:09:09Z</dc:date>
    </item>
    <item>
      <title>Re: Assistance Required: Issue with UDP Port 5060 Packet Drop</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237907#M49718</link>
      <description>&lt;P&gt;Never seen that sk before, thanks for sending it&amp;nbsp;&lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/7"&gt;@PhoneBoy&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Andy&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jan 2025 20:37:02 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237907#M49718</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2025-01-07T20:37:02Z</dc:date>
    </item>
    <item>
      <title>Re: Assistance Required: Issue with UDP Port 5060 Packet Drop</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237921#M49719</link>
      <description>&lt;P&gt;Thanks, &lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/7"&gt;@PhoneBoy&lt;/a&gt;&amp;nbsp;. I will change the value and share the status update.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2025 02:30:50 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237921#M49719</guid>
      <dc:creator>yourshamim</dc:creator>
      <dc:date>2025-01-08T02:30:50Z</dc:date>
    </item>
    <item>
      <title>Re: Assistance Required: Issue with UDP Port 5060 Packet Drop</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237923#M49721</link>
      <description>&lt;P&gt;I changed the value to 1 through the set command but not Luck. same drop reason " Virt Defrag Timeout" and service UDP/0.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2025 03:16:09 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237923#M49721</guid>
      <dc:creator>yourshamim</dc:creator>
      <dc:date>2025-01-08T03:16:09Z</dc:date>
    </item>
    <item>
      <title>Re: Assistance Required: Issue with UDP Port 5060 Packet Drop</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237924#M49722</link>
      <description>&lt;P&gt;I allowed service any at this moment for testing purposes.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2025 03:18:21 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Assistance-Required-Issue-with-UDP-Port-5060-Packet-Drop/m-p/237924#M49722</guid>
      <dc:creator>yourshamim</dc:creator>
      <dc:date>2025-01-08T03:18:21Z</dc:date>
    </item>
  </channel>
</rss>

