Join Today
+ Reply to Thread
Page 1 of 2 12 LastLast
Results 1 to 10 of 12
  1. #1
    Join Date
    Nov 2005
    Location
    Guangzhou, PR.China
    Posts
    14

    Default Prolems telneting to E680I on linux [ Solved ]

    Anyone telnet sucessfully to E680I via archlinux? I meet the following problem:
    Code:
    [root@Jackie soros]# telnet 169.254.142.2
    Trying 169.254.142.2...
    telnet: Unable to connect to remote host: Connection refused
    Here is my ifconfig:
    Code:
    [root@Jackie soros]# ifconfig usb0
    usb0      Link encap:Ethernet  HWaddr 86:8D:6A:25:32:12
              inet addr:169.254.142.2  Bcast:169.254.255.255  Mask:255.255.0.0
              inet6 addr: fe80::848d:6aff:fe25:3212/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:5 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:0 (0.0 b)  TX bytes:398 (398.0 b)
    And I got a response via ping:
    Code:
    [root@Jackie soros]# ping 169.254.142.2
    PING 169.254.142.2 (169.254.142.2) 56(84) bytes of data.
    64 bytes from 169.254.142.2: icmp_seq=1 ttl=64 time=0.065 ms
    64 bytes from 169.254.142.2: icmp_seq=2 ttl=64 time=0.047 ms
    
    --- 169.254.142.2 ping statistics ---
    2 packets transmitted, 2 received, 0% packet loss, time 1002ms
    rtt min/avg/max/mdev = 0.047/0.056/0.065/0.009 ms
    The folloing is the kernel message:
    Code:
    [root@Jackie soros]# dmesg | tail
    ReiserFS: hdb8: Using r5 hash to sort names
    usbcore: registered new driver usbnet
    usb 1-1: new full speed USB device using uhci_hcd and address 4
    cdc_acm 1-1:1.0: ttyACM0: USB ACM device
    usbcore: registered new driver cdc_acm
    drivers/usb/class/cdc-acm.c: v0.23:USB Abstract Control Model driver for USB modems and ISDN adapters
    usb 1-1: USB disconnect, address 4
    usb 1-1: new full speed USB device using uhci_hcd and address 5
    usb0: register usbnet at usb-0000:00:10.0-1, pseudo-MDLM (BLAN) device, 86:8d:6a:25:32:12
    usb0: no IPv6 routers present
    But lsusb told me that the kernel recognize my E680I as A768:
    Code:
    [root@Jackie soros]# lsusb
    Bus 005 Device 001: ID 0000:0000
    Bus 004 Device 001: ID 0000:0000
    Bus 003 Device 001: ID 0000:0000
    Bus 002 Device 001: ID 0000:0000
    Bus 001 Device 005: ID 22b8:600c Motorola PCS A768i GSM Phone
    Bus 001 Device 003: ID 06a2:0033 Topro Technology, Inc.
    Bus 001 Device 001: ID 0000:0000
    Is this the cause of the problem? Maybe because A768 do not support telnet,so my "A768" (in fact my phone is E680I) refused to connect.
    I can telnet to my E680I via Windowz XP. And I can telnet other hosts,ie. bbs.tsinghua.edu.cn via my linux system.
    Anyone can help? Thx in advance.

  2. #2

    Default Re: Prolems telneting to E680I on linux

    Quote Originally Posted by jackie_e680i
    Anyone telnet sucessfully to E680I via archlinux? I meet the following problem:
    Code:
    [root@Jackie soros]# telnet 169.254.142.2
    Trying 169.254.142.2...
    telnet: Unable to connect to remote host: Connection refused
    Here is my ifconfig:
    Code:
    [root@Jackie soros]# ifconfig usb0
    usb0      Link encap:Ethernet  HWaddr 86:8D:6A:25:32:12
              inet addr:169.254.142.2  Bcast:169.254.255.255  Mask:255.255.0.0
              inet6 addr: fe80::848d:6aff:fe25:3212/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:5 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:0 (0.0 b)  TX bytes:398 (398.0 b)
    And I got a response via ping:
    Code:
    [root@Jackie soros]# ping 169.254.142.2
    PING 169.254.142.2 (169.254.142.2) 56(84) bytes of data.
    64 bytes from 169.254.142.2: icmp_seq=1 ttl=64 time=0.065 ms
    64 bytes from 169.254.142.2: icmp_seq=2 ttl=64 time=0.047 ms
    
    --- 169.254.142.2 ping statistics ---
    2 packets transmitted, 2 received, 0% packet loss, time 1002ms
    rtt min/avg/max/mdev = 0.047/0.056/0.065/0.009 ms
    .
    i may be misreading things, but from the ifconfig it looks like your PC's address is 169.254.142.2, but you are trying to telnet to and ping the same address; so the ping result makes sense (your pinging your own machine) and the telnet result makes sense if you are not running a telnet demon on your PC.

    On a Win machine the belcarra driver assigns 169.254.142.1 to the host and 169.254.142.2 to the phone; from your ifconfig results it looks like in your case this might be reversed. Have you tried to ping/telnet to 169.254.142.1?

    Also, have you tried using somthing like qonsole on the phone to see what ifconfig (on the phone) returns?

  3. #3
    Join Date
    Nov 2005
    Location
    Guangzhou, PR.China
    Posts
    14

    Default Re: Prolems telneting to E680I on linux [ Solved ]

    Yes, 169.254.142.2 is the IP addr of my PC. On E680I, I ran Telnet and then ifconfig. The output told me that my E680I's usb10 was assigned an IP of 192.168.1.2. So I assigned 192.168.1.99 to interface usb0 on my linux system. and ran
    Code:
     route add -host 192.168.1.2 dev usb0
    . Telnet worked!
    I love windflowers...

  4. #4
    Join Date
    Mar 2005
    Posts
    2,341

    Default Re: Prolems telneting to E680I on linux [ Solved ]

    @ jackie_e680i

    what linux distri and klernel do you use?
    Motorola e680 (flashed to e680i) + 4Gb SD card + HT820 Stereo BT Hedphones,
    Ubuntu 6.10 + 7.04,
    Nokia N95 + 8Gb microSD

  5. #5
    Join Date
    Nov 2005
    Location
    Guangzhou, PR.China
    Posts
    14

    Default Re: Prolems telneting to E680I on linux [ Solved ]

    Arch linux with kernel 2.6.13mm-ARCH.
    BTW: I assigned 169.254.142.2 to usb0 manually.
    I ran
    Code:
     route add -host 192.168.1.2 dev usb0
    because my eth0's(whose IP is 192.168.1.180) gateway is 192.168.1.1.
    I love windflowers...

  6. #6
    Join Date
    Mar 2005
    Posts
    2,341

    Default Re: Prolems telneting to E680I on linux [ Solved ]

    i see, i ned the newer kernel..
    i have the 2.6.11.xxx kernel(suse 9.3), and i need mind 2.6.12 or better...
    Motorola e680 (flashed to e680i) + 4Gb SD card + HT820 Stereo BT Hedphones,
    Ubuntu 6.10 + 7.04,
    Nokia N95 + 8Gb microSD

  7. #7
    Join Date
    Mar 2005
    Posts
    2,341

    Default Re: Prolems telneting to E680I on linux [ Solved ]

    i installes suse 10 linux on my computer now.. so i wanna use telent with suse 10 to my e680 but the problem is that i have "Memory full" on the phone and not can change from USB mode to Modem mode...

    how to get rid of "memory full" on e680?
    Motorola e680 (flashed to e680i) + 4Gb SD card + HT820 Stereo BT Hedphones,
    Ubuntu 6.10 + 7.04,
    Nokia N95 + 8Gb microSD

  8. #8
    Join Date
    Feb 2005
    Location
    Indonesia
    Posts
    233

    Default Re: Prolems telneting to E680I on linux [ Solved ]

    theme-uninstaller maybe?

  9. #9
    Join Date
    Mar 2005
    Posts
    2,341

    Default Re: Prolems telneting to E680I on linux [ Solved ]

    i have not installed any theme on my e680, only moto standart ones....
    Motorola e680 (flashed to e680i) + 4Gb SD card + HT820 Stereo BT Hedphones,
    Ubuntu 6.10 + 7.04,
    Nokia N95 + 8Gb microSD

  10. #10

    Default Re: Prolems telneting to E680I on linux [ Solved ]

    Can you tell me how you got your e680i to have an ip address in the first place? I'm having the hardest time doing that. I have linloder installed and I tried the script "acmattach.lin" but it just won't work. Any ideas? My phone is set in modem mode and I connect it via usb and then run the script but still it won't work...


 
+ Reply to Thread
Page 1 of 2 12 LastLast

Similar Threads

  1. [Help..] I can't boot my E680i after reflashing. [ solved ]
    By silena in forum E680i General Chat
    Replies: 2
    Last Post: 11-13-2007, 02:32 PM
  2. e680i and GMail. SOLVED :)
    By Bolik in forum E680i Applications
    Replies: 17
    Last Post: 10-06-2007, 02:18 PM
  3. e680i help with usb lan link [Solved]
    By plvt_florian in forum E680i General Chat
    Replies: 2
    Last Post: 08-27-2006, 01:23 AM
  4. Telneting to e680i?
    By wdc2222 in forum E680i General Chat
    Replies: 10
    Last Post: 01-04-2006, 11:34 PM
  5. [SOLVED] linux kernel options for leoppp
    By lesha-v in forum E680i General Chat
    Replies: 0
    Last Post: 09-11-2005, 01:56 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
Single Sign On provided by vBSSO

Search Engine Optimization by vBSEO 3.6.0 RC 1