FindPage
View Source:
KnowledgeBase/PalmPPP
Load visor.ko Palm config: * In Preferences -> Connection ** Choose 'Cradle/Cable' *** Connect to: PC *** Via: Cradle/Cable ** Details: *** Speed: 115,200 bps *** Flow Ctl: Automatic * In Preferences -> Network ** Service: Windows RAS ** User Name: <blank> ** Password: <blank> ** Connection: Cradle/Cable ** Details *** Connection type: PPP *** Idle timeout: 1 Minute *** Query DNS: yes *** IP Address: Automatic Plug it in, hit connect. It will not attach as a USB serial device until you try to connect. In a shell, figure out what ttyUSB device it just grabbed. (Hint: It'll probably grab two; you want the higher numbered one) <code brush="bash"> echo 1 > /proc/sys/net/ipv4/ip_forward echo 1 > /proc/sys/net/ipv4/conf/eth0/proxy_arp /usr/sbin/pppd /dev/ttyUSB3 115200 10.224.23.33:10.224.23.34 echo 0 > /proc/sys/net/ipv4/conf/eth0/proxy_arp echo 0 > /proc/sys/net/ipv4/ip_forward </code>