Hashmat Khan schrieb: > Hello, > > I understand that pppd uses parameters from different files such as those > located in /etc/ppp directory to control its behaviours on failures etc. > > I wanted to know if its possible to say for example implement a different > retry algorithm(user defined). Is this possible without modifying code ? > What do you try "to retry" ? when one provider is down you can easy switch to others. like this (not working) example: #!/bin/sh for PROV in prov1 prov2 prov2 do pppd call $PROV if [ everythink_works ] exit 0 done exit 1 re, wh -- To unsubscribe from this list: send the line "unsubscribe linux-ppp" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html