Hi @Tedd Yeom
This is (more or less) expected - UDP 1434 is the SQL Server Browser Service which is essential within the setup of communication between client and server.
Your client first asks the Browser service if an SQL Server is installed with that given server and instance name, then it asks for the dedicated port for that instance.
After everything is checked, the client can open a connection with the name and port... in your case, 1433.
But from a security and best practice point of view, it is not recommended to use TCP/1433 for all those listeners (node1, node2, AGL).
You should check this documentation to configure your network/firewall accordingly.
https://learn.microsoft.com/en-us/sql/sql-server/install/configure-the-windows-firewall-to-allow-sql-server-access?view=sql-server-ver16
I hope my answer is helpful to you,
Your
Bjoern Peters
If the reply was helpful, please upvote and/or accept it as an answer, as this helps others in the community with similar questions. Thanks!