Hello,
I'm trying to allow tcp port 3389 access from my PC (host 192.168.10.10) to a remote PC (10.181.10.10). My PC is part of a 16 bit network mask.
I've done the below configuration and applied it on the HSRP interface of the VLAN where the remote PC is configure.
ip access-list extended IMCR
permit tcp 10.181.10.10 0.0.0.15 eq 3389 host 192.168.10.10
or
permit tcp host 192.168.10.10 eq 3389 10.181.10.10 0.0.0.15
or
permit tcp 10.181.10.10 0.0.0.15 host 192.168.10.10 eq 3389
or
permit tcp host 192.168.10.10 192.168.10.10 eq 3389
What is the difference between these configurations in logic?
Many thanks in advance...