✔ 最佳答案
notebook, PC even Server can have more than one Network card.....no matter wire or wireless.
For notebook, PC and Server with two network card, we call it Dual homing host. It can provide better design, say first NIC connected to one switch and second NIC connected to other switch...... If frist switch die, the DUAL host can still access via the the second network swtich.
In your case both are using and backup with each other......
you can change it by changing the routing table in yoor PC. The command is like this.
> route PRINT
> route ADD 157.0.0.0 MASK 255.0.0.0 157.55.80.1 METRIC 3 IF 2
destination^ ^mask ^gateway metric^ ^
Interface^
If IF is not given, it tries to find the best interface for a given
gateway.
> route PRINT
> route PRINT 157* .... Only prints those matching 157*
> route CHANGE 157.0.0.0 MASK 255.0.0.0 157.55.80.5 METRIC 2 IF 2
CHANGE is used to modify gateway and/or metric only.
> route PRINT
> route DELETE 157.0.0.0
> route PRINT