Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Run 2 Network Cards for LAN on Win2K Server 2

Status
Not open for further replies.

BigFunkyChief

IS-IT--Management
Jan 22, 2004
115
US
Hello,
Have a client who runs a Win2k server. They currently have a single ethernet network card connecting them to the LAN. They would like to run 2 network cards on the LAN to provide greater throughput to the server. I've been unable to find any documentation on this, likely I'm not using the correct terminology. Any have any ideas where I should go for more info?
Thanks!

BigFunkyChief
 
You can use a technology called: "Teaming". Of course, your hardware has to support it so you need to do your homework.

Intel makes a Dual NIC Pro/1000 card that takes one slot but has 2 interfaces. This card is made to do "Teaming" if you want.



"In space, nobody can hear you click..."
 
Excellent! Just what I was looking for...I'll do a little more research to make sure it's okay with my hardware.

Thanks!
 
It is possible to have the OS to balance the network load for the computer when having several Network Adapters.

This is controlled by these DWORD values :

[HKEY_LOCAL_MACHINE \SYSTEM \CurrentControlSet \Services \NetBT \Parameters]
RandomAdapter = 1 (Disabled = 0, Enabled = 1, Default = 0)
SingleResponse = 1 (Send All = 0, Send One = 1, Default = 0)

The RandomAdapter specifies whether it should respond back with a random IP-Address (One for each adapter), or if it should respond back with the IP Address for the adapter the request was received from.

The SingleResponse says that it should only send one IP address when WINS does a name query request.


You can also manually configure the interface metrics to allow load balancing between multiple network adapters:
Install TCP/IP for all adapters and assign them a different IP-address on the same subnet (Becomes Multihoming)
If a certain adapter should be dedicated for outgoing traffic then it should be given a lower interface metric
If a certain adapter should be used for certain incomming traffic then make sure the clients connects to its IP-Address
Note Netbios traffic (outgoing/incoming) can only be handled by a single adapter or else a name conflict will arise (Though it doesn't have to be the one dedicated for outgoing IP traffic)
Note it is possible for clients to connect to a service (FTP/HTTP,etc.) through all network adapters (To force clients to use a certain adapter one can use DNS or port blocking)
To configure the metric in Win2k/WinXP (WinNT4/Win9x can use the command "route"):
Open Control Panel
Double click Network and Dial-up Connections(Win2k) or Network Connections(WinXP)
Righ click Local Area Connection and select Properties
Double click Internet Protocol (TCP/IP)
Press Advanced-button and it is possible to configure gateways and interface metric.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top