I'm working on the network ACL of service fabric application. I see when an application is setting up, it has to connect to a process named Fabric. I want to open that process's port in ACL but I found that the port of Fabric process on different node is different. I can find nowhere to configure this port. Is there any way to fix Fabric process's port?
Thanks in advance!
I have tried this power shell command to find the PID of the Fabric process:
get-process -name 'Fabric'
And use this command to find it's port:
netstat -ao | Select-String "[PID]"
But different node's Fabric has different ports, I can't set the allowing port in my network ACL.