You can set different MTU size for different NICs. There are some requirements for larger MTUs - the adapter properties should support jumbo frames, you should be using a gigabit switch that supports jumbo frames as well.
To make one NIC route to a specific IP, and another to the gateway/internet/other clients is not very difficult if the two NICs are on separate subnets. What makes it a bit harder is you probably want to keep the NAS in the same subnet as all other local network devices, so that it is accessible to everyone on the LAN. This then requires setting a static route.
Let's say, your router/gateway/DHCP server is at 192.168.0.1, net mask 255.255.255.0 (you can check this in command prompt with: ipconfig /all). Your first adapter, NIC1 is for all traffic, set with DHCP and normal 1500 MTU, second adapter NIC2 is set with 9000 MTU and a static IP. You are using gigabit switch, etc.
Let's assume your DHCP range is 192.168.0.10-100
Let's assume your NAS is set to a static IP: 192.168.0.2
Setup your two NICs.
First NIC: Let's say it gets some 192.168.0.x IP address via DHCP, netmask 255.255.255.0, default gateway 192.168.0.1
Your first NIC for all/default traffic should also be set to higher priority, so that default traffic uses it. You can check each NIC priority / metric in the adapter settings, or using this in command prompt: route print (lower metric means higher priority). See: https://www.speedguide.net/faq/how-t...nt-default-350
Second NIC: You will want to use a static IP outside of DHCP range (so that you can set a static route). Let's say it is set to 192.168.0.205, netmask 255.255.255.0
Now, you have to specify a static route, so that your NIC2 is used (192.168.0.205 ) to connect to the NAS (192.168.0.2) directly. This can be accomplished with the "route" command in command prompt.
Before we set the route, you need to note each "interface" and their "metric" again, using command prompt "route print". Let's assume NIC1 is interface "if" 11, and NIC2 is interface 12.
Then, still in command prompt with the route command, add a new static route to your NIC2 (intrrface 12), something like that:
route -p ADD destination MASK subnet_mask gateway_ip metric_cost interface
route -p ADD 192.168.0.2 mask 255.255.255.255 192.168.0.205 IF 11
In this example, " -p " specifies the route should be persistent (survive reboots), the number " 11 " at the end specifies the interface number of your NIC2. The subnet_mask is 255.255.255.255 because we only want to set a very specific route that affects only this one interface.
Alternate static route (not using the NIC2 specific interface): route -p add 192.168.0.2 mask 255.255.255.0 192.168.0.205
You may have to redo this after Windows updates, etc. even though it has the persistent flag set. Alternatively, you can set a batch file to be executed at Windows start to add the route. I hope this helps.
Bookmarks