我通过Fiddler代理连接我的iPad并尝试监控流量。但我的电脑产生了太多的流量,我在很大的列表中丢失了iPad流量。我如何设置过滤器:“仅显示fiddler代理流量”?
答案 0 :(得分:3)
隐藏计算机上所有流量的最简单方法是点击Fiddler状态栏中显示All Processes
的图标,然后将其更改为Hide All
。这将隐藏PC上已识别进程的所有流量,以便只显示来自IPAD的流量。
答案 1 :(得分:0)
What worked for me was to turn off Capture and select All Processes at the bottom left. But it happened. However, I must say, I had to play with these settings a bit and to restart Fiddler. At the beginning, the results were not always consistent, and I am wondering if there is a bug where activating/deactivating the capture or selecting a filter does not always work as expected.
答案 2 :(得分:0)
将状态栏值从“所有进程”更改为“非浏览器”。这将仅显示代理流量。
答案 3 :(得分:0)
转到规则->自定义规则。
在OnBeforeRequest方法(在static function OnBeforeRequest(oSession: Session) {
下面的行中)中,添加以下内容:
// Only show traffic from another device, for example Android.
if (oSession.clientIP == "::ffff:127.0.0.1") {
oSession.Ignore();
}