여러 프록시를 하나로 결합하고 가장 빠른 프록시를 사용하는 프로그램? 프록시 프로그램을 설치했습니다. Tor와

IP 주소가 127.0.0.1:8580, 127.0.0.1:9966, 127.0.0.1:7070 인 여러 프록시 프로그램을 설치했습니다. Tor와 그 대안으로 그들을 regrard 할 수 있습니다.

아시다시피 특정 프록시 프로그램은 다른 프록시 프로그램보다 빠르지 만 다른 경우에는 느릴 수 있습니다.

필자가 사용한 한 Firefox 애드 인 AutoProxy 및 FoxyProxy Standard는 * .google.com 패턴과 일치하는 URL과 같은 규칙 목록을 127.0.0.1:8580으로 프록시 지정해야합니다. 그러나 규칙은 “정적”입니다. * .google.com이 어떤 프록시에 관계없이 가장 빠른 프록시로 프록시되기를 원합니다.

요약하면 정의 된 URL을 정의 된 목록과 가장 빠른 프록시 주소로 프록시하는 프로그램 / Firefox addin / mechanism을 찾고 있습니다.

그래서. 어떤 제안?



답변

로드 밸런서라는 올바른 키워드를 찾았습니다.

nginx, HAProxy 및 Linux Virtual Server Project는 모두 좋은 후보입니다.

며칠 후에 nginx를 사용해 볼 것입니다.

최신 정보:

HAProxy가 나를 위해 일합니다. 그것을 사용하여 프록시 체인을 만듭니다.

firefox ---> haproxy -(select one)-> 1. ssh
                                     2. tor

haproxy.cfg :

 global
         log 127.0.0.1   local0
        #log 127.0.0.1  local1 notice
          #log loghost    local0 info
          maxconn 1500
         chroot D:\haproxy
        uid haproxy
         gid haproxy

         daemon
        nbproc 2
         pidfile D:\haproxy\haproxy.pid
         #debug
          #quiet

 defaults
        log     127.0.0.1       local3
         mode    http
         option  httplog
        option  httpclose
        option  dontlognull
         option  forwardfor
          option  redispatch
         retries 2
       maxconn 2000
        balance roundrobin
        stats enable
        stats uri /ha?stats
       contimeout      5000
         clitimeout      50000
         srvtimeout      50000

listen fq 127.0.0.1:9999
    mode tcp
    balance leastconn
    server ssh 127.0.0.1:7070 weight 3 #check inter 10000
    server tor 127.0.0.1:9050 weight 3 #check inter 10000

listen admin_stat
    bind *:8011
    mode http
    option httplog
    log global
    stats refresh 30s
    stats uri /admin?stats
    stats realm Haproxy\ Statistics
    stats auth admin:admin
    stats hide-version

chroot와 pidfile을 적절한 경로로 변경하십시오.

Firefox는 socks5 모드로 프록시 127.0.0.1:9999를 설정합니다.


답변