On Thu, 2006-10-26 at 01:13 +0530, Jegadeesh wrote:
> We have attached the DNS configuration in workload file.
>
> AddrMap Map = {
> addresses = [ '172.16.X.101:80', '172.16.X.101:80',
> '172.16.X.101:80', '172.16.X.101:80', '172.16.X.101:80' ];
> names = [ 'www[1-5].mycompany.com:80' ];
>
> };
>
> DnsResolver dr = {
> servers = [ '172.16.X.X:53' ];//DNS server IP and Port
> timeout = 05sec;
> };
>
> Robot R = {
> .......................
> .......................
>
> dns_resolver = dr;
> };
>
> Is there any wrong. Please help me.
Is there a reason you want to put domain names in Map.names? Can you
just put IP addresses there? For example,
AddrMap = {
addresses = ...;
names = addresses;
};
And if your map is 1:1, you can get rid of it by specifying IP addresses
in R.origins.
If the above does not work, we would need to teach Polygraph how to
resolve addresses using the AddrMap, without making actual DNS queries.
HTH,
Alex.
Received on Wed Oct 25 18:11:10 2006
This archive was generated by hypermail 2.1.8 : Thu Oct 26 2006 - 12:00:05 MDT