pimmpinit Posted March 19, 2013 Posted March 19, 2013 Hey guys I have with me a Virgin Mobile U600 I am trying to make it work with the Pineapple but like most things in life, I am lost. So from the long list of modems on the 3G page I found: ######################################################### Franklin Wireless U600DefaultVendor= 0x1facDefaultProduct=0x0150TargetVendor= 0x1facTargetProduct= 0x0151MessageContent="555342431234567824000000800108df200000000000000000000000000000" How should I write this in? USB Connections:: Bus 001 Device 002: ID 1a40:0101 Terminus Technology Inc. 4-Port HUBBus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hubBus 001 Device 004: ID 1fac:0151 Mobile Broadband Configuration:: # --------------------------------------------------------------------------------------------------# Check for known usb modem vendor and product IDs then switch 'em from storage to serial modem mode# --------------------------------------------------------------------------------------------------echo "Searching for attached 3G Modems"logger "3G: Connection Script here, searching for modems"MODEM=$(lsusb | awk '{ print $6 }')echo $MODEMcase "$MODEM" in*1fac:0151* | *1fac:0151*) echo "Franklin Wireless U600 (Virgin Mobile) detected. Attempting mode switch" uci delete network.wan2 uci set network.wan2=interface uci set network.wan2.ifname=ppp0 uci set network.wan2.proto=4g uci set network.wan2.service=umts uci set network.wan2.device=/dev/ttyUSB0 uci set network.wan2.username=internet uci set network.wan2.password=internet uci set network.wan2.defaultroute=1 uci set network.wan2.ppp_redial=persist uci set network.wan2.peerdns=0 uci set network.wan2.dns=8.8.8.8 uci set network.wan2.keepalive=1 uci set network.wan2.pppd_options=debug uci set network.wan2.pppd_options=noauth uci commit network usb_modeswitch -v 1fac -p 5031 -V 1fac -P 0151 -M 555342431234567824000000800108df200000000000000000000000000000 -n 1 -s 20 sleep 10; rmmod usbserial sleep 3; insmod usbserial vendor=0x1fac product=0x0151 sleep 5; /etc/init.d/firewall disable; /etc/init.d/firewall stop logger "3G: firewall stopped" iptables -t nat -A POSTROUTING -s 172.16.42.0/24 -o 3g-wan2 -j MASQUERADE iptables -A FORWARD -s 172.16.42.0/24 -o 3g-wan2 -j ACCEPT iptables -A FORWARD -d 172.16.42.0/24 -m state --state ESTABLISHED,RELATED -i 3g-wan2 -j ACCEPT ;;esac Quote
headros Posted March 20, 2013 Posted March 20, 2013 The U600 I got is from virgin mobile running on sprint network. Did you run that bash script yet pimmpinit? I am curious how it went. Quote
Boba Fett Posted March 20, 2013 Posted March 20, 2013 First you need to find the APN config from you ISP. Apn server, password and user. Google it. Quote
headros Posted March 21, 2013 Posted March 21, 2013 Generic Virgin settings: <apn type="mms" apn="0" mnc="490" mcc="311" carrier="Virgin Mobile US" mmsport="81" mmsproxy="205.239.233.136" mmsc="http://mmsc.vmobl.com:8088/mms?" port=""/> Quote
Sebkinne Posted March 21, 2013 Posted March 21, 2013 Generic Virgin settings: <apn type="mms" apn="0" mnc="490" mcc="311" carrier="Virgin Mobile US" mmsport="81" mmsproxy="205.239.233.136" mmsc="http://mmsc.vmobl.com:8088/mms?" port=""/> Looks like MMS only. Quote
headros Posted March 21, 2013 Posted March 21, 2013 your right...all i could find was this. <apn name="Virgin Mobile" numeric="31000" mcc="310" mnc="00" apn="Sprint" user="Sprint" server="*" password="*" proxy="null" port="null" mmsproxy="205.239.233.136" type="null" ... </apn> Quote
pimmpinit Posted March 21, 2013 Author Posted March 21, 2013 Carrier: Sprint APN: ggsnint.nexteldata.com UserName: No Configuration Needed PassWord: No Configuration Needed Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.