|
Several glossy Microsoft presenters have stated that all you need to do to complete a Windows 2003 Domain upgrade is run ADPREP and then upgrade away. This may work for very small / simple environments but it is definitely not good advice for most companies. After upgrading five servers in two unrelated domains and installing many fresh copies of 2003 I can say that I personally would not skip a single step in the process I have developed below. NOTE: This process below
is offered with no guarantees and we acceprt no liability. Windows 2000 to 2003 Domain Upgrade Process:
Important Extras:
Useful Links: Multihomed Server Routing Problems: The following information was taken from a Merak Mail Forum. I thought many people may find the information useful: Windows Server 2003 networking you need to be aware that MS seems to have adopted a different philosophy regarding multi-homing. By default a server with 2 NICs treats networking concept as fault tolerant redundancy. That is if one of your default gateways goes down the other NIC should route traffic to the other gateway. In real life however, many networks have been traditionally designed with one NIC pointing to an Internet gateway and the other to a LAN gateway and availability should always be available through either NIC depending upon if you're connecting to the server via the LAN or Internet. The solution to this problem is to disable the default Automatic Metric settings for both NICs and put in a static value of 1 (assuming your default gateway is 1 hop away).
We used
to try and run multihomed servers with 2 "default gateways" - every
now and then the server would drop off the internet. A server can
only have one default gateway. Its basically a dumping ground for
any traffic it doesn't know where to route. For example, a server we have is on 217.77.176.15. Its default gateway is 217.77.176.1. The server is also 192.168.2.15. It can reach any other 192.168.2.0/24 address by default. We also want to get to 192.168.1.0/24. Old way - add 192.168.2.1 (which is a router) as the gateway for second interface. Bad bad bad. Better way - route add 192.168.1.0 mask 255.255.255.0 192.168.2.1 -p ...the "servers" default gateway is defined by the NIC that you give the highest preference to. Specifying the IP Address, Subnet mask, gateway and metric for the gateway for each NIC will result in the routes automatically being added to the server's routing table (you can see this with Route Print). This difference is how Server 2003 handles the metric by "default". By "default" it sets the metric to automatic which results in the Server 2003 picking the default gateway by shortest actual distance determined by pinging each gateway. If the performance to one gateway is slightly, even fractions of a ms, better then that becomes the server's default gateway. Should connectivity to this default gateway become degraded or disappear then the next NIC's default gateway automatically kicks in. This is fine if you want fault tolerance. Now consider if you want to have two separate gateways run independently to two distinct networks as an always on. It is necessary to turn off the automatic metric and set the default gateways to each nic to an equal value (typically 1). Now the actual overall default gateway for the server will remain as the default gateway for the NIC which has the highest adapter preference. All of the routing information will be generated by Windows. Now you could manually create the routes but it really isn't necessary. The real idea here is that each NIC must be always available, listening for traffic coming from it's own respective default gateway. I mostly wanted to point out that the way the Server 2003 handles multiple NICs differently by default. Incidentally, this is an excellent way of separating specific protocols between two distinct networks, setting up port forwarding or migrating a server from one network to another without any downtime and without having to build a clone of the server. You can actually setup multiple IP addresses each with their own gateway and only one NIC. I've used this successfully many times during migrations but we won't go there. LOL Take care. |