Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

PutUDP modified the packet and adds the src address of nifi nodes

avatar
Expert Contributor

HI All,

Thanks a lot this awesome community.

I have listenUDP which listen to events from different firewalls, and then sending it to custom software by using putUDP.

In the custom software tool, now all the senders address are changed to nifi nodes instead in original sources.

Any help to reatain the original address here?

Any suggestions

Thanks

Dheeru

1 ACCEPTED SOLUTION

avatar
Master Guru

This is expected behavior... ListenUDP is receiving packets and taking the content of those packets and writing them to flow files, its not capturing raw packets. When it gets to PutUDP it has no concept of the original packets, only the data that was in each one, so now it is sending new packets to your tool.

View solution in original post

4 REPLIES 4

avatar
Expert Contributor
@Bryan Bende

, @Matt Burgess any suggestions or help in this case

avatar
Master Guru

This is expected behavior... ListenUDP is receiving packets and taking the content of those packets and writing them to flow files, its not capturing raw packets. When it gets to PutUDP it has no concept of the original packets, only the data that was in each one, so now it is sending new packets to your tool.

avatar
Expert Contributor

@Bryan Bende Thanks for the response, appreciate it, so it looks like it does not alter the contents original packet, it takes the content and wraps them in a packet with nifi's ip address, am I correct here?

avatar
Master Guru

Correct... it does capture the sender in a flow file attribute in case that is useful for you in some way.