Quote:
Originally Posted by jelbo
I just jailbreaked my PocketBook Touch HD 3 (PB632) and it worked great. I had to disable the firewall before I could reach it using SSH and SFTP etc. though.

|
Very good! Was expecting far more trouble on smaller devices. As for the firewall, can you try adding the rules manually from ssh:
Code:
iptables -A INPUT -s 169.254.0.0/16 -i rndis0 -j ACCEPT
iptables -A INPUT -s 169.254.0.0/16 -i eth0 -j DROP
If that still cuts you off? If so, what does ifconfig looks like, presumably eth0/rndis0 is something else? The reason for using those rules is that 169.254 is "blessed" and doesn't ask for passwords, so it would be dangerous to expose it via wifi (but is fine via usbnet which is physically connected and never routed).