Port 24 problem

How can I remove data from port 24 because I only want to get data from port 25? Should I do it on database level or on a code level(JS)?
I tried on a code level with :
if(fPort===24){
return;
}
It now returns null as expected, but still imports that data to database, can someone help me? Thanks in advance!

if your endnode use this ports to send data, they will appear in your uplink data. to remove this data you need to disable it in the endnode.

1 Like

Thanks for the quick response, I will try it tommorow for sure!