Displaying 2 results from an estimated 2 matches for "exa_if".
2003 Feb 21
0
dgd/iproute/iptables multihoming problem
...e global secondary eth2:0
inet J.K.L.100/27 brd J.K.L.127 scope global secondary eth2:1
inet J.K.L.101/27 brd J.K.L.127 scope global secondary eth2:2
inet J.K.L.102/27 brd J.K.L.127 scope global secondary eth2:3
I use the following to set up routing and NAT (relevant excerpts shown).
EXA_IF=eth0
EXA_NET=`ip addr ls $EXA_IF | awk ''/inet/ { print $2 }'' | head -1`
EXA_IP=${EXA_NET//\/*/}
EXA_GW=A.B.C.225
EXA_RNG=A.B.C.230
EXB_IF=eth2
EXB_NET=`ip addr ls $EXB_IF | awk ''/inet/ { print $2 }'' | head -1`
EXB_IP=${EXB_NET//\/*/}
EXB_GW=J.K.L.97
EXB_RNG=J.K....
2003 Feb 21
0
Solved: dgd/iproute/iptables multihoming problem
...ource for the multipath route solved the problem.
> ip rule add priority 200 table multi
should be
ip rule add prio 200 from $INT_NET table multi
> ip route add default table multi proto static \
> nexthop via $EXB_GW dev $EXB_IF weight 1 \
> nexthop via $EXA_GW dev $EXA_IF weight 1
g