• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Cisco Router Port Forwarding

MulLa

Golden Member
Hi all,

Went online and dug up some info on opening up ports for Exchange.

It suggested the following 2 lines which I did add
ip nat inside source static tcp 172.16.30.1 25 interface Dialer1 25
ip nat inside source static tcp 172.16.30.1 443 interface Dialer1 443


I guess those online docs did not assume you have access lists going so I had to add the following lines to make it work

interface Dialer1
ip access-group 140 in

access-list 140 permit tcp any any eq smtp
access-list 140 permit tcp any any eq 443


Note I have not included all configs to access lists etc to save space only what I think is relevant here, if you need more info just ask.

The funny thing is that when I used the following access lists instead it doesn?t work

access-list 140 permit tcp any 172.16.30.1 eq smtp
access-list 140 permit tcp any 172.16.30.1 eq 443


Obviously the Exchange server is at 172.16.30.1 and I'm wondering why doesn?t it work when access lists specifically restricts it to the correct LAN address?? Hm?


Thanks in advance!
 
Back
Top