Q1. If a computer had two NICs, lets say windows, on which interface would HTTP traffic (or any for that matter) go out on.

Not sure how the routes table would look like.

Q2. If one of the NICs link becomes unresponsive, would traffic be automatically routed to the other NIC?

Thanks.

link|improve this question

80% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Each card will have it's own IP, but most webservers default to "all" addresses, and it's actually a bit of a pain to disable it for IIS.

Inbound, connectivity depends on which address the remote machine is talking to. If you have 192.168.1.1, and 192.168.1.2, and 192.168.1.1 goes down, then traffic that is intended for 192.168.1.1 will not go through.

Outbound, the server should use whichever interface it deems appropriate. You can type route print to see how it's set up, but it should automatically failover, unless you've crippled connectivity somehow on the second interface.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.