I am trying to setup the test machine with 6 Ethernet ports. I gave each port a static IP, and hook all channels onto one single unmanaged Ethernet switch. I started 6 netserver tasks for each IP with different port number(I don't know if this is the right way to do).
<br><br>eth0---> <a href="http://192.168.20.10">192.168.20.10</a><br>eth1---> <a href="http://192.168.20.11">192.168.20.11</a><br>eth2---> <a href="http://192.168.20.12">192.168.20.12</a><br>...etc<br><br>The netserver tasks are started as:
<br>netserver -L <a href="http://192.168.20.10">192.168.20.10</a> -p 8000<br>netserver -L <a href="http://192.168.20.11">192.168.20.11</a> -p 8001<br>... etc<br><br>When I try to use another machine to netperf servers, all traffic feed into only one Ethernet port on server side. I only saw eth1 LED blink all the time whichever I netperf the destination address.
<br><br>My question is: How to bind multiple netservers on different Ethernet cards. Is it possible? How?<br>