Create a Post
cancel
Showing results for 
Search instead for 
Did you mean: 
This widget could not be displayed.
26 Replies

Dear Checkpoint Experts,

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:

  • The zdebug logs indicate the reason for the packet drop as "fw_record_data_conn_module."
  • However, the Tracker shows the reason as "SIP Re-invite exceeds the limit."

I have attached a screenshot below for your reference.

Could you please guide me on how to resolve this issue? Your assistance would be greatly appreciated.

Best regards,

debug_dropped_Logs.PNG

dropped logs.PNG

Assistance Required: Issue with UDP Port 5060 Packet Drop

Assistance Required: Issue with UDP Port 5060 Packet Drop

Dear Checkpoint Experts,

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:

  • The zdebug logs indicate the reason for the packet drop as "fw_record_data_conn_module."
  • However, the Tracker shows the reason as "SIP Re-invite exceeds the limit."

I have attached a screenshot below for your reference.

Could you please guide me on how to resolve this issue? Your assistance would be greatly appreciated.

Best regards,

debug_dropped_Logs.PNG

dropped logs.PNG

Dear Checkpoint Experts,

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:

  • The zdebug logs indicate the reason for the packet drop as "fw_record_data_conn_module."
  • However, the Tracker shows the reason as "SIP Re-invite exceeds the limit."

I have attached a screenshot below for your reference.

Could you please guide me on how to resolve this issue? Your assistance would be greatly appreciated.

Best regards,

debug_dropped_Logs.PNG

dropped logs.PNG

0 Kudos
0 Kudos
yourshamim
Participant
yourshamim
Participant

I tried, but no packets were captured in the pcap file (zero packets). Traffic is continuously coming on port 5060.

I tried, but no packets were captured in the pcap file (zero packets). Traffic is continuously coming on port 5060.

0 Kudos
0 Kudos
the_rock
MVP Diamond
MVP Diamond
the_rock
MVP Diamond
MVP Diamond

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.

Andy

 

Screenshot_2.png

Best,
Andy
"Have a great day and if its not, change it"

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.

Andy

 

Screenshot_2.png

Best,
Andy
"Have a great day and if its not, change it"
0 Kudos
0 Kudos
AkosBakos
MVP Silver
MVP Silver
AkosBakos
MVP Silver
MVP Silver

🖕True Story!

----------------
\m/_(>_<)_\m/

🖕True Story!

----------------
\m/_(>_<)_\m/
the_rock
MVP Diamond
MVP Diamond
the_rock
MVP Diamond
MVP Diamond

Fixed LOTS of issues that way back in R77 lol

Best,
Andy
"Have a great day and if its not, change it"

Fixed LOTS of issues that way back in R77 lol

Best,
Andy
"Have a great day and if its not, change it"
0 Kudos
0 Kudos
PhoneBoy
Admin
Admin
PhoneBoy
Admin
Admin

sip-tcp already has the protocol signature disabled (at least in R82).

sip-tcp already has the protocol signature disabled (at least in R82).

0 Kudos
0 Kudos
the_rock
MVP Diamond
MVP Diamond
the_rock
MVP Diamond
MVP Diamond

Does not seem to be the case in R81.20 (sip-tcp-proto), but in R82, I checked demo and its exact same thing.

Andy

Best,
Andy
"Have a great day and if its not, change it"

Does not seem to be the case in R81.20 (sip-tcp-proto), but in R82, I checked demo and its exact same thing.

Andy

Best,
Andy
"Have a great day and if its not, change it"
0 Kudos
0 Kudos
PhoneBoy
Admin
Admin
PhoneBoy
Admin
Admin

How precisely are you capturing packets?

How precisely are you capturing packets?

0 Kudos
0 Kudos
the_rock
MVP Diamond
MVP Diamond
the_rock
MVP Diamond
MVP Diamond

Hey @yourshamim , were you able to make any progress?

Andy

Best,
Andy
"Have a great day and if its not, change it"

Hey @yourshamim , were you able to make any progress?

Andy

Best,
Andy
"Have a great day and if its not, change it"
0 Kudos
0 Kudos
yourshamim
Participant
yourshamim
Participant

Not yet. I have raised a TAC case, and the TAC engineer is currently looking into it.

Not yet. I have raised a TAC case, and the TAC engineer is currently looking into it.

the_rock
MVP Diamond
MVP Diamond
the_rock
MVP Diamond
MVP Diamond

Please let us know the outcome.

Best,
Andy
"Have a great day and if its not, change it"

Please let us know the outcome.

Best,
Andy
"Have a great day and if its not, change it"
0 Kudos
0 Kudos
the_rock
MVP Diamond
MVP Diamond
the_rock
MVP Diamond
MVP Diamond

Hey @yourshamim ...just wondering, are you able to try what was suggested with protocol none in the service and see if it makes any difference?

Andy

Best,
Andy
"Have a great day and if its not, change it"

Hey @yourshamim ...just wondering, are you able to try what was suggested with protocol none in the service and see if it makes any difference?

Andy

Best,
Andy
"Have a great day and if its not, change it"
0 Kudos
0 Kudos
Eric_Smith
Participant
Eric_Smith
Participant

I ran the cppcap as indicated and am getting a failure for syntax. Ran it on a lab box same error. Is an interface required for the cppcap command?  

cppcap -i eth1 -c 0 -f 'port 5060 and ((udp[20:4] = 0x52454749) or (udp[20:4] = 0x494e5649))' -o /var/log/sip-invite.pcap

I ran the cppcap as indicated and am getting a failure for syntax. Ran it on a lab box same error. Is an interface required for the cppcap command?  

cppcap -i eth1 -c 0 -f 'port 5060 and ((udp[20:4] = 0x52454749) or (udp[20:4] = 0x494e5649))' -o /var/log/sip-invite.pcap
0 Kudos
0 Kudos
the_rock
MVP Diamond
MVP Diamond
the_rock
MVP Diamond
MVP Diamond

Just use example from the site my colleague made while ago.

Andy

https://tcpdump101.com/#

Something like below, but you can do your own filters.

cppcap -o test.pcap -i eth1 -f " host 1.1.1.1 "

Best,
Andy
"Have a great day and if its not, change it"

Just use example from the site my colleague made while ago.

Andy

https://tcpdump101.com/#

Something like below, but you can do your own filters.

cppcap -o test.pcap -i eth1 -f " host 1.1.1.1 "

Best,
Andy
"Have a great day and if its not, change it"
0 Kudos
0 Kudos
Eric_Smith
Participant
Eric_Smith
Participant

cppcap -i any -c 0 -f 'port 5060 and ((udp[20:4] = 0x52454749) or (udp[20:4] = 0x494e5649))' -o /var/log/sip-invite.pcap

This looks like it worked, does the SK need to be updated to reflect the -i any?

 

cppcap -i any -c 0 -f 'port 5060 and ((udp[20:4] = 0x52454749) or (udp[20:4] = 0x494e5649))' -o /var/log/sip-invite.pcap

This looks like it worked, does the SK need to be updated to reflect the -i any?

 

0 Kudos
0 Kudos
yourshamim
Participant
yourshamim
Participant

Hi guys,

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.  

surprisingly TCPdump capture showing UDP port 5060.  we have another round of troubleshooting call today with CP TAC and Avaya team.

virt-Defrag_error.PNG

Hi guys,

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.  

surprisingly TCPdump capture showing UDP port 5060.  we have another round of troubleshooting call today with CP TAC and Avaya team.

virt-Defrag_error.PNG

0 Kudos
0 Kudos
the_rock
MVP Diamond
MVP Diamond
the_rock
MVP Diamond
MVP Diamond

Hey,

How is sip-tcp service configured atm? What does protocol option show?

Andy

Best,
Andy
"Have a great day and if its not, change it"

Hey,

How is sip-tcp service configured atm? What does protocol option show?

Andy

Best,
Andy
"Have a great day and if its not, change it"
0 Kudos
0 Kudos
yourshamim
Participant
yourshamim
Participant

I allowed service any at this moment for testing purposes.

I allowed service any at this moment for testing purposes.

0 Kudos
0 Kudos
the_rock
MVP Diamond
MVP Diamond
the_rock
MVP Diamond
MVP Diamond

Just an idea...did you try disable IPS blade as a test?

Best,
Andy
"Have a great day and if its not, change it"

Just an idea...did you try disable IPS blade as a test?

Best,
Andy
"Have a great day and if its not, change it"
0 Kudos
0 Kudos
yourshamim
Participant
yourshamim
Participant

There is no IPS blade enabled on this FW.

Just to let you know, This is VSX. 

 

 

 

 

There is no IPS blade enabled on this FW.

Just to let you know, This is VSX. 

 

 

 

 

the_rock
MVP Diamond
MVP Diamond
the_rock
MVP Diamond
MVP Diamond

Got it. In that case, Im out of ideas, sorry 😞

Best,
Andy
"Have a great day and if its not, change it"

Got it. In that case, Im out of ideas, sorry 😞

Best,
Andy
"Have a great day and if its not, change it"
0 Kudos
0 Kudos
PhoneBoy
Admin
Admin
PhoneBoy
Admin
Admin

You can allow traffic on port 0, FYI.
See: https://support.checkpoint.com/results/sk/sk27109 

You can allow traffic on port 0, FYI.
See: https://support.checkpoint.com/results/sk/sk27109 

the_rock
MVP Diamond
MVP Diamond
the_rock
MVP Diamond
MVP Diamond

Never seen that sk before, thanks for sending it @PhoneBoy 

👍

Andy

Best,
Andy
"Have a great day and if its not, change it"

Never seen that sk before, thanks for sending it @PhoneBoy 

👍

Andy

Best,
Andy
"Have a great day and if its not, change it"
0 Kudos
0 Kudos
yourshamim
Participant
yourshamim
Participant

Thanks, @PhoneBoy . I will change the value and share the status update.

Thanks, @PhoneBoy . I will change the value and share the status update.

0 Kudos
0 Kudos
yourshamim
Participant
yourshamim
Participant

I changed the value to 1 through the set command but not Luck. same drop reason " Virt Defrag Timeout" and service UDP/0.

I changed the value to 1 through the set command but not Luck. same drop reason " Virt Defrag Timeout" and service UDP/0.

0 Kudos
0 Kudos
PhoneBoy
Admin
Admin
PhoneBoy
Admin
Admin

The fact you're hitting this error means you are receiving fragmented packets.
Prior to inspection, we "virtually reassemble" the packet in memory. 
If we don't receive all the fragments for the packet in time, we generate a timeout message.

You can adjust the virtual defragmentation timeout setting.
While this is configured in the Threat Prevention settings, it's a Firewall setting, as is everything else in the Inspection Setting.
See: https://support.checkpoint.com/results/sk/sk65074 

Ideally, though, you should figure out why you are receiving fragmented packets in the first place.
That is specific to the application/network and may indicate an MTU issue somewhere in the network path.

The fact you're hitting this error means you are receiving fragmented packets.
Prior to inspection, we "virtually reassemble" the packet in memory. 
If we don't receive all the fragments for the packet in time, we generate a timeout message.

You can adjust the virtual defragmentation timeout setting.
While this is configured in the Threat Prevention settings, it's a Firewall setting, as is everything else in the Inspection Setting.
See: https://support.checkpoint.com/results/sk/sk65074 

Ideally, though, you should figure out why you are receiving fragmented packets in the first place.
That is specific to the application/network and may indicate an MTU issue somewhere in the network path.

0 Kudos
0 Kudos