|
I know it has been support on Linux,but how could I implement
it
on my PC with two network devices with two or more
IPs?
assume that I have a PC(desktop) and two internet
devices,
How could I make some connections in these two
network adaptors at the same time ?
or does anyone know any solution on IPV6 ?
on V4 we can setup routing rules like this (support
ECMP)
ip rule add pref 20 from 1.1.1.1 table 20
ip route add default table 20 via 1.1.1.253 ....... ip rule add pref 20 from 2.2.2.2 table 30
ip route add default table 30 via 2.2.2.253 ip route replace default nexthop via 1.1.1.253 dev
eth1
nexthop via 2.2.253 dev eth2 .....
then the two network adaptors (two IP address) can make
connections at same time
but what is the solutions on IPV6 ?
|