Solved [Solved] Android phone as modem

Trying to attach an Android phone, as a modem.

usbconfig:
Code:
ugen7.2: <Joy MediaTek> at usbus7, cfg = 0 md = HOST spd = HIGH (480Mbps) pwr = ON (500mA) 

USB \ VID_0BB4 & PID_0003

ndisgen requires the sys driver. Edited tetherxp.inf, in Windows - raboatet (What? -- mod ) give usb8023x.sys, - module load usb8023x_sys.ko not work. How to make the phone as a network device.
 
Re: android phone as modem

You connect to it as a serial device. It's not a network device. You therefor do not need ndisgen(8).

Connecting your phone in this way is called; tethering.
 
Re: android phone as modem

(Rabotaet - probably "it works" from Russian?)

Phones usually shares the network connection either via tethering, where you have to load appropriate drivers into kernel prior connection, see the USB Tethering chapter in the Handbook, or you can use them as modem device - Dial out service.

Your phone is now attached to the ugen driver, which is generic USB device. You have to find, if it will works with the USB network device driver cdce(4) mentioned in the USB Tethering chapter in the handbook or will attach as some umodem(4)/ucom(4) device as serial modem over USB.

Then you can search forums for Android Tethering or USB PPP dialing.
 
Re: android phone as modem

ondra_knezour said:
(Rabotaet - probably "it works" from Russian?)

Yes :) Very badly knowledge of English, using Google Translate...

ondra_knezour said:
Phones usually shares the network connection either via tethering, where you have to load appropriate drivers into kernel prior connection, see the USB Tethering chapter in the Handbook, or you can use them as modem device - Dial out service.

Your phone is now attached to the ugen driver, which is generic USB device. You have to find, if it will works with the USB network device driver cdce(4) mentioned in the USB Tethering chapter in the handbook or will attach as some umodem(4)/ucom(4) device as serial modem over USB.

Then you can search forums for Android Tethering or USB PPP dialing.
Code:
ugen7.3: <MediaTek> at usbus7
urndis0: <RNDIS Communications Control> on usbus7
ue0: <USB Ethernet> on urndis0
ue0: Ethernet address: ea:42:8a:55:ba:e3

Rebuilt kernel with option urndis ( kld_load if_urndis is not working), get the desired result.

Thank you very much!
 
Back
Top