Hi I can't interpret these two commands, these are the commands for securing the border router ...
R1(config-ext-nacl)# permit tcp host 5.5.5.5 gt 1023 host 1.2.3.4 eq bgp
R1(config-ext-nacl)# permit tcp host 5.5.5.5 eq bgp host 1.2.3.4 gt 1023 <-------------------why do we need this one??
and this access list is going to be applied inward my router link which is connected to ISP.
1) I guess the ports above 1023 are unknown ports(protocols), so there are no restriction for them? right?
2) why can't we use one access list instead of two commands?
R1(config-ext-nacl)# permit tcp host < external-bgp-peer > eq bgp host < internal-bgp-peer > eq bgp
I believe this command is wrong because we can use any port from the other side(from the isp) to connect to bgp on the interface of our router, right?
thx