On September 3, 2004 10:01 am, dravya wrote: > Hi all, > > I have two ppp connections setup and I want access the internet via these > links.... However, I get the error message "kernel: No Route: Rusty's brain > broke". > > Is there a patch associated with this.... or can you suggest any fixes... > > Why would something like this happen??? Is this a problem with the > ipt_MASQUERADE.c code??? > > any tips or suggestions are much appreciated. > > Thanks > I think you need to look at your routing setup ...: I believe this is a ROUTING error. Not sure what caused it: if (ip_route_output_key(&rt, &fl) != 0) { /* Funky routing can do this. */ if (net_ratelimit()) printk("MASQUERADE:" " No route: Rusty's brain broke!\n"); return NF_DROP; } Looks like ipt_MASQUERADE.c can't find a logical route for your packet. I take it you are trying to bind the two ppp connections into one? Someone else on the list will be better able to advise you on how to do that... but it DOES require some work beyond the scope of iptables. Alistair Tonner > Dravya