If I have a server on vlan2 192.168.1.7/24, and a pc on vlan3 192.168.2.7/24. I need to open up the a Symantec antivirus port for the client to get definitions from the server. Lets say it is TCP port 8900. What would the firewall rule look like?
allow <protocol> <source subnet> <src port> <destination subnet> <dst port>
allow ,TCP, 192.168.1.0/24, 8900, 192.168.2.0/24, 8900?
Would the source be the server side or the client side?
Would the source port be any and destination be 8900 or vice versa?
Thanks!