On Fri, 2007-11-30 at 14:07 -0800, Cliff Wells wrote:
> map $host $internal_ip {
>     hostnames;
>     .host1.com       127.0.0.2;
>     .host2.com       127.0.0.3;
>     .host3.com       127.0.0.3;
> }
> 
And of course I meant
map $host $internal_ip {
    hostnames;
    .host1.com       127.0.0.2;
    .host2.com       127.0.0.3;
    .host3.com       127.0.0.4;
}
Cliff