2014-07-02 90 views
0

我正在嘗試use fiddler on IPad by connecting it to PC by wireless connection,所以我可以使用自動回覆來'模擬'一些數據。
教程告訴我,我應該使用我的機器IP來連接IPad並檢查它是否工作,我的問題是我有多個IP(或者至少看起來我是這樣做的)。如何判斷ipconfig/all列出的IP地址是localhost

一位候選人是192.168.1.23另一個192.168.1.41 enter image description here

如何檢查其IP地址爲localhost,或者他們倆都指向同一個地方?

+0

從技術上來說,這些都不是'localhost',這是'127.0.0.1'和​​':: 1'和那些都不是你想配置你的iPad使用什麼。 – EricLaw

回答

1

這只是一個'答案'不''的答案,但這對我有效。

首先,我瀏覽到http://192.168.1.23:8888/並得到

Fiddler Echo Service 


GET/HTTP/1.1 
Host: 192.168.1.23:8888 
Proxy-Connection: keep-alive 
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8 
User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36 
Accept-Encoding: gzip,deflate,sdch 
Accept-Language: en-GB,en-US;q=0.8,en;q=0.6 

This page returned a HTTP/200 response 
Originating Process Information: chrome:10568 
To configure Fiddler as a reverse proxy instead of seeing this page, see Reverse Proxy Setup 
You can download the FiddlerRoot certificate 

然後我瀏覽到http://192.168.1.41:8888/

,並得到完全相同的反應。

我相信假設兩個IP地址都指向同一個地方是安全的。不知道這是否始終如此,但我的確如此。

這樣看來,I am using multihoming.

相關問題