Reputation: 12213
I have installed fiddler on server named server1.corp.mycompany.net
. When i browse from my local machine to https://server1/default.aspx
, it does not capture the traffic. But if i open IE on the server and browse https://server1/default.aspx
, it works.
I have enabled "Capture https traffic". This is how it looks like:
Am i missing something?
I am using Fiddler4
.
Upvotes: 0
Views: 807
Reputation: 32694
You would need to install Fiddler on your local machine if you expect to capture traffic to the server from your local machine. That's how Fiddler works by default, it only captures traffic originating from browsers on your computer.
If you wanted to inspect all traffic coming to the server, then something like Wireshark would be more appropriate.
Upvotes: 1
Reputation: 57085
Your options are:
Based on your scenario, you probably want #3.
Upvotes: 1