Hello!

> interface. I tried exactly the same IP as I got for ppp0 interface:
> teql works now.
> I never thought that IP for teql0 should be the same as that for ppp.

Really, it is not necessary. I said it only to avoid asking
more questions about your configuration.


> [root@vladik2 /]# /sbin/tc -s qdisc ls
> qdisc teql0 8001: dev ppp0 root
>  Sent 0 bytes 0 pkts (dropped 0, overlimits 0)
> qdisc teql0 8004: dev ppp1 root
>  Sent 0 bytes 0 pkts (dropped 0, overlimits 0)

These zeros mean, that nothing was queued on teql. 8)8)8)

It may occur only in one case: you did not even try
to contact to some host except for your ppp endpoints.

If you want to balance traffic to them too,
then you should delete interface routes:

> 10.65.60.12 dev ppp1  proto kernel  scope link  src 207.172.197.109
> 209.150.35.10 dev ppp0  proto kernel  scope link  src 209.150.35.241

ip route del 10.65.60.12
ip route del 209.150.35.10

Or, alternatively, even kill these addresses at all.

ip addr del 10.65.60.12/32 local 207.172.197.109 dev ppp0
ip addr del 209.150.35.10/32 local 209.150.35.241 dev ppp1

and to add them on teql instead:

ip addr add 10.65.60.12/32 local 207.172.197.109 dev teql0
ip addr add 209.150.35.10/32 local 209.150.35.241 dev teql0

Do not forget also to check, that rp filter is not turned on.
I heard some distributions already set it by default.

echo 0 > /proc/sys/net/ipv4/conf/ppp0/rp_filter
echo 0 > /proc/sys/net/ipv4/conf/ppp1/rp_filter

Alexey
-
To unsubscribe from this list: send the line "unsubscribe linux-net" in
the body of a message to [EMAIL PROTECTED]

Reply via email to