> In apache (1.3 version) I have set the following directives:
> 
>     BindAddress x.x.x.23
>     BindAddress x.x.x.249
>     
>     ServerName  x.x.x.23
>     Listen      x.x.x.249

Actually, if you're just trying to have the box serve up the exact same
site on two IP addresses, then you should just be able to do the
following:

BindAddress * #tells Apache to listen on all available IP addresses
#ServerName -- commented out since we don't need it
#Listen -- commented out since we don't need it

that should do it.

hth 

--kurt

Reply via email to