I have a Local Director config that is using 2 bind ids. The default Bind ID of 0 (default) is allowing a virtual IP to hit three web servers on port 80 and 443. I have the other Bind ID of 1 which sends traffic from a given class C address to web server #1 on port 80. See commands below (I changed the IPs below for security reasons):
virtual 10.10.10.10:80:1:tcp
bind 10.10.10.10:80:1:tcp web01:80:0:tcp
assign 10.10.10.10:80:1:tcp 192.168.110.0 255.255.255.0
assign 10.10.10.10:80:1:tcp 10.61.1.0 255.255.255.0
I added the following commands to allow it to connect on 443 as well:
virtual 10.10.10.10:443:1:tcp
bind 10.10.10.10:443:1:tcp web01:443:0:tcp
assign 10.10.10.10:443:1:tcp 192.168.110.0 255.255.255.0
assign 10.10.10.10:443:1:tcp 10.61.1.0 255.255.255.0
When I put these commands in, all SSL traffic stopped. Any ideas? Port 80 still worked.