測試代理
Ⅰ 怎樣測試代理伺服器的下載速度(帶寬),不是PING值
在服務上下載個測試軟體
Ⅱ 怎樣測試自己獲得的代理伺服器IP地址有效並且快速
PING 一下就搞定 開始-運行 輸入CMD 然後輸入ping 然後來個空格 輸入代理IP 按回車 就能看到了
Ⅲ 怎樣ping 測試代理IP速度啊
我ping的是ping -t 61.139.2.69
Ⅳ 怎樣快速測試代理伺服器的連接
花刺代理驗證就可以了
地址:http://www.onlinedown.net/soft/33681.htm
很好用.
Ⅳ 怎樣測試代理伺服器的速度
ping xxx.xxx.xxx.xxx x是代理伺服器地址 看看返回的time數值是多少,數值越小就越快
Ⅵ 怎樣批量測試代理伺服器有效性
你用的是proxy hunter,花刺??,選中後全部驗證就可以了,ps:代理速度太慢,推薦一個goagent,或在網上找些免費的vpn吧,
Ⅶ 哪個網站可以提供免費代理IP並且可以在線測試免費代理IP速度
給你幾個免費IP的站.自己去選
http://www.sooip.cn/Article_Class.asp?ClassID=2
http://www.proxycn.com/html_proxy/30fastproxy-1.html 這個有測速
今天的代理有
ID 地址 埠 類型 地區 驗證時間 響應 WHOIS
1 98.243.80.2 8085 HTTP 美國 新澤西州月桂山鎮Comcast有線通信公司 07-01 10:23 0.989 whois
2 222.58.227.131 80 HTTP 湖南省衡陽市 鐵通 07-01 10:20 0.991 whois
3 76.177.63.157 8085 HTTP 美國 ProxyCN 07-01 10:20 0.991 whois
4 222.58.227.133 80 HTTP 湖南省衡陽市 鐵通 07-01 10:38 0.992 whois
5 201.63.145.54 80 HTTP 美國 中部/南部(IANA) 07-01 10:32 0.992 whois
6 212.109.155.254 8080 HTTP 波蘭 ProxyCN 07-01 10:32 0.992 whois
7 75.44.41.225 8085 HTTP 美國 ProxyCN 07-01 10:22 0.993 whois
8 98.211.108.13 8085 HTTP 美國 新澤西州月桂山鎮Comcast有線通信公司 07-01 10:31 0.994 whois
9 222.58.225.188 80 HTTP 湖南省衡陽市 鐵通 07-01 10:31 0.994 whois
10 98.150.166.64 8085 HTTP 美國 夏威夷洲 07-01 10:27 0.994 whois
Ⅷ 怎麼測試nginx反向代理
代理機器:192.168.163.128
後端機器:192.168.163.129和192.168.163.131
以上三台機器都搭建了nginx
1、修改index.html,區別後端機器
192.168.163.129和192.168.163.131上的/usr/local/nginx/html/index.html中,修改Welcome to nginx 為Welcome to nginx129和Welcome to nginx131以作這兩台機器的區別
2、代理機器的配置
修改nginx.conf文件:
[html]view plain
http{
includemime.types;
default_typeapplication/octet-stream;
include/usr/local/nginx/conf/reverse-proxy.conf;
#log_formatmain'$remote_addr-$remote_user[$time_local]"$request"'
#'$status$body_bytes_sent"$http_referer"'
#'"$http_user_agent""$http_x_forwarded_for"';
#access_loglogs/access.logmain;
sendfileon;
#tcp_nopushon;
#keepalive_timeout0;
keepalive_timeout65;
gzipon;
client_max_body_size50m;#緩沖區代理緩沖用戶端請求的最大位元組數,可以理解為保存到本地再傳給用戶
client_body_buffer_size256k;
client_header_timeout3m;
client_body_timeout3m;
send_timeout3m;
proxy_connect_timeout300s;#nginx跟後端伺服器連接超時時間(代理連接超時)
proxy_read_timeout300s;#連接成功後,後端伺服器響應時間(代理接收超時)
proxy_send_timeout300s;
proxy_buffer_size64k;#設置代理伺服器(nginx)保存用戶頭信息的緩沖區大小
proxy_buffers432k;#proxy_buffers緩沖區,網頁平均在32k以下的話,這樣設置
proxy_busy_buffers_size64k;#高負荷下緩沖大小(proxy_buffers*2)
proxy_temp_file_write_size64k;#設定緩存文件夾大小,大於這個值,將從upstream伺服器傳遞請求,而不緩沖到磁碟
proxy_ignore_client_aborton;#不允許代理端主動關閉連接
#gzipon;
server{
listen80;
server_namelocalhost;
#charsetkoi8-r;
#access_loglogs/host.access.logmain;
location/{
roothtml;
indexindex.htmlindex.htm;
}
#error_page404/404.html;
#/50x.html
#
error_page500502503504/50x.html;
location=/50x.html{
roothtml;
}
}
server
{
listen80;
server_name123.tk;
location/{
proxy_redirectoff;
proxy_set_headerHost$host;
proxy_set_headerX-Real-IP$remote_addr;
proxy_set_headerX-Forwarded-For$proxy_add_x_forwarded_for;
proxy_passhttp://192.168.163.129:80;
}
access_loglogs/123.tk_access.log;
}
server
{
listen80;
server_name456.tk;
location/{
proxy_redirectoff;
proxy_set_headerHost$host;
proxy_set_headerX-Real-IP$remote_addr;
proxy_set_headerX-Forwarded-For$proxy_add_x_forwarded_for;
proxy_passhttp://192.168.163.131:80;
}
access_loglogs/456.tk_access.log;
}
192.168.163.129123.tk
192.168.163.131456.tk
3、添加conf/reverse-proxy.conf文件
[html]view plain
4、重載nginx
kill -HUP `cat /usr/local/nginx/nginx.pid`
5、修改訪問機器的hosts
在要訪問這些域名的機器上修改hosts文件,添加:
[html]view plain
[html]view plain
6、測試訪問
Ⅸ 代理設置完後,如何測試知道代理設置成功了
在DOS下測試一下:用ping 代理IP
Ⅹ 有測試代理嗎
QQ測試代理代理伺服器是介於瀏覽器和Web伺服器之間的一台伺服器,當你通過內代理伺服器上網瀏容覽時,瀏覽器不是直接到Web伺服器去取回網頁,而是向代理伺服器發出請求,由代理伺服器來取回瀏覽器所需要的信息,並傳送給你的瀏覽器。
通過對瀏覽器中設置代理伺服器,可以提高上網效率,下面以IE5.0為例做一說明,使用IE4.0的用戶,設置方法稍有不同!
1. 在IE瀏覽器的菜單欄中選擇[工具],再選[Internet 選項];
2. 在彈出的[Internet 選項]對話框選擇[連接]標簽,再點擊[設置(S)...]按鈕;
3. 在代理伺服器一項中選中[使用代理伺服器(X)],然後點[高級]
4. 在HTTP里[代理伺服器地址]填寫 192.168.1.155,[埠]一欄填 8080,
[例外]一欄中填寫 192.168.1.*, 然後點[確定];
5.返回前一個對話框,選中[對於本地地址不使用代理伺服器(B)],
然後點[確定];
6.返回前一個對話框,然後點[確定];
結束設置。