[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [hobbit] Testing a dynamic host needing a proxy server
- To: hobbit (at) hswn.dk
- Subject: Re: [hobbit] Testing a dynamic host needing a proxy server
- From: "Ralph Mitchell" <ralphmitchell (at) gmail.com>
- Date: Wed, 5 Sep 2007 22:36:31 -0500
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=N37Hif/rOkuaaVqRK8aKmYloZ3E3K/A4lqFPMBOk594=; b=AYVQC1dPoUCA/bLc1m4poMcW1vjBDhC19vhBgqWJFiO93FBBdedRXfedM2jDk363xEFtQLN1/t5kVS1WPyzdtrkAcsDmbSigox6NN7Wu/0BIc4zzxDV3K7TUzs+DtAHpSSZOg52aOHLpKWLUh9tlfTjyKbHKZtCH1yG25WsHr/c=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=qW0nMCVIvRSqHPed919QVSfzynaKJ9LlvjJUJjmLuNgdo4Vfazo8xq4lZkuIkZQ9giU6+35E6ouJqFkWuGir+VkrVGJkWHqQsxkTLk67A19EcGqi1zqiQnRWbPY5zShv1nYLr7tqdpR23l8HxMcDOsBe/u7cgOZS90XdiJJgXR4=
- References: <46C57822.10902 (at) unil.ch> <0DC212FE7F69B24F81D2C4F1E65FCC23021936E0 (at) svits11.main.ad.rit.edu> <46C597DD.6090802 (at) unil.ch> <0DC212FE7F69B24F81D2C4F1E65FCC2302193920 (at) svits11.main.ad.rit.edu> <A8A26690D8B45A46A821ED9141E83D2B029A2F (at) home99.Home.local>
On 9/5/07, Meserole, Keith W. <km (at) keithm.us> wrote:
> Hi all,
>
> In Hobbit 4.2.0 is there a way to set up a test from an internal network
> to test http of an outside host, such as a DSL router? Cavaet: A
> proxy server is required to get out and also the DSL is a dynamic IP.
> This is on Solaris 10.
>
> I currently have a line similar to this in the bbhost file. NSLOOKUP
> to the real host name works but ping fails (of course) since there is no
> host file entry.
>
> 0.0.0.0 DSL1 # noconn https://dsl1.dyndns.biz:8080
>
> Can anyone provide a detailed example of how to accomplish this?
Dunno about using proxies in Hobbit web tests, but I've had a lot of
success with external scripts using curl:
curl -x http://proxy.domain.com:80/ -o page.html https://dsl1.dyndns.biz:8080
then examine page.html to see if it contains something you expect to see.
Ralph Mitchell