Displaying 2 results from an estimated 2 matches for "exb_if".
Did you mean:
exa_if
2003 Feb 21
0
dgd/iproute/iptables multihoming problem
...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.L.102
INT_IF=eth1
INT_NET=`ip addr ls $INT_IF | awk ''/inet/ { print $2 }'' | head -1`
INT_IP=${INT_NET//\/*/}
ip rule add prio 50 table ma...
2003 Feb 21
0
Solved: dgd/iproute/iptables multihoming problem
Specifying a source 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