Quote:
Originally Posted by fry@pocketbook
After long time I need some help with my Kindle DXG
I like to use USB networking to connect the Kindle to my local network. I have installed v3.2.1 firmware and some (old) Version of usbnetwork hack.
I'm using Ubuntu with this settings:
Code:
auto eth0
iface usb0 inet dhcp
auto usb0
iface usb0 inet static
address 192.168.2.1
netmask 255.255.255.0
up echo 1 > /proc/sys/net/ipv4/ip_forward
up iptables -P FORWARD ACCEPT
up iptables -A POSTROUTING -t nat -j MASQUERADE -s 192.168.2.0/24
down echo 0 > /proc/sys/net/ipv4/ip_forward
down echo 0 > /proc/sys/net/iptables -t nat -F POSTROUTING
|
Replace:
Code:
down echo 0 > /proc/sys/net/iptables -t nat -F POSTROUTING
With:
Code:
down iptables -D POSTROUTING -t nat -j MASQUERADE -s 192.168.2.0/24
ixtab has already spotted your routing problem on the Kindle.
most likely the wrong (or a missing) default route and gateway entry.
you may also want to set the dns name service resolution on the Kindle to that which your lan is using.
Your questions would be easier to answer if you posted your Kindle's networking setup, like I requested.
Otherwise we are in the same boat as you are - guessing in the dark.