Comment 3 for bug 1435784

Revision history for this message
Tony Espy (awe) wrote :

Looking at our apns-conf.xml file, here's the corresponding APN for Bob:

<apn carrier="data.bob"
      mcc="232"
      mnc="11"
      apn="bob.at"
      <email address hidden>"
      password="ppp"
      authtype="1"
      type="default,supl"
/>

...and looking at our GPRS code, as ofono doesn't directly support the 'authtype' attribute, the rilmodem gprs code hard codes an authtype, and furthermore as MTK modems don't appear to support the value hard-coded by rilmodem, they specify an 'authtype' of NONE. My guess is this is the source of your problem.

    if (g_ril_vendor(gcd->ril) == OFONO_RIL_VENDOR_MTK)
                request.auth_type = RIL_AUTH_NONE;
        else
                request.auth_type = RIL_AUTH_BOTH;