Okay, directly below my old howto is one by milkshake:
http://www.gp32x.de/board/index.php?/topic/54318-guide-mobile-broadband-usb-stick-usage/page__view__findpost__p__939350 This is actually a similar model to yours, if not the same. This should enable your modem in networkmanager. I'm trying it right now with my modem and will report back if it works. Well it works partially for me, so: Install usb-modeswitch-data:
Code:
sudo opkg install usb-modeswitch-data
Edit the file /etc/udev/rules.d/usb_modeswitch.rules:
Code:
sudo mousepad /etc/udev/rules.d/usb_modeswitch.rules
and copypaste the following into it:
Code:
SUBSYSTEM=="usb", SYSFS{idProduct}=="1446", SYSFS{idVendor}=="12d1", RUN+="/usr/sbin/usb_modeswitch -c /etc/usb_modeswitch.d/12d1:1446"
then edit /etc/usb_modeswitch.conf:
Code:
sudo mousepad /etc/usb_modeswitch.conf
and copypaste the following into it and save:
Code:
DefaultVendor=0x12d1 DefaultProduct=0x1446 TargetVendor=0x12d1 TargetProduct=0x141b MessageContent="55534243123456780000000000000011062000000100000000000000000000" MessageEndpoint=0x01 CheckSuccess=5
Then execute:
Code:
sudo udevadm control --reload-rules sudo update-modules
and plug in your modem. Networkmanager should recognize it now, just right click on the tray-icon and click "enable mobile broadband" Now edit your network setting like you did before and everything should work.