HTTP::Proxy and not using 127.0.0.1

Ask a Question related to PERL Modules, Design and Development.

  1. #1

    Default HTTP::Proxy and not using 127.0.0.1

    I am getting great results with HTTP::Proxy - as long as I use
    127.0.0.1 as the proxy address in a browser on the same machine.

    I would like to have a lan-available proxy so have tested with using
    the machine ip it is running on: 192.168.0.73, but the proxy doesn't
    get contacted, even by a browser on the local machine.

    I feel sure this is an easy problem, but the things I have tried so far
    haven't fixed it for me:

    my $proxy = HTTP::Proxy->new( PeerAddr =>'192.168.0.73',port => 8080 );
    my $proxy = HTTP::Proxy->new( LocalAddr=>'192.168.0.73',port => 8080 );
    my $proxy = HTTP::Proxy->new( MultiHomed =>1,port => 8080 );

    Any suggestions gratefully received.

    If it matters, I am using a WinXP machine with Activestate ActivePerl
    5.8.8 build 816. The MS-Firewall has port 8080 unblocked.

    Neil

    neilx Guest

  2. Similar Questions and Discussions

    1. HTTP tunneling and reverse proxy server
      We're currently using Windows Media Services (WMS) to stream video on our website. There is an option WMS to use the HTTP protocol and to specify...
    2. HTTP::Proxy - how to detect start and end of URL fetch
      Inside HTTP::Proxy, is there a way to detect (via callback) when the fetch of the URL begins and ends? aTdHvAaNnKcSe
    3. Using HTTP::Proxy
      I am having trouble getting this to work. Can anyone tell me what I am doing wrong? This is simple test code. use HTTP::Proxy; use...
    4. HTTP::Proxy::BodyFilter::Adnix 0.01 released on CPAN
      HTTP/Proxy/BodyFilter/Adnix version 0.01 ======================================== This class implements a HTTP::Proxy body filter which blocks...
    5. Using an HTTP Proxy
      Hi all, I'm trying to write a PHP script that will grab a web page through a proxy server. From what I understand a standard HTTP (1.1)...
  3. #2

    Default Re: HTTP::Proxy and not using 127.0.0.1

    If you haven't already, check the firewall on the remote machine.
    It's probably blocking incoming connections on that port.

    sam.bartlett@gmail.com Guest

  4. #3

    Default Re: HTTP::Proxy and not using 127.0.0.1

    Just cracked it:

    my $proxy = HTTP::Proxy->new( host=>'192.168.0.73',port => 8080 );

    neilx Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139