Link to home
Start Free TrialLog in
Avatar of mcse2007
mcse2007Flag for Australia

asked on

What's the command?

Hi,

Is there a command to use inside cisco 1800 series router to view which port number in particular being used when a user logged into their OWA from the public internet?

For instance, my client has OWA configured to access their email from the public internet which is https://mail.domain.com.au/OWA.

They are using cisco router 1800 series which handles allow inbound traffic from https://mail.domain.com.au/OWA from the public network to their local Exchange server.

So I need to find out which port is being used when a user tries to connect to https://mail.domain.com.au/OWA. I suspect that it is not using the standard SSL port 443.

Thanks in advance.
SOLUTION
Avatar of Moomin83
Moomin83
Flag of South Africa image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Alternatively you can user WireShark to view the traffic: www.wireshark.org/download.html
Avatar of fgasimzade
You can configure an access-list to see if there would be any hits for particular access-list line. You will have to apply it to your WAN interface. Dont forget to add permit ip any any statement at the of the access-list since there is an implicit deny statement at the end of any access-list.

For example

ip access-list extended Log_Hits
permit tcp any host OWA_EXTERNAL_IP_ADDRESS eq 443
permit ip any any
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial