yeah ta thx i am looking for my pppoe cable with not much joy ATM the TelkomSA seems to work
but the trick is to make them work all together on the same ethernet

and then just for fun run a pppoe-server with a internal service name just because i can ....
poor son has to dial-up to the firewall and here is the script that farques his line ... ip-up
im not all mean he can email/browse via the server/proxy over lan but p2p gets whacked
<blockquote id="quote"><font size="1" face="Verdana, Arial, Helvetica" id="quote">quote:<hr height="1" noshade id="quote">
elif [ "$6" == "pppoe" ];then
#Delete Existing Classes
/sbin/tc qdisc del dev $INT_NAME root
/sbin/tc qdisc del dev $INT_NAME handle ffff: ingress
if [ "33.6" != "" ] && [ "16436" != "" ] && [ "4476" != "" ];then
#Apply ingress limit
/sbin/tc qdisc add dev $INT_NAME handle ffff: ingress
/sbin/tc filter add dev $INT_NAME parent ffff: protocol ip handle 9 fw police rate 33.6Kbit burst 16436 mt
u 4476 drop
fi;
if [ "33.6" != "" ];then
#Apply egress limit
/sbin/tc qdisc add dev $INT_NAME root handle 1: htb default 1
/sbin/tc class add dev $INT_NAME parent 1: classid 1:1 htb rate 33.6Kbit ceil 33.6Kbit
/sbin/tc qdisc add dev $INT_NAME parent 1:1 handle 2 sfq perturb 10
/sbin/tc filter add dev $INT_NAME parent 1: protocol ip prio 1 handle 8 fw classid 1:1
fi;
<hr height="1" noshade id="quote"></blockquote id="quote"></font id="quote">