Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make Fiddler listen to all IPs

Tags:

fiddler

I'm having trouble with one server sending data to another server, so I thought: let's debug it. I can setup a proxy, so why not use Fiddler? So I made the server use fiddler running on my computer, by setting the host to my computer's IP (192.168.2.111) and the port to 8888.

The problem is that fiddler is listening to localhost:8888 or 127.0.0.1:8888. Therefore, if the request is to 192.168.2.111:8888, the connection is actively refused.

Can I make fiddler listen to ALL IPs?

Thanks!

like image 520
Guillaume Hanique Avatar asked Oct 13 '09 10:10

Guillaume Hanique


2 Answers

The proper fix is to simply click "Allow remote computers to connect" checkbox inside Tools / Fiddler Options.

like image 67
EricLaw Avatar answered Dec 31 '22 19:12

EricLaw


It took a lot of "Reflectoring" and I should have looked in the registry in the first place, but the solution is:

Change HKCU\Software\Microsoft\Fiddler2\AllowRemote to "True".

like image 39
Guillaume Hanique Avatar answered Dec 31 '22 18:12

Guillaume Hanique