aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-06-15 21:36:55 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-06-15 21:36:55 +0000
commitd22d7e0baac16f2cb6c62fc6ab4f37ffb2bb3a6a (patch)
tree13b6e11bea583bd0d274a89858ea23cb3090c482
parent9567061392de3ab0dd671cda4c45abf1a69e94a0 (diff)
parent4672ab0ea42d6f00de8c48c508c372c13f33e0ee (diff)
downloadsample-aml_tz3_314012010.tar.gz
Change-Id: I36e48836f35e7bd4457104128803469d2e0c9330
-rw-r--r--.pre-commit-config.yaml9
-rw-r--r--Android.mk2
-rw-r--r--OWNERS2
-rw-r--r--apps/SampleEmailPolicy/Android.bp37
-rw-r--r--apps/SampleEmailPolicy/Android.mk40
-rw-r--r--apps/client/Android.bp43
-rw-r--r--apps/client/Android.mk45
-rw-r--r--apps/tv/LeanbackCustomizer/AndroidManifest.xml1
-rw-r--r--apps/upgrade/Android.bp29
-rw-r--r--apps/upgrade/Android.mk39
-rwxr-xr-xetc/add_missing_ia.py28
-rw-r--r--etc/apns-full-conf.xml8716
-rw-r--r--frameworks/Android.mk1
-rw-r--r--frameworks/PlatformLibrary/Android.bp16
-rw-r--r--frameworks/PlatformLibrary/Android.mk50
-rw-r--r--frameworks/PlatformLibrary/api/current.txt10
-rw-r--r--frameworks/PlatformLibrary/api/removed.txt1
-rw-r--r--frameworks/PlatformLibrary/api/system-current.txt1
-rw-r--r--frameworks/PlatformLibrary/api/system-removed.txt1
-rw-r--r--frameworks/PlatformLibrary/api/test-current.txt1
-rw-r--r--frameworks/PlatformLibrary/api/test-removed.txt1
-rw-r--r--frameworks/PlatformLibrary/jni/Android.bp39
-rw-r--r--frameworks/PlatformLibrary/jni/Android.mk50
-rw-r--r--products/sample_addon.mk8
24 files changed, 3125 insertions, 6045 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
deleted file mode 100644
index 23ca1d9..0000000
--- a/.pre-commit-config.yaml
+++ /dev/null
@@ -1,9 +0,0 @@
-default_language_version:
- python: python3
-repos:
-- repo: https://github.com/pre-commit/pre-commit-hooks
- rev: v3.4.0 # Use the ref you want to point at
- hooks:
- - id: trailing-whitespace
- - id: check-xml
- # - id: ...
diff --git a/Android.mk b/Android.mk
index 885183c..5053e7d 100644
--- a/Android.mk
+++ b/Android.mk
@@ -1,3 +1 @@
-$(eval $(call declare-1p-copy-files,device/sample,))
-
include $(call all-subdir-makefiles)
diff --git a/OWNERS b/OWNERS
index 3f638cb..e3e9ebb 100644
--- a/OWNERS
+++ b/OWNERS
@@ -1,3 +1,3 @@
-jackyu@google.com
+amitmahajan@google.com
rgreenwalt@google.com
fionaxu@google.com
diff --git a/apps/SampleEmailPolicy/Android.bp b/apps/SampleEmailPolicy/Android.bp
deleted file mode 100644
index 41e68c1..0000000
--- a/apps/SampleEmailPolicy/Android.bp
+++ /dev/null
@@ -1,37 +0,0 @@
-// Copyright 2021, The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-// This is the build for the Email Policy package contained elsewhere in this sample.
-// When deploying to an actual device, you must change the name property to the name desired for
-// your local version.
-
-package {
- // See: http://go/android-license-faq
- default_applicable_licenses: ["Android-Apache-2.0"],
-}
-
-android_app {
- name: "SampleEmailPolicy",
-
- srcs: ["src/**/*.java"],
-
- sdk_version: "current",
- certificate: "platform",
-
- optimize: {
- proguard_flags_files: ["proguard.flags"],
- },
-
-}
-
diff --git a/apps/SampleEmailPolicy/Android.mk b/apps/SampleEmailPolicy/Android.mk
new file mode 100644
index 0000000..c775a04
--- /dev/null
+++ b/apps/SampleEmailPolicy/Android.mk
@@ -0,0 +1,40 @@
+# Copyright 2010, The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+ifneq ($(TARGET_BUILD_JAVA_SUPPORT_LEVEL),)
+
+# This is the makefile for the Email Policy package contained elsewhere in this sample.
+# When deploying to an actual device, you must change LOCAL_PACKAGE_NAME to the name desired for
+# your local version, e.g. LOCAL_PACKAGE_NAME := MyDeviceEmailPolicy This will cause the build
+# system to create "MyDeviceEmailPolicy.apk". You must then add this to the appropriate product.mk
+# file for your device, to include the APK file in your system image.
+
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_MODULE_TAGS := optional
+
+LOCAL_SRC_FILES := $(call all-java-files-under, src)
+
+LOCAL_PACKAGE_NAME := SampleEmailPolicy
+LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0
+LOCAL_LICENSE_CONDITIONS := notice
+LOCAL_SDK_VERSION := current
+LOCAL_CERTIFICATE := platform
+
+LOCAL_PROGUARD_FLAG_FILES := proguard.flags
+
+include $(BUILD_PACKAGE)
+
+endif # JAVA_SUPPORT
diff --git a/apps/client/Android.bp b/apps/client/Android.bp
deleted file mode 100644
index 85cd541..0000000
--- a/apps/client/Android.bp
+++ /dev/null
@@ -1,43 +0,0 @@
-//
-// Copyright (C) 2008 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// This makefile is an example of writing an application that will link against
-// a custom shared library included with an Android system.
-
-package {
- // See: http://go/android-license-faq
- default_applicable_licenses: ["Android-Apache-2.0"],
-}
-
-android_app {
- // This is the target being built.
- name: "PlatformLibraryClient",
-
- // Only compile source java files in this apk.
- srcs: ["src/**/*.java"],
-
- // Link against the current Android SDK.
- sdk_version: "current",
-
- // Also link against our own custom library.
- libs: ["com.example.android.platform_library"],
- uses_libs: ["com.example.android.platform_library"],
-
- optimize: {
- enabled: false,
- },
-}
-
diff --git a/apps/client/Android.mk b/apps/client/Android.mk
new file mode 100644
index 0000000..c2c8ba5
--- /dev/null
+++ b/apps/client/Android.mk
@@ -0,0 +1,45 @@
+#
+# Copyright (C) 2008 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+ifneq ($(TARGET_BUILD_JAVA_SUPPORT_LEVEL),)
+
+# This makefile is an example of writing an application that will link against
+# a custom shared library included with an Android system.
+
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_MODULE_TAGS := optional
+
+# This is the target being built.
+LOCAL_PACKAGE_NAME := PlatformLibraryClient
+LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0
+LOCAL_LICENSE_CONDITIONS := notice
+
+# Only compile source java files in this apk.
+LOCAL_SRC_FILES := $(call all-java-files-under, src)
+
+# Link against the current Android SDK.
+LOCAL_SDK_VERSION := current
+
+# Also link against our own custom library.
+LOCAL_JAVA_LIBRARIES := com.example.android.platform_library
+
+LOCAL_PROGUARD_ENABLED := disabled
+
+include $(BUILD_PACKAGE)
+
+endif # JAVA_SUPPORT
diff --git a/apps/tv/LeanbackCustomizer/AndroidManifest.xml b/apps/tv/LeanbackCustomizer/AndroidManifest.xml
index b878ce9..e931ca2 100644
--- a/apps/tv/LeanbackCustomizer/AndroidManifest.xml
+++ b/apps/tv/LeanbackCustomizer/AndroidManifest.xml
@@ -8,7 +8,6 @@
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.INTERNET" />
- <uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
<application android:label="@string/app_label">
diff --git a/apps/upgrade/Android.bp b/apps/upgrade/Android.bp
deleted file mode 100644
index 03f15ed..0000000
--- a/apps/upgrade/Android.bp
+++ /dev/null
@@ -1,29 +0,0 @@
-//
-// Copyright (C) 2008 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-package {
- default_applicable_licenses: ["Android-Apache-2.0"],
-}
-
-android_app {
- name: "UpgradeExample",
- srcs: ["src/**/*.java"],
- sdk_version: "current",
- optimize: {
- enabled: false,
- },
-}
-
diff --git a/apps/upgrade/Android.mk b/apps/upgrade/Android.mk
new file mode 100644
index 0000000..e67fc16
--- /dev/null
+++ b/apps/upgrade/Android.mk
@@ -0,0 +1,39 @@
+#
+# Copyright (C) 2008 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+ifneq ($(TARGET_BUILD_JAVA_SUPPORT_LEVEL),)
+
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_MODULE_TAGS := optional
+
+# This is the target being built.
+LOCAL_PACKAGE_NAME := UpgradeExample
+LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0
+LOCAL_LICENSE_CONDITIONS := notice
+
+# Only compile source java files in this apk.
+LOCAL_SRC_FILES := $(call all-java-files-under, src)
+
+# Link against the current Android SDK.
+LOCAL_SDK_VERSION := current
+
+LOCAL_PROGUARD_ENABLED := disabled
+
+include $(BUILD_PACKAGE)
+
+endif # JAVA_SUPPORT
diff --git a/etc/add_missing_ia.py b/etc/add_missing_ia.py
deleted file mode 100755
index ad39f3d..0000000
--- a/etc/add_missing_ia.py
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/usr/bin/env python3
-# Copyright (C) 2021 The Android Open Source Project
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-# This script help add the missing "IA" APN type to the APN entry that support "default" APN type
-import re
-with open('apns-full-conf.xml', 'r') as ifile, open('new-apns-full-conf.xml', 'w') as ofile:
- RE_TYPE = re.compile(r"^\s*type")
- RE_IA_DEFAULT = re.compile(r"(?!.*ia)default")
- for line in ifile:
- if re.match(RE_TYPE, line):
- ofile.write(re.sub(RE_IA_DEFAULT, "default,ia", line))
- else:
- ofile.write(line)
-
-
-
diff --git a/etc/apns-full-conf.xml b/etc/apns-full-conf.xml
index c9ae289..d132e9e 100644
--- a/etc/apns-full-conf.xml
+++ b/etc/apns-full-conf.xml
@@ -33,7 +33,7 @@
mmsc="http://mmsc.mobile.att.net"
mmsproxy="proxy.mobile.att.net"
mmsport="80"
- type="default,ia,mms,supl,hipri,fota,dun"
+ type="default,mms,supl,hipri,fota,dun"
mtu="1410"
/>
@@ -46,7 +46,7 @@
password=""
proxy=""
port=""
- type="default,ia,supl,hipri,dun"
+ type="default,supl,hipri,dun"
mtu="1440"
/>
@@ -60,7 +60,7 @@
proxy=""
port=""
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,hipri,dun,fota"
+ type="default,mms,hipri,dun,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
mtu="1422"
@@ -120,7 +120,7 @@
mnc="01"
apn="VZWINTERNET"
mmsc="http://mms.vtext.com/servlets/mms"
- type="default,ia,dun"
+ type="default,dun"
carrier_enabled="false"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -135,7 +135,7 @@
mnc="01"
apn="VZWINTERNET"
mmsc="http://mms.vtext.com/servlets/mms"
- type="default,ia,dun"
+ type="default,dun"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13|14"
@@ -208,7 +208,7 @@
mnc="010"
apn="VZWINTERNET"
mmsc="http://mms.vtext.com/servlets/mms"
- type="default,ia,dun"
+ type="default,dun"
carrier_enabled="false"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -221,7 +221,7 @@
mnc="010"
apn="VZWINTERNET"
mmsc="http://mms.vtext.com/servlets/mms"
- type="default,ia,dun"
+ type="default,dun"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -236,7 +236,7 @@
mnc="010"
apn="VZWINTERNET"
mmsc="http://mms.vtext.com/servlets/mms"
- type="default,ia,dun"
+ type="default,dun"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -254,13 +254,12 @@
type="ia"
/>
- <apn carrier="Cosmote Internet"
+ <apn carrier="Cosmote Wireless Internet"
carrier_id = "747"
mcc="202"
mnc="01"
apn="internet"
- type="default,ia,supl,xcap"
- protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Cosmote Mms"
@@ -274,31 +273,6 @@
type="mms"
/>
- <apn carrier="IMS"
- carrier_id = "747"
- mcc="202"
- mnc="01"
- apn="ims"
- type="ims"
- user_visible="false"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- />
-
- <apn carrier="HOS"
- carrier_id = "747"
- mcc="202"
- mnc="01"
- apn="hos"
- mmsc="http://mmsc.cosmote.gr"
- mmsproxy="010.010.010.020"
- mmsport="8080"
- type="mms"
- network_type_bitmask="18"
- protocol="IPV4V6"
- user_visible="false"
- />
-
<apn carrier="Vf Mobile Internet"
carrier_id = "2399"
mcc="202"
@@ -312,9 +286,7 @@
mcc="202"
mnc="05"
apn="internet.vodafone.gr"
- type="default,ia,supl"
- user="user"
- password="pass"
+ type="default,supl"
/>
<apn carrier="Vf MMS"
@@ -322,9 +294,12 @@
mcc="202"
mnc="05"
apn="mms.vodafone.net"
+ user="user"
+ password="pass"
mmsc="http://mms.vodafone.gr"
mmsproxy="213.249.19.49"
mmsport="5080"
+ authtype="1"
type="mms"
/>
@@ -333,9 +308,7 @@
mcc="202"
mnc="09"
apn="myq"
- type="default,ia,supl"
- mvno_type="spn"
- mvno_match_data="Q-Telcom"
+ type="default,supl"
/>
<apn carrier="Q-Telecom MMS GPRS"
@@ -347,8 +320,6 @@
mmsproxy="192.168.80.134"
mmsport="8080"
type="mms"
- mvno_type="spn"
- mvno_match_data="Q-Telcom"
/>
<apn carrier="Wind Internet"
@@ -356,7 +327,7 @@
mcc="202"
mnc="10"
apn="gint.b-online.gr"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Wind MMS"
@@ -370,29 +341,15 @@
type="mms"
/>
- <apn carrier="Tele2 Internet"
+ <apn carrier="Tele2 GPRS"
carrier_id = "1643"
mcc="204"
mnc="02"
apn="internet.tele2.nl"
- type="default,ia,supl,xcap"
- protocol="IPV4V6"
- authtype="1"
- mvno_type="gid"
- mvno_match_data="4E4C"
- />
-
- <apn carrier="Tele2 IMS"
- carrier_id = "1643"
- mcc="204"
- mnc="02"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- mvno_type="gid"
- mvno_match_data="4E4C"
- roaming_protocol="IPV4V6"
- user_visible="false"
+ mmsc="http://mmsc.tele2.nl"
+ mmsproxy="193.12.40.64"
+ mmsport="8080"
+ type="default,supl,mms"
/>
<apn carrier="MVNO NL"
@@ -403,7 +360,7 @@
user="mvno"
password="mvno"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="20403"
mvno_type="imsi"
/>
@@ -413,7 +370,7 @@
mcc="204"
mnc="03"
apn="ims"
- protocol="IP"
+ protocol="IPV4"
type="ims"
mvno_match_data="20403"
mvno_type="imsi"
@@ -435,7 +392,7 @@
mnc="04"
apn="truphone.com"
mmsc="http://mmsc.truphone.com:1981/mm1"
- type="default,ia,supl,mms,dun"
+ type="default,supl,mms,dun"
mvno_type="gid"
mvno_match_data="547275554B3030656E"
/>
@@ -452,29 +409,14 @@
mvno_match_data="547275554B3030656E"
/>
- <apn carrier="Vodafone Internet"
- carrier_id = "20"
+ <apn carrier="Vodafone NL"
mcc="204"
mnc="04"
apn="live.vodafone.com"
user="vodafone"
password="vodafone"
authtype="1"
- type="default,ia,supl,xcap"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_editable="false"
- />
-
- <apn carrier="Vodafone IMS"
- carrier_id = "20"
- mcc="204"
- mnc="04"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
+ type="default,supl"
/>
<apn carrier="EHRPD - VZW Roaming Internet"
@@ -482,7 +424,7 @@
mcc="204"
mnc="04"
apn="VZWINTERNET"
- type="default,ia,dun"
+ type="default,dun"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -499,7 +441,7 @@
mcc="204"
mnc="04"
apn="VZWINTERNET"
- type="default,ia,dun"
+ type="default,dun"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
mvno_type="gid"
@@ -625,7 +567,7 @@
mmsc="http://pix.cspire.com"
mvno_type="spn"
mvno_match_data="C Spire"
- type="default,ia,mms"
+ type="default,mms"
protocol="IPV4V6"
/>
@@ -659,26 +601,12 @@
protocol="IPV4V6"
/>
- <apn carrier="SaskTel Internet"
- carrier_id = "580"
- mcc="204"
- mnc="04"
- apn="pda.stm.sk.ca"
- mmsc="http://mms.sasktel.com/"
- mmsproxy="mig.sasktel.com"
- mmsport="80"
- type="default,ia,mms,supl"
- protocol="IPV4V6"
- mvno_type="gid"
- mvno_match_data="5A"
- />
-
<apn carrier="HOT mobile Internet"
carrier_id = "1991"
mcc="204"
mnc="04"
apn="net.hotm"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="HOT mobile"
mvno_type="spn"
/>
@@ -710,262 +638,32 @@
mmsc=""
mmsproxy=""
mmsport=""
- type="default,ia,hipri,supl,fota,cbs"
+ type="default,hipri,supl,fota,cbs"
mvno_type="spn"
mvno_match_data="中国电信"
protocol="IP"
/>
- <apn carrier="ice.net"
- mcc="204"
- mnc="04"
- apn="ice.net"
- type="default,ia"
- protocol="IPV4V6"
- mvno_type="imsi"
- mvno_match_data="2040439909"
- />
-
- <apn carrier="mms.ice.net"
- mcc="204"
- mnc="04"
- apn="mms.ice.net"
- mmsc="http://mmsc/"
- mmsproxy="185.83.167.222"
- mmsport="8080"
- type="mms"
- mvno_type="imsi"
- mvno_match_data="2040439909"
- />
-
- <apn carrier="ice.net"
- mcc="204"
- mnc="04"
- apn="ice.net"
- type="default,ia"
- protocol="IPV4V6"
- mvno_type="imsi"
- mvno_match_data="2040438005"
- />
-
- <apn carrier="mms.ice.net"
- mcc="204"
- mnc="04"
- apn="mms.ice.net"
- mmsc="http://mmsc/"
- mmsproxy="185.83.167.222"
- mmsport="8080"
- type="mms"
- mvno_type="imsi"
- mvno_match_data="2040438005"
- />
-
- <apn carrier="ice.net"
- mcc="204"
- mnc="04"
- apn="ice.net"
- type="default,ia"
- protocol="IPV4V6"
- mvno_type="imsi"
- mvno_match_data="2040438006"
- />
-
- <apn carrier="mms.ice.net"
- mcc="204"
- mnc="04"
- apn="mms.ice.net"
- mmsc="http://mmsc/"
- mmsproxy="185.83.167.222"
- mmsport="8080"
- type="mms"
- mvno_type="imsi"
- mvno_match_data="2040438006"
- />
-
- <apn carrier="ice.net"
- mcc="204"
- mnc="04"
- apn="ice.net"
- type="default,ia"
- protocol="IPV4V6"
- mvno_type="imsi"
- mvno_match_data="2040438007"
- />
-
- <apn carrier="mms.ice.net"
- mcc="204"
- mnc="04"
- apn="mms.ice.net"
- mmsc="http://mmsc/"
- mmsproxy="185.83.167.222"
- mmsport="8080"
- type="mms"
- mvno_type="imsi"
- mvno_match_data="2040438007"
- />
-
- <apn carrier="ice.net"
- mcc="204"
- mnc="04"
- mvno_type="imsi"
- mvno_match_data="2040438008"
- apn="ice.net"
- type="default,ia"
- protocol="IPV4V6"
- />
-
- <apn carrier="mms.ice.net"
- mcc="204"
- mnc="04"
- apn="mms.ice.net"
- mmsc="http://mmsc/"
- mmsproxy="185.83.167.222"
- mmsport="8080"
- type="mms"
- mvno_type="imsi"
- mvno_match_data="2040438008"
- />
-
- <apn carrier="ice.net"
- mcc="204"
- mnc="04"
- apn="ice.net"
- type="default,ia"
- protocol="IPV4V6"
- mvno_type="imsi"
- mvno_match_data="2040438009"
- />
-
- <apn carrier="mms.ice.net"
- mcc="204"
- mnc="04"
- apn="mms.ice.net"
- mmsc="http://mmsc/"
- mmsproxy="185.83.167.222"
- mmsport="8080"
- type="mms"
- mvno_type="imsi"
- mvno_match_data="2040438009"
- />
-
- <apn carrier="ice.net"
- mcc="204"
- mnc="04"
- apn="ice.net"
- type="default,ia"
- protocol="IPV4V6"
- mvno_type="imsi"
- mvno_match_data="2040439904"
- />
-
- <apn carrier="mms.ice.net"
- mcc="204"
- mnc="04"
- apn="mms.ice.net"
- mmsc="http://mmsc/"
- mmsproxy="185.83.167.222"
- mmsport="8080"
- type="mms"
- mvno_type="imsi"
- mvno_match_data="2040439904"
- />
-
- <apn carrier="ice.net"
- mcc="204"
- mnc="04"
- apn="ice.net"
- type="default,ia"
- protocol="IPV4V6"
- mvno_type="imsi"
- mvno_match_data="2040439905"
- />
-
- <apn carrier="mms.ice.net"
- mcc="204"
- mnc="04"
- apn="mms.ice.net"
- mmsc="http://mmsc/"
- mmsproxy="185.83.167.222"
- mmsport="8080"
- type="mms"
- mvno_type="imsi"
- mvno_match_data="2040439905"
- />
-
- <apn carrier="ice.net"
- mcc="204"
- mnc="04"
- apn="ice.net"
- type="default,ia"
- protocol="IPV4V6"
- mvno_type="imsi"
- mvno_match_data="2040439505"
- />
-
- <apn carrier="mms.ice.net"
- mcc="204"
- mnc="04"
- apn="mms.ice.net"
- mmsc="http://mmsc/"
- mmsproxy="185.83.167.222"
- mmsport="8080"
- type="mms"
- mvno_type="imsi"
- mvno_match_data="2040439505"
- />
-
- <apn carrier="ice.net"
- mcc="204"
- mnc="04"
- apn="ice.net"
- type="default,ia"
- protocol="IPV4V6"
- mvno_type="imsi"
- mvno_match_data="2040439506"
- />
-
- <apn carrier="mms.ice.net"
- mcc="204"
- mnc="04"
- apn="mms.ice.net"
- mmsc="http://mmsc/"
- mmsproxy="185.83.167.222"
- mmsport="8080"
- type="mms"
- mvno_type="imsi"
- mvno_match_data="2040439506"
- />
-
- <apn carrier="KPN Mobiel Internet"
- carrier_id = "1644"
- mcc="204"
- mnc="08"
- apn="internet"
- type="default,ia"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- />
-
- <apn carrier="UT-Interface"
+ <apn carrier="KPN/Hi 4G LTE Mobiel internet"
carrier_id = "1644"
mcc="204"
mnc="08"
- apn="ut"
- type="xcap"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
+ apn="KPN4G.nl"
+ mmsc="http://mp.mobiel.kpn/mmsc"
+ mmsproxy="10.10.100.20"
+ mmsport="5080"
+ type="default,supl,mms"
/>
- <apn carrier="IMS"
+ <apn carrier="KPN/Hi Mobiel Internet"
carrier_id = "1644"
mcc="204"
mnc="08"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
+ apn="portalmmm.nl"
+ mmsc="http://mp.mobiel.kpn/mmsc"
+ mmsproxy="10.10.100.20"
+ mmsport="5080"
+ type="default,supl,mms"
/>
<apn carrier="MVNO NL"
@@ -976,7 +674,7 @@
user="mvno"
password="mvno"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="204080950"
mvno_type="imsi"
/>
@@ -986,7 +684,20 @@
mcc="204"
mnc="08"
apn="rabo"
- type="default,ia,supl"
+ type="default,supl"
+ mvno_match_data="Rabo Mobiel"
+ mvno_type="spn"
+ />
+
+ <apn carrier="Rabo Mobiel MMS"
+ carrier_id = "2406"
+ mcc="204"
+ mnc="08"
+ apn="rabo"
+ mmsc="http://mp.mobiel.kpn/mmsc"
+ mmsproxy="10.10.100.10"
+ mmsport="5080"
+ type="mms"
mvno_match_data="Rabo Mobiel"
mvno_type="spn"
/>
@@ -997,7 +708,7 @@
mnc="08"
apn="truphone.com"
mmsc="http://mmsc.truphone.com:1981/mm1"
- type="default,ia,supl,mms,dun"
+ type="default,supl,mms,dun"
mvno_type="gid"
mvno_match_data="547275554B3030656E"
/>
@@ -1023,17 +734,17 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
- type="default,ia,supl"
/>
- <apn carrier="Telfort Mobiel Internet"
+ <apn carrier="Telfort Internet"
carrier_id = "1644"
mcc="204"
mnc="12"
apn="internet"
- type="default,ia"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ mmsc="http://mms"
+ mmsproxy="193.113.200.195"
+ mmsport="8080"
+ type="default,supl,mms"
/>
<apn carrier="T-Mobile Internet"
@@ -1048,133 +759,57 @@
carrier_id = "2386"
mcc="204"
mnc="16"
- apn="smartsites.t-mobile"
+ apn="internet"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
+ type="default,supl"
/>
- <apn carrier="T-Mobile IMS"
- carrier_id = "2386"
- mcc="204"
- mnc="16"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
- />
-
- <apn carrier="HOS"
+ <apn carrier="T-Mobile MMS"
carrier_id = "2386"
mcc="204"
mnc="16"
- apn="hos"
+ apn="mms"
user="tmobilemms"
password="tmobilemms"
authtype="1"
- type="xcap"
- protocol="IPV4V6"
- user_visible="false"
+ mmsc="http://t-mobilemms"
+ mmsproxy="10.10.10.11"
+ mmsport="8080"
+ type="mms"
/>
- <apn carrier="Ben Internet"
+ <apn carrier="Ben Internet Abonnee"
carrier_id = "2095"
mcc="204"
mnc="16"
apn="internet.ben"
- type="default,ia,supl"
- authtype="1"
+ type="default,supl"
mvno_match_data="BEN NL"
mvno_type="spn"
/>
- <apn carrier="Tele2 Internet"
- carrier_id = "2468"
- mcc="204"
- mnc="16"
- apn="smartsites.t-mobile"
- type="default,ia,supl"
- protocol="IPV4V6"
- authtype="1"
- mvno_match_data="8F"
- mvno_type="gid"
- />
-
- <apn carrier="Tele2 Internet"
- carrier_id = "2468"
- mcc="204"
- mnc="16"
- apn="smartsites.t-mobile"
- type="default,ia,supl"
- protocol="IPV4V6"
- authtype="1"
- mvno_match_data="4E4C"
- mvno_type="gid"
- />
-
- <apn carrier="Tele2 IMS"
- carrier_id = "2468"
- mcc="204"
- mnc="16"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- mvno_type="gid"
- mvno_match_data="8F"
- user_visible="false"
- />
-
- <apn carrier="Tele2 IMS"
- carrier_id = "2468"
+ <apn carrier="Ben Internet PrePaid"
+ carrier_id = "2095"
mcc="204"
mnc="16"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- mvno_type="gid"
- mvno_match_data="4E4C"
- user_visible="false"
+ apn="basic.internet.ben.data"
+ type="default,supl"
+ mvno_match_data="BEN NL"
+ mvno_type="spn"
/>
- <apn carrier="HOS"
- carrier_id = "2468"
- mcc="204"
- mnc="16"
- apn="hos"
- user="tmobilemms"
- password="tmobilemms"
- authtype="1"
- type="xcap"
- protocol="IPV4V6"
- roaming_protocol="IP"
- mvno_type="gid"
- mvno_match_data="8F"
- user_visible="false"/>
-
- <apn carrier="HOS"
- carrier_id = "2468"
+ <apn carrier="Ben MMS"
+ carrier_id = "2095"
mcc="204"
mnc="16"
- apn="hos"
- user="tmobilemms"
- password="tmobilemms"
+ apn="mms.ben"
authtype="1"
- type="xcap"
- protocol="IPV4V6"
- roaming_protocol="IP"
- mvno_type="gid"
- mvno_match_data="4E4C"
- user_visible="false"
- />
-
- <apn carrier="Ziggo mobiel internet"
- mcc="204"
- mnc="18"
- apn="internet.ziggo.nl"
- type="default,ia,supl"
- mvno_match_data="7A696731"
- mvno_type="gid"
+ mmsc="http://benmms/"
+ mmsproxy="10.10.10.11"
+ mmsport="8080"
+ type="mms"
+ mvno_match_data="BEN NL"
+ mvno_type="spn"
/>
<apn carrier="T-Mobile Internet"
@@ -1189,37 +824,23 @@
carrier_id = "2386"
mcc="204"
mnc="20"
- apn="smartsites.t-mobile"
+ apn="internet"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
+ type="default,supl"
/>
- <apn carrier="HOS"
+ <apn carrier="T-Mobile MMS"
carrier_id = "2386"
mcc="204"
mnc="20"
- apn="hos"
+ apn="mms"
user="tmobilemms"
password="tmobilemms"
authtype="1"
mmsc="http://t-mobilemms"
mmsproxy="10.10.10.11"
mmsport="8080"
- type="xcap,mms"
- protocol="IPV4V6"
- user_visible="false"
- />
-
- <apn carrier="T-Mobile IMS"
- carrier_id = "2386"
- mcc="204"
- mnc="20"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
+ type="mms"
/>
<apn carrier="Truphone"
@@ -1228,7 +849,7 @@
mnc="33"
apn="truphone.com"
mmsc="http://mmsc.truphone.com:1981/mm1"
- type="default,ia,supl,mms,dun"
+ type="default,supl,mms,dun"
mvno_type="gid"
mvno_match_data="547275554B3030656E"
/>
@@ -1245,45 +866,6 @@
mvno_match_data="547275554B3030656E"
/>
- <apn carrier="agms"
- carrier_id = "2351"
- mcc="204"
- mnc="65"
- apn="agms"
- type="default,ia,supl"
- />
-
- <apn carrier="KPN Lab Internet"
- carrier_id = "1644"
- mcc="204"
- mnc="69"
- apn="internet"
- type="default,ia"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- />
-
- <apn carrier="UT-Interface"
- carrier_id = "1644"
- mcc="204"
- mnc="69"
- apn="ut"
- type="xcap"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
- />
-
- <apn carrier="IMS"
- carrier_id = "1644"
- mcc="204"
- mnc="69"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- />
-
<apn carrier="EMnify"
carrier_id = "2326"
mcc="206"
@@ -1291,7 +873,7 @@
apn="em"
mvno_match_data="206018"
mvno_type="imsi"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Px MMS"
@@ -1313,7 +895,7 @@
mcc="206"
mnc="01"
apn="INTERNET.PROXIMUS.BE"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Telenet Internet"
@@ -1321,7 +903,7 @@
mcc="206"
mnc="01"
apn="telenetwap.be"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="20601889"
mvno_type="imsi"
/>
@@ -1348,7 +930,7 @@
password="iij"
authtype="3"
protocol="IP"
- type="default,ia"
+ type="default"
roaming_protocol="IP"
mvno_type="spn"
mvno_match_data="IIJ"
@@ -1363,7 +945,7 @@
password="vmobile"
authtype="3"
protocol="IP"
- type="default,ia"
+ type="default"
roaming_protocol="IP"
mvno_type="spn"
mvno_match_data="IIJ"
@@ -1374,7 +956,7 @@
mcc="206"
mnc="05"
apn="telenetwap.be"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Telenet MMS"
@@ -1397,7 +979,6 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
- type="default,ia,supl"
/>
<apn carrier="Mobistar MMS"
@@ -1416,7 +997,7 @@
mcc="206"
mnc="10"
apn="mworld.be"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="netgprs.com"
@@ -1426,7 +1007,7 @@
apn="netgprs.com"
user="tsl"
password="tsl"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="BE-Transatel"
mvno_type="spn"
/>
@@ -1439,7 +1020,7 @@
apn="netgprs.com"
user="tsl"
password="tsl"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="BB00"
mvno_type="gid"
/>
@@ -1460,7 +1041,7 @@
user="base"
password="base"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="BASE MMS"
@@ -1482,7 +1063,7 @@
mcc="206"
mnc="28"
apn="bicsapn"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Unleashed"
@@ -1490,7 +1071,7 @@
mcc="206"
mnc="30"
apn="web.be"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Orange World"
@@ -1509,18 +1090,7 @@
user="orange"
password="orange"
authtype="1"
- type="default,ia,supl"
- />
-
- <apn carrier="Orange IMS"
- carrier_id = "32"
- mcc="208"
- mnc="01"
- apn="IMS"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
+ type="default,supl"
/>
<apn carrier="Orange MMS"
@@ -1547,7 +1117,7 @@
user="orange"
password="orange"
authtype="2"
- type="default,ia"
+ type="default"
/>
<apn carrier="Orange Internet"
@@ -1571,7 +1141,7 @@
user="orange"
password="orange"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="33"
mvno_type="gid"
/>
@@ -1600,7 +1170,7 @@
user="orange"
password="orange"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="4E"
mvno_type="gid"
/>
@@ -1626,7 +1196,7 @@
mcc="208"
mnc="01"
apn="coriolis"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="208011511"
mvno_type="imsi"
/>
@@ -1644,16 +1214,6 @@
mvno_type="imsi"
/>
- <apn carrier="Monaco Telecom"
- mcc="208"
- mnc="01"
- apn="internet"
- mmsc="http://mms.monaco-telecom.mc"
- type="default,ia,supl,mms"
- mvno_match_data="4d433032"
- mvno_type="gid"
- />
-
<apn carrier="SFR webphone"
carrier_id = "27"
@@ -1664,7 +1224,7 @@
mmsproxy="10.151.0.1"
mmsport="8080"
protocol="IP"
- type="default,ia,mms,supl,fota"
+ type="default,mms,supl,fota"
/>
<apn carrier="SFR option modem"
@@ -1681,7 +1241,7 @@
mcc="208"
mnc="09"
apn="pda.newcomobile.com"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="208090021"
mvno_type="imsi"
/>
@@ -1692,7 +1252,7 @@
mnc="09"
apn="truphone.com"
mmsc="http://mmsc.truphone.com:1981/mm1"
- type="default,ia,supl,mms,dun"
+ type="default,supl,mms,dun"
mvno_type="gid"
mvno_match_data="547275554B3030656E"
/>
@@ -1714,7 +1274,7 @@
mcc="208"
mnc="09"
apn="coriolis"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="208090036"
mvno_type="imsi"
/>
@@ -1748,7 +1308,7 @@
mmsc="http://mms1"
mmsproxy="10.151.0.1"
mmsport="8080"
- type="default,ia,mms,supl"
+ type="default,mms,supl"
/>
<apn carrier="SFR option Modem"
@@ -1765,7 +1325,7 @@
mcc="208"
mnc="10"
apn="fnetnrj"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="4E"
mvno_type="gid"
/>
@@ -1799,7 +1359,7 @@
mcc="208"
mnc="10"
apn="wap65"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="A MOBILE"
mvno_type="spn"
/>
@@ -1824,7 +1384,7 @@
proxy="192.168.21.9"
port="8080"
apn="wap66"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="LeclercMobile"
mvno_type="spn"
/>
@@ -1847,7 +1407,7 @@
mcc="208"
mnc="10"
apn="fnetcoriolis"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="12"
mvno_type="gid"
/>
@@ -1871,7 +1431,7 @@
mnc="10"
apn="internetcoriolis"
authtype="0"
- type="default,ia,supl,fota,dun"
+ type="default,supl,fota,dun"
mvno_type="gid"
mvno_match_data="12"
/>
@@ -1894,7 +1454,7 @@
mmsc="http://mms1"
mmsproxy="010.143.156.003"
mmsport="8080"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
mvno_match_data="4C"
mvno_type="gid"
/>
@@ -1906,7 +1466,7 @@
proxy="192.168.21.3"
port="8080"
apn="wapdebitel"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="4C"
mvno_type="gid"
/>
@@ -1931,7 +1491,7 @@
apn="wap68"
proxy="192.168.21.11"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="44"
mvno_type="gid"
/>
@@ -1955,7 +1515,7 @@
mnc="10"
apn="internet68"
authtype="0"
- type="default,ia,supl,fota,dun"
+ type="default,supl,fota,dun"
mvno_type="spn"
mvno_match_data="Keyyo Mobile"
/>
@@ -1982,7 +1542,7 @@
proxy="192.168.21.11"
port="8080"
authtype="0"
- type="default,ia,supl,fota"
+ type="default,supl,fota"
mvno_type="spn"
mvno_match_data="Keyyo Mobile"
/>
@@ -1993,7 +1553,7 @@
mnc="10"
apn="internet68"
authtype="0"
- type="default,ia,supl,fota,dun"
+ type="default,supl,fota,dun"
mvno_type="spn"
mvno_match_data="ZERO FORFAIT"
/>
@@ -2020,7 +1580,7 @@
proxy="192.168.21.9"
port="8080"
authtype="0"
- type="default,ia,supl,fota,dun"
+ type="default,supl,fota,dun"
mvno_type="spn"
mvno_match_data="RegloMobile"
/>
@@ -2045,7 +1605,7 @@
mnc="12"
apn="truphone.com"
mmsc="http://mmsc.truphone.com:1981/mm1"
- type="default,ia,supl,mms,dun"
+ type="default,supl,mms,dun"
mvno_type="gid"
mvno_match_data="547275554B3030656E"
/>
@@ -2068,7 +1628,7 @@
mnc="15"
apn="free"
mmsc="http://mms.free.fr"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="Free MMS"
@@ -2086,7 +1646,7 @@
mnc="15"
apn="free.re"
mmsc="http://mms.free.re"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
mvno_match_data="F2330002"
mvno_type="gid"
/>
@@ -2097,7 +1657,7 @@
mnc="15"
apn="iliad"
mmsc="http://mms.iliad.it"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
mvno_match_data="F003"
mvno_type="gid"
/>
@@ -2107,7 +1667,7 @@
mcc="208"
mnc="17"
apn="bornsip"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Legos MMS"
@@ -2127,17 +1687,7 @@
mmsc="http://mms.bouyguestelecom.fr/mms/wapenc"
mmsproxy="62.201.129.226"
mmsport="8080"
- type="default,ia,supl,mms"
- />
-
- <apn carrier="Bouygues IMS"
- carrier_id = "1487"
- mcc="208"
- mnc="20"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl,mms"
/>
<apn carrier="mobiledata"
@@ -2145,7 +1695,7 @@
mnc="22"
apn="mobiledata"
mmsc="http://mms"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="netgprs.com"
@@ -2154,7 +1704,7 @@
apn="netgprs.com"
user="tsl"
password="tsl"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="FR-Transatel"
mvno_type="spn"
/>
@@ -2166,7 +1716,7 @@
apn="virgin-mobile.fr"
proxy="10.6.10.1"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="VM MMS"
@@ -2189,7 +1739,6 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
- type="default,ia,supl"
/>
<apn carrier="NRJ WEB"
@@ -2197,7 +1746,7 @@
mcc="208"
mnc="26"
apn="fnetnrj"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="NRJ MMS"
@@ -2216,7 +1765,7 @@
mcc="208"
mnc="27"
apn="coriolis"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Coriolis MMS"
@@ -2230,22 +1779,12 @@
type="mms"
/>
- <apn carrier="Monaco Telecom"
- mcc="212"
- mnc="10"
- apn="internet"
- mmsc="http://mms.monaco-telecom.mc"
- type="default,ia,supl,mms"
- mvno_match_data="4d433032"
- mvno_type="gid"
- />
-
<apn carrier="Mobiland"
carrier_id = "450"
mcc="213"
mnc="03"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Internet móvil"
@@ -2255,7 +1794,7 @@
user="wap@wap"
password="wap125"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="INTERNET"
@@ -2294,7 +1833,7 @@
mcc="214"
mnc="02"
apn="altecom.net"
- type="default,ia"
+ type="default"
/>
<apn carrier="FIBRACAT"
@@ -2302,7 +1841,7 @@
mcc="214"
mnc="02"
apn="fibracat.cat"
- type="default,ia"
+ type="default"
mvno_type="spn"
mvno_match_data="FIBRACAT"
/>
@@ -2325,7 +1864,7 @@
authtype="1"
mvno_type="spn"
mvno_match_data="Orange"
- type="default,ia"
+ type="default"
/>
<apn carrier="Orange MMS"
@@ -2362,7 +1901,7 @@
user="CLIENTE"
password="EUSKALTEL"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
mvno_type="imsi"
mvno_match_data="2140359"
/>
@@ -2388,7 +1927,7 @@
mnc="03"
apn="CARREFOURINTERNET"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
mvno_type="imsi"
mvno_match_data="2140352xxxxxxxx"
/>
@@ -2414,7 +1953,7 @@
mcc="214"
mnc="03"
apn="internettph"
- type="default,ia,supl"
+ type="default,supl"
mvno_type="spn"
mvno_match_data="Happy"
/>
@@ -2426,7 +1965,7 @@
apn="internet.racc.net"
user="CLIENTERACC"
password="RACC"
- type="default,ia,supl"
+ type="default,supl"
mvno_type="spn"
mvno_match_data="RACC"
/>
@@ -2451,7 +1990,7 @@
mcc="214"
mnc="03"
apn="internettph"
- type="default,ia,supl"
+ type="default,supl"
mvno_type="spn"
mvno_match_data="CABLE movil"
/>
@@ -2461,7 +2000,7 @@
mcc="214"
mnc="03"
apn="internetmas"
- type="default,ia,supl"
+ type="default,supl"
mvno_type="spn"
mvno_match_data="MASMovil"
/>
@@ -2471,7 +2010,7 @@
mcc="214"
mnc="03"
apn="ibercominternet"
- type="default,ia,supl"
+ type="default,supl"
mvno_type="spn"
mvno_match_data="Ibercom"
/>
@@ -2483,7 +2022,7 @@
apn="jazzinternet"
mvno_type="spn"
mvno_match_data="JAZZTEL"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS"
@@ -2512,7 +2051,7 @@
password = "orange"
mvno_type="spn"
mvno_match_data="simyo"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="simyo MMS"
@@ -2544,7 +2083,7 @@
mcc="214"
mnc="04"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Yoigo MMS"
@@ -2559,7 +2098,7 @@
/>
<apn carrier="Tuenti"
- carrier_id = "2357"
+ carrier_id = "34"
mcc="214"
mnc="05"
apn="tuenti.com"
@@ -2569,9 +2108,6 @@
mmsc="http://tuenti.com"
mmsproxy="10.138.255.43"
mmsport="8080"
- type="default,ia,mms,supl"
- mvno_type="spn"
- mvno_match_data="Tuenti"
/>
<apn carrier="INET Roaming"
@@ -2582,7 +2118,7 @@
password=""
port=""
proxy=""
- type="default,ia,supl,fota,hipri"
+ type="default,supl,fota,hipri"
roaming_protocol="IPV4V6"
mvno_type="imsi"
mvno_match_data="214050104xxxxxx"
@@ -2593,7 +2129,7 @@
mcc="214"
mnc="05"
apn="internet.digimobil.es"
- type="default,ia,supl"
+ type="default,supl"
mvno_type="gid"
mvno_match_data="44474553"
/>
@@ -2603,45 +2139,11 @@
mcc="214"
mnc="05"
apn="digi.mobile"
- type="default,ia,supl"
+ type="default,supl"
mvno_type="gid"
mvno_match_data="44474954"
/>
- <apn carrier="Movistar"
- carrier_id = "34"
- mcc="214"
- mnc="05"
- apn="telefonica.es"
- user="telefonica"
- password="telefonica"
- mmsc="http://mms.movistar.com"
- mmsproxy="10.138.255.5"
- mmsport="8080"
- authtype="1"
- type="default,ia,supl,mms"
- />
-
- <apn carrier="Movistar"
- carrier_id = "34"
- mcc="214"
- mnc="05"
- apn="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- type="ims"
- />
-
- <apn carrier="Movistar"
- carrier_id = "34"
- mcc="214"
- mnc="05"
- apn="xcap"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- type="xcap"
- />
-
<apn carrier="INTERNET GPRS"
carrier_id = "1909"
mcc="214"
@@ -2649,7 +2151,7 @@
apn="airtelnet.es"
user="vodafone"
password="vodafone"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS Vodafone"
@@ -2685,7 +2187,7 @@
user="CLIENTE"
password="EUSKALTEL"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="0008"
mvno_type="gid"
/>
@@ -2696,7 +2198,7 @@
mnc="06"
apn="internet.mundo-r.com"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="2140612"
mvno_type="imsi"
/>
@@ -2723,7 +2225,7 @@
user="telecable"
password="telecable"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="2140613"
mvno_type="imsi"
/>
@@ -2752,7 +2254,7 @@
user="wap@wap"
password="wap125"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="2140606"
mvno_type="imsi"
/>
@@ -2790,7 +2292,7 @@
mnc="06"
apn="gprsmov.pepephone.com"
authtype="0"
- type="default,ia,supl,fota"
+ type="default,supl,fota"
mvno_type="spn"
mvno_match_data="pepephone"
/>
@@ -2822,27 +2324,70 @@
mmsproxy="10.138.255.5"
mmsport="8080"
authtype="1"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
- <apn carrier="Movistar"
- carrier_id = "34"
+ <apn carrier="Jazztel Internet"
+ carrier_id = "1974"
mcc="214"
mnc="07"
- apn="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- type="ims"
+ apn="jazzinternet"
+ type="default,supl"
+ mvno_match_data="JAZZTEL"
+ mvno_type="spn"
/>
- <apn carrier="Movistar"
+ <apn carrier="Jazztel MMS"
+ carrier_id = "1974"
+ mcc="214"
+ mnc="07"
+ apn="jazzmms"
+ user=""
+ password=""
+ mmsc="http://jazztelmms.com/servlets/mms"
+ mmsproxy="37.132.0.10"
+ mmsport="8080"
+ authtype="1"
+ type="mms"
+ mvno_match_data="JAZZTEL"
+ mvno_type="spn"
+ />
+
+ <apn carrier="Conexióompartida"
carrier_id = "34"
mcc="214"
mnc="07"
- apn="xcap"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- type="xcap"
+ apn="movistar.es"
+ authtype="1"
+ user="MOVISTAR"
+ password="MOVISTAR"
+ type="dun"
+ />
+
+ <apn carrier="T-2"
+ carrier_id = "2281"
+ mcc="214"
+ mnc="07"
+ apn="internet.t-2.net"
+ mmsc="http://www.mms.t-2.net:8002"
+ mmsproxy="172.20.18.137"
+ mmsport="8080"
+ mvno_type="imsi"
+ mvno_match_data="2140759577xxxxx"
+ type="default,ims,mms,supl"
+ />
+
+ <apn carrier="T-2"
+ carrier_id = "2281"
+ mcc="214"
+ mnc="07"
+ apn="internet.t-2.net"
+ mmsc="http://www.mms.t-2.net:8002"
+ mmsproxy="172.20.18.137"
+ mmsport="8080"
+ type="default,ims,mms,supl"
+ mvno_type="imsi"
+ mvno_match_data="2140796692xxxxx"
/>
<apn carrier="Euskaltel MMS"
@@ -2867,7 +2412,7 @@
user="CLIENTE"
password="EUSKALTEL"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="TeleCable Internet"
@@ -2876,7 +2421,7 @@
apn="internet.telecable.es"
user="telecable"
password="telecable"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="TeleCable MMS"
@@ -2896,7 +2441,7 @@
mcc="214"
mnc="18"
apn="internet.ono.com"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="ONO MMS"
@@ -2918,7 +2463,7 @@
authtype="1"
user="orange"
password = "orange"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="simyo MMS"
@@ -2948,7 +2493,7 @@
mcc="214"
mnc="21"
apn="jazzinternet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS"
@@ -2970,7 +2515,7 @@
mcc="214"
mnc="22"
apn="internet.digimobil.es"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Lycamobile"
@@ -2982,7 +2527,6 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
- type="default,ia,supl"
/>
<apn carrier="Truphone"
@@ -2991,7 +2535,7 @@
mnc="27"
apn="truphone.com"
mmsc="http://mmsc.truphone.com:1981/mm1"
- type="default,ia,supl,mms,dun"
+ type="default,supl,mms,dun"
mvno_type="gid"
mvno_match_data="547275554B3030656E"
/>
@@ -3008,6 +2552,22 @@
mvno_match_data="547275554B3030656E"
/>
+ <apn carrier="Tuenti"
+ carrier_id = "2357"
+ mcc="214"
+ mnc="32"
+ apn="tuenti.com"
+ user="tuenti"
+ password="tuenti"
+ authtype="3"
+ mmsc="http://tuenti.com"
+ mmsproxy="10.138.255.43"
+ mmsport="8080"
+ type="default,mms,supl"
+ mvno_type="spn"
+ mvno_match_data="Tuenti"
+ />
+
<apn carrier="INET Internet"
mcc="214"
mnc="34"
@@ -3016,7 +2576,7 @@
password=""
port=""
proxy=""
- type="default,ia,supl,fota,hipri"
+ type="default,supl,fota,hipri"
protocol="IPV4V6"
/>
@@ -3036,7 +2596,7 @@
mcc="216"
mnc="01"
apn="online"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Djuice MMS"
@@ -3056,7 +2616,7 @@
mcc="216"
mnc="01"
apn="net"
- type="default,ia"
+ type="default"
authtype="0"
mvno_match_data="Djuice"
mvno_type="spn"
@@ -3068,38 +2628,12 @@
apn="wap"
proxy="84.225.255.1"
port="8080"
- type="default,ia"
+ type="default"
authtype="0"
mvno_match_data="Djuice"
mvno_type="spn"
/>
- <apn carrier="DIGI HU internet"
- mcc="216"
- mnc="03"
- apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- />
-
- <apn carrier="DIGI HU IMS"
- mcc="216"
- mnc="03"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- user_visible="false"
- />
-
- <apn carrier="DIGI HU Ut"
- mcc="216"
- mnc="03"
- apn="hos"
- type="xcap"
- protocol="IPV4V6"
- user_visible="false"
- />
-
<apn carrier="T-Mobile H"
carrier_id = "2401"
mcc="216"
@@ -3108,41 +2642,25 @@
type="ia"
/>
- <apn carrier="Telekom HU NET"
+ <apn carrier="T-Mobile H MMS"
carrier_id = "2401"
mcc="216"
mnc="30"
apn="internet.telekom"
- type="default,ia,supl,mms,xcap"
mmsc="http://mms.t-mobile.hu/servlets/mms"
mmsproxy="212.51.126.10"
mmsport="8080"
+ type="mms"
authtype="1"
- protocol="IPV4V6"
- />
-
- <apn carrier="Telekom IMS"
- carrier_id = "2401"
- mcc="216"
- mnc="30"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- user_visible="false"
/>
- <apn carrier="HOS"
+ <apn carrier="T-Mobile H"
carrier_id = "2401"
mcc="216"
mnc="30"
- apn="hos"
- mmsc="http://mms.t-mobile.hu/servlets/mms"
- mmsproxy="212.051.126.010"
- mmsport="8080"
- type="mms"
- network_type_bitmask="18"
- protocol="IPV4V6"
- user_visible="false"
+ apn="internet.telekom"
+ type="default,supl"
+ authtype="1"
/>
<apn carrier="Vodafone Internet"
@@ -3150,10 +2668,10 @@
mcc="216"
mnc="70"
apn="internet.vodafone.net"
- type="default,ia,supl,xcap"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_editable="false"
+ type="default,supl"
+ authtype="0"
+ mvno_match_data="21670xx2xxx"
+ mvno_type="imsi"
/>
<apn carrier="Vodafone MMS"
@@ -3165,13 +2683,31 @@
mmsport="8080"
mmsc="http://mms.vodafone.hu/servlets/mms"
type="mms"
+ authtype="0"
+ mvno_match_data="21670xx2xxx"
+ mvno_type="imsi"
+ />
+
+ <apn carrier="Vodafone Live!"
+ carrier_id = "1535"
+ mcc="216"
+ mnc="70"
+ apn="wap.vodafone.net"
+ user="vodawap"
+ password="vodawap"
+ proxy="10.9.8.7"
+ port="8080"
+ type="default,supl"
+ authtype="1"
+ mvno_match_data="21670xx2xxx"
+ mvno_type="imsi"
/>
<apn carrier="Vodafone Internet VitaMAX"
mcc="216"
mnc="70"
apn="vitamax.internet.vodafone.net"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="21670xx1xxx"
mvno_type="imsi"
/>
@@ -3188,43 +2724,36 @@
mvno_type="imsi"
/>
- <apn carrier="Vodafone HU IMS"
- carrier_id = "1535"
+ <apn carrier="Vodafone Live! VitaMAX"
mcc="216"
mnc="70"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- user_visible="false"
- />
-
- <apn carrier="UPC Mobil Internet"
- mcc="216"
- mnc="71"
- apn= "Internet.hu.upcmobile.com"
- type="default,ia,supl"
- mvno_type="gid"
- mvno_match_data="75687531"
+ apn="vitamax.wap.vodafone.net"
+ user="vodawap"
+ password="vodawap"
+ proxy="10.9.8.7"
+ port="8080"
+ type="default,supl"
+ authtype="1"
+ mvno_match_data="21670xx1xxx"
+ mvno_type="imsi"
/>
- <apn carrier="UPC MMS"
- mcc="216"
- mnc="71"
- apn="mms.hu.upcmobile.com"
- mmsc="http://mms.hu.upcmobile.com:8080/servlets/mms"
- mmsproxy="62.179.127.18"
- mmsport="8080"
- type="mms"
- mvno_type="gid"
- mvno_match_data="75687531"
+ <apn carrier="HT Eronet WAP"
+ carrier_id = "1357"
+ mcc="218"
+ mnc="03"
+ apn="wap.eronet.ba"
+ proxy="10.12.3.10"
+ port="8080"
+ type="default,supl"
/>
- <apn carrier="HT Eronet WEB"
+ <apn carrier="HT Eronet GPRS"
carrier_id = "1357"
mcc="218"
mnc="03"
- apn="web.eronet.ba"
- type="default,ia,supl"
+ apn="gprs.eronet.ba"
+ type="default,supl"
/>
<apn carrier="Ht Eronet MMS"
@@ -3238,12 +2767,22 @@
type="mms"
/>
- <apn carrier="mtel"
+ <apn carrier="m:tel"
carrier_id = "1358"
mcc="218"
mnc="05"
- apn="mtelsmart"
- type="default,ia,supl"
+ apn="3g1"
+ proxy="192.168.61.10"
+ port="80"
+ type="default,supl"
+ />
+
+ <apn carrier="mtelgprs"
+ carrier_id = "1358"
+ mcc="218"
+ mnc="05"
+ apn="3g1"
+ type="default,supl"
/>
<apn carrier="mtelmms"
@@ -3262,7 +2801,7 @@
mcc="218"
mnc="90"
apn="active.bhmobile.ba"
- type="default,ia,supl"
+ type="default,supl"
protocol="IPV4V6"
/>
@@ -3278,18 +2817,16 @@
protocol="IPV4V6"
/>
- <apn carrier="HOS"
+ <apn carrier="T-Mobile MMS"
carrier_id = "2365"
mcc="219"
mnc="01"
- apn="hos"
+ apn="mms.htgprs"
mmsc="http://mms.t-mobile.hr/servlets/mms"
mmsproxy="10.12.0.4"
mmsport="8080"
authtype="1"
type="mms"
- protocol="IPV4V6"
- user_visible="false"
/>
<apn carrier="T-Mobile"
@@ -3300,35 +2837,13 @@
type="ia"
/>
- <apn carrier="T-Mobile IMS"
- carrier_id = "2365"
- mcc="219"
- mnc="01"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
- />
-
- <apn carrier="Internet"
+ <apn carrier="T-Mobile Internet"
carrier_id = "2365"
mcc="219"
mnc="01"
apn="internet.ht.hr"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- />
-
- <apn carrier="T-Mobile UT"
- carrier_id = "2365"
- mcc="219"
- mnc="01"
- apn="hos"
- type="xcap"
- protocol="IPV4V6"
- user_visible="false"
+ type="default,supl"
/>
<apn carrier="bonbon Internet"
@@ -3337,7 +2852,7 @@
mnc="01"
apn="web.htgprs"
authtype="1"
- type="default,ia,supl,fota,dun"
+ type="default,supl,fota,dun"
mvno_type="spn"
mvno_match_data="bonbon"
/>
@@ -3362,12 +2877,12 @@
mnc="02"
apn="internet.tele2.hr"
mmsc="http://mmsc.tele2.hr"
- mmsproxy="mmsproxy.tele2.hr"
+ mmsproxy="193.12.40.66"
mmsport="8080"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
- <apn carrier="A1 LTE IA"
+ <apn carrier="Broadband"
carrier_id = "1530"
mcc="219"
mnc="10"
@@ -3375,35 +2890,30 @@
type="ia"
/>
- <apn carrier="A1 internet"
+ <apn carrier="Broadband"
carrier_id = "1530"
mcc="219"
mnc="10"
- apn="internet"
- type="default,ia,supl"
+ apn="data.vip.hr"
+ user="38591"
+ password="38591"
+ authtype="1"
+ proxy="212.91.99.91"
+ port="8080"
+ type="default,supl"
/>
- <apn carrier="A1 MMS"
+ <apn carrier="VIP.mms"
carrier_id = "1530"
mcc="219"
mnc="10"
- apn="mms"
- mmsc="http://mms.a1.hr/servlets/mms"
+ apn="mms.vipnet.hr"
+ mmsc="http://mms.vipnet.hr/servlets/mms"
mmsproxy="212.91.99.91"
mmsport="8080"
type="mms"
/>
- <apn carrier="A1 IMS"
- carrier_id = "1530"
- mcc="219"
- mnc="10"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- user_visible="false"
- />
-
<apn carrier="Telenor internet"
carrier_id = "1012"
mcc="220"
@@ -3412,7 +2922,7 @@
user="telenor"
password="gprs"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Telenor MMS"
@@ -3435,7 +2945,7 @@
password="gprs"
proxy="192.168.246.5"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Telenor MNE mms"
@@ -3451,19 +2961,20 @@
type="mms"
/>
- <apn carrier="MTS WAP"
+ <apn carrier="mt:s wap"
carrier_id = "1013"
mcc="220"
mnc="03"
apn="gprswap"
user="mts"
password="064"
+ proxy="172.17.88.198"
+ port="8080"
authtype="1"
- type="default,ia,supl"
- server="http://m.mondo.rs"
+ type="default,supl"
/>
- <apn carrier="MTS MMS"
+ <apn carrier="mt:s mms"
carrier_id = "1013"
mcc="220"
mnc="03"
@@ -3477,6 +2988,17 @@
type="mms"
/>
+ <apn carrier="MTS Internet RS"
+ carrier_id = "1013"
+ mcc="220"
+ mnc="03"
+ apn="gprsinternet"
+ authtype="0"
+ user="mts"
+ password="064"
+ type="default,supl,fota,dun"
+ />
+
<apn carrier="T-Mobile MMS"
carrier_id = "10"
mcc="220"
@@ -3499,7 +3021,28 @@
password="38267"
proxy="10.0.5.19"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
+ />
+
+ <apn carrier="SaskTel"
+ carrier_id = "580"
+ mcc="204"
+ mnc="04"
+ apn="pda.stm.sk.ca"
+ type="default,mms,supl"
+ mmsc="http://mms.sasktel.com/"
+ mmsproxy="mig.sasktel.com"
+ mmsport="80"
+ mvno_match_data="5A"
+ mvno_type="gid"
+ />
+
+ <apn carrier="agms"
+ carrier_id = "2351"
+ mcc="204"
+ mnc="65"
+ apn="agms"
+ type="default,supl"
/>
<apn carrier="Vip GPRS"
@@ -3509,7 +3052,10 @@
apn="vipmobile"
user="vipmobile"
password="vipmobile"
- type="default,ia,supl"
+ proxy="212.15.182.82"
+ port="8080"
+ authtype="1"
+ type="default,supl"
/>
<apn carrier="Vip MMS"
@@ -3519,7 +3065,10 @@
apn="vipmobile.mms"
user="vipmobile"
password="vipmobile"
- mmsc="http://mms.vipmobile.rs"
+ mmsc="http://mmsc.vipmobile.rs"
+ mmsproxy="212.15.182.82"
+ mmsport="8080"
+ authtype="1"
type="mms"
/>
@@ -3528,14 +3077,15 @@
mcc="222"
mnc="01"
apn="wap.tim.it"
- type="default,ia,supl"
+ type="default,supl"
/>
- <apn carrier="TIM Web"
+ <apn carrier="TIM DUN (IT)"
carrier_id = "33"
mcc="222"
mnc="01"
apn="ibox.tim.it"
+ authtype="0"
type="dun"
/>
@@ -3550,47 +3100,53 @@
type="mms"
/>
- <apn carrier="TIM UT"
- carrier_id = "33"
+ <apn carrier="Internet"
+ carrier_id = "1895"
mcc="222"
mnc="01"
- apn="xcap.tim.it"
- type="xcap"
+ apn="internet.windmobile.ca"
+ type="default,supl"
protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
+ mvno_match_data="FFFFFF00"
+ mvno_type="gid"
/>
- <apn carrier="TIM IMS"
- carrier_id = "33"
+ <apn carrier="MMS"
+ carrier_id = "1895"
mcc="222"
mnc="01"
- apn="IMS"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
+ apn="mms.windmobile.ca"
+ mmsc="http://mms.windmobile.ca"
+ mmsproxy="74.115.197.70"
+ mmsport="8080"
+ type="mms"
+ mvno_match_data="FFFFFF00"
+ mvno_type="gid"
/>
- <apn carrier="MMS"
+ <apn carrier="MMS"
carrier_id = "1912"
mcc="222"
mnc="01"
+ authtype="0"
mmsc="http://mms.iusacell3g.com/"
type="mms"
+ user="mmsiusacellgsm"
+ password="mmsiusacellgsm"
apn="mms.iusacellgsm.mx"
mvno_type="spn"
mvno_match_data="IUSACELL"
/>
- <apn carrier="Location"
+ <apn carrier="Modem"
carrier_id = "1912"
mcc="222"
mnc="01"
- apn="supl.iusacellgsm.mx"
- server="http://supl.iusacell.com"
- port="7275"
- type="supl"
+ authtype="0"
+ type="dun"
+ user="iusacellgsm"
+ password="iusacellgsm"
+ apn="modem.iusacellgsm.mx"
mvno_type="spn"
mvno_match_data="IUSACELL"
/>
@@ -3599,7 +3155,10 @@
carrier_id = "1912"
mcc="222"
mnc="01"
- type="default,ia"
+ authtype="0"
+ type="default"
+ user="iusacellgsm"
+ password="iusacellgsm"
apn="web.iusacellgsm.mx"
mvno_type="spn"
mvno_match_data="IUSACELL"
@@ -3610,20 +3169,24 @@
mcc="222"
mnc="01"
apn="mms.iusacellgsm.mx"
+ authtype="0"
mmsc="http://mms.iusacell3g.com/"
type="mms"
+ user="mmsiusacellgsm"
+ password="mmsiusacellgsm"
mvno_type="spn"
mvno_match_data="UNEFON"
/>
- <apn carrier="Location"
+ <apn carrier="Modem"
carrier_id = "1912"
mcc="222"
mnc="01"
- apn="supl.iusacellgsm.mx"
- server="http://supl.iusacell.com"
- port="7275"
- type="supl"
+ apn="modem.iusacellgsm.mx"
+ authtype="0"
+ type="dun"
+ user="iusacellgsm"
+ password="iusacellgsm"
mvno_type="spn"
mvno_match_data="UNEFON"
/>
@@ -3633,91 +3196,54 @@
mcc="222"
mnc="01"
apn="web.iusacellgsm.mx"
- type="default,ia"
+ authtype="0"
+ type="default"
+ user="iusacellgsm"
+ password="iusacellgsm"
mvno_type="spn"
mvno_match_data="UNEFON"
/>
- <apn carrier="GigSky"
- carrier_id="2459"
- mcc="222"
- mnc="01"
- apn="gigsky"
- type="default,ia"
- mvno_type="spn"
- mvno_match_data="GigSky"
- />
-
- <apn carrier="CoopVoce MMS"
+ <apn carrier="NOVERCA MMS"
+ carrier_id = "2282"
mcc="222"
mnc="01"
- apn="mms.coopvoce.it"
- mmsc="http://mms.coop.it/servlets/mms"
+ apn="mms.noverca.it"
+ authtype="0"
+ mmsc="http://mms.noverca.it/"
mmsproxy="213.230.130.89"
mmsport="80"
type="mms"
mvno_type="spn"
- mvno_match_data="Coop Mobile"
+ mvno_match_data="Noverca"
/>
- <apn carrier="CoopVoce"
+ <apn carrier="NOVERCA WEB"
+ carrier_id = "2282"
mcc="222"
mnc="01"
- apn="web.coopvoce.it"
- type="default,ia"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- mvno_type="spn"
- mvno_match_data="Coop Mobile"
- />
-
- <apn carrier="Kenamobile web"
- mcc="222"
- mnc="01"
- apn="web.kenamobile.it"
- type="default,ia"
+ apn="web.noverca.it"
+ authtype="0"
+ type="default,supl,fota,dun"
mvno_type="spn"
- mvno_match_data="Kena Mobile"
+ mvno_match_data="Noverca"
/>
- <apn carrier="Kenamobile MMS"
+ <apn carrier="GigSky"
+ carrier_id="2459"
mcc="222"
mnc="01"
- apn="mms.kenamobile.it"
- mmsc="http://mms.kenamobile.it/"
- mmsproxy="10.248.1.12"
- mmsport="80"
- type="mms"
+ apn="gigsky"
+ type="default"
mvno_type="spn"
- mvno_match_data="Kena Mobile"
- />
-
- <apn carrier="FW WEB"
- carrier_id = "2416"
- mcc="222"
- mnc="08"
- apn="apn.fastweb.it"
- type="default,ia"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- />
-
- <apn carrier="FW MMS"
- carrier_id = "2416"
- mcc="222"
- mnc="08"
- apn="apn.fastweb.it"
- mmsc="http://mms.fastweb.it/mms/wapenc"
- mmsproxy="85.18.189.217"
- mmsport="8080"
- type="mms"
+ mvno_match_data="GigSky"
/>
<apn carrier="Kena Mobile Web"
mcc="222"
mnc="07"
apn="web.kenamobile.it"
- type="default,ia"
+ type="default"
/>
<apn carrier="Kena Mobile MMS"
@@ -3739,7 +3265,6 @@
/>
<apn carrier="MMS Vodafone"
- carrier_id = "29"
mcc="222"
mnc="10"
apn="mms.vodafone.it"
@@ -3749,29 +3274,13 @@
type="mms"
/>
- <apn carrier="Acc. Internet da cell"
- carrier_id = "29"
- mcc="222"
- mnc="10"
- apn="mobile.vodafone.it"
- type="default,ia,supl"
- />
-
- <apn carrier="IMS Vodafone"
- carrier_id = "29"
- mcc="222"
- mnc="10"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- />
-
<apn carrier="ho."
carrier_id = "2455"
mcc="222"
mnc="10"
apn="web.ho-mobile.it"
- type="default,ia,supl,hipri,fota"
+ authtype="0"
+ type="default,supl,hipri,fota"
mvno_type="spn"
mvno_match_data="ho."
/>
@@ -3781,17 +3290,43 @@
mcc="222"
mnc="10"
apn="internet.ho-mobile.it"
+ authtype="0"
type="dun"
mvno_type="spn"
mvno_match_data="ho."
/>
+ <apn carrier="Acc. Internet da cell"
+ mcc="222"
+ mnc="10"
+ apn="mobile.vodafone.it"
+ type="default,supl"
+ />
+
+ <apn carrier="Tethering Internet"
+ mcc="222"
+ mnc="10"
+ apn="web.omnitel.it"
+ authtype="0"
+ mmsport="80"
+ type="dun"
+ />
+
+ <apn carrier="IMS Vodafone"
+ mcc="222"
+ mnc="10"
+ apn="ims"
+ type="ims"
+ protocol="IPV4V6"
+ />
+
<apn carrier="PosteMobile"
carrier_id = "2303"
mcc="222"
mnc="10"
apn="wap.postemobile.it"
- type="default,ia,supl,fota"
+ authtype="0"
+ type="default,supl,fota"
mvno_type="spn"
mvno_match_data="PosteMobile"
/>
@@ -3801,6 +3336,7 @@
mcc="222"
mnc="10"
apn="internet.postemobile.it"
+ authtype="0"
type="dun"
mvno_type="spn"
mvno_match_data="PosteMobile"
@@ -3811,6 +3347,7 @@
mcc="222"
mnc="10"
apn="mms.postemobile.it"
+ authtype="0"
mmsc="http://mms.postemobile.it/servlets/mms"
mmsproxy="10.128.224.10"
mmsport="80"
@@ -3824,7 +3361,8 @@
mcc="222"
mnc="10"
apn="mobile.erg.it"
- type="default,ia,supl,fota,dun"
+ authtype="0"
+ type="default,supl,fota,dun"
mvno_type="spn"
mvno_match_data="ERG"
/>
@@ -3834,32 +3372,11 @@
mcc="222"
mnc="10"
apn="wap.dtm.it"
- type="default,ia,supl,dun"
+ type="default,supl,dun"
mvno_type="spn"
mvno_match_data="Daily Telecom"
/>
- <apn carrier="PosteMobile"
- mcc="222"
- mnc="33"
- apn="wap.postemobile.it"
- type="default,ia,supl,fota"
- mvno_type="spn"
- mvno_match_data="PosteMobile"
- />
-
- <apn carrier="PosteMobile MMS"
- mcc="222"
- mnc="33"
- apn="mms.postemobile.it"
- mmsc="http://mms.postemobile.it/servlets/mms"
- mmsproxy="10.128.224.10"
- mmsport="80"
- type="mms"
- mvno_type="spn"
- mvno_match_data="PosteMobile"
- />
-
<apn carrier="Lycamobile"
mcc="222"
mnc="35"
@@ -3869,7 +3386,6 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
- type="default,ia,supl"
/>
<apn carrier="DIGI Italy"
@@ -3877,7 +3393,7 @@
mcc="222"
mnc="36"
apn="digi.mobile"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Iliad"
@@ -3886,28 +3402,24 @@
mnc="50"
apn="iliad"
mmsc="http://mms.iliad.it"
- type="default,ia,supl,hipri,mms"
- mvno_type="gid"
- mvno_match_data="F003"
+ type="default,supl,mms"
/>
<apn carrier="WEB CoopVoce"
- carrier_id = "2452"
- mcc="222"
- mnc="53"
- apn="internet.coopvoce.it"
- type="default,ia,supl,dun"
+ mcc="222"
+ mnc="53"
+ apn="internet.coopvoce.it"
+ type="default"
/>
<apn carrier="MMS CoopVoce"
- carrier_id = "2452"
- mcc="222"
- mnc="53"
- apn="message.coopvoce.it"
- type="mms"
- mmsc="http://mms.coop.it/servlets/mms"
- mmsproxy="213.230.130.89"
- mmsport="80"
+ mcc="222"
+ mnc="53"
+ apn="message.coopvoce.it"
+ type="mms"
+ mmsc="http://mms.coop.it/servlets/mms"
+ mmsproxy="213.230.130.89"
+ mmsport="80"
/>
<apn carrier="Plintron"
@@ -3926,7 +3438,7 @@
mcc="222"
mnc="88"
apn="internet.it"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS"
@@ -3940,12 +3452,36 @@
type="mms"
/>
+ <apn carrier="Internet"
+ carrier_id = "1895"
+ mcc="222"
+ mnc="88"
+ apn="internet.windmobile.ca"
+ type="default,supl"
+ protocol="IPV4V6"
+ mvno_match_data="FFFFFF00"
+ mvno_type="gid"
+ />
+
+ <apn carrier="MMS"
+ carrier_id = "1895"
+ mcc="222"
+ mnc="88"
+ apn="mms.windmobile.ca"
+ mmsc="http://mms.windmobile.ca"
+ mmsproxy="74.115.197.70"
+ mmsport="8080"
+ type="mms"
+ mvno_match_data="FFFFFF00"
+ mvno_type="gid"
+ />
+
<apn carrier="INTERNET"
carrier_id = "1575"
mcc="222"
mnc="99"
apn="internet.it"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS"
@@ -3967,7 +3503,7 @@
mmsc="http://mms.fastweb.it/mms/wapenc"
mmsproxy="10.0.65.9"
mmsport="8080"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
mvno_match_data="FASTWEB"
mvno_type="spn"
/>
@@ -3988,10 +3524,7 @@
user="live"
password="vodafone"
authtype="1"
- type="default,ia,supl,xcap"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_editable="false"
+ type="default,supl"
/>
<apn carrier="Vodafone MMS"
@@ -4008,47 +3541,56 @@
type="mms"
/>
- <apn carrier="Vodafone IMS"
+ <apn carrier="Vodafone live!PRE"
carrier_id = "2391"
mcc="226"
mnc="01"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
+ apn="live.pre.vodafone.com"
+ proxy="193.230.161.231"
+ port="8080"
+ authtype="0"
+ user="live"
+ password="vodafone"
+ type="default"
/>
- <apn carrier="Telekom Romania Mobil"
- carrier_id = "1010"
+ <apn carrier="Cosmote Connect Mobile"
mcc="226"
mnc="03"
apn=""
type="ia"
/>
- <apn carrier="Telekom Romania Mobil"
- carrier_id = "1010"
+ <apn carrier="Cosmote Connect Mobile"
mcc="226"
mnc="03"
apn="broadband"
- type="default,ia,supl"
+ type="default,supl"
/>
- <apn carrier="Telekom Romania MMS"
- carrier_id = "1010"
+ <apn carrier="Cosmote MMS"
mcc="226"
mnc="03"
apn="mms"
user="mms"
password="mms"
- mmsc="http://mmsc1.mms.telekom.ro:8002"
+ mmsc="http://mmsc1.mms.cosmote.ro:8002"
mmsproxy="10.252.1.62"
mmsport="8080"
authtype="1"
type="mms"
/>
+ <apn carrier="web'n'walk"
+ mcc="226"
+ mnc="03"
+ apn="wnw"
+ user="wnw"
+ password="wnw"
+ authtype="1"
+ type="default,supl"
+ />
+
<apn carrier="MMS"
carrier_id = "1959"
mcc="226"
@@ -4066,20 +3608,7 @@
mnc="05"
apn="internet"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- />
-
- <apn carrier="Digi.Mobil"
- carrier_id = "1959"
- mcc="226"
- mnc="05"
- apn="ims"
- authtype="1"
- type="ims"
- protocol="IPV4V6"
- user_visible="false"
+ type="default,supl"
/>
<apn carrier="DIGI Spain"
@@ -4087,7 +3616,7 @@
mcc="226"
mnc="05"
apn="internet.digimobil.es"
- type="default,ia,supl"
+ type="default,supl"
mvno_type="gid"
mvno_match_data="44474553"
/>
@@ -4097,41 +3626,47 @@
mcc="226"
mnc="05"
apn="digi.mobile"
- type="default,ia,supl"
+ type="default,supl"
mvno_type="gid"
mvno_match_data="44474954"
/>
- <apn carrier="Telekom Romania Mobil"
- carrier_id = "1010"
+ <apn carrier="Cosmote Connect Mobile"
mcc="226"
mnc="06"
apn=""
type="ia"
/>
- <apn carrier="Telekom Romania Mobil"
- carrier_id = "1010"
+ <apn carrier="Cosmote Connect Mobile"
mcc="226"
mnc="06"
apn="broadband"
- type="default,ia,supl"
+ type="default,supl"
/>
- <apn carrier="Telekom Romania MMS"
- carrier_id = "1010"
+ <apn carrier="Cosmote MMS"
mcc="226"
mnc="06"
apn="mms"
user="mms"
password="mms"
- mmsc="http://mmsc1.mms.telekom.ro:8002"
+ mmsc="http://mmsc1.mms.cosmote.ro:8002"
mmsproxy="10.252.1.62"
mmsport="8080"
type="mms"
/>
- <apn carrier="Orange LTE"
+ <apn carrier="web'n'walk"
+ mcc="226"
+ mnc="06"
+ apn="wnw"
+ user="wnw"
+ password="wnw"
+ type="default,supl"
+ />
+
+ <apn carrier="Orange Internet"
carrier_id = "1011"
mcc="226"
mnc="10"
@@ -4151,7 +3686,6 @@
mmsport="8799"
authtype="1"
type="mms"
- user_editable="false"
/>
<apn carrier="Orange Internet"
@@ -4159,19 +3693,7 @@
mcc="226"
mnc="10"
apn="net"
- authtype="3"
- type="default,ia,supl"
- />
-
- <apn carrier="Orange IMS"
- carrier_id = "1011"
- mcc="226"
- mnc="10"
- apn="ims"
- type="ims"
- protocol="IPV6"
- roaming_protocol="IPV4V6"
- user_visible="false"
+ type="default"
/>
<apn carrier="Lycamobile"
@@ -4183,7 +3705,6 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
- type="default,ia,supl"
/>
<apn carrier="Swisscom MMS"
@@ -4202,27 +3723,9 @@
mcc="228"
mnc="01"
apn="gprs.swisscom.ch"
- type="default,ia,supl"
- />
-
- <apn carrier="Swisscom IMS"
- carrier_id = "2366"
- mcc="228"
- mnc="01"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
- />
-
- <apn carrier="Swisscom Ut"
- carrier_id = "2366"
- mcc="228"
- mnc="01"
- apn="hos"
- type="xcap"
- user_visible="false"
+ proxy="192.168.210.1"
+ port="8080"
+ type="default,supl"
/>
<apn carrier="Sunrise live"
@@ -4230,7 +3733,7 @@
mcc="228"
mnc="02"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Sunrise MMS"
@@ -4244,36 +3747,15 @@
type="mms"
/>
- <apn carrier="Sunrise IMS"
- carrier_id = "1413"
- mcc="228"
- mnc="02"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
- />
-
- <apn carrier="Sunrise Ut"
- carrier_id = "1413"
- mcc="228"
- mnc="02"
- apn="xcap"
- type="xcap"
- user_visible="false"
- />
-
- <apn carrier="Salt Internet"
+ <apn carrier="Orange Internet"
carrier_id = "1414"
mcc="228"
mnc="03"
apn="internet"
- authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
- <apn carrier="Salt MMS"
+ <apn carrier="Orange MMS"
carrier_id = "1414"
mcc="228"
mnc="03"
@@ -4281,30 +3763,9 @@
mmsc="http://192.168.151.3:8002"
mmsproxy="192.168.151.2"
mmsport="8080"
- authtype="1"
type="mms"
/>
- <apn carrier="Salt IMS"
- carrier_id = "1414"
- mcc="228"
- mnc="03"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
- />
-
- <apn carrier="Salt Ut"
- carrier_id = "1414"
- mcc="228"
- mnc="03"
- apn="hos"
- type="xcap"
- user_visible="false"
- />
-
<apn carrier="netgprs.com"
carrier_id = "2271"
mcc="228"
@@ -4312,7 +3773,7 @@
apn="netgprs.com"
user="tsl"
password="tsl"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="CH-Transatel"
mvno_type="spn"
/>
@@ -4324,32 +3785,11 @@
apn="netgprs.com"
user="tsl"
password="tsl"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="BB00"
mvno_type="gid"
/>
- <apn carrier="upcnet"
- mcc="228"
- mnc="53"
- apn="Internet.ch.upcmobile.com"
- type="default,ia,supl"
- mvno_type="gid"
- mvno_match_data="75636831"
- />
-
- <apn carrier="upcmms"
- mcc="228"
- mnc="53"
- apn="mms.ch.upcmobile.com"
- mmsc="http://mms.ch.upcmobile.com:8080/servlets/mms"
- mmsproxy="62.179.127.18"
- mmsport="8080"
- type="mms"
- mvno_type="gid"
- mvno_match_data="75636831"
- />
-
<apn carrier="Lycamobile"
mcc="228"
mnc="54"
@@ -4359,7 +3799,6 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
- type="default,ia,supl"
/>
<apn carrier="T-Mobile CZ"
@@ -4375,11 +3814,9 @@
carrier_id = "2394"
mcc="230"
mnc="01"
- apn="ims"
+ apn="IMS"
type="ims"
protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
/>
<apn carrier="T-Mobile CZ"
@@ -4390,7 +3827,7 @@
user="wap"
password="wap"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="T-Mobile MMS"
@@ -4407,39 +3844,12 @@
type="mms"
/>
- <apn carrier="HOS"
- carrier_id = "2394"
- mcc="230"
- mnc="01"
- apn="hos"
- mmsc="http://mms"
- mmsproxy="10.0.0.10"
- mmsport="80"
- authtype="1"
- type="mms"
- network_type_bitmask="18"
- protocol="IPV4V6"
- user_visible="false"
- />
-
- <apn carrier="HOS"
- mcc="230"
- mnc="01"
- apn="hos"
- type="xcap"
- protocol="IPV4V6"
- user_visible="false"
- />
-
<apn carrier="O2 internet"
carrier_id = "1449"
mcc="230"
mnc="02"
apn="internet"
- type="default,ia,supl"
- authtype="0"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="O2 MMS"
@@ -4453,32 +3863,12 @@
type="mms"
/>
- <apn carrier="O2 VoLTE Hlas"
- carrier_id = "1449"
- mcc="230"
- mnc="02"
- apn="ims"
- type="ims"
- protocol="IPV6"
- user_visible="false"
- />
-
- <apn carrier="O2 VoLTE"
- carrier_id = "1449"
- mcc="230"
- mnc="02"
- apn="xcap"
- type="xcap"
- protocol="IPV6"
- user_visible="false"
- />
-
<apn carrier="Internet"
carrier_id = "2398"
mcc="230"
mnc="03"
apn="internet"
- type="default,ia,supl,xcap"
+ type="default,supl"
/>
<apn carrier="MMS"
@@ -4493,35 +3883,17 @@
mmsport="80"
authtype="1"
type="mms"
- user_editable="false"
- />
-
- <apn carrier="IMS"
- carrier_id = "2398"
- mcc="230"
- mnc="03"
- apn="ims"
- type="ims"
- user_visible="false"
/>
- <apn carrier="Orange Internet"
+ <apn carrier="Orange SK"
carrier_id = "1713"
mcc="231"
mnc="01"
apn="internet"
- type="default,ia,supl"
+ type="default"
/>
- <apn carrier="Orange LTE"
- carrier_id = "1713"
- mcc="231"
- mnc="01"
- apn=""
- type="ia"
- />
-
- <apn carrier="Orange MMS"
+ <apn carrier="Orange SK MMS"
carrier_id = "1713"
mcc="231"
mnc="01"
@@ -4533,26 +3905,19 @@
mmsproxy="213.151.208.145"
mmsport="8799"
type="mms"
- user_editable="false"
- />
-
- <apn carrier="Orange IMS"
- carrier_id = "1713"
- mcc="231"
- mnc="01"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- user_visible="false"
/>
- <apn carrier="Orange UT"
+ <apn carrier="Orange World"
carrier_id = "1713"
mcc="231"
mnc="01"
- apn="xcap"
- type="xcap"
- user_visible="false"
+ apn="orangewap"
+ user="wap"
+ password="wap"
+ authtype="1"
+ proxy="213.151.208.156"
+ port="8799"
+ type="default,supl"
/>
<apn carrier="T-Mobile internet"
@@ -4561,40 +3926,21 @@
mnc="02"
apn="internet"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
+ type="default,supl"
/>
- <apn carrier="HOS"
+ <apn carrier="T-Mobile MMS"
carrier_id = "2385"
mcc="231"
mnc="02"
- apn="hos"
+ apn="mms"
user="mms"
password="mms"
authtype="1"
- mmsc="http://mmsc.telekom.sk"
- type="mms,xcap"
- user_visible="false"
- />
-
- <apn carrier="T-Mobile IMS"
- carrier_id = "2385"
- mcc="231"
- mnc="02"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- user_visible="false"
- />
-
- <apn carrier="4ka Internet"
- mcc="231"
- mnc="03"
- apn="internet"
- type="default,ia,supl"
- mvno_type="spn"
- mvno_match_data="4KA SK"
+ mmsc="http://mms"
+ mmsproxy="192.168.1.1"
+ mmsport="8080"
+ type="mms"
/>
<apn carrier="O2 internet"
@@ -4602,7 +3948,7 @@
mcc="231"
mnc="06"
apn="o2internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="O2 MMS"
@@ -4617,22 +3963,19 @@
/>
<apn carrier="live!"
- carrier_id = "14"
mcc="232"
mnc="01"
- apn="A1.net"
+ apn="a1.net"
user="ppp@a1plus.at"
password="ppp"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="A1 MMS"
- carrier_id = "14"
mcc="232"
mnc="01"
- apn="free.A1.net"
+ apn="free.a1.net"
user="ppp@a1plus.at"
password="ppp"
mmsc="http://mmsc.a1.net"
@@ -4642,56 +3985,34 @@
type="mms"
/>
- <apn carrier="A1 IMS"
- carrier_id = "14"
- mcc="232"
- mnc="01"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- user_visible="false"
- />
-
- <apn carrier="T-Mobile LTE"
+ <apn carrier="T-Mobile Internet"
mcc="232"
mnc="03"
apn=""
type="ia"
/>
- <apn carrier="T-Mobile A Internet"
+ <apn carrier="T-Mobile LTE"
mcc="232"
mnc="03"
apn="internet.t-mobile.at"
- user="T"
+ user="t-mobile"
password="tm"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
+ type="default,supl"
/>
- <apn carrier="T-Mobile IMS"
- mcc="232"
- mnc="03"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- user_visible="false"
- />
-
- <apn carrier="HOS"
+ <apn carrier="T-Mobile MMS"
mcc="232"
mnc="03"
- apn="hos"
+ apn="gprsmms"
user="t-mobile"
password="tm"
mmsc="http://mmsc.t-mobile.at/servlets/mms"
mmsproxy="10.12.0.20"
mmsport="80"
authtype="1"
- type="mms,xcap"
- protocol="IPV4V6"
- user_visible="false"
+ type="mms"
/>
<apn carrier="Goodspeed"
@@ -4699,46 +4020,11 @@
mcc="232"
mnc="03"
apn="uros.iot"
- type="default,ia"
+ type="default"
mvno_type="gid"
mvno_match_data="C5"
/>
- <apn carrier="T-Mobile A Internet"
- mcc="232"
- mnc="04"
- apn="internet.t-mobile.at"
- user="t-mobile"
- password="tm"
- authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- />
-
- <apn carrier="T-Mobile IMS"
- mcc="232"
- mnc="04"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- user_visible="false"
- />
-
- <apn carrier="HOS"
- mcc="232"
- mnc="04"
- apn="hos"
- user="t-mobile"
- password="tm"
- mmsc="http://mmsc.t-mobile.at/servlets/mms"
- mmsproxy="10.12.0.20"
- mmsport="80"
- authtype="1"
- type="xcap,mms"
- protocol="IPV4V6"
- user_visible="false"
- />
-
<apn carrier="Planet 3"
carrier_id = "1344"
mcc="232"
@@ -4747,124 +4033,30 @@
mmsc="http://mmsc"
mmsproxy="213.94.78.133"
mmsport="8799"
- type="default,ia,supl,mms,xcap"
- />
-
- <apn carrier="IMS"
- carrier_id = "1344"
- mcc="232"
- mnc="05"
- apn="ims"
- type="ims"
- protocol="IPV6"
- user_visible="false"
- />
-
- <apn carrier="HOS"
- carrier_id = "2094"
- mcc="232"
- mnc="07"
- apn="hos"
- user="t-mobile"
- password="tm"
- mmsc="http://mmsc.t-mobile.at/servlets/mms"
- mmsproxy="10.12.0.20"
- mmsport="80"
- authtype="1"
- type="mms,xcap"
- protocol="IPV4V6"
- user_visible="false"
+ type="default,supl,mms"
/>
- <apn carrier="T-Mobile IMS"
- carrier_id = "2094"
+ <apn carrier="tele.ring mms"
mcc="232"
mnc="07"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- user_visible="false"
- />
-
- <apn carrier="T-Mobile A Internet"
- carrier_id = "2094"
- mcc="232"
- mnc="07"
- apn="internet.t-mobile.at"
- user="T"
- password="tm"
- authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- />
-
- <apn carrier="HoT Internet"
- mcc="232"
- mnc="07"
- apn="webaut"
- authtype="1"
- type="default,ia,supl"
- mvno_type="imsi"
- mvno_match_data="23207761"
- />
-
- <apn carrier="HoT MMS"
- mcc="232"
- mnc="07"
- apn="mmsaut"
- authtype="1"
- mmsc="http://mmsaut.at/send"
- mmsproxy="212.095.031.050"
+ apn="mms"
+ user="wap@telering.at"
+ password="wap"
+ mmsc="http://relay.mms.telering.at"
+ mmsproxy="212.95.31.50"
mmsport="80"
- type="mms"
- mvno_type="imsi"
- mvno_match_data="23207761"
- />
-
- <apn carrier="0677 web"
- mcc="232"
- mnc="07"
- apn="webaut"
- authtype="1"
- type="default,ia,supl"
- mvno_type="imsi"
- mvno_match_data="23207718"
- />
-
- <apn carrier="0677 mms"
- mcc="232"
- mnc="07"
- apn="mmsaut"
authtype="1"
- mmsc="http://mmsaut.at/send"
- mmsproxy="212.095.031.050"
- mmsport="80"
type="mms"
- mvno_type="imsi"
- mvno_match_data="23207718"
- />
-
- <apn carrier="0677 web"
- mcc="232"
- mnc="07"
- apn="webaut"
- authtype="1"
- type="default,ia,supl"
- mvno_type="imsi"
- mvno_match_data="23207799"
/>
- <apn carrier="0677 mms"
+ <apn carrier="tele.ring web"
mcc="232"
mnc="07"
- apn="mmsaut"
+ apn="web"
+ user="web@telering.at"
+ password="web"
authtype="1"
- mmsc="http://mmsaut.at/send"
- mmsproxy="212.095.031.050"
- mmsport="80"
- type="mms"
- mvno_type="imsi"
- mvno_match_data="23207799"
+ type="default,supl"
/>
<apn carrier="Lycamobile"
@@ -4877,10 +4069,9 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
- type="default,ia,supl"
/>
- <apn carrier="Planet 3"
+ <apn carrier="Planet3"
carrier_id = "1344"
mcc="232"
mnc="10"
@@ -4888,33 +4079,20 @@
mmsc="http://mmsc"
mmsproxy="213.94.78.133"
mmsport="8799"
- type="default,ia,supl,mms,xcap"
- />
-
- <apn carrier="IMS"
- carrier_id = "1344"
- mcc="232"
- mnc="10"
- apn="ims"
- type="ims"
- protocol="IPV6"
- user_visible="false"
+ type="default,supl,mms"
/>
<apn carrier="data.bob"
- carrier_id = "14"
mcc="232"
mnc="11"
apn="bob.at"
user="data@bob.at"
password="ppp"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="data.bob MMS"
- carrier_id = "14"
mcc="232"
mnc="11"
apn="mms.bob.at"
@@ -4927,50 +4105,14 @@
type="mms"
/>
- <apn carrier="WEBAPN.AT"
+ <apn carrier="yesss!"
mcc="232"
mnc="12"
- apn="webapn.at"
- type="default,ia,supl"
- protocol="IPV4V6"
- />
-
- <apn carrier="UPC mobiles Internet"
- mcc="232"
- mnc="13"
- apn="Internet.at.upcmobile.com"
- type="default,ia,supl"
- mvno_type="gid"
- mvno_match_data="75617431"
- />
-
- <apn carrier="Planet 3"
- mcc="232"
- mnc="14"
- apn="drei.at"
- mmsc="http://mmsc"
- mmsproxy="213.94.78.133"
- mmsport="8799"
- type="default,ia,supl,mms,xcap"
- />
-
- <apn carrier="IMS"
- mcc="232"
- mnc="14"
- apn="ims"
- type="ims"
- protocol="IPV6"
- />
-
- <apn carrier="Tele2 Web"
- mcc="232"
- mnc="19"
- apn="internet.tele2.at"
- type="default,ia,supl"
+ apn="web.yesss.at"
+ type="default,supl"
/>
<apn carrier="Plintron"
- carrier_id = "2424"
mcc="232"
mnc="22"
apn="data.plintron.at"
@@ -4986,7 +4128,7 @@
mcc="234"
mnc="01"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="O2 MOBILE WEB"
@@ -4996,7 +4138,7 @@
apn="mobile.o2.co.uk"
user="O2web"
password="O2web"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="O2 MMS Prepay"
@@ -5032,7 +4174,7 @@
apn="internet.btonephone.com"
mvno_type="gid"
mvno_match_data="B2"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="BT One Phone MMS"
@@ -5055,7 +4197,7 @@
apn="mobile.o2.co.uk"
user="o2web"
password="password"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="O2 MMS"
@@ -5084,7 +4226,7 @@
mmsc="http://mmsc.mms.o2.co.uk:8002"
mmsproxy="82.132.254.1"
mmsport="8080"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="TESCO"
@@ -5100,7 +4242,7 @@
mmsproxy="193.113.200.195"
mmsport="8080"
authtype="1"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
mvno_match_data="0A"
mvno_type="gid"
/>
@@ -5137,7 +4279,7 @@
apn="mobile.o2.co.uk"
user="O2web"
password="O2web"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="O2 MMS Prepay"
@@ -5174,7 +4316,7 @@
apn="mobile.o2.co.uk"
user="O2web"
password="O2web"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="O2 MMS Prepay"
@@ -5213,7 +4355,7 @@
mmsproxy="212.183.137.12"
mmsport="8799"
authtype="1"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
user_editable="false"
/>
@@ -5227,21 +4369,10 @@
mmsproxy="212.183.137.12"
mmsport="8799"
authtype="1"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
user_editable="false"
/>
- <apn carrier="Vodafone UK IMS"
- carrier_id = "28"
- mcc="234"
- mnc="15"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
- />
-
<apn carrier="ASDA WAP"
mcc="234"
mnc="15"
@@ -5254,7 +4385,7 @@
mmsproxy="212.183.137.12"
mmsport="8799"
authtype="1"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
mvno_match_data="A0"
mvno_type="gid"
/>
@@ -5271,7 +4402,7 @@
mmsproxy="212.183.137.12"
mmsport="8799"
authtype="1"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
mvno_match_data="C1"
mvno_type="gid"
/>
@@ -5288,7 +4419,7 @@
mmsproxy="212.183.137.12"
mmsport="8799"
authtype="1"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
mvno_match_data="C1"
mvno_type="gid"
/>
@@ -5300,7 +4431,7 @@
mmsc="http://mms.talktalk.co.uk/servlets/mms"
mmsproxy="212.183.137.12"
mmsport="8799"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
mvno_match_data="70"
mvno_type="gid"
/>
@@ -5331,7 +4462,7 @@
mmsport="8799"
mvno_type="spn"
mvno_match_data="Lebara"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="3"
@@ -5342,7 +4473,7 @@
mmsc="http://mms.um.three.co.uk:10021/mmsc"
mmsproxy="mms.three.co.uk"
mmsport="8799"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="3 Hotspot"
@@ -5354,17 +4485,6 @@
type="dun"
/>
- <apn carrier="3 IMS"
- carrier_id = "1505"
- mcc="234"
- mnc="20"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
- />
-
<apn carrier="Lycamobile"
carrier_id = "2152"
mcc="234"
@@ -5375,7 +4495,6 @@
password="plus"
mvno_type="spn"
mvno_match_data="Lycamobile"
- type="default,ia,supl"
/>
<apn carrier="Virgin Media Mobile Internet"
@@ -5388,7 +4507,7 @@
mmsproxy="193.30.166.2"
mmsport="8080"
authtype="1"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
mvno_match_data="28"
mvno_type="gid"
/>
@@ -5401,9 +4520,9 @@
user="eesecure"
password="secure"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
protocol="IPV4V6"
- roaming_protocol="IP"
+ roaming_protocol="IPV4"
/>
<apn carrier="EE MMS"
@@ -5418,7 +4537,7 @@
mmsport="8080"
authtype="1"
type="mms"
- protocol="IP"
+ protocol="IPV4"
/>
<apn carrier="EE Emergency"
@@ -5449,7 +4568,7 @@
apn="internet.btonephone.com"
mvno_type="gid"
mvno_match_data="B2"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="BT One Phone MMS"
@@ -5475,9 +4594,9 @@
authtype="1"
mvno_type="gid"
mvno_match_data="B3"
- type="default,ia,supl"
+ type="default,supl"
protocol="IPV4V6"
- roaming_protocol="IP"
+ roaming_protocol="IPV4"
/>
<apn carrier="BT MMS"
@@ -5531,9 +4650,9 @@
authtype="1"
mvno_type="gid"
mvno_match_data="C3"
- type="default,ia,supl"
+ type="default,supl"
protocol="IPV4V6"
- roaming_protocol="IP"
+ roaming_protocol="IPV4"
/>
<apn carrier="BT MMS"
@@ -5583,7 +4702,7 @@
mnc="33"
apn="tslpaygnet"
authtype="0"
- type="default,ia,supl,fota,dun"
+ type="default,supl,fota,dun"
mvno_type="spn"
mvno_match_data="LIFE"
/>
@@ -5612,7 +4731,7 @@
user="eesecure"
password="secure"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="EE MMS"
@@ -5648,18 +4767,6 @@
type="ims"
protocol="IPV6"
roaming_protocol="IPV6"
- user_visible="false"
- />
-
- <apn carrier="EE IMS"
- carrier_id = "718"
- mcc="234"
- mnc="34"
- apn="ims"
- type="ims"
- protocol="IPV6"
- roaming_protocol="IPV6"
- user_visible="false"
/>
<apn carrier="Truphone"
@@ -5668,7 +4775,7 @@
mnc="25"
apn="truphone.com"
mmsc="http://mmsc.truphone.com:1981/mm1"
- type="default,ia,supl,mms,dun"
+ type="default,supl,mms,dun"
mvno_type="gid"
mvno_match_data="547275554B3030656E"
/>
@@ -5718,7 +4825,7 @@
apn="em"
mvno_match_data="234500022"
mvno_type="imsi"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Jersey Telecom"
@@ -5739,39 +4846,7 @@
mcc="234"
mnc="50"
apn="pepper"
- type="default,ia,supl"
- />
-
- <apn carrier="MobileUC IMS"
- carrier_id = "10031"
- mcc="234"
- mnc="53"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
- />
-
- <apn carrier="MobileUC Hotspot"
- carrier_id = "10031"
- mcc="234"
- mnc="53"
- apn="globalhotspot"
- type="dun"
- user_visible="false"
- />
-
- <apn carrier="MobileUC"
- carrier_id = "10031"
- mcc="234"
- mnc="53"
- apn="globaldata"
- type="default,ia,mms,supl,hipri,fota"
- mmsc="http://mms.mobileuc.global/"
- mmsproxy="37.18.129.98"
- mmsport="8008"
- user_editable="false"
+ type="default,supl"
/>
<apn carrier="C&amp;W Guernsey Internet"
@@ -5779,7 +4854,7 @@
mcc="234"
mnc="55"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Sure Picture Messaging"
@@ -5798,7 +4873,7 @@
mnc="57"
apn="mobile.sky"
authtype="0"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS"
@@ -5816,7 +4891,7 @@
mcc="234"
mnc="58"
apn="3gpronto"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Manx Telecom Contract MMS"
@@ -5852,7 +4927,7 @@
apn="web.manxpronto.net"
user="gprs"
password="gprs"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="EE Internet"
@@ -5863,7 +4938,7 @@
user="eesecure"
password="secure"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="EE MMS"
@@ -5897,7 +4972,7 @@
mmsc="http://mms.um.three.co.uk:10021/mmsc"
mmsproxy="mms.three.co.uk"
mmsport="8799"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="DK TDC"
@@ -5906,7 +4981,7 @@
mnc="01"
apn="internet"
authtype="0"
- type="default,ia,supl,fota,dun"
+ type="default,supl,fota,dun"
/>
<apn carrier="DK TDC mms"
@@ -5925,7 +5000,7 @@
mcc="238"
mnc="01"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="2380101xxxxxxxx"
mvno_type="imsi"
/>
@@ -5947,7 +5022,7 @@
mcc="238"
mnc="01"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
mvno_type="spn"
mvno_match_data="TELMORE"
/>
@@ -5973,7 +5048,7 @@
proxy="194.182.251.15"
port="8080"
authtype="0"
- type="default,ia"
+ type="default"
mvno_type="spn"
mvno_match_data="TELMORE"
/>
@@ -5983,7 +5058,7 @@
mcc="238"
mnc="02"
apn="Internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Telenor MMS"
@@ -6005,7 +5080,7 @@
mmsc="http://mms.3.dk/"
mmsproxy="mmsproxy.3.dk"
mmsport="8799"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
protocol="IPV4V6"
roaming_protocol="IP"
/>
@@ -6019,7 +5094,6 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
- type="default,ia,supl"
/>
<apn carrier="Telia SurfPort"
@@ -6027,7 +5101,7 @@
mcc="238"
mnc="20"
apn="www.internet.mtelia.dk"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Telia MMS"
@@ -6046,7 +5120,7 @@
mcc="238"
mnc="20"
apn="webSP"
- type="default,ia,supl"
+ type="default,supl"
mvno_type="spn"
mvno_match_data="Call me"
/>
@@ -6069,7 +5143,7 @@
mcc="238"
mnc="20"
apn="webSP"
- type="default,ia,supl"
+ type="default,supl"
mvno_type="spn"
mvno_match_data="DLG Tele"
/>
@@ -6101,7 +5175,7 @@
mcc="238"
mnc="77"
apn="Internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Telenor MMS"
@@ -6131,7 +5205,7 @@
mcc="240"
mnc="01"
apn="online.telia.se"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Halebop Internet"
@@ -6139,7 +5213,7 @@
mcc="240"
mnc="01"
apn="halebop.telia.se"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="240017xxxxxxxxx"
mvno_type="imsi"
/>
@@ -6165,7 +5239,7 @@
mmsc="http://mms.tre.se"
mmsproxy="mmsproxy.tre.se"
mmsport="8799"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
protocol="IPV4V6"
roaming_protocol="IP"
/>
@@ -6178,7 +5252,7 @@
mmsc="http://mms.tre.se"
mmsproxy="mmsproxy.tre.se"
mmsport="8799"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
protocol="IPV4V6"
roaming_protocol="IP"
/>
@@ -6187,7 +5261,7 @@
mcc="240"
mnc="05"
apn="4g.tele2.se"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="Tele2"
mvno_type="spn"
/>
@@ -6208,7 +5282,7 @@
mcc="240"
mnc="05"
apn="internet.tele2.se"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="Tele2"
mvno_type="spn"
/>
@@ -6243,7 +5317,7 @@
mcc="240"
mnc="05"
apn="online.telia.se"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="Telia"
mvno_type="spn"
/>
@@ -6253,7 +5327,7 @@
mcc="240"
mnc="05"
apn="halebop.telia.se"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="Halebop"
mvno_type="spn"
/>
@@ -6276,7 +5350,7 @@
mcc="240"
mnc="06"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS"
@@ -6293,7 +5367,7 @@
mcc="240"
mnc="07"
apn="4g.tele2.se"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Tele2 MMS"
@@ -6312,7 +5386,7 @@
mcc="240"
mnc="07"
apn="internet.tele2.se"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Tele2 MMS 3G"
@@ -6332,7 +5406,7 @@
apn="internet.tele2.no"
user="wap"
password="wap"
- type="default,ia,supl"
+ type="default,supl"
authtype="1"
mvno_match_data="2400768xxxxxxxx"
mvno_type="imsi"
@@ -6350,17 +5424,6 @@
mvno_type="imsi"
/>
- <apn carrier="Tele2 IMS"
- carrier_id = "1696"
- mcc="240"
- mnc="07"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
- />
-
<apn carrier="Jump"
carrier_id = "2138"
mcc="240"
@@ -6394,7 +5457,7 @@
mcc="240"
mnc="08"
apn="services.telenor.se"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Telenor MMS"
@@ -6413,7 +5476,7 @@
mcc="240"
mnc="09"
apn="com4"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Spring data"
@@ -6421,7 +5484,7 @@
mcc="240"
mnc="10"
apn="data.springmobil.se"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Spring MMS"
@@ -6445,14 +5508,13 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
- type="default,ia,supl"
/>
<apn carrier="Halebop Internet"
mcc="240"
mnc="017"
apn="halebop.telia.se"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Halebop MMS"
@@ -6472,7 +5534,7 @@
mcc="240"
mnc="24"
apn="4g.tele2.se"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="Tele2"
mvno_type="spn"
/>
@@ -6495,7 +5557,7 @@
mcc="240"
mnc="24"
apn="internet.tele2.se"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="Tele2"
mvno_type="spn"
/>
@@ -6518,7 +5580,7 @@
mcc="240"
mnc="42"
apn="uros.iot"
- type="default,ia"
+ type="default"
mvno_type="gid"
mvno_match_data="C5"
/>
@@ -6528,7 +5590,7 @@
mcc="242"
mnc="01"
apn="internet.ventelo.no"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="24201700xxxxxxx"
mvno_type="imsi"
/>
@@ -6557,18 +5619,7 @@
mmsc="http://mmsc"
mmsproxy="10.10.10.11"
mmsport="8080"
- type="default,ia,supl,mms"
- />
-
- <apn carrier="Telenor IMS"
- carrier_id = "958"
- mcc="242"
- mnc="01"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
+ type="default,supl,mms"
/>
<apn carrier="NetCom"
@@ -6579,7 +5630,7 @@
mmsc="http://mm/"
mmsproxy="212.169.66.4"
mmsport="8080"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="Chess MMS"
@@ -6603,7 +5654,7 @@
mcc="242"
mnc="02"
apn="netcom"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="2420256xxxxxxxx"
mvno_type="imsi"
/>
@@ -6616,7 +5667,7 @@
mmsc="http://mmsc.tele2.no"
mmsproxy="193.12.40.14"
mmsport="8080"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="NwN Internet"
@@ -6624,7 +5675,7 @@
mcc="242"
mnc="05"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="NwN MMS"
@@ -6643,47 +5694,7 @@
mcc="242"
mnc="09"
apn="com4"
- type="default,ia,supl"
- />
-
- <apn carrier="ice.net"
- mcc="242"
- mnc="14"
- apn="ice.net"
- type="default,ia"
- protocol="IPV4V6"
- />
-
- <apn carrier="mms.ice.net"
- mcc="242"
- mnc="14"
- apn="mms.ice.net"
- mmsc="http://mmsc/"
- mmsproxy="185.83.167.222"
- mmsport="8080"
- type="mms"
- />
-
- <apn carrier="eRate Internet"
- carrier_id = "2524"
- mcc="242"
- mnc="15"
- mvno_match_data="0E"
- mvno_type="gid"
- apn="internet"
- type="default,supl,ims,ia"
- />
-
- <apn carrier="eRate MMS"
- carrier_id = "2524"
- mcc="242"
- mnc="15"
- mmsc="http://mms.media"
- apn="mms"
- mvno_match_data="0E"
- mvno_type="gid"
- mmsport="80"
- type="mms"
+ type="default,supl"
/>
<apn carrier="Lycamobile"
@@ -6695,7 +5706,6 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
- type="default,ia,supl"
/>
<apn carrier="DNA Internet"
@@ -6703,7 +5713,7 @@
mcc="244"
mnc="03"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="DNA MMS"
@@ -6722,7 +5732,7 @@
mcc="244"
mnc="04"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="DNA MMS"
@@ -6743,7 +5753,7 @@
mcc="244"
mnc="05"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Elisa MMS"
@@ -6762,7 +5772,7 @@
mcc="244"
mnc="05"
apn="internet.saunalahti"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="2440541"
mvno_type="imsi"
/>
@@ -6787,7 +5797,7 @@
apn="internet.song.fi"
user="song@internet"
password="songnet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="TDC MMS"
@@ -6806,7 +5816,7 @@
mcc="244"
mnc="12"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="DNA MMS"
@@ -6826,7 +5836,7 @@
mnc="12"
apn="dnapro.fi"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="DNA Pro MMS"
@@ -6847,7 +5857,7 @@
mnc="12"
apn="inet.tdc.fi"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="TDC MMS Finland"
@@ -6867,7 +5877,7 @@
mcc="244"
mnc="13"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="DNA MMS"
@@ -6888,7 +5898,7 @@
mcc="244"
mnc="21"
apn="internet.saunalahti"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Saunalahti MMS"
@@ -6907,7 +5917,7 @@
mcc="244"
mnc="91"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="SONERA MMS"
@@ -6943,7 +5953,7 @@
user="omni"
password="omni"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Bite Internet"
@@ -6951,7 +5961,7 @@
mcc="246"
mnc="02"
apn="wap"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Bite MMS"
@@ -6976,7 +5986,7 @@
mmsc="http://mmsc.tele2.lt/"
mmsproxy="193.12.40.29"
mmsport="8080"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="Test FOTA"
@@ -7044,7 +6054,7 @@
mnc="081"
apn="VZWINTERNET"
mmsc="http://mms.vtext.com/servlets/mms"
- type="default,ia,dun"
+ type="default,dun"
carrier_enabled="false"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -7057,7 +6067,7 @@
mnc="081"
apn="VZWINTERNET"
mmsc="http://mms.vtext.com/servlets/mms"
- type="default,ia,dun"
+ type="default,dun"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -7072,7 +6082,7 @@
mnc="081"
apn="VZWINTERNET"
mmsc="http://mms.vtext.com/servlets/mms"
- type="default,ia,dun"
+ type="default,dun"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -7171,7 +6181,7 @@
mnc="81"
apn="VZWINTERNET"
mmsc="http://mms.vtext.com/servlets/mms"
- type="default,ia,dun"
+ type="default,dun"
carrier_enabled="false"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -7184,7 +6194,7 @@
mnc="81"
apn="VZWINTERNET"
mmsc="http://mms.vtext.com/servlets/mms"
- type="default,ia,dun"
+ type="default,dun"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -7199,7 +6209,7 @@
mnc="81"
apn="VZWINTERNET"
mmsc="http://mms.vtext.com/servlets/mms"
- type="default,ia,dun"
+ type="default,dun"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -7214,7 +6224,7 @@
mcc="247"
mnc="01"
apn="internet.lmt.lv"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="LMT MMS"
@@ -7231,7 +6241,7 @@
mcc="247"
mnc="02"
apn="internet.tele2.lv"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Tele2 LV MMS"
@@ -7253,7 +6263,7 @@
mcc="247"
mnc="05"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Bite LV MMS"
@@ -7277,7 +6287,7 @@
apn="wap"
proxy="213.226.131.133"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="EMT Internet"
@@ -7285,7 +6295,7 @@
mcc="248"
mnc="01"
apn="internet.emt.ee"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="EMT MMS"
@@ -7306,7 +6316,7 @@
apn="wap.emt.ee"
proxy="217.71.32.236"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Send"
@@ -7317,7 +6327,7 @@
mmsc="http://mms.emt.ee/servlets/mms"
mmsproxy="217.71.32.82"
mmsport="8080"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
mvno_match_data="248010x2"
mvno_type="imsi"
/>
@@ -7330,7 +6340,7 @@
mmsc="http://mms.emt.ee/servlets/mms"
mmsproxy="217.71.32.82"
mmsport="8080"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
mvno_match_data="248010x3"
mvno_type="imsi"
/>
@@ -7340,7 +6350,7 @@
mcc="248"
mnc="02"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Elisa MMS"
@@ -7361,7 +6371,7 @@
apn="wap"
proxy="194.204.2.6"
port="8000"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Tele2 Internet"
@@ -7369,7 +6379,7 @@
mcc="248"
mnc="03"
apn="internet.tele2.ee"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Tele2 MMS"
@@ -7402,7 +6412,7 @@
user="mts"
password="mts"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
/>
@@ -7428,7 +6438,7 @@
apn="internet"
user=""
password=""
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Megafon MMS"
@@ -7450,7 +6460,7 @@
mcc="250"
mnc="11"
apn="yota.ru"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="TELE2 Internet"
@@ -7458,7 +6468,7 @@
mcc="250"
mnc="20"
apn="internet.tele2.ru"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="TELE2 MMS"
@@ -7479,7 +6489,7 @@
apn="vtb"
user=""
password=""
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="VODA internet"
@@ -7487,7 +6497,7 @@
mcc="250"
mnc="28"
apn="vodalte.ru"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Next Mobile"
@@ -7497,7 +6507,7 @@
apn="Next"
user=""
password=""
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Sberbank-Telecom Internet"
@@ -7507,7 +6517,7 @@
apn="internet.sberbank-tele.com"
user=""
password=""
- type="default,ia,supl"
+ type="default,supl"
mvno_type="gid"
mvno_match_data="FA3207"
/>
@@ -7545,7 +6555,7 @@
apn="m.tinkoff"
user=""
password=""
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Beeline Internet"
@@ -7556,7 +6566,7 @@
user="beeline"
password="beeline"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Beeline MMS"
@@ -7589,7 +6599,7 @@
mcc="255"
mnc="01"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Beeline-internet"
@@ -7597,7 +6607,7 @@
mcc="255"
mnc="02"
apn="internet.beeline.ua"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Beeline MMS"
@@ -7634,7 +6644,7 @@
user="igprs"
password="internet"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Djuice MMS"
@@ -7658,7 +6668,7 @@
mcc="255"
mnc="03"
apn="www.djuice.com.ua"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="DJUICE"
mvno_type="spn"
/>
@@ -7668,7 +6678,7 @@
mcc="255"
mnc="06"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Life:) MMS"
@@ -7687,7 +6697,7 @@
mcc="255"
mnc="07"
apn="3g.utel.ua"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Utel MMS"
@@ -7709,7 +6719,7 @@
authtype="1"
proxy="10.200.15.15"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Velcom MMS"
@@ -7736,7 +6746,7 @@
protocol="IPV4V6"
roaming_protocol="IPV4V6"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MTS MMS"
@@ -7759,7 +6769,7 @@
mnc="04"
apn="internet.life.com.by"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="life:) MMS"
@@ -7779,7 +6789,7 @@
mcc="259"
mnc="01"
apn="wap.orange.md"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Orange_MMS_GPRS"
@@ -7798,7 +6808,7 @@
mcc="259"
mnc="02"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Moldcell MMS"
@@ -7817,7 +6827,7 @@
mcc="259"
mnc="05"
apn="internet3g.unite.md"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Unite Internet PostPay"
@@ -7825,7 +6835,7 @@
mcc="259"
mnc="05"
apn="internet.unite.md"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Unite MMS"
@@ -7844,7 +6854,7 @@
mcc="260"
mnc="01"
apn="plus"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Plus MMS"
@@ -7858,7 +6868,7 @@
type="mms"
/>
- <apn carrier="T-Mobile Internet"
+ <apn carrier="T-mobile.pl"
carrier_id = "2367"
mcc="260"
mnc="02"
@@ -7871,33 +6881,18 @@
mcc="260"
mnc="02"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- authtype="1"
+ type="default,supl"
/>
- <apn carrier="HOS"
+ <apn carrier="T-mobile.pl"
carrier_id = "2367"
mcc="260"
mnc="02"
- apn="hos"
+ apn="mms"
mmsc="http://mms/servlets/mms"
mmsproxy="213.158.194.226"
mmsport="8080"
- type="xcap,mms"
- authtype="1"
- protocol="IPV4V6"
- user_visible="false"
- />
-
- <apn carrier="Telekom IMS"
- mcc="260"
- mnc="02"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
+ type="mms"
/>
<apn carrier="heyahinternet"
@@ -7905,7 +6900,7 @@
mcc="260"
mnc="02"
apn="heyah.pl"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="heyahmms"
@@ -7927,7 +6922,7 @@
user="internet"
password="internet"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Orange MMS"
@@ -7949,7 +6944,7 @@
mcc="260"
mnc="06"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Play MMS"
@@ -7971,7 +6966,6 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
- type="default,ia,supl"
/>
<apn carrier="Truphone"
@@ -7980,7 +6974,7 @@
mnc="33"
apn="truphone.com"
mmsc="http://mmsc.truphone.com:1981/mm1"
- type="default,ia,supl,mms,dun"
+ type="default,supl,mms,dun"
mvno_type="gid"
mvno_match_data="547275554B3030656E"
/>
@@ -8005,14 +6999,14 @@
mmsc="http://mmsc.rebtel.com"
mmsproxy="185.114.248.80"
mmsport="8080"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="Telekom Internet"
- carrier_id = "3"
+ carrier_id = "2395"
mcc="262"
mnc="01"
- apn="internet.v6.telekom"
+ apn="internet.telekom"
user="telekom"
password="telekom"
authtype="1"
@@ -8020,19 +7014,24 @@
protocol="IPV4V6"
/>
- <apn carrier="Telekom IMS"
- carrier_id = "3"
+ <apn carrier="Telekom Internet"
+ carrier_id = "2395"
mcc="262"
mnc="01"
- apn="ims"
- type="ims"
+ apn="internet.telekom"
+ user="telekom"
+ password="telekom"
+ mmsc="http://mms.t-mobile.de/servlets/mms"
+ mmsproxy="109.237.176.193"
+ mmsport="8008"
+ bearer_bitmask="1|2|3|4|5|6|7|8|9|10|11|12|13|14|15|16|17"
+ authtype="1"
+ type="mms"
protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
/>
- <apn carrier="HOS"
- carrier_id = "3"
+ <apn carrier="Telekom Internet"
+ carrier_id = "2395"
mcc="262"
mnc="01"
apn="hos"
@@ -8041,8 +7040,9 @@
mmsc="http://mms.t-mobile.de/servlets/mms"
mmsproxy="109.237.176.193"
mmsport="8008"
+ bearer_bitmask="18"
authtype="1"
- type="xcap,mms"
+ type="mms"
protocol="IPV4V6"
user_visible="false"
/>
@@ -8060,51 +7060,7 @@
mmsport="8008"
mvno_match_data="debitel"
mvno_type="spn"
- />
-
- <apn carrier="Congstar Internet"
- carrier_id = "2092"
- mcc="262"
- mnc="01"
- apn="internet.v6.telekom"
- user="congstar"
- password="cs"
- authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- mvno_match_data="44"
- mvno_type="gid"
- />
-
- <apn carrier="Congstar IMS"
- carrier_id = "2092"
- mcc="262"
- mnc="01"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- mvno_match_data="44"
- mvno_type="gid"
- user_visible="false"
- />
-
- <apn carrier="Congstar HOS"
- carrier_id = "2092"
- mcc="262"
- mnc="01"
- apn="hos"
- user="telekom"
- password="telekom"
- mmsc="http://mms.t-mobile.de/servlets/mms"
- mmsproxy="109.237.176.193"
- mmsport="8008"
- authtype="1"
- type="xcap,mms"
- protocol="IPV4V6"
- mvno_match_data="44"
- mvno_type="gid"
- user_visible="false"
+ protocol="IP"
/>
<apn carrier="Vodafone DE"
@@ -8132,7 +7088,7 @@
mcc="262"
mnc="02"
apn="web.vodafone.de"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Vodafone DE-IMS"
@@ -8142,8 +7098,6 @@
apn="ims"
type="ims"
protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
/>
<apn carrier="E-Plus Internet"
@@ -8154,7 +7108,7 @@
user="eplus"
password="internet"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="E-Plus MMS"
@@ -8179,102 +7133,11 @@
user="mvno"
password="mvno"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="26203483"
mvno_type="imsi"
/>
- <apn carrier="1and1 Internet"
- carrier_id = "2536"
- mcc="262"
- mnc="03"
- apn="internet"
- mmsc="http://10.81.0.7:8002"
- mmsproxy="82.113.100.5"
- mmsport="8080"
- type="default,ia,supl,mms"
- mvno_match_data="26203293"
- mvno_type="imsi"
- />
-
- <apn carrier="1and1 IMS"
- carrier_id = "2536"
- mcc="262"
- mnc="03"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
- mvno_match_data="26203293"
- mvno_type="imsi"
- />
-
- <apn carrier="1and1 Internet"
- carrier_id = "2536"
- mcc="262"
- mnc="03"
- apn="internet"
- mmsc="http://10.81.0.7:8002"
- mmsproxy="82.113.100.5"
- mmsport="8080"
- type="default,ia,supl,mms"
- mvno_match_data="26203330"
- mvno_type="imsi"
- />
-
- <apn carrier="1and1 IMS"
- carrier_id = "2536"
- mcc="262"
- mnc="03"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
- mvno_match_data="26203330"
- mvno_type="imsi"
- />
-
- <apn carrier="Telekom Internet"
- carrier_id = "3"
- mcc="262"
- mnc="06"
- apn="internet.v6.telekom"
- user="telekom"
- password="telekom"
- authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- />
-
- <apn carrier="Telekom IMS"
- carrier_id = "3"
- mcc="262"
- mnc="06"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
- />
-
- <apn carrier="HOS"
- carrier_id = "3"
- mcc="262"
- mnc="06"
- apn="hos"
- user="telekom"
- password="telekom"
- mmsc="http://mms.t-mobile.de/servlets/mms"
- mmsproxy="109.237.176.193"
- mmsport="8008"
- authtype="1"
- type="xcap,mms"
- protocol="IPV4V6"
- user_visible="false"
- />
-
<apn carrier="o2 Internet"
mcc="262"
mnc="07"
@@ -8282,7 +7145,7 @@
mmsc="http://10.81.0.7:8002"
mmsproxy="82.113.100.5"
mmsport="8080"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
mvno_match_data="2620739"
mvno_type="imsi"
/>
@@ -8295,7 +7158,6 @@
type="ims"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
- user_visible="false"
/>
<apn carrier="o2 Internet Prepaid"
@@ -8305,7 +7167,7 @@
mmsc="http://10.81.0.7:8002"
mmsproxy="82.113.100.6"
mmsport="8080"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
mvno_match_data="2620749"
mvno_type="imsi"
/>
@@ -8318,7 +7180,7 @@
mmsc="http://10.81.0.7:8002"
mmsproxy="82.113.100.6"
mmsport="8080"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
mvno_match_data="26207515"
mvno_type="imsi"
/>
@@ -8331,7 +7193,7 @@
mmsc="http://10.81.0.7:8002"
mmsproxy="82.113.100.6"
mmsport="8080"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
mvno_match_data="26207520"
mvno_type="imsi"
/>
@@ -8344,89 +7206,11 @@
mmsc="http://10.81.0.7:8002"
mmsproxy="82.113.100.8"
mmsport="8080"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
mvno_match_data="26207500"
mvno_type="imsi"
/>
- <apn carrier="1and1 Internet"
- carrier_id = "2536"
- mcc="262"
- mnc="07"
- apn="internet"
- mmsc="http://10.81.0.7:8002"
- mmsproxy="82.113.100.5"
- mmsport="8080"
- type="default,ia,supl,mms"
- mvno_match_data="118004"
- mvno_type="gid"
- />
-
- <apn carrier="1and1 IMS"
- carrier_id = "2536"
- mcc="262"
- mnc="07"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
- mvno_match_data="118004"
- mvno_type="gid"
- />
-
- <apn carrier="1and1 Internet"
- carrier_id = "2536"
- mcc="262"
- mnc="07"
- apn="internet"
- mmsc="http://10.81.0.7:8002"
- mmsproxy="82.113.100.5"
- mmsport="8080"
- type="default,ia,supl,mms"
- mvno_match_data="118006"
- mvno_type="gid"
- />
-
- <apn carrier="1and1 IMS"
- carrier_id = "2536"
- mcc="262"
- mnc="07"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
- mvno_match_data="118006"
- mvno_type="gid"
- />
-
- <apn carrier="1and1 Internet"
- carrier_id = "2536"
- mcc="262"
- mnc="07"
- apn="internet"
- mmsc="http://10.81.0.7:8002"
- mmsproxy="82.113.100.5"
- mmsport="8080"
- type="default,ia,supl,mms"
- mvno_match_data="250109"
- mvno_type="gid"
- />
-
- <apn carrier="1and1 IMS"
- carrier_id = "2536"
- mcc="262"
- mnc="07"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
- mvno_match_data="250109"
- mvno_type="gid"
- />
-
<apn carrier="O2 DE IMS"
carrier_id = "1454"
mcc="262"
@@ -8445,7 +7229,7 @@
user="mvno"
password="mvno"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="26220"
mvno_type="imsi"
/>
@@ -8456,7 +7240,7 @@
mnc="42"
apn="truphone.com"
mmsc="http://mmsc.truphone.com:1981/mm1"
- type="default,ia,supl,mms,dun"
+ type="default,supl,mms,dun"
mvno_type="gid"
mvno_match_data="547275554B3030656E"
/>
@@ -8482,7 +7266,6 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
- type="default,ia,supl"
/>
<apn carrier="Vodafone Net2"
@@ -8502,7 +7285,7 @@
mmsc="http://mms.vodafone.pt/servlets/mms"
mmsproxy="iproxy.vodafone.pt"
mmsport="80"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="vodafone P dun"
@@ -8529,7 +7312,7 @@
mmsc="http://mmsc:10021/mmsc"
mmsproxy="62.169.66.5"
mmsport="8799"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="Optimus HotSpot"
@@ -8549,7 +7332,6 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
- type="default,ia,supl"
/>
<apn carrier="tmn internet"
@@ -8565,7 +7347,7 @@
mcc="268"
mnc="06"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="mms tmn"
@@ -8604,14 +7386,14 @@
password="wap"
proxy="194.154.192.98"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MTXC"
mcc="270"
mnc="02"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Tango WAP"
@@ -8623,7 +7405,7 @@
password="tango"
proxy="130.244.196.90"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Tango MMS"
@@ -8646,7 +7428,7 @@
apn="netgprs.com"
user="tsl"
password="tsl"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="BB00"
mvno_type="gid"
/>
@@ -8658,7 +7440,7 @@
apn="netgprs.com"
user="tsl"
password="tsl"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="LU-Transatel"
mvno_type="spn"
/>
@@ -8671,7 +7453,7 @@
mmsc="http://mms.orange.lu"
mmsproxy="212.88.139.44"
mmsport="8080"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="Vodafone IE"
@@ -8679,7 +7461,7 @@
mcc="272"
mnc="01"
apn="live.vodafone.com"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Vodafone IE-MMS"
@@ -8712,7 +7494,7 @@
mmsc="http://mms.three.ie"
mmsproxy="62.40.32.40"
mmsport="8080"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="O2.ie Mobile Hotspot"
@@ -8732,7 +7514,7 @@
user="my"
password="wap"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Meteor MMS"
@@ -8757,7 +7539,7 @@
mmsc="http://mms.um.3ireland.ie:10021/mmsc"
mmsproxy="mms.3ireland.ie"
mmsport="8799"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="Tesco"
@@ -8768,7 +7550,7 @@
mmsc="http://mmc1/servlets/mms"
mmsproxy="10.1.11.19"
mmsport="8080"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
mvno_match_data="0A"
mvno_type="gid"
/>
@@ -8782,7 +7564,6 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
- type="default,ia,supl"
/>
<apn carrier="Siminn Internet"
@@ -8790,7 +7571,7 @@
mcc="274"
mnc="01"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Siminn MMS"
@@ -8809,7 +7590,7 @@
mcc="274"
mnc="02"
apn="gprs.is"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Vodafone MMS"
@@ -8829,7 +7610,7 @@
mnc="03"
apn="gprs.is"
authtype="0"
- type="default,ia,supl,fota,dun"
+ type="default,supl,fota,dun"
/>
<apn carrier="Vodafone MMS"
@@ -8862,7 +7643,7 @@
apn="net.nova.is"
proxy="10.10.2.60"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Vodafone MT"
@@ -8872,7 +7653,7 @@
apn="internet"
user="internet"
password="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Vodafone MT-MMS"
@@ -8894,7 +7675,7 @@
mmsc="http://mmsc.cyta.com.cy"
mmsproxy="212.31.96.161"
mmsport="8080"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="MTN MMS"
@@ -8915,7 +7696,7 @@
mcc="280"
mnc="10"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="PrimeTel"
@@ -8924,7 +7705,7 @@
mnc="20"
apn="ip.primetel"
mmsc="http://mms.primetel"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="Orange Armenia MMS"
@@ -8944,7 +7725,7 @@
mcc="283"
mnc="10"
apn="Internet"
- type="default,ia"
+ type="default"
authtype="1"
/>
@@ -8953,7 +7734,7 @@
mcc="284"
mnc="01"
apn="inet-gprs.mtel.bg"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MTel MMS"
@@ -8978,7 +7759,7 @@
user="vivacom"
password="vivacom"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Vivacom MMS"
@@ -9001,7 +7782,7 @@
mnc="05"
apn="telenorbg"
authtype="0"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Telenor MMS"
@@ -9022,7 +7803,7 @@
mcc="284"
mnc="11"
apn="bulsat.com"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MAX TELECOM"
@@ -9030,7 +7811,7 @@
mcc="284"
mnc="13"
apn="apn.maxtelecom.bg"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="TURKCELL INTERNET"
@@ -9038,7 +7819,7 @@
mcc="286"
mnc="01"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="TURKCELL MMS"
@@ -9061,7 +7842,7 @@
mnc="02"
apn="internet"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Vodafone MMS"
@@ -9084,7 +7865,7 @@
mnc="03"
apn="internet"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="AVEA MMS"
@@ -9106,7 +7887,7 @@
mcc="290"
mnc="01"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Tele MMS"
@@ -9128,7 +7909,7 @@
user="simobil"
password="internet"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Si.mobil MMS"
@@ -9145,27 +7926,6 @@
type="mms"
/>
- <apn carrier="069 web"
- mcc="293"
- mnc="40"
- apn="websi"
- type="default,ia,supl"
- mvno_type="imsi"
- mvno_match_data="293400130"
- />
-
- <apn carrier="069 mms"
- mcc="293"
- mnc="40"
- apn="mmssi"
- mmsc="http://mms.hot.si"
- mmsproxy="80.95.224.47"
- mmsport="8080"
- type="mms"
- mvno_type="imsi"
- mvno_match_data="293400130"
- />
-
<apn carrier="Mobilni Internet"
carrier_id = "1710"
mcc="293"
@@ -9177,7 +7937,7 @@
mmsc="http://mms.mobitel.si/servlets/mms"
mmsproxy="213.229.249.40"
mmsport="8080"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="T2"
@@ -9188,7 +7948,7 @@
mmsc="http://www.mms.t-2.net:8002"
mmsproxy="172.20.18.137"
mmsport="8080"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="Tusmobil Internet"
@@ -9199,7 +7959,7 @@
user="tusmobil"
password="internet"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Tusmobil MMS"
@@ -9226,7 +7986,7 @@
mmsport="8080"
mvno_type="imsi"
mvno_match_data="29370029xxxxxxx"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="T-Mobile MK Internet"
@@ -9244,8 +8004,7 @@
apn="internet"
user="internet"
password="t-mobile"
- authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="T-Mobile MK MMS"
@@ -9258,7 +8017,6 @@
mmsc="http://mms.t-mobile.com.mk"
mmsproxy="62.162.155.227"
mmsport="8080"
- authtype="1"
type="mms"
/>
@@ -9271,7 +8029,7 @@
password="Internet"
proxy="http://wap.planet.mk"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Cosmofon MMS"
@@ -9294,7 +8052,7 @@
password="vipoperator"
proxy="78.40.0.1"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS"
@@ -9319,7 +8077,6 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
- type="default,ia,supl"
/>
<apn carrier="EMnify"
@@ -9329,7 +8086,7 @@
apn="em"
mvno_match_data="2950509"
mvno_type="imsi"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="EMnify"
@@ -9337,7 +8094,7 @@
mcc="295"
mnc="09"
apn="em"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="BICS"
@@ -9347,18 +8104,36 @@
apn="bicsapn"
mvno_match_data="BICS"
mvno_type="spn"
- type="default,ia"
+ type="default"
+ />
+
+ <apn carrier="T-Mobile MMS"
+ carrier_id = "2088"
+ mcc="297"
+ mnc="02"
+ apn="mms"
+ user="38267"
+ password="38267"
+ mmsc="http://192.168.180.100/servlets/mms"
+ mmsproxy="10.0.5.19"
+ mmsport="8080"
+ type="mms"
+ mvno_match_data="Telekom.me"
+ mvno_type="spn"
/>
<apn carrier="T-Mobile Internet"
- carrier_id = "2363"
+ carrier_id = "2088"
mcc="297"
mnc="02"
- apn="tmcg-4g"
+ apn="tmcg-wnw"
user="38267"
password="38267"
- authtype="1"
- type="default,ia,supl"
+ proxy="10.0.5.19"
+ port="8080"
+ type="default,supl"
+ mvno_match_data="Telekom.me"
+ mvno_type="spn"
/>
<apn carrier="TELUS"
@@ -9366,7 +8141,7 @@
mcc="302"
mnc="220"
apn="sp.telus.com"
- type="default,ia,mms,supl"
+ type="default,mms,supl"
mmsc="http://aliasredirect.net/proxy/mmsc"
mmsproxy="mmscproxy.mobility.ca"
mmsport="8799"
@@ -9381,6 +8156,7 @@
apn="isp.telus.com"
server="*"
type="dun"
+ protocol="IPV4"
mvno_match_data="5455"
mvno_type="gid"
/>
@@ -9390,7 +8166,7 @@
mcc="302"
mnc="220"
apn="sp.koodo.com"
- type="default,ia,mms,supl"
+ type="default,mms,supl"
mmsc="http://aliasredirect.net/proxy/koodo/mmsc"
mmsproxy="mmscproxy.mobility.ca"
mmsport="8799"
@@ -9405,6 +8181,7 @@
apn="sp.koodo.com"
server="*"
type="dun"
+ protocol="IPV4"
mvno_match_data="4B4F"
mvno_type="gid"
/>
@@ -9414,7 +8191,7 @@
mcc="302"
mnc="220"
apn="sp.mb.com"
- type="default,ia,mms,supl"
+ type="default,mms,supl"
mmsc="http://aliasredirect.net/proxy/mb/mmsc"
mmsproxy="mmscproxy.mobility.ca"
mmsport="8799"
@@ -9428,6 +8205,7 @@
mnc="220"
apn="isp.mb.com"
type="dun"
+ protocol="IPV4"
mvno_type="gid"
mvno_match_data="5043"
/>
@@ -9437,7 +8215,7 @@
mcc="302"
mnc="220"
apn="sp.mb.com"
- type="default,ia,mms,supl,fota,hipri"
+ type="default,mms,supl,fota,hipri"
mmsc="http://aliasredirect.net/proxy/mb/mmsc"
mmsproxy="mmscproxy.mobility.ca"
mmsport="8799"
@@ -9451,6 +8229,7 @@
mnc="220"
apn="isp.mb.com"
type="dun"
+ protocol="IPV4"
mvno_type="gid"
mvno_match_data="4D4F"
/>
@@ -9462,6 +8241,7 @@
apn="isp.telus.com"
server="*"
type="dun"
+ protocol="IPV4"
mvno_match_data="5455"
mvno_type="gid"
/>
@@ -9473,6 +8253,7 @@
apn="sp.koodo.com"
server="*"
type="dun"
+ protocol="IPV4"
mvno_match_data="4B4F"
mvno_type="gid"
/>
@@ -9483,11 +8264,33 @@
mnc="221"
apn="isp.mb.com"
type="dun"
+ protocol="IPV4"
mvno_type="gid"
mvno_match_data="5043"
/>
- <apn carrier="Eastlink MMS"
+ <apn carrier="MOWAP"
+ carrier_id = "2055"
+ mcc="302"
+ mnc="320"
+ apn="wap.davewireless.com"
+ proxy="10.100.3.4"
+ port="8080"
+ type="default,supl"
+ />
+
+ <apn carrier="MOMMS"
+ carrier_id = "2055"
+ mcc="302"
+ mnc="320"
+ apn="mms.davewireless.com"
+ mmsc="http://mms.mobilicity.net"
+ mmsproxy="10.100.3.4"
+ mmsport="8080"
+ type="mms"
+ />
+
+ <apn carrier="MMS"
carrier_id = "2252"
mcc="302"
mnc="270"
@@ -9496,29 +8299,14 @@
mmsproxy="10.232.12.49"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
/>
- <apn carrier="Eastlink Internet"
+ <apn carrier="Internet"
carrier_id = "2252"
mcc="302"
mnc="270"
apn="wisp.mobi.eastlink.ca"
- type="default,ia,supl"
- protocol="IPV4V6"
- />
-
- <apn carrier="Chatr Internet"
- carrier_id = "2055"
- mcc="302"
- mnc="320"
- apn="chatrweb.apn"
- type="default,ia,mms,supl"
- mmsc="http://mms.chatrwireless.com"
- mmsproxy="mmsproxy.chatrwireless.com"
- mmsport="80"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Rogers IMS"
@@ -9540,6 +8328,7 @@
mvno_match_data="DD"
mvno_type="gid"
protocol="IPV4V6"
+ roaming_protocol="IP"
/>
<apn carrier="Fido Internet"
@@ -9547,13 +8336,14 @@
mcc="302"
mnc="370"
apn="ltemobile.apn"
- type="default,ia,mms,supl,fota,hipri"
+ type="default,mms,supl,fota,hipri"
mmsproxy="mmsproxy.fido.ca"
mmsc="http://mms.fido.ca"
mmsport="80"
mvno_match_data="DD"
mvno_type="gid"
protocol="IPV4V6"
+ roaming_protocol="IP"
/>
<apn carrier="Fido Internet"
@@ -9568,12 +8358,39 @@
roaming_protocol="IPV4V6"
/>
+ <apn carrier="MTS"
+ carrier_id = "578"
+ mcc="302"
+ mnc="370"
+ apn="sp.mts"
+ type="default,mms,supl"
+ mmsc="http://mmsc2.mts.net/"
+ mmsproxy="wapgw1.mts.net"
+ mmsport="9201"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ mvno_match_data="2C"
+ mvno_type="gid"
+ />
+
+ <apn carrier="MTS Tethering S"
+ carrier_id = "578"
+ mcc="302"
+ mnc="370"
+ apn="internet.mts"
+ type="dun"
+ protocol="IPV4V6"
+ roaming_protocol="IP"
+ mvno_type="gid"
+ mvno_match_data="2C"
+ />
+
<apn carrier="Internet"
carrier_id = "1895"
mcc="302"
mnc="490"
- apn="internet.freedommobile.ca"
- type="default,ia,supl"
+ apn="internet.windmobile.ca"
+ type="default,supl"
protocol="IPV4V6"
/>
@@ -9581,8 +8398,8 @@
carrier_id = "1895"
mcc="302"
mnc="490"
- apn="mms.freedommobile.ca"
- mmsc="http://mms.freedommobile.ca"
+ apn="mms.windmobile.ca"
+ mmsc="http://mms.windmobile.ca"
mmsproxy="74.115.197.70"
mmsport="8080"
type="mms"
@@ -9594,19 +8411,34 @@
mnc="500"
apn="media.ng"
mmsc="http://media.videotron.com"
- authtype="1"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
+ />
+
+ <apn carrier="Media"
+ carrier_id = "2008"
+ mcc="302"
+ mnc="510"
+ apn="media.ng"
+ mmsc="http://media.videotron.com"
+ type="default,supl,mms"
+ />
+
+ <apn carrier="Media"
+ carrier_id = "2008"
+ mcc="302"
+ mnc="520"
+ apn="media.ng"
+ mmsc="http://media.videotron.com"
+ type="default,supl,mms"
/>
- <apn carrier="Bell Internet"
+ <apn carrier="Bell Mobility"
carrier_id = "576"
mcc="302"
mnc="610"
apn="pda.bell.ca"
- type="default,ia,mms,supl"
- authtype="2"
+ type="default,mms,supl"
mmsc="http://mms.bell.ca/mms/wapenc"
- protocol="IPV4V6"
/>
<apn carrier="Bell Mobility IMS"
@@ -9619,26 +8451,18 @@
roaming_protocol="IPV4V6"
/>
- <apn carrier="Lucky Internet"
- carrier_id = "2122"
- mcc="302"
- mnc="610"
- apn="pda.bell.ca"
- type="default,ia,mms,supl"
- authtype="2"
- mmsc="http://mms.luckymobile.ca/mms/wapenc"
- protocol="IPV4V6"
- mvno_type="gid"
- mvno_match_data="42"
- />
-
<apn carrier="MTS"
mcc="302"
mnc="660"
apn="sp.mts"
- type="default,ia,mms,supl"
+ type="default,mms,supl"
mmsc="http://mmsc2.mts.net/"
+ mmsproxy="wapgw1.mts.net"
+ mmsport="9201"
protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ mvno_type="spn"
+ mvno_match_data="MTS"
/>
<apn carrier="MTS Tethering"
@@ -9647,6 +8471,7 @@
apn="internet.mts"
type="dun"
protocol="IPV4V6"
+ roaming_protocol="IP"
mvno_type="spn"
mvno_match_data="MTS"
/>
@@ -9656,7 +8481,7 @@
mcc="302"
mnc="720"
apn="ltemobile.apn"
- type="default,ia,mms,supl"
+ type="default,mms,supl"
mmsproxy="mmsproxy.rogers.com"
mmsc="http://mms.gprs.rogers.com"
mmsport="80"
@@ -9674,34 +8499,21 @@
roaming_protocol="IPV4V6"
/>
- <apn carrier="Chatr Internet"
+ <apn carrier="chatr"
carrier_id = "2055"
mcc="302"
mnc="720"
apn="chatrweb.apn"
- type="default,ia,mms,supl"
+ type="default,mms,supl"
mmsc="http://mms.chatrwireless.com"
- mmsproxy="mmsproxy.chatrwireless.com"
+ mmsproxy="205.151.11.11"
mmsport="80"
+ proxy="205.151.11.11"
+ port="80"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
- mvno_type="imsi"
mvno_match_data="302720x94"
- />
-
- <apn carrier="Chatr Internet"
- carrier_id = "2055"
- mcc="302"
- mnc="720"
- apn="chatrweb.apn"
- type="default,ia,mms,supl"
- mmsc="http://mms.chatrwireless.com"
- mmsproxy="mmsproxy.chatrwireless.com"
- mmsport="80"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- mvno_type="gid"
- mvno_match_data="D2"
+ mvno_type="imsi"
/>
<apn carrier="Chatr Tethering"
@@ -9713,7 +8525,7 @@
mvno_type="imsi"
mvno_match_data="302720x94"
protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ roaming_protocol="IP"
/>
<apn carrier="Tbaytel Tethering"
@@ -9723,31 +8535,19 @@
apn="ltedata.apn"
type="dun"
protocol="IPV4V6"
+ roaming_protocol="IP"
mvno_type="gid"
mvno_match_data="BA"
/>
<apn carrier="Tbaytel Internet"
- carrier_id = "2090"
- mcc="302"
mnc="720"
- apn="ltemobile.apn"
- type="default,ia,mms,supl"
- protocol="IPV4V6"
- mmsc="http://mms.gprs.rogers.com"
- mmsproxy="mmsproxy.rogers.com"
- mmsport="80"
- mvno_type="imsi"
- mvno_match_data="302720x92"
- />
-
- <apn carrier="Tbaytel Internet"
carrier_id = "2090"
mcc="302"
- mnc="720"
apn="ltemobile.apn"
- type="default,ia,mms,supl"
+ type="default,mms,supl,fota,hipri"
protocol="IPV4V6"
+ roaming_protocol="IP"
mmsc="http://mms.gprs.rogers.com"
mmsproxy="mmsproxy.rogers.com"
mmsport="80"
@@ -9762,81 +8562,67 @@
apn="ltedata.apn"
type="dun"
protocol="IPV4V6"
+ roaming_protocol="IP"
mvno_type="spn"
mvno_match_data="CITYFONE"
/>
<apn carrier="Cityfone Internet"
+ mnc="720"
carrier_id = "2057"
mcc="302"
- mnc="720"
apn="ltemobile.apn"
- type="default,ia,mms,supl"
+ type="default,mms,supl,fota,hipri"
protocol="IPV4V6"
+ roaming_protocol="IP"
mmsc="http://mms.gprs.rogers.com"
mmsproxy="mmsproxy.rogers.com"
mmsport="80"
- mvno_type="imsi"
- mvno_match_data="302720x97"
+ mvno_type="spn"
+ mvno_match_data="CITYFONE"
/>
- <apn carrier="Cityfone Internet"
- carrier_id = "2057"
+ <apn carrier="Rogers Tethering"
mcc="302"
mnc="720"
- apn="ltemobile.apn"
- type="default,ia,mms,supl"
+ apn="ltedata.apn"
+ type="dun"
+ mvno_match_data="ROGERS"
+ mvno_type="spn"
protocol="IPV4V6"
- mmsc="http://mms.gprs.rogers.com"
- mmsproxy="mmsproxy.rogers.com"
- mmsport="80"
- mvno_type="gid"
- mvno_match_data="CC"
+ roaming_protocol="IP"
/>
- <apn carrier="Ztar Internet"
- carrier_id = "2056"
+ <apn carrier="Rogers Internet"
mcc="302"
mnc="720"
- apn="rogers-core-appl1.apn"
- type="default,ia,mms,supl"
- mmsc="http://mms.gprs.rogers.com"
+ apn="ltemobile.apn"
+ type="default,mms,supl,fota,hipri"
mmsproxy="mmsproxy.rogers.com"
- mmsport="80"
- mvno_type="imsi"
- mvno_match_data="302720x98"
- />
-
- <apn carrier="Ztar Internet"
- carrier_id = "2056"
- mcc="302"
- mnc="720"
- apn="rogers-core-appl1.apn"
- type="default,ia,mms,supl"
mmsc="http://mms.gprs.rogers.com"
- mmsproxy="mmsproxy.rogers.com"
mmsport="80"
- mvno_type="gid"
- mvno_match_data="D4"
+ mvno_match_data="ROGERS"
+ mvno_type="spn"
+ protocol="IPV4V6"
+ roaming_protocol="IP"
/>
- <apn carrier="SaskTel Internet"
+ <apn carrier="SaskTel"
carrier_id = "580"
mcc="302"
mnc="780"
apn="pda.stm.sk.ca"
- type="default,ia,mms,supl"
+ type="default,mms,supl"
mmsc="http://mms.sasktel.com/"
mmsproxy="mig.sasktel.com"
mmsport="80"
- protocol="IPV4V6"
/>
<apn carrier="Verizon CDMA HRPD"
mcc="310"
mnc="000"
mmsc="http://mms.vzwreseller.com/servlets/mms"
- type="default,ia,mms,hipri,dun,supl"
+ type="default,mms,hipri,dun,supl"
mvno_type="spn"
mvno_match_data="Tracfone"
authtype="3"
@@ -9915,7 +8701,7 @@
mmsport="8514"
mvno_type="spn"
mvno_match_data="bluewire"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -9930,7 +8716,7 @@
mmsport="8514"
mvno_type="spn"
mvno_match_data="bluewire"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -10009,7 +8795,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="flatwire"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -10024,7 +8810,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="flatwire"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -10103,7 +8889,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="mobipcs"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -10118,7 +8904,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="mobipcs"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -10197,7 +8983,7 @@
mmsport="8081"
mvno_type="spn"
mvno_match_data="mobilenation"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -10212,7 +8998,7 @@
mmsport="8081"
mvno_type="spn"
mvno_match_data="mobilenation"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -10291,7 +9077,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="mohave"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -10306,7 +9092,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="mohave"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -10385,7 +9171,7 @@
mmsport="80"
mvno_type="spn"
mvno_match_data="Peopleswire"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -10400,7 +9186,7 @@
mmsport="80"
mvno_type="spn"
mvno_match_data="Peopleswire"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -10479,7 +9265,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="revol"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -10494,7 +9280,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="revol"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -10589,7 +9375,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="distribution"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -10604,7 +9390,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="distribution"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -10617,7 +9403,7 @@
apn="union.wap.com"
proxy="166.230.4.83"
port="8799"
- type="default,ia,hipri,dun,supl"
+ type="default,hipri,dun,supl"
/>
<apn carrier="Union Wireless MMS"
@@ -10641,7 +9427,7 @@
mnc="004"
apn="internet"
authtype="3"
- type="default,ia,mms,supl,fota,cbs"
+ type="default,mms,supl,fota,cbs"
mmsc="http://mms.vtext.com/servlets/mms"
protocol="IPV4V6"
bearer_bitmask="4|5|6|7|8|12"
@@ -10652,7 +9438,7 @@
mnc="004"
apn="internet"
authtype="3"
- type="default,ia,mms,supl,fota,cbs,dun"
+ type="default,mms,supl,fota,cbs,dun"
mmsc="http://mms.vtext.com/servlets/mms"
protocol="IPV4V6"
bearer_bitmask="4|5|6|7|8|12"
@@ -10664,7 +9450,7 @@
mcc="310"
mnc="004"
apn="VZWINTERNET"
- type="default,ia,dun"
+ type="default,dun"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13|14"
@@ -10726,7 +9512,7 @@
mnc="028"
apn="VZWINTERNET"
mmsc="http://mms.vtext.com/servlets/mms"
- type="default,ia,dun"
+ type="default,dun"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
/>
@@ -10762,6 +9548,27 @@
roaming_protocol="IPV4V6"
/>
+ <apn carrier="myBlue Pix"
+ carrier_id = "1187"
+ mcc="310"
+ mnc="030"
+ apn="mmswap.centennialwireless.com"
+ mmsc="http://mms.myblue.com/servlets/mms"
+ mmsproxy="63.99.231.135"
+ mmsport="8080"
+ type="mms"
+ />
+
+ <apn carrier="Internet"
+ carrier_id = "1187"
+ mcc="310"
+ mnc="030"
+ apn="private.centennialwireless.com"
+ user="privuser"
+ password="priv"
+ type="default,supl"
+ />
+
<apn carrier="itewire"
mcc="310"
mnc="032"
@@ -10835,7 +9642,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="itewire"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -10850,7 +9657,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="itewire"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -10935,7 +9742,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="etex"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -10951,7 +9758,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="etex"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -11024,7 +9831,7 @@
mmsc="http://mmsc.mta.dataonair.net/"
mmsproxy="209.4.229.85"
mmsport="6672"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -11038,7 +9845,7 @@
mmsc="http://mmsc.mta.dataonair.net/"
mmsproxy="209.4.229.85"
mmsport="6672"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -11117,7 +9924,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="alaskacomm"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -11156,7 +9963,7 @@
server="http://w.iot1.com/corr/wml.php"
proxy="74.112.57.172"
port="9201"
- type="default,ia"
+ type="default"
/>
<apn carrier="CorrMMS"
@@ -11175,7 +9982,7 @@
mcc="310"
mnc="090"
apn="isp"
- type="default,ia,supl"
+ type="default,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
/>
@@ -11222,7 +10029,7 @@
mcc="310"
mnc="100"
apn="isp.plateau"
- type="default,ia,supl"
+ type="default,supl"
/>
<!-- Need two APNs for CDMA technologies: a default that is used normally -->
@@ -11235,7 +10042,7 @@
mcc="310"
mnc="120"
apn="sprint"
- type="default,ia,supl,mms,ims,cbs"
+ type="default,supl,mms,ims,cbs"
mmsc="http://mms.sprintpcs.com"
mmsproxy="68.28.31.7"
mmsport="80"
@@ -11247,7 +10054,7 @@
mcc="310"
mnc="120"
apn="sprint"
- type="default,ia,supl,mms,ims,cbs,dun"
+ type="default,supl,mms,ims,cbs,dun"
mmsc="http://mms.sprintpcs.com"
mmsproxy="68.28.31.7"
mmsport="80"
@@ -11277,7 +10084,7 @@
mmsc="http://mms.sprintpcs.com"
mmsproxy="68.28.31.7"
mmsport="80"
- type="default,ia,supl,mms,dun"
+ type="default,supl,mms,dun"
bearer_bitmask="1|2|3|9|10|11|15|16"
/>
@@ -11286,7 +10093,7 @@
mcc="310"
mnc="130"
apn="home.cww.com"
- type="default,ia,supl,mms,ims,cbs"
+ type="default,supl,mms,ims,cbs"
mmsc="http://mms.cwwmms.com/cww/mms.php"
mmsport="80"
bearer_bitmask="4|5|6|7|8|12"
@@ -11314,7 +10121,7 @@
mmsc="http://mmsc.aiowireless.net"
mmsproxy="proxy.aiowireless.net"
mmsport="80"
- type="default,ia,mms,fota,hipri,supl"
+ type="default,mms,fota,hipri,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
/>
@@ -11363,7 +10170,7 @@
mnc="160"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -11386,7 +10193,7 @@
mcc="310"
mnc="170"
apn="isp.cingular"
- type="default,ia,supl"
+ type="default,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
/>
@@ -11413,7 +10220,7 @@
apn="internet.wcc.net"
user="13257630000"
password="mmsc"
- type="default,ia"
+ type="default"
/>
<apn carrier="WCW-MMS"
@@ -11473,7 +10280,7 @@
mnc="200"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -11523,7 +10330,7 @@
mnc="210"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -11573,7 +10380,7 @@
mnc="220"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -11623,7 +10430,7 @@
mnc="230"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -11673,7 +10480,7 @@
mnc="240"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -11723,7 +10530,7 @@
mnc="250"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -11821,7 +10628,7 @@
mnc="260"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D38"
@@ -11833,7 +10640,7 @@
mcc="310"
mnc="260"
apn="simple"
- type="default,ia,mms,supl,hipri,fota"
+ type="default,mms,supl,hipri,fota"
protocol="IP"
roaming_protocol="IP"
mmsc="http://smpl.mms.msg.eng.t-mobile.com/mms/wapenc"
@@ -11846,7 +10653,7 @@
mcc="310"
mnc="260"
apn="wap.tracfone"
- type="default,ia,mms,supl,hipri,fota"
+ type="default,mms,supl,hipri,fota"
protocol="IP"
roaming_protocol="IP"
mmsc="http://mms.tracfone.com"
@@ -11859,7 +10666,7 @@
mcc="310"
mnc="260"
apn="wap.tracfone"
- type="default,ia,mms,supl,hipri,fota"
+ type="default,mms,supl,hipri,fota"
protocol="IP"
roaming_protocol="IP"
mmsc="http://mms.tracfone.com"
@@ -11879,7 +10686,7 @@
mmsc="http://wholesale.mmsmvno.com/mms/wapenc"
mmsproxy=""
mmsport="80"
- type="default,ia,mms,supl,hipri"
+ type="default,mms,supl,hipri"
mvno_type="gid"
mvno_match_data="2AC9"
/>
@@ -11927,7 +10734,7 @@
mnc="270"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -11939,38 +10746,7 @@
mcc="310"
mnc="280"
apn="agms"
- type="default,ia,supl"
- />
-
- <apn carrier="Tracfone AT&amp;T"
- carrier_id = "10000"
- mcc="310"
- mnc="280"
- apn="ereseller"
- user=""
- password=""
- proxy=""
- port=""
- mmsc="http://mmsc.mobile.att.net"
- mmsproxy="proxy.mobile.att.net"
- mmsport="80"
- type="default,ia,mms,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- mvno_type="gid"
- mvno_match_data="DEFF"
- />
-
- <apn carrier="Tracfone AT&amp;T"
- carrier_id = "10000"
- mcc="310"
- mnc="280"
- apn="resellermht"
- type="dun"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- mvno_type="gid"
- mvno_match_data="DEFF"
+ type="default,supl"
/>
<apn carrier="T-Mobile US 300"
@@ -12016,7 +10792,7 @@
mnc="300"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -12029,7 +10805,7 @@
mnc="300"
apn="truphone.com"
mmsc="http://mmsc.truphone.com:1981/mm1"
- type="default,ia,supl,mms,dun"
+ type="default,supl,mms,dun"
mvno_type="gid"
mvno_match_data="547275554B3030656E"
/>
@@ -12089,7 +10865,7 @@
mnc="310"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -12101,7 +10877,7 @@
mcc="310"
mnc="320"
apn="isp.cellularoneaz.net"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Cellular One ClearSky MMS"
@@ -12188,7 +10964,7 @@
mmsport="8080"
mvno_type="spn"
mvno_match_data="alltel2"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -12203,7 +10979,7 @@
mmsport="8080"
mvno_type="spn"
mvno_match_data="alltel2"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -12276,7 +11052,7 @@
mmsc="http://mms1.zsend.com"
mmsproxy=""
mmsport=""
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -12290,7 +11066,7 @@
mmsc="http://mms1.zsend.com"
mmsproxy=""
mmsport=""
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -12303,7 +11079,7 @@
apn="proxy"
mmsc="http://mmsc.cingular.com/"
mmsproxy="wireless.cingular.com"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
/>
@@ -12326,7 +11102,7 @@
mcc="310"
mnc="380"
apn="agms.nl.gmm"
- type="default,ia"
+ type="default"
mvno_type="gid"
mvno_match_data="50FF"
/>
@@ -12336,7 +11112,7 @@
mcc="310"
mnc="380"
apn="gigsky"
- type="default,ia"
+ type="default"
mvno_type="spn"
mvno_match_data="GigSky"
/>
@@ -12356,8 +11132,10 @@
<apn carrier="ATT Nextgenphone"
carrier_id = "1187"
+ mcc="310"
+ mnc="410"
apn="nxtgenphone"
- type="default,ia,mms,supl,fota,hipri"
+ type="default,mms,supl,fota,hipri"
mmsc="http://mmsc.mobile.att.net"
mmsproxy="proxy.mobile.att.net"
mmsport="80"
@@ -12365,8 +11143,10 @@
roaming_protocol="IPV4V6"
/>
- <apn carrier="ATT IMS"
+ <apn carrier="IMS"
carrier_id = "1187"
+ mcc="310"
+ mnc="410"
apn="ims"
type="ims"
protocol="IPV4V6"
@@ -12375,8 +11155,10 @@
<apn carrier="ATT Phone"
carrier_id = "1187"
+ mcc="310"
+ mnc="410"
apn="phone"
- type="default,ia,mms,supl,fota,hipri"
+ type="default,mms,supl,fota,hipri"
mmsc="http://mmsc.mobile.att.net"
mmsproxy="proxy.mobile.att.net"
mmsport="80"
@@ -12386,13 +11168,15 @@
<apn carrier="ATT WAP"
carrier_id = "1187"
+ mcc="310"
+ mnc="410"
apn="wap.cingular"
proxy="wireless.cingular.com"
port="80"
server="cingulargprs.com"
mmsc="http://mmsc.cingular.com/"
mmsproxy="wireless.cingular.com"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
/>
@@ -12405,7 +11189,7 @@
mmsc="http://mmsc.mobile.att.net"
mmsproxy="proxy.mobile.att.net"
mmsport="80"
- type="default,ia,mms,supl"
+ type="default,mms,supl"
protocol="IP"
mtusize="1410"
mvno_type="gid"
@@ -12417,7 +11201,7 @@
mcc="310"
mnc="410"
apn="tfdata"
- type="default,ia,mms,supl,hipri,fota"
+ type="default,mms,supl,hipri,fota"
protocol="IP"
roaming_protocol="IP"
mmsc="http://mms-tf.net"
@@ -12432,7 +11216,7 @@
mcc="310"
mnc="410"
apn="tfdata"
- type="default,ia,mms,supl,hipri,fota"
+ type="default,mms,supl,hipri,fota"
protocol="IP"
roaming_protocol="IP"
mmsc="http://mms-tf.net"
@@ -12442,37 +11226,6 @@
mvno_match_data="ddff"
/>
- <apn carrier="Tracfone AT&amp;T"
- carrier_id = "10000"
- mcc="310"
- mnc="410"
- apn="ereseller"
- user=""
- password=""
- proxy=""
- port=""
- mmsc="http://mmsc.mobile.att.net"
- mmsproxy="proxy.mobile.att.net"
- mmsport="80"
- type="default,ia,mms,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- mvno_type="gid"
- mvno_match_data="DEFF"
- />
-
- <apn carrier="Tracfone AT&amp;T"
- carrier_id = "10000"
- mcc="310"
- mnc="410"
- apn="resellermht"
- type="dun"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- mvno_type="gid"
- mvno_match_data="DEFF"
- />
-
<apn carrier="CBW Data"
carrier_id = "1190"
mcc="310"
@@ -12481,7 +11234,7 @@
mmsc="http://mms.gocbw.com:8088/mms"
mmsproxy="216.68.79.202"
mmsport="80"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="gci"
@@ -12557,7 +11310,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="gci"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -12572,7 +11325,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="gci"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -12583,7 +11336,7 @@
mcc="310"
mnc="450"
apn="internet.vedge.com"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Viaero MMS"
@@ -12602,7 +11355,7 @@
mcc="310"
mnc="470"
apn="isp.cingular"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MediaNet"
@@ -12615,7 +11368,7 @@
mmsc="http://mmsc.cingular.com"
mmsproxy="66.209.11.32"
mmsport="8080"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="nTelos Ota"
@@ -12647,7 +11400,7 @@
mcc="310"
mnc="470"
apn="internet.4g.ntelos.com"
- type="default,ia,supl,hipri,mms"
+ type="default,supl,hipri,mms"
mmsc="http://mms.ntelospcs.net"
server="*"
protocol="IPV4V6"
@@ -12697,7 +11450,7 @@
mcc="310"
mnc="480"
apn="isp.cingular"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MediaNet"
@@ -12710,7 +11463,7 @@
mmsc="http://mmsc.cingular.com"
mmsproxy="66.209.11.32"
mmsport="8080"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="T-Mobile US 490"
@@ -12756,7 +11509,7 @@
mnc="490"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -12828,7 +11581,7 @@
mnc="530"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -12837,11 +11590,13 @@
<apn carrier="ATT Nextgenphone"
carrier_id = "1187"
+ mcc="310"
+ mnc="560"
apn="nxtgenphone"
mmsc="http://mmsc.mobile.att.net"
mmsproxy="proxy.mobile.att.net"
mmsport="80"
- type="default,ia,mms,supl,fota,hipri"
+ type="default,mms,supl,fota,hipri"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
mtu="1410"
@@ -12875,7 +11630,7 @@
mcc="310"
mnc="570"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Cellular One MMS"
@@ -12956,7 +11711,7 @@
mmsc="http://mms.inland3g.com/inland/mms.php"
mmsproxy=""
mmsport=""
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -12970,7 +11725,7 @@
mmsc="http://mms.inland3g.com/inland/mms.php"
mmsproxy=""
mmsport=""
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -13030,7 +11785,7 @@
mnc="590"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -13104,7 +11859,7 @@
mmsc="http://mms.cellcom.com/cellcom/mms.php"
mmsproxy=""
mmsport=""
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -13118,7 +11873,7 @@
mmsc="http://mms.cellcom.com/cellcom/mms.php"
mmsproxy=""
mmsport=""
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -13129,7 +11884,7 @@
mcc="310"
mnc="610"
apn="internet.epictouch"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="EpicMMS"
@@ -13185,7 +11940,7 @@
mnc="640"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -13235,7 +11990,7 @@
mnc="660"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -13248,7 +12003,7 @@
mnc="690"
apn="truphone.com"
mmsc="http://mmsc.truphone.com:1981/mm1"
- type="default,ia,supl,mms,dun"
+ type="default,supl,mms,dun"
mvno_type="gid"
mvno_match_data="547275554B3030656E"
/>
@@ -13275,6 +12030,30 @@
mmsport="9401"
/>
+ <apn carrier="Rogers Internet"
+ carrier_id = "1811"
+ mcc="310"
+ mnc="720"
+ apn="internet.com"
+ user=""
+ password=""
+ proxy="10.128.1.69"
+ port="80"
+ type="default"
+ />
+
+ <apn carrier="Rogers Media"
+ carrier_id = "1811"
+ mcc="310"
+ mnc="720"
+ apn="media.com"
+ user="media"
+ password="mda01"
+ proxy="10.128.1.69"
+ port="80"
+ type="mms"
+ />
+
<apn carrier="appalachian"
carrier_id = "1813"
mcc="310"
@@ -13342,7 +12121,7 @@
mmsc="http://mms.ekn.com"
mmsproxy=""
mmsport="80"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -13356,7 +12135,7 @@
mmsc="http://mms.ekn.com"
mmsproxy=""
mmsport="80"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -13366,7 +12145,7 @@
mcc="310"
mnc="770"
apn="i2.iwireless.com"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Web 1"
@@ -13376,7 +12155,7 @@
apn="wap1.iwireless.com"
proxy="209.4.229.31"
port="9401"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Picture Messaging"
@@ -13433,7 +12212,7 @@
mnc="800"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -13519,7 +12298,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="nepa"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -13535,7 +12314,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="nepa"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -13546,7 +12325,7 @@
mcc="310"
mnc="840"
apn="isp"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS"
@@ -13576,7 +12355,7 @@
mcc="310"
mnc="880"
apn="wapdtcw.com"
- type="default,ia"
+ type="default"
proxy="204.181.155.218"
port="8080"
/>
@@ -13657,7 +12436,7 @@
mmsc="http://mmsc.midrivers.csky.us:6672/"
mmsproxy="209.4.229.27"
mmsport="9401"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -13671,7 +12450,7 @@
mmsc="http://mmsc.midrivers.csky.us:6672/"
mmsproxy="209.4.229.27"
mmsport="9401"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -13684,7 +12463,7 @@
mmsc="mms.firstcellular.net/mmsc"
mmsproxy="10.101.1.5"
mmsport="3128"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="jamesvalley"
@@ -13754,7 +12533,7 @@
mmsc="http://m.iot1.com/jamesvalley/mms.php"
mmsproxy="m.iot1.com"
mmsport="9201"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -13768,7 +12547,7 @@
mmsc="http://m.iot1.com/jamesvalley/mms.php"
mmsproxy="m.iot1.com"
mmsport="9201"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -13841,7 +12620,7 @@
mmsc="http://cvwmms.com/servlets/mms"
mmsproxy=""
mmsport=""
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -13855,7 +12634,7 @@
mmsc="http://cvwmms.com/servlets/mms"
mmsproxy=""
mmsport=""
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -13940,7 +12719,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="nntcwire"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -13956,7 +12735,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="nntcwire"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -14041,7 +12820,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="silverstar"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -14057,7 +12836,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="silverstar"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -14142,7 +12921,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="snakeriver"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -14158,7 +12937,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="snakeriver"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -14243,7 +13022,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="southcentral"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -14259,7 +13038,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="southcentral"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -14344,7 +13123,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="strata"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -14360,7 +13139,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="strata"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -14439,7 +13218,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="syringa"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -14454,7 +13233,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="syringa"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -14527,7 +13306,7 @@
mmsc="http://mms.thumbcell.com/thumb/mms.php"
mmsproxy=""
mmsport=""
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -14541,7 +13320,7 @@
mmsc="http://mms.thumbcell.com/thumb/mms.php"
mmsproxy=""
mmsport=""
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -14626,7 +13405,7 @@
mmsport="8080"
mvno_type="spn"
mvno_match_data="elementmobile"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -14642,7 +13421,7 @@
mmsport="8080"
mvno_type="spn"
mvno_match_data="elementmobile"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -14656,7 +13435,7 @@
mmsc="http://69.8.34.146/mms/"
mmsproxy="69.8.34.146"
mmsport="9401"
- type="default,ia,mms"
+ type="default,mms"
/>
<apn carrier="NexTech Wireless"
@@ -14749,7 +13528,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="sprocket"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -14765,7 +13544,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="sprocket"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -14776,7 +13555,7 @@
mcc="311"
mnc="190"
apn="isp.cellular1.net"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Tether"
@@ -14803,7 +13582,7 @@
mcc="311"
mnc="210"
apn="internet.farmerswireless.com"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Farmers MMS"
@@ -14820,7 +13599,7 @@
mcc="311"
mnc="220"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
authtype="3"
roaming_protocol="IPV4V6"
@@ -14834,7 +13613,7 @@
mnc="220"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -14847,7 +13626,7 @@
mnc="220"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -14859,7 +13638,7 @@
mnc="221"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -14871,7 +13650,7 @@
mnc="221"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -14883,7 +13662,7 @@
mcc="311"
mnc="220"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -14896,7 +13675,7 @@
mcc="311"
mnc="221"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -14908,7 +13687,7 @@
mcc="311"
mnc="221"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -14920,7 +13699,7 @@
mcc="311"
mnc="221"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -14933,7 +13712,7 @@
mnc="222"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -14945,7 +13724,7 @@
mnc="222"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -14957,7 +13736,7 @@
mcc="311"
mnc="222"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -14970,7 +13749,7 @@
mnc="223"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -14982,7 +13761,7 @@
mnc="223"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -14994,7 +13773,7 @@
mcc="311"
mnc="223"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -15007,7 +13786,7 @@
mnc="224"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -15019,7 +13798,7 @@
mnc="224"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -15031,7 +13810,7 @@
mcc="311"
mnc="224"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -15044,7 +13823,7 @@
mcc="311"
mnc="225"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -15057,7 +13836,7 @@
mnc="225"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
carrier_enabled="true"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -15070,7 +13849,7 @@
mnc="225"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
carrier_enabled="true"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -15083,7 +13862,7 @@
mnc="226"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -15095,7 +13874,7 @@
mnc="226"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -15107,7 +13886,7 @@
mcc="311"
mnc="226"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -15120,7 +13899,7 @@
mnc="227"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -15132,7 +13911,7 @@
mnc="227"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -15144,7 +13923,7 @@
mcc="311"
mnc="227"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -15157,7 +13936,7 @@
mnc="228"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -15169,7 +13948,7 @@
mnc="228"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -15181,7 +13960,7 @@
mcc="311"
mnc="228"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -15194,7 +13973,7 @@
mnc="229"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -15206,7 +13985,7 @@
mnc="229"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -15218,7 +13997,7 @@
mcc="311"
mnc="229"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -15263,7 +14042,7 @@
mmsport=""
mmsproxy=""
mmsc="http://pix.cspire.com"
- type="default,ia,mms"
+ type="default,mms"
protocol="IPV4V6"
/>
@@ -15377,7 +14156,7 @@
mmsc="http://204.181.155.217/mms/"
mmsproxy=""
mmsport=""
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -15391,7 +14170,7 @@
mmsc="http://204.181.155.217/mms/"
mmsproxy=""
mmsport=""
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -15464,7 +14243,7 @@
mmsc="http://mms.iot1.com/ivc/mms.php"
mmsproxy=""
mmsport=""
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -15478,7 +14257,7 @@
mmsc="http://mms.iot1.com/ivc/mms.php"
mmsproxy=""
mmsport=""
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -15563,7 +14342,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="nemont"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -15579,7 +14358,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="nemont"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -15590,7 +14369,7 @@
mcc="311"
mnc="370"
apn="web.gci"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="GCI MMS"
@@ -15612,7 +14391,7 @@
mnc="390"
apn="VZWINTERNET"
mmsc="http://mms.vtext.com/servlets/mms"
- type="default,ia,dun"
+ type="default,dun"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -15628,7 +14407,7 @@
mnc="390"
apn="VZWINTERNET"
mmsc="http://mms.vtext.com/servlets/mms"
- type="default,ia,dun"
+ type="default,dun"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -15797,7 +14576,7 @@
mmsc="http://mmsc.hawkeyeswitch.net/mms/"
mmsproxy=""
mmsport="80"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -15811,7 +14590,7 @@
mmsc="http://mmsc.hawkeyeswitch.net/mms/"
mmsproxy=""
mmsport="80"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -15884,7 +14663,7 @@
mmsc="http://mms.nwmcell.com/mms/"
mmsproxy=""
mmsport=""
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -15898,7 +14677,7 @@
mmsc="http://mms.nwmcell.com/mms/"
mmsproxy=""
mmsport=""
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -15977,7 +14756,7 @@
mmsport="80"
mvno_type="spn"
mvno_match_data="chatmobrsa1"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -15992,7 +14771,7 @@
mmsport="80"
mvno_type="spn"
mvno_match_data="chatmobrsa1"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -16065,7 +14844,7 @@
mmsc="http://mms.iot1.com/bluegrass/mms.php"
mmsproxy=""
mmsport=""
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -16079,7 +14858,7 @@
mmsc="http://mms.iot1.com/bluegrass/mms.php"
mmsproxy=""
mmsport=""
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -16152,7 +14931,7 @@
mmsc="http://mmsc.ptci.net"
mmsproxy=""
mmsport="6672"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -16166,7 +14945,7 @@
mmsc="http://mmsc.ptci.net"
mmsproxy=""
mmsport="6672"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -16183,7 +14962,7 @@
mnc="480"
apn="internet"
authtype="3"
- type="default,ia,mms,supl,fota,cbs"
+ type="default,mms,supl,fota,cbs"
mmsc="http://mms.vtext.com/servlets/mms"
protocol="IPV4V6"
bearer_bitmask="4|5|6|7|8|12"
@@ -16196,7 +14975,7 @@
mnc="480"
apn="internet"
authtype="3"
- type="default,ia,mms,supl,fota,cbs,dun"
+ type="default,mms,supl,fota,cbs,dun"
mmsc="http://mms.vtext.com/servlets/mms"
protocol="IPV4V6"
bearer_bitmask="4|5|6|7|8|12"
@@ -16210,7 +14989,7 @@
mcc="311"
mnc="480"
apn="VZWINTERNET"
- type="default,ia,dun,supl"
+ type="default,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="1|2|3|9|10|11|13|14|15"
@@ -16287,7 +15066,7 @@
mcc="311"
mnc="500"
apn="wap"
- type="default,ia,mms"
+ type="default,mms"
mmsc="http://mmsc.ctc.csky.us:6672/"
mmsproxy="209.4.229.46"
mmsport="9201"
@@ -16300,7 +15079,7 @@
mcc="311"
mnc="500"
apn="wap"
- type="default,ia,mms"
+ type="default,mms"
mmsc="http://mmsc.ctc.csky.us:6672/"
mmsproxy="209.4.229.46"
mmsport="9201"
@@ -16313,7 +15092,7 @@
mcc="311"
mnc="500"
apn="wap"
- type="default,ia,mms"
+ type="default,mms"
mmsc="http://mmsc.ctc.csky.us:6672/"
mmsproxy="209.4.229.46"
mmsport="9201"
@@ -16326,7 +15105,7 @@
mcc="311"
mnc="500"
apn="wap"
- type="default,ia,mms"
+ type="default,mms"
mmsc="http://mmsc.ctc.csky.us:6672/"
mmsproxy="209.4.229.46"
mmsport="9201"
@@ -16339,7 +15118,7 @@
mcc="311"
mnc="500"
apn="wap"
- type="default,ia,mms"
+ type="default,mms"
mmsc="http://mmsc.ctc.csky.us:6672/"
mmsproxy="209.4.229.46"
mmsport="9201"
@@ -16352,7 +15131,7 @@
mcc="311"
mnc="500"
apn="wap"
- type="default,ia,mms"
+ type="default,mms"
mmsc="http://mmsc.ctc.csky.us:6672/"
mmsproxy="209.4.229.46"
mmsport="9201"
@@ -16365,7 +15144,7 @@
mcc="311"
mnc="500"
apn="wap"
- type="default,ia,mms"
+ type="default,mms"
mmsc="http://mmsc.ctc.csky.us:6672/"
mmsproxy="209.4.229.46"
mmsport="9201"
@@ -16378,7 +15157,7 @@
mcc="311"
mnc="500"
apn="wap"
- type="default,ia,mms"
+ type="default,mms"
mmsc="http://mmsc.ctc.csky.us:6672/"
mmsproxy="209.4.229.46"
mmsport="9201"
@@ -16391,7 +15170,7 @@
mcc="311"
mnc="530"
apn="mms.mymobiletxt.com"
- type="default,ia,mms"
+ type="default,mms"
mmsc="http://mms2.mymobiletxt.net"
/>
@@ -16400,7 +15179,7 @@
mcc="311"
mnc="530"
apn="wap.mymobiletxt.com"
- type="default,ia,mms"
+ type="default,mms"
protocol="IP"
mmsc="http://172.16.16.103/mms/"
mmsproxy="172.16.16.102"
@@ -16413,7 +15192,7 @@
mcc="311"
mnc="580"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -16427,7 +15206,7 @@
mnc="580"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -16440,7 +15219,7 @@
mnc="580"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -16452,7 +15231,7 @@
mnc="581"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -16464,7 +15243,7 @@
mnc="581"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -16476,7 +15255,7 @@
mcc="311"
mnc="581"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -16489,7 +15268,7 @@
mnc="582"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -16501,7 +15280,7 @@
mnc="582"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -16513,7 +15292,7 @@
mcc="311"
mnc="582"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -16526,7 +15305,7 @@
mnc="583"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -16538,7 +15317,7 @@
mnc="583"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -16550,7 +15329,7 @@
mcc="311"
mnc="583"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -16563,7 +15342,7 @@
mnc="584"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -16575,7 +15354,7 @@
mnc="584"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -16587,7 +15366,7 @@
mcc="311"
mnc="584"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -16600,7 +15379,7 @@
mnc="585"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -16612,7 +15391,7 @@
mnc="585"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -16624,7 +15403,7 @@
mcc="311"
mnc="585"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -16637,7 +15416,7 @@
mnc="586"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -16649,7 +15428,7 @@
mnc="586"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -16661,7 +15440,7 @@
mcc="311"
mnc="586"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -16674,7 +15453,7 @@
mnc="587"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -16686,7 +15465,7 @@
mnc="587"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -16698,7 +15477,7 @@
mcc="311"
mnc="587"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -16711,7 +15490,7 @@
mnc="588"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -16723,7 +15502,7 @@
mnc="588"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -16735,7 +15514,7 @@
mcc="311"
mnc="588"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -16748,7 +15527,7 @@
mnc="589"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -16760,7 +15539,7 @@
mnc="589"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -16772,7 +15551,7 @@
mcc="311"
mnc="589"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,ia,mms,dun,hipri,fota"
+ type="default,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -16859,7 +15638,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="gsc"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -16875,7 +15654,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="gsc"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -16948,7 +15727,7 @@
mmsc="http://mms.cox.net/cox/mms.php"
mmsproxy=""
mmsport=""
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -16962,7 +15741,7 @@
mmsc="http://mms.cox.net/cox/mms.php"
mmsproxy=""
mmsport=""
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -17047,7 +15826,7 @@
mmsport="9201"
mvno_type="spn"
mvno_match_data="srtcomm"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -17063,7 +15842,7 @@
mmsport="9201"
mvno_type="spn"
mvno_match_data="srtcomm"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -17148,7 +15927,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="unitedwireless"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -17164,7 +15943,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="unitedwireless"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -17198,7 +15977,7 @@
mmsc="http://mmsc.pinebelt.net:6672/"
mmsproxy=""
mmsport=""
- type="default,ia,mms,supl"
+ type="default,mms,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
/>
@@ -17221,7 +16000,7 @@
mcc="311"
mnc="740"
apn="akcell.mobi"
- type="default,ia"
+ type="default"
protocol="IP"
roaming_protocol="IP"
/>
@@ -17232,7 +16011,7 @@
mnc="750"
apn="CdmaNai"
authtype="3"
- type="default,ia,mms,supl,dun"
+ type="default,mms,supl,dun"
mmsc="http://mms.cleartalk.us/cleartalk/mms.php"
protocol="IPV4V6"
bearer_bitmask="6"
@@ -17242,7 +16021,7 @@
mcc="311"
mnc="750"
apn="home.netamerica.com"
- type="default,ia,mms,supl,dun"
+ type="default,mms,supl,dun"
bearer_bitmask="14"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -17255,7 +16034,7 @@
mcc="311"
mnc="882"
apn="internet.curiosity.sprint.com"
- type="default,ia"
+ type="default"
protocol="IPV4V6"
network_type_bitmask="13"
/>
@@ -17269,7 +16048,7 @@
mmsport="8081"
mmsproxy="mms.mymn3g.net"
mmsc="http://mms.mymn3g.net"
- type="default,ia,fota,dun,mms"
+ type="default,fota,dun,mms"
protocol="IPV4V6"
/>
@@ -17346,7 +16125,7 @@
mmsport="80"
mvno_type="spn"
mvno_match_data="charitonvalley"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -17361,7 +16140,7 @@
mmsport="80"
mvno_type="spn"
mvno_match_data="charitonvalley"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -17376,7 +16155,7 @@
mmsport="80"
mmsproxy=""
mmsc="http://mms.rinawireless.com"
- type="default,ia,fota,dun,mms"
+ type="default,fota,dun,mms"
protocol="IPV4V6"
/>
@@ -17389,7 +16168,6 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
- type="default,ia,supl"
/>
<apn carrier="custer"
@@ -17471,7 +16249,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="custer"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -17487,7 +16265,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="custer"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -17566,7 +16344,7 @@
mmsport="80"
mvno_type="spn"
mvno_match_data="chatmobility"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -17581,7 +16359,7 @@
mmsport="80"
mvno_type="spn"
mvno_match_data="chatmobility"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -17624,7 +16402,7 @@
mmsport=""
mmsproxy=""
mmsc="http://mms.ntwls.net/nex-tech/mms.php"
- type="default,ia,supl,hipri,mms"
+ type="default,supl,hipri,mms"
protocol="IPV4V6"
/>
@@ -17667,7 +16445,7 @@
user="%M@dun.bluehandset.com"
password="wirelessblue"
mmsc="http://mms.blueunlimited.com"
- type="default,ia,dun,mms"
+ type="default,dun,mms"
protocol="IPV4V6"
/>
@@ -17676,39 +16454,7 @@
mcc="312"
mnc="870"
apn="gigsky"
- type="default,ia"
- />
-
- <apn carrier="MobileUC IMS"
- carrier_id = "10030"
- mcc="313"
- mnc="770"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
- />
-
- <apn carrier="MobileUC Hotspot"
- carrier_id = "10030"
- mcc="313"
- mnc="770"
- apn="globalhotspot"
- type="dun"
- user_visible="false"
- />
-
- <apn carrier="MobileUC"
- carrier_id = "10030"
- mcc="313"
- mnc="770"
- apn="globaldata"
- type="default,ia,mms,supl,hipri,fota"
- mmsc="http://mms.mobileuc.global/"
- mmsproxy="37.18.129.98"
- mmsport="8008"
- user_editable="false"
+ type="default"
/>
<apn carrier="openmobile"
@@ -17784,7 +16530,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="openmobile"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -17799,7 +16545,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="openmobile"
- type="default,ia,mms,dun,supl"
+ type="default,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -17810,7 +16556,7 @@
mcc="330"
mnc="110"
apn="lte.claropr.com"
- type="default,ia"
+ type="default"
authtype="1"
/>
@@ -17844,7 +16590,7 @@
user="webgprs"
password="webgprs2002"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
@@ -17871,7 +16617,7 @@
user="movistar"
password="movistar"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Movistar MMS"
@@ -17896,7 +16642,7 @@
user="movistar"
password="movistar"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Movistar MMS"
@@ -17920,7 +16666,7 @@
apn="web.iusacellgsm.mx"
user="iusacellgsm"
password="iusacellgsm"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Iusacell MMS"
@@ -17982,7 +16728,7 @@
mnc='090'
apn='wap.nexteldata.com.mx'
authtype='0'
- type='default,ia'
+ type='default'
/>
<apn carrier="Altan"
@@ -17990,7 +16736,7 @@
mcc="334"
mnc="140"
apn="internet.altan"
- type="default,ia"
+ type="default"
user=""
password=""
/>
@@ -18010,7 +16756,7 @@
mcc="334"
mnc="140"
apn="internet.ientc.com"
- type="default,ia"
+ type="default"
user=""
password=""
mvno_type="spn"
@@ -18022,7 +16768,7 @@
mcc="334"
mnc="140"
apn="internet.newww.com"
- type="default,ia"
+ type="default"
user=""
password=""
mvno_type="spn"
@@ -18044,7 +16790,7 @@
<apn carrier="travelfy"
carrier_id="2472"
apn="travelfy"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Megacable"
@@ -18052,7 +16798,7 @@
mcc="334"
mnc="140"
apn="mega45g.com"
- type="default,ia"
+ type="default"
user=""
password=""
mvno_type="spn"
@@ -18076,7 +16822,7 @@
mcc="334"
mnc="140"
apn="internet.netwey.com.mx"
- type="default,ia"
+ type="default"
user=""
password=""
mvno_type="spn"
@@ -18100,7 +16846,7 @@
mcc="334"
mnc="140"
apn="internet.retemex.com"
- type="default,ia"
+ type="default"
user=""
password=""
mvno_type="spn"
@@ -18124,7 +16870,7 @@
mcc="334"
mnc="140"
apn="internet.wm.com"
- type="default,ia"
+ type="default"
user=""
password=""
mvno_type="spn"
@@ -18148,7 +16894,7 @@
mcc="334"
mnc="140"
apn="internet.iusacomm.com"
- type="default,ia"
+ type="default"
user=""
password=""
mvno_type="spn"
@@ -18172,7 +16918,7 @@
mcc="334"
mnc="140"
apn="internet.cfe.com"
- type="default,ia"
+ type="default"
user=""
password=""
mvno_type="spn"
@@ -18196,7 +16942,7 @@
mcc="334"
mnc="140"
apn="internet.inten.com"
- type="default,ia"
+ type="default"
user=""
password=""
mvno_type="spn"
@@ -18220,7 +16966,7 @@
mcc="334"
mnc="140"
apn="internet.diveracy.com"
- type="default,ia"
+ type="default"
user=""
password=""
mvno_type="spn"
@@ -18244,7 +16990,7 @@
mcc="334"
mnc="140"
apn="internet.diri.com"
- type="default,ia"
+ type="default"
user=""
password=""
mvno_type="spn"
@@ -18268,7 +17014,7 @@
mcc="334"
mnc="140"
apn="internet.turbored.com"
- type="default,ia"
+ type="default"
user=""
password=""
mvno_type="spn"
@@ -18292,7 +17038,7 @@
mcc="334"
mnc="140"
apn="internet.gugacom.com"
- type="default,ia"
+ type="default"
user=""
password=""
mvno_type="spn"
@@ -18316,7 +17062,7 @@
mcc="334"
mnc="140"
apn="internet.ubix.com"
- type="default,ia"
+ type="default"
user=""
password=""
mvno_type="spn"
@@ -18340,7 +17086,7 @@
mcc="334"
mnc="140"
apn="internet.rocketel.com"
- type="default,ia"
+ type="default"
user=""
password=""
mvno_type="spn"
@@ -18364,7 +17110,7 @@
mcc="334"
mnc="140"
apn="internet.edilar.com"
- type="default,ia"
+ type="default"
user=""
password=""
mvno_type="spn"
@@ -18388,7 +17134,7 @@
mcc="334"
mnc="140"
apn="internet.plus.com"
- type="default,ia"
+ type="default"
user=""
password=""
mvno_type="spn"
@@ -18412,7 +17158,7 @@
mcc="334"
mnc="140"
apn="internet.plus.com"
- type="default,ia"
+ type="default"
user=""
password=""
mvno_type="spn"
@@ -18436,7 +17182,7 @@
mcc="334"
mnc="140"
apn="internet.izzi.mx"
- type="default,ia"
+ type="default"
user=""
password=""
mvno_type="spn"
@@ -18460,7 +17206,7 @@
mcc="334"
mnc="140"
apn="internet.adm.com"
- type="default,ia"
+ type="default"
user=""
password=""
mvno_type="spn"
@@ -18484,7 +17230,7 @@
mcc="334"
mnc="140"
apn="internet.mexfon.com"
- type="default,ia"
+ type="default"
user=""
password=""
mvno_type="spn"
@@ -18508,7 +17254,7 @@
mcc="334"
mnc="140"
apn="internet.yotelco.com"
- type="default,ia"
+ type="default"
user=""
password=""
mvno_type="spn"
@@ -18532,7 +17278,7 @@
mcc="334"
mnc="140"
apn="internet.arloesinet.com"
- type="default,ia"
+ type="default"
user=""
password=""
mvno_type="spn"
@@ -18556,7 +17302,7 @@
mcc="334"
mnc="140"
apn="internet.valor.com"
- type="default,ia"
+ type="default"
user=""
password=""
mvno_type="spn"
@@ -18580,7 +17326,7 @@
mcc="334"
mnc="140"
apn="internet.wimo.com"
- type="default,ia"
+ type="default"
user=""
password=""
mvno_type="spn"
@@ -18604,7 +17350,7 @@
mcc="334"
mnc="140"
apn="internet.oui.com"
- type="default,ia"
+ type="default"
user=""
password=""
mvno_type="spn"
@@ -18628,7 +17374,7 @@
mcc="334"
mnc="140"
apn="Internet.mvne1.com"
- type="default,ia"
+ type="default"
user=""
password=""
mvno_type="spn"
@@ -18664,7 +17410,7 @@
mcc="338"
mnc="05"
apn="web"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS Digicel"
@@ -18683,7 +17429,7 @@
mcc="338"
mnc="050"
apn="web"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS Digicel"
@@ -18702,7 +17448,7 @@
mcc="338"
mnc="18"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Lime Postpaid MMS"
@@ -18721,7 +17467,7 @@
mcc="338"
mnc="18"
apn="ppinternet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Lime Prepaid MMS"
@@ -18740,7 +17486,7 @@
mcc="338"
mnc="180"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Lime Postpaid MMS"
@@ -18759,7 +17505,7 @@
mcc="338"
mnc="180"
apn="ppinternet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Lime Prepaid MMS"
@@ -18781,7 +17527,7 @@
user=""
password=""
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Claro MMS"
@@ -18806,7 +17552,7 @@
user=""
password=""
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Lime Postpaid MMS"
@@ -18830,7 +17576,7 @@
apn="orangeweb"
user="orange"
password="orange"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Orange MMS Caraïbe"
@@ -18866,7 +17612,7 @@
mmsc="http://mmc.digicelfr.com/servlets/mms"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
- type="default,ia,mms,supl"
+ type="default,mms,supl"
/>
<apn carrier="Lime Internet Postpaid"
@@ -18875,7 +17621,7 @@
apn="internet"
user=""
password=""
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Lime Postpaid MMS"
@@ -18897,7 +17643,7 @@
apn='internet'
authtype='1'
mmsc='http://www.time4lime.com/'
- type='default,ia'
+ type='default'
/>
<apn carrier="Barbados:Lime:Mms"
@@ -18928,7 +17674,7 @@
apn="internet"
user=""
password=""
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Lime Postpaid MMS"
@@ -18950,7 +17696,7 @@
apn='internet'
authtype='1'
mmsc='http://www.time4lime.com/'
- type='default,ia'
+ type='default'
/>
<apn carrier='Antigua:Lime:Mms'
@@ -18981,7 +17727,7 @@
apn="internet"
user=""
password=""
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Lime Postpaid MMS"
@@ -19003,7 +17749,7 @@
apn='internet'
authtype='1'
mmsc='http://www.time4lime.com/'
- type='default,ia'
+ type='default'
/>
<apn carrier='Cayman Islands:Lime:Modem'
@@ -19034,7 +17780,7 @@
apn="internet"
user=""
password=""
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Lime Postpaid MMS"
@@ -19055,7 +17801,7 @@
mnc='77'
apn='wap.digicelbvi.com'
authtype='1'
- type='default,ia'
+ type='default'
/>
<apn carrier='Bvi:Digicel:Mms'
@@ -19093,7 +17839,7 @@
apn='internet'
authtype='1'
mmsc='http://www.time4lime.com/'
- type='default,ia'
+ type='default'
/>
<apn carrier='Bvi:Lime:Mms'
@@ -19124,7 +17870,7 @@
apn="internet"
user=""
password=""
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Lime Postpaid MMS"
@@ -19146,7 +17892,7 @@
apn='internet'
authtype='1'
mmsc='http://www.time4lime.com/'
- type='default,ia'
+ type='default'
/>
<apn carrier='Grenada:Lime:Mms'
@@ -19177,7 +17923,7 @@
apn="internet"
user=""
password=""
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Lime Postpaid MMS"
@@ -19199,7 +17945,7 @@
apn='internet'
authtype='1'
mmsc='http://www.time4lime.com/'
- type='default,ia'
+ type='default'
/>
<apn carrier='Monserrat:Lime:Mms'
@@ -19230,7 +17976,7 @@
apn="internet"
user=""
password=""
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Lime Postpaid MMS"
@@ -19251,7 +17997,7 @@
apn='internet'
authtype='1'
mmsc='http://www.time4lime.com/'
- type='default,ia'
+ type='default'
/>
<apn carrier='St Kitts And Nevis:Lime:Mms'
@@ -19280,7 +18026,7 @@
apn="internet"
user=""
password=""
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Lime Postpaid MMS"
@@ -19302,7 +18048,7 @@
apn='internet'
authtype='1'
mmsc='http://www.time4lime.com/'
- type='default,ia'
+ type='default'
/>
<apn carrier='St Lucia:Lime:Mms'
@@ -19333,7 +18079,7 @@
apn="internet"
user=""
password=""
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Lime Postpaid MMS"
@@ -19355,7 +18101,7 @@
apn='internet'
authtype='1'
mmsc='http://www.time4lime.com/'
- type='default,ia'
+ type='default'
/>
<apn carrier='St Vincent:Lime:Mms'
@@ -19386,7 +18132,7 @@
mnc='69'
apn='web.digicelcuracao.com'
authtype='1'
- type='default,ia'
+ type='default'
/>
<apn carrier='Curacao:Digicel:Mms'
@@ -19421,7 +18167,7 @@
user=""
password=""
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS Digicel"
@@ -19446,7 +18192,7 @@
user=""
password=""
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS Digicel"
@@ -19468,7 +18214,7 @@
mcc="364"
mnc="49"
apn="pda.newcomobile.com"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Be Aliv IMS"
@@ -19485,7 +18231,7 @@
apn="internet"
user=""
password=""
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Lime Postpaid MMS"
@@ -19507,7 +18253,7 @@
apn='internet'
authtype='1'
mmsc='http://www.time4lime.com/'
- type='default,ia'
+ type='default'
/>
<apn carrier='Anguilla:Lime:Mms'
@@ -19538,7 +18284,7 @@
apn="internet"
user=""
password=""
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Lime Postpaid MMS"
@@ -19560,7 +18306,7 @@
apn='internet'
authtype='1'
mmsc='http://www.time4lime.com/'
- type='default,ia'
+ type='default'
/>
<apn carrier='Dominica:Lime:Mms'
@@ -19590,7 +18336,7 @@
mcc="368"
mnc="01"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
@@ -19610,7 +18356,7 @@
mcc="370"
mnc="01"
apn="orangeinternet"
- type="ia,default,ia,supl"
+ type="ia,default,supl"
/>
<apn carrier="Orange net (3G)"
@@ -19618,7 +18364,7 @@
mcc="370"
mnc="01"
apn="orangenet.com.do"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Orange MMS"
@@ -19640,7 +18386,7 @@
mcc="370"
mnc="02"
apn="internet.ideasclaro.com.do"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS"
@@ -19657,7 +18403,7 @@
mcc="370"
mnc="020"
apn="internet.ideasclaro.com.do"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS"
@@ -19679,7 +18425,7 @@
user="viva"
password="viva"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Viva MMS"
@@ -19701,7 +18447,7 @@
mcc="370"
mnc="05"
apn="smart.wind4g.com.do"
- type="default,ia"
+ type="default"
protocol="IPV4V6"
/>
@@ -19711,7 +18457,7 @@
mnc='02'
apn='wap.digicelha.com'
authtype='1'
- type='default,ia'
+ type='default'
/>
<apn carrier='Haiti:Digicel:Mms'
@@ -19747,7 +18493,7 @@
mcc="372"
mnc="03"
apn="natcom"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Bmobile internet"
@@ -19758,7 +18504,7 @@
user=""
password=""
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Bmobile mms"
@@ -19782,7 +18528,7 @@
user=""
password=""
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Bmobile mms"
@@ -19805,7 +18551,7 @@
user=""
password=""
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Bmobile mms"
@@ -19829,7 +18575,7 @@
user=""
password=""
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Bmobile mms"
@@ -19854,7 +18600,7 @@
user=""
password=""
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Bmobile mms"
@@ -19879,7 +18625,7 @@
user=""
password=""
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Bmobile mms"
@@ -19904,7 +18650,7 @@
user=""
password=""
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Bmobile mms"
@@ -19929,7 +18675,7 @@
user=""
password=""
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Bmobile mms"
@@ -19954,7 +18700,7 @@
user=""
password=""
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Bmobile mms"
@@ -19979,7 +18725,7 @@
user=""
password=""
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Bmobile mms"
@@ -20004,7 +18750,7 @@
user=""
password=""
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Bmobile mms"
@@ -20029,7 +18775,7 @@
user=""
password=""
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS Trinidad"
@@ -20054,7 +18800,7 @@
user=""
password=""
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS Trinidad"
@@ -20077,7 +18823,7 @@
apn="internet"
user=""
password=""
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Lime Postpaid MMS"
@@ -20098,7 +18844,7 @@
mnc='350'
apn='internet'
authtype='1'
- type='default,ia'
+ type='default'
/>
<apn carrier='Turks And Caicos:Lime:Mms'
@@ -20128,7 +18874,7 @@
mcc="400"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Bakcell"
@@ -20136,7 +18882,7 @@
mcc="400"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="FONEX"
@@ -20144,7 +18890,7 @@
mcc="400"
mnc="03"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Nar Mobile"
@@ -20152,7 +18898,7 @@
mcc="400"
mnc="04"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Beeline Internet"
@@ -20163,7 +18909,7 @@
user="@internet.beeline"
password="beeline"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Beeline MMS"
@@ -20185,7 +18931,7 @@
mcc="401"
mnc="01"
apn="internet.dos.kz"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="izi"
@@ -20193,7 +18939,7 @@
mcc="401"
mnc="01"
apn="izi.me"
- type="default,ia,supl"
+ type="default,supl"
mvno_type="imsi"
mvno_match_data="40101568"
/>
@@ -20203,7 +18949,7 @@
mcc="401"
mnc="02"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Kcell MMS"
@@ -20222,7 +18968,7 @@
mcc="401"
mnc="07"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Tele2 Internet"
@@ -20230,7 +18976,7 @@
mcc="401"
mnc="77"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Tele2 MMS"
@@ -20249,7 +18995,7 @@
mcc="402"
mnc="11"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
protocol="IPV4V6"
/>
@@ -20262,7 +19008,7 @@
password=""
proxy=""
port=""
- type="default,ia,supl"
+ type="default,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
/>
@@ -20274,9 +19020,7 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafonemobileconnect"
@@ -20284,9 +19028,7 @@
mcc="404"
mnc="01"
apn="www"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone_MMS"
@@ -20298,8 +19040,6 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="AIRTEL LIVE"
@@ -20309,9 +19049,7 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Mobile Office"
@@ -20319,9 +19057,7 @@
mcc="404"
mnc="02"
apn="airtelgprs.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Airtel MMS"
@@ -20334,18 +19070,6 @@
mmsproxy="100.1.201.172"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- />
-
- <apn carrier="Airtel IMS"
- carrier_id = "1961"
- mcc="404"
- mnc="02"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Mobile Office"
@@ -20353,9 +19077,7 @@
mcc="404"
mnc="03"
apn="airtelgprs.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="AIRTEL LIVE"
@@ -20365,9 +19087,7 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Airtel MMS"
@@ -20380,18 +19100,6 @@
mmsproxy="100.1.201.172"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- />
-
- <apn carrier="Airtel IMS"
- carrier_id = "1961"
- mcc="404"
- mnc="03"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -20399,9 +19107,7 @@
mcc="404"
mnc="04"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA GPRS"
@@ -20411,9 +19117,7 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA MMS"
@@ -20425,8 +19129,6 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -20438,8 +19140,6 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -20447,9 +19147,7 @@
mcc="404"
mnc="05"
apn="www"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone live"
@@ -20459,9 +19157,7 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Idea_Internet"
@@ -20469,9 +19165,7 @@
mcc="404"
mnc="07"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA GPRS"
@@ -20481,9 +19175,7 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA MMS"
@@ -20495,8 +19187,6 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -20508,8 +19198,6 @@
mmsproxy="10.239.221.7"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance Net"
@@ -20517,9 +19205,7 @@
mcc="404"
mnc="09"
apn="smartnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance WAP"
@@ -20530,35 +19216,26 @@
proxy="10.239.221.7"
port="8080"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Mobile Office"
- carrier_id = "1961"
mcc="404"
mnc="10"
apn="airtelgprs.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="AIRTEL LIVE"
- carrier_id = "1961"
mcc="404"
mnc="10"
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Airtel MMS"
- carrier_id = "1961"
mcc="404"
mnc="10"
apn="airtelmms.com"
@@ -20567,18 +19244,6 @@
mmsproxy="100.1.201.172"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- />
-
- <apn carrier="Airtel IMS"
- carrier_id = "1961"
- mcc="404"
- mnc="10"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -20590,8 +19255,6 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -20599,9 +19262,7 @@
mcc="404"
mnc="11"
apn="www"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone live"
@@ -20611,9 +19272,7 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Idea_Internet"
@@ -20621,9 +19280,7 @@
mcc="404"
mnc="12"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA GPRS"
@@ -20633,9 +19290,7 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA MMS"
@@ -20647,8 +19302,6 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -20660,8 +19313,6 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -20669,9 +19320,7 @@
mcc="404"
mnc="13"
apn="www"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone live"
@@ -20681,9 +19330,7 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA MMS"
@@ -20695,8 +19342,6 @@
mmsproxy="10.11.12.13"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -20704,9 +19349,7 @@
mcc="404"
mnc="14"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA GPRS"
@@ -20716,9 +19359,7 @@
apn="imis"
proxy="10.11.12.13"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone_MMS"
@@ -20730,8 +19371,6 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -20739,9 +19378,7 @@
mcc="404"
mnc="15"
apn="www"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone live"
@@ -20751,9 +19388,7 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Mobile Office"
@@ -20761,9 +19396,7 @@
mcc="404"
mnc="16"
apn="airtelgprs.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="AIRTEL LIVE"
@@ -20773,9 +19406,7 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Airtel MMS"
@@ -20788,26 +19419,13 @@
mmsproxy="100.1.201.172"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- />
-
- <apn carrier="Airtel IMS"
- carrier_id = "1961"
- mcc="404"
- mnc="16"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS-Postpaid"
mcc="404"
mnc="17"
apn="aircelwebpost"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet-Postpaid"
@@ -20816,9 +19434,7 @@
apn="aircelwappost"
proxy="172.17.83.69"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet-Prepaid"
@@ -20827,27 +19443,23 @@
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel-GPRS-Prepaid"
mcc="404"
mnc="17"
apn="aircelweb"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel Internet (40417)"
mcc="404"
mnc="17"
apn="aircelgprs"
- type="default,ia,supl,fota,dun"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
/>
<apn carrier="Aircel-MMS"
@@ -20858,8 +19470,6 @@
mmsproxy="172.17.83.69"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -20871,8 +19481,6 @@
mmsproxy="10.239.221.7"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance Net"
@@ -20880,9 +19488,7 @@
mcc="404"
mnc="18"
apn="smartnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance WAP"
@@ -20893,9 +19499,7 @@
proxy="10.239.221.7"
port="8080"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance Internet (40418)"
@@ -20903,9 +19507,9 @@
mcc="404"
mnc="18"
apn="rcomnet"
- type="default,ia,supl,fota,dun"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
/>
<apn carrier="Idea_Internet"
@@ -20913,9 +19517,7 @@
mcc="404"
mnc="19"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA GPRS"
@@ -20925,9 +19527,7 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA MMS"
@@ -20939,8 +19539,6 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -20952,8 +19550,6 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -20961,9 +19557,7 @@
mcc="404"
mnc="20"
apn="www"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone live"
@@ -20973,9 +19567,27 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
+ />
+
+ <apn carrier="Loop Mobile MMS"
+ carrier_id = "1545"
+ mcc="404"
+ mnc="21"
+ apn="mizone"
+ password="mmsc"
+ mmsc="http://mms.loopmobile.in:8080"
+ mmsproxy="10.0.0.10"
+ mmsport="9401"
+ type="mms"
+ />
+
+ <apn carrier="Loop Mobile"
+ carrier_id = "1545"
+ mcc="404"
+ mnc="21"
+ apn="www"
+ type="default,supl"
/>
<apn carrier="Idea_Internet"
@@ -20983,9 +19595,7 @@
mcc="404"
mnc="22"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA GPRS"
@@ -20995,9 +19605,7 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA MMS"
@@ -21009,8 +19617,6 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -21018,9 +19624,7 @@
mcc="404"
mnc="24"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA GPRS"
@@ -21030,9 +19634,7 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA MMS"
@@ -21044,17 +19646,13 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS-Postpaid"
mcc="404"
mnc="25"
apn="aircelwebpost"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet-Postpaid"
@@ -21063,9 +19661,7 @@
apn="aircelwappost"
proxy="172.17.83.69"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet-Prepaid"
@@ -21074,27 +19670,23 @@
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel-GPRS-Prepaid"
mcc="404"
mnc="25"
apn="aircelweb"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel Internet (40425)"
mcc="404"
mnc="25"
apn="aircelgprs"
- type="default,ia,supl,fota,dun"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
/>
<apn carrier="Aircel-MMS"
@@ -21105,8 +19697,6 @@
mmsproxy="172.17.83.69"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -21118,8 +19708,6 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -21127,9 +19715,7 @@
mcc="404"
mnc="27"
apn="www"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone live"
@@ -21139,18 +19725,14 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel-GPRS-Postpaid"
mcc="404"
mnc="28"
apn="aircelwebpost"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet-Postpaid"
@@ -21159,9 +19741,7 @@
apn="aircelwappost"
proxy="172.17.83.69"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet-Prepaid"
@@ -21170,27 +19750,23 @@
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel-GPRS-Prepaid"
mcc="404"
mnc="28"
apn="aircelweb"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel Internet (40428)"
mcc="404"
mnc="28"
apn="aircelgprs"
- type="default,ia,supl,fota,dun"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
/>
<apn carrier="Aircel-MMS"
@@ -21201,17 +19777,13 @@
mmsproxy="172.17.83.69"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS-Postpaid"
mcc="404"
mnc="29"
apn="aircelwebpost"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet-Postpaid"
@@ -21220,9 +19792,7 @@
apn="myaircelpost"
proxy="172.17.83.69"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet-Prepaid"
@@ -21231,38 +19801,32 @@
apn="myaircel"
proxy="172.17.83.69"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel-GPRS-Prepaid"
mcc="404"
mnc="29"
apn="aircelweb"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel Internet (40429)"
mcc="404"
mnc="29"
apn="aircelgprs"
- type="default,ia,supl,fota,dun"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
/>
<apn carrier="Aircel WAP (40429)"
mcc="404"
mnc="29"
apn="aircelwap"
- type="default,ia,supl"
+ type="default,supl"
proxy="172.17.83.69"
port="8080"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-MMS"
@@ -21273,8 +19837,6 @@
mmsproxy="172.17.83.69"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -21286,8 +19848,6 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -21295,9 +19855,7 @@
mcc="404"
mnc="30"
apn="www"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone live"
@@ -21307,9 +19865,7 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Mobile Office"
@@ -21317,9 +19873,7 @@
mcc="404"
mnc="31"
apn="airtelgprs.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="AIRTEL LIVE"
@@ -21329,9 +19883,7 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Airtel MMS"
@@ -21344,27 +19896,13 @@
mmsproxy="100.1.201.172"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- />
-
- <apn carrier="Airtel IMS"
- carrier_id = "1961"
- mcc="404"
- mnc="31"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS-Postpaid"
mcc="404"
mnc="33"
apn="aircelwebpost"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet-Postpaid"
@@ -21373,9 +19911,7 @@
apn="myaircelpost"
proxy="172.17.83.69"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet-Prepaid"
@@ -21384,38 +19920,32 @@
apn="myaircel"
proxy="172.17.83.69"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel-GPRS-Prepaid"
mcc="404"
mnc="33"
apn="aircelweb"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel Internet (40433)"
mcc="404"
mnc="33"
apn="aircelgprs"
- type="default,ia,supl,fota,dun"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
/>
<apn carrier="Aircel WAP (40433)"
mcc="404"
mnc="33"
apn="aircelwap"
- type="default,ia,supl"
+ type="default,supl"
proxy="172.17.83.69"
port="8080"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-MMS"
@@ -21426,8 +19956,6 @@
mmsproxy="172.17.83.69"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -21436,9 +19964,7 @@
mnc="34"
apn="bsnlnet"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnllive"
@@ -21448,9 +19974,7 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnlmms"
@@ -21462,17 +19986,13 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS-Postpaid"
mcc="404"
mnc="35"
apn="aircelwebpost"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet-Postpaid"
@@ -21481,9 +20001,7 @@
apn="aircelwappost"
proxy="172.17.83.69"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet-Prepaid"
@@ -21492,27 +20010,23 @@
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel-GPRS-Prepaid"
mcc="404"
mnc="35"
apn="aircelweb"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel Internet (40435)"
mcc="404"
mnc="35"
apn="aircelgprs"
- type="default,ia,supl,fota,dun"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
/>
<apn carrier="Aircel-MMS"
@@ -21523,8 +20037,6 @@
mmsproxy="172.17.83.69"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -21536,8 +20048,6 @@
mmsproxy="10.239.221.7"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance Net"
@@ -21545,9 +20055,7 @@
mcc="404"
mnc="36"
apn="smartnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance WAP"
@@ -21558,9 +20066,7 @@
proxy="10.239.221.7"
port="8080"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance Internet (40436)"
@@ -21568,18 +20074,16 @@
mcc="404"
mnc="36"
apn="rcomnet"
- type="default,ia,supl,fota,dun"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
/>
<apn carrier="Aircel-GPRS-Postpaid"
mcc="404"
mnc="37"
apn="aircelwebpost"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet-Postpaid"
@@ -21588,9 +20092,7 @@
apn="aircelwappost"
proxy="172.17.83.69"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet-Prepaid"
@@ -21599,27 +20101,23 @@
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel-GPRS-Prepaid"
mcc="404"
mnc="37"
apn="aircelweb"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel Internet (40437)"
mcc="404"
mnc="37"
apn="aircelgprs"
- type="default,ia,supl,fota,dun"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
/>
<apn carrier="Aircel-MMS"
@@ -21630,8 +20128,6 @@
mmsproxy="172.17.83.69"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlmms"
@@ -21643,8 +20139,6 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -21652,9 +20146,7 @@
mcc="404"
mnc="38"
apn="bsnlnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnllive"
@@ -21664,9 +20156,7 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Mobile Office"
@@ -21674,9 +20164,7 @@
mcc="404"
mnc="40"
apn="airtelgprs.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="AIRTEL LIVE"
@@ -21686,9 +20174,7 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Airtel MMS"
@@ -21701,18 +20187,6 @@
mmsproxy="100.1.201.172"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- />
-
- <apn carrier="Airtel IMS"
- carrier_id = "1961"
- mcc="404"
- mnc="40"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS-Postpaid"
@@ -21720,9 +20194,7 @@
mcc="404"
mnc="41"
apn="aircelgprs.po"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel-GPRS-Prepaid"
@@ -21730,9 +20202,7 @@
mcc="404"
mnc="41"
apn="aircelgprs.pr"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet-Postpaid"
@@ -21742,9 +20212,7 @@
apn="aircelwap.po"
proxy="192.168.35.201"
port="8081"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet-Prepaid"
@@ -21754,9 +20222,7 @@
apn="aircelwap.pr"
proxy="192.168.35.201"
port="8081"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel Internet (40441)"
@@ -21764,9 +20230,9 @@
mcc="404"
mnc="41"
apn="aircelgprs"
- type="default,ia,supl,fota,dun"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
/>
<apn carrier="Aircel WAP (40441)"
@@ -21774,11 +20240,9 @@
mcc="404"
mnc="41"
apn="aircelwap"
- type="default,ia,supl"
+ type="default,supl"
proxy="172.17.83.69"
port="8080"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-MMS-Postpaid"
@@ -21790,8 +20254,6 @@
mmsproxy="192.168.35.196"
mmsport="8081"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-MMS-Prepaid"
@@ -21803,8 +20265,6 @@
mmsproxy="192.168.35.196"
mmsport="8081"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel MMS (40441)"
@@ -21816,8 +20276,8 @@
mmsport="8080"
mmsc="http://172.17.83.67/servlets/mms"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ protocol="IP"
+ roaming_protocol="IP"
/>
<apn carrier="Aircel-GPRS-Postpaid"
@@ -21825,9 +20285,7 @@
mcc="404"
mnc="42"
apn="aircelgprs.po"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel-GPRS-Prepaid"
@@ -21835,9 +20293,7 @@
mcc="404"
mnc="42"
apn="aircelgprs.pr"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet-Postpaid"
@@ -21847,9 +20303,7 @@
apn="aircelwap.po"
proxy="192.168.35.201"
port="8081"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet-Prepaid"
@@ -21859,9 +20313,7 @@
apn="aircelwap.pr"
proxy="192.168.35.201"
port="8081"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel Internet (40442)"
@@ -21869,9 +20321,9 @@
mcc="404"
mnc="42"
apn="aircelgprs"
- type="default,ia,supl,fota,dun"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
/>
<apn carrier="Aircel-MMS-Postpaid"
@@ -21883,8 +20335,6 @@
mmsproxy="192.168.35.196"
mmsport="8081"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-MMS-Prepaid"
@@ -21896,8 +20346,6 @@
mmsproxy="192.168.35.196"
mmsport="8081"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -21909,8 +20357,6 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -21918,9 +20364,7 @@
mcc="404"
mnc="43"
apn="www"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone live"
@@ -21930,9 +20374,7 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Idea_Internet"
@@ -21940,9 +20382,7 @@
mcc="404"
mnc="44"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA GPRS"
@@ -21952,9 +20392,7 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA MMS"
@@ -21966,8 +20404,6 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Mobile Office"
@@ -21975,9 +20411,7 @@
mcc="404"
mnc="45"
apn="airtelgprs.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="AIRTEL LIVE"
@@ -21987,9 +20421,7 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Airtel MMS"
@@ -22002,18 +20434,6 @@
mmsproxy="100.1.201.172"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- />
-
- <apn carrier="Airtel IMS"
- carrier_id = "1961"
- mcc="404"
- mnc="45"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -22025,8 +20445,6 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -22034,9 +20452,7 @@
mcc="404"
mnc="46"
apn="www"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone live"
@@ -22046,9 +20462,7 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Mobile Office"
@@ -22056,9 +20470,7 @@
mcc="404"
mnc="49"
apn="airtelgprs.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="AIRTEL LIVE"
@@ -22068,9 +20480,7 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Airtel MMS"
@@ -22083,18 +20493,6 @@
mmsproxy="100.1.201.172"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- />
-
- <apn carrier="Airtel IMS"
- carrier_id = "1961"
- mcc="404"
- mnc="49"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -22106,8 +20504,6 @@
mmsproxy="10.239.221.7"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance Net"
@@ -22115,9 +20511,7 @@
mcc="404"
mnc="50"
apn="smartnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance WAP"
@@ -22128,9 +20522,7 @@
proxy="10.239.221.7"
port="8080"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnlmms"
@@ -22142,8 +20534,6 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -22151,9 +20541,7 @@
mcc="404"
mnc="51"
apn="bsnlnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnllive"
@@ -22163,9 +20551,7 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance MMS"
@@ -22177,8 +20563,6 @@
mmsproxy="10.239.221.7"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance Net"
@@ -22186,9 +20570,7 @@
mcc="404"
mnc="52"
apn="smartnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance WAP"
@@ -22199,9 +20581,7 @@
proxy="10.239.221.7"
port="8080"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnlmms"
@@ -22213,8 +20593,6 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -22222,9 +20600,7 @@
mcc="404"
mnc="53"
apn="bsnlnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnllive"
@@ -22234,9 +20610,7 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnlmms"
@@ -22248,8 +20622,6 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -22257,9 +20629,7 @@
mcc="404"
mnc="54"
apn="bsnlnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnllive"
@@ -22269,9 +20639,7 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnlmms"
@@ -22283,8 +20651,6 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -22292,9 +20658,7 @@
mcc="404"
mnc="55"
apn="bsnlnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnllive"
@@ -22304,9 +20668,7 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Idea_Internet"
@@ -22314,9 +20676,7 @@
mcc="404"
mnc="56"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA GPRS"
@@ -22326,9 +20686,7 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA MMS"
@@ -22340,8 +20698,6 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlmms"
@@ -22353,8 +20709,6 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -22362,9 +20716,7 @@
mcc="404"
mnc="57"
apn="bsnlnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnllive"
@@ -22374,9 +20726,7 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnlmms"
@@ -22388,8 +20738,6 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -22397,9 +20745,7 @@
mcc="404"
mnc="58"
apn="bsnlnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnllive"
@@ -22409,9 +20755,7 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnlmms"
@@ -22423,8 +20767,6 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -22432,9 +20774,7 @@
mcc="404"
mnc="59"
apn="bsnlnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnllive"
@@ -22444,9 +20784,7 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone_MMS"
@@ -22458,8 +20796,6 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -22467,9 +20803,7 @@
mcc="404"
mnc="60"
apn="www"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone live"
@@ -22479,9 +20813,7 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnlmms"
@@ -22493,8 +20825,6 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -22502,9 +20832,7 @@
mcc="404"
mnc="62"
apn="bsnlnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnllive"
@@ -22514,9 +20842,7 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnlmms"
@@ -22528,8 +20854,6 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -22537,9 +20861,7 @@
mcc="404"
mnc="64"
apn="bsnlnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnllive"
@@ -22549,9 +20871,7 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnlmms"
@@ -22563,8 +20883,6 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -22572,9 +20890,7 @@
mcc="404"
mnc="66"
apn="bsnlnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnllive"
@@ -22584,9 +20900,7 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance MMS"
@@ -22598,8 +20912,6 @@
mmsproxy="10.239.221.7"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance Net"
@@ -22607,9 +20919,7 @@
mcc="404"
mnc="67"
apn="smartnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance WAP"
@@ -22620,9 +20930,7 @@
proxy="10.239.221.7"
port="8080"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="MTNL"
@@ -22636,9 +20944,7 @@
mmsc="http://mtnlmms/"
mmsproxy="10.10.10.10"
mmsport="9401"
- type="default,ia,mms,supl,fota,dun"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,mms,supl,fota,dun"
/>
<apn carrier="MTNL"
@@ -22652,9 +20958,9 @@
mmsc="http://mtnlmms/"
mmsproxy="10.10.10.10"
mmsport="9401"
- type="default,ia,mms,supl,fota,dun"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,mms,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
/>
<apn carrier="Mobile Office"
@@ -22662,9 +20968,7 @@
mcc="404"
mnc="70"
apn="airtelgprs.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="AIRTEL LIVE"
@@ -22674,9 +20978,7 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Airtel MMS"
@@ -22689,18 +20991,6 @@
mmsproxy="100.1.201.172"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- />
-
- <apn carrier="Airtel IMS"
- carrier_id = "1557"
- mcc="404"
- mnc="70"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlmms"
@@ -22712,8 +21002,6 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -22721,9 +21009,7 @@
mcc="404"
mnc="71"
apn="bsnlnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnllive"
@@ -22733,9 +21019,7 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnlmms"
@@ -22747,8 +21031,6 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -22756,9 +21038,7 @@
mcc="404"
mnc="72"
apn="bsnlnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnllive"
@@ -22768,9 +21048,7 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnlmms"
@@ -22782,8 +21060,6 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -22791,9 +21067,7 @@
mcc="404"
mnc="73"
apn="bsnlnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnllive"
@@ -22803,9 +21077,7 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnlmms"
@@ -22817,8 +21089,6 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -22826,9 +21096,7 @@
mcc="404"
mnc="74"
apn="bsnlnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnllive"
@@ -22838,9 +21106,7 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnlmms"
@@ -22852,8 +21118,6 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -22861,9 +21125,7 @@
mcc="404"
mnc="75"
apn="bsnlnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnllive"
@@ -22873,9 +21135,7 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnlmms"
@@ -22887,8 +21147,6 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -22896,9 +21154,7 @@
mcc="404"
mnc="76"
apn="bsnlnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnllive"
@@ -22908,9 +21164,7 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnlmms"
@@ -22922,8 +21176,6 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -22931,9 +21183,7 @@
mcc="404"
mnc="77"
apn="bsnlnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnllive"
@@ -22943,9 +21193,7 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Idea_Internet"
@@ -22953,9 +21201,7 @@
mcc="404"
mnc="78"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA GPRS"
@@ -22965,9 +21211,7 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA MMS"
@@ -22979,8 +21223,6 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlmms"
@@ -22992,8 +21234,6 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -23001,9 +21241,7 @@
mcc="404"
mnc="79"
apn="bsnlnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnllive"
@@ -23013,9 +21251,7 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnlmms"
@@ -23027,8 +21263,6 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -23036,9 +21270,7 @@
mcc="404"
mnc="80"
apn="bsnlnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnllive"
@@ -23048,9 +21280,7 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnlmms"
@@ -23062,8 +21292,6 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -23071,9 +21299,7 @@
mcc="404"
mnc="81"
apn="bsnlnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="bsnllive"
@@ -23083,9 +21309,7 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Idea_Internet"
@@ -23093,9 +21317,7 @@
mcc="404"
mnc="82"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA GPRS"
@@ -23105,9 +21327,7 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA MMS"
@@ -23119,8 +21339,6 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -23132,8 +21350,6 @@
mmsproxy="10.239.221.7"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance Net"
@@ -23141,9 +21357,7 @@
mcc="404"
mnc="83"
apn="smartnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance WAP"
@@ -23154,9 +21368,7 @@
proxy="10.239.221.7"
port="8080"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone_MMS"
@@ -23168,8 +21380,6 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -23177,9 +21387,7 @@
mcc="404"
mnc="84"
apn="www"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone live"
@@ -23189,9 +21397,7 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance MMS"
@@ -23203,8 +21409,6 @@
mmsproxy="10.239.221.7"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance Net"
@@ -23212,9 +21416,7 @@
mcc="404"
mnc="85"
apn="smartnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance WAP"
@@ -23225,9 +21427,7 @@
proxy="10.239.221.7"
port="8080"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone_MMS"
@@ -23239,8 +21439,6 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -23248,9 +21446,7 @@
mcc="404"
mnc="86"
apn="www"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone live"
@@ -23260,9 +21456,7 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Idea_Internet"
@@ -23270,9 +21464,7 @@
mcc="404"
mnc="87"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA GPRS"
@@ -23282,9 +21474,7 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA MMS"
@@ -23296,8 +21486,6 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -23309,8 +21497,6 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -23318,9 +21504,7 @@
mcc="404"
mnc="88"
apn="www"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone live"
@@ -23330,9 +21514,7 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Idea_Internet"
@@ -23340,9 +21522,7 @@
mcc="404"
mnc="89"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA GPRS"
@@ -23352,9 +21532,7 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA MMS"
@@ -23366,8 +21544,6 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Mobile Office"
@@ -23375,9 +21551,7 @@
mcc="404"
mnc="90"
apn="airtelgprs.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="AIRTEL LIVE"
@@ -23387,9 +21561,7 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Airtel MMS"
@@ -23402,66 +21574,41 @@
mmsproxy="100.1.201.172"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- />
-
- <apn carrier="Airtel IMS"
- carrier_id = "1961"
- mcc="404"
- mnc="90"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS-Postpaid"
- carrier_id = "1551"
mcc="404"
mnc="91"
apn="aircelwebpost"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet-Postpaid"
- carrier_id = "1551"
mcc="404"
mnc="91"
apn="aircelwappost"
proxy="172.17.83.69"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet-Prepaid"
- carrier_id = "1551"
mcc="404"
mnc="91"
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel-GPRS-Prepaid"
- carrier_id = "1551"
mcc="404"
mnc="91"
apn="aircelweb"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel-MMS"
- carrier_id = "1551"
mcc="404"
mnc="91"
apn="aircelmms"
@@ -23469,8 +21616,6 @@
mmsproxy="172.17.83.69"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Mobile Office"
@@ -23478,9 +21623,7 @@
mcc="404"
mnc="92"
apn="airtelgprs.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="AIRTEL LIVE"
@@ -23490,9 +21633,7 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Airtel MMS"
@@ -23505,18 +21646,6 @@
mmsproxy="100.1.201.172"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- />
-
- <apn carrier="Airtel IMS"
- carrier_id = "1961"
- mcc="404"
- mnc="92"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Mobile Office"
@@ -23524,9 +21653,7 @@
mcc="404"
mnc="93"
apn="airtelgprs.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="AIRTEL LIVE"
@@ -23536,9 +21663,7 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Airtel MMS"
@@ -23551,18 +21676,6 @@
mmsproxy="100.1.201.172"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- />
-
- <apn carrier="Airtel IMS"
- carrier_id = "1961"
- mcc="404"
- mnc="93"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Mobile Office"
@@ -23570,9 +21683,7 @@
mcc="404"
mnc="94"
apn="airtelgprs.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="AIRTEL LIVE"
@@ -23582,9 +21693,7 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Airtel MMS"
@@ -23597,18 +21706,6 @@
mmsproxy="100.1.201.172"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- />
-
- <apn carrier="Airtel IMS"
- carrier_id = "1961"
- mcc="404"
- mnc="94"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Mobile Office"
@@ -23616,9 +21713,7 @@
mcc="404"
mnc="95"
apn="airtelgprs.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="AIRTEL LIVE"
@@ -23628,9 +21723,7 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Airtel MMS"
@@ -23643,18 +21736,6 @@
mmsproxy="100.1.201.172"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- />
-
- <apn carrier="Airtel IMS"
- carrier_id = "1961"
- mcc="404"
- mnc="95"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Mobile Office"
@@ -23662,9 +21743,7 @@
mcc="404"
mnc="96"
apn="airtelgprs.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="AIRTEL LIVE"
@@ -23674,9 +21753,7 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Airtel MMS"
@@ -23689,18 +21766,6 @@
mmsproxy="100.1.201.172"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- />
-
- <apn carrier="Airtel IMS"
- carrier_id = "1961"
- mcc="404"
- mnc="96"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Mobile Office"
@@ -23708,9 +21773,7 @@
mcc="404"
mnc="97"
apn="airtelgprs.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="AIRTEL LIVE"
@@ -23720,9 +21783,7 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Airtel MMS"
@@ -23735,18 +21796,6 @@
mmsproxy="100.1.201.172"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- />
-
- <apn carrier="Airtel IMS"
- carrier_id = "1961"
- mcc="404"
- mnc="97"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Mobile Office"
@@ -23754,9 +21803,7 @@
mcc="404"
mnc="98"
apn="airtelgprs.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="AIRTEL LIVE"
@@ -23766,9 +21813,7 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Airtel MMS"
@@ -23781,18 +21826,6 @@
mmsproxy="100.1.201.172"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- />
-
- <apn carrier="Airtel IMS"
- carrier_id = "1961"
- mcc="404"
- mnc="98"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -23804,8 +21837,6 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -23813,9 +21844,7 @@
mcc="405"
mnc="01"
apn="rcomnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="RelianceMbWorld"
@@ -23825,9 +21854,7 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance MMS"
@@ -23839,8 +21866,6 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -23848,9 +21873,7 @@
mcc="405"
mnc="03"
apn="rcomnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="RelianceMbWorld"
@@ -23860,9 +21883,7 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance MMS"
@@ -23874,8 +21895,6 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -23883,9 +21902,7 @@
mcc="405"
mnc="04"
apn="rcomnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="RelianceMbWorld"
@@ -23895,9 +21912,7 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance MMS"
@@ -23909,8 +21924,6 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -23918,9 +21931,7 @@
mcc="405"
mnc="05"
apn="rcomnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="RelianceMbWorld"
@@ -23930,9 +21941,7 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance MMS"
@@ -23944,8 +21953,6 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -23953,9 +21960,7 @@
mcc="405"
mnc="06"
apn="rcomnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="RelianceMbWorld"
@@ -23965,9 +21970,7 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance MMS"
@@ -23979,8 +21982,6 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -23988,9 +21989,7 @@
mcc="405"
mnc="07"
apn="rcomnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="RelianceMbWorld"
@@ -24000,9 +21999,7 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance MMS"
@@ -24014,8 +22011,6 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -24023,9 +22018,7 @@
mcc="405"
mnc="08"
apn="rcomnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="RelianceMbWorld"
@@ -24035,9 +22028,7 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance MMS"
@@ -24049,8 +22040,6 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -24058,9 +22047,7 @@
mcc="405"
mnc="09"
apn="rcomnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="RelianceMbWorld"
@@ -24070,9 +22057,7 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance MMS"
@@ -24084,8 +22069,6 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -24093,9 +22076,7 @@
mcc="405"
mnc="10"
apn="rcomnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="RelianceMbWorld"
@@ -24105,9 +22086,7 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance MMS"
@@ -24119,8 +22098,6 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -24128,9 +22105,7 @@
mcc="405"
mnc="11"
apn="rcomnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="RelianceMbWorld"
@@ -24140,9 +22115,7 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance MMS"
@@ -24154,8 +22127,6 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -24163,9 +22134,7 @@
mcc="405"
mnc="12"
apn="rcomnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="RelianceMbWorld"
@@ -24175,9 +22144,7 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance MMS"
@@ -24189,8 +22156,6 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -24198,9 +22163,7 @@
mcc="405"
mnc="13"
apn="rcomnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="RelianceMbWorld"
@@ -24210,9 +22173,7 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance MMS"
@@ -24224,8 +22185,6 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -24233,9 +22192,7 @@
mcc="405"
mnc="14"
apn="rcomnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="RelianceMbWorld"
@@ -24245,9 +22202,7 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance MMS"
@@ -24259,8 +22214,6 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -24268,9 +22221,7 @@
mcc="405"
mnc="15"
apn="rcomnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="RelianceMbWorld"
@@ -24280,9 +22231,7 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance MMS"
@@ -24294,8 +22243,6 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -24303,9 +22250,7 @@
mcc="405"
mnc="17"
apn="rcomnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="RelianceMbWorld"
@@ -24315,9 +22260,7 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance MMS"
@@ -24329,8 +22272,6 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -24338,9 +22279,7 @@
mcc="405"
mnc="18"
apn="rcomnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="RelianceMbWorld"
@@ -24350,9 +22289,7 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance MMS"
@@ -24364,8 +22301,6 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -24373,9 +22308,7 @@
mcc="405"
mnc="19"
apn="rcomnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="RelianceMbWorld"
@@ -24385,9 +22318,7 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance MMS"
@@ -24399,8 +22330,6 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -24408,9 +22337,7 @@
mcc="405"
mnc="20"
apn="rcomnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="RelianceMbWorld"
@@ -24420,9 +22347,7 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance MMS"
@@ -24434,8 +22359,6 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -24443,9 +22366,7 @@
mcc="405"
mnc="21"
apn="rcomnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="RelianceMbWorld"
@@ -24455,9 +22376,7 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance MMS"
@@ -24469,8 +22388,6 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -24478,9 +22395,7 @@
mcc="405"
mnc="22"
apn="rcomnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="RelianceMbWorld"
@@ -24490,9 +22405,7 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Reliance MMS"
@@ -24504,8 +22417,6 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -24513,9 +22424,7 @@
mcc="405"
mnc="23"
apn="rcomnet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="RelianceMbWorld"
@@ -24525,9 +22434,7 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -24537,9 +22444,7 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -24547,9 +22452,7 @@
mcc="405"
mnc="025"
apn="TATA.DOCOMO.INTERNET"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -24561,8 +22464,6 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -24570,9 +22471,7 @@
mcc="405"
mnc="026"
apn="TATA.DOCOMO.INTERNET"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -24582,9 +22481,7 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -24596,8 +22493,6 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -24605,9 +22500,7 @@
mcc="405"
mnc="027"
apn="TATA.DOCOMO.INTERNET"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -24617,9 +22510,7 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -24631,8 +22522,6 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -24640,9 +22529,7 @@
mcc="405"
mnc="028"
apn="TATA.DOCOMO.INTERNET"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -24652,9 +22539,7 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -24666,8 +22551,6 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -24675,9 +22558,7 @@
mcc="405"
mnc="029"
apn="TATA.DOCOMO.INTERNET"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -24687,9 +22568,7 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -24701,8 +22580,6 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -24710,9 +22587,7 @@
mcc="405"
mnc="030"
apn="TATA.DOCOMO.INTERNET"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -24722,9 +22597,7 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -24736,8 +22609,6 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -24745,9 +22616,7 @@
mcc="405"
mnc="031"
apn="TATA.DOCOMO.INTERNET"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -24757,9 +22626,7 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -24771,8 +22638,6 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -24780,9 +22645,7 @@
mcc="405"
mnc="032"
apn="TATA.DOCOMO.INTERNET"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -24792,9 +22655,7 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -24806,8 +22667,6 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -24815,9 +22674,7 @@
mcc="405"
mnc="033"
apn="TATA.DOCOMO.INTERNET"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -24827,9 +22684,7 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -24841,8 +22696,6 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -24850,9 +22703,7 @@
mcc="405"
mnc="034"
apn="TATA.DOCOMO.INTERNET"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -24862,9 +22713,7 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -24876,8 +22725,6 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -24885,9 +22732,7 @@
mcc="405"
mnc="035"
apn="TATA.DOCOMO.INTERNET"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -24897,9 +22742,7 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -24911,8 +22754,6 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -24920,9 +22761,7 @@
mcc="405"
mnc="036"
apn="TATA.DOCOMO.INTERNET"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -24932,9 +22771,7 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -24946,8 +22783,6 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -24955,9 +22790,7 @@
mcc="405"
mnc="037"
apn="TATA.DOCOMO.INTERNET"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -24967,9 +22800,7 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -24981,8 +22812,6 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -24990,9 +22819,7 @@
mcc="405"
mnc="038"
apn="TATA.DOCOMO.INTERNET"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -25002,9 +22829,7 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -25016,8 +22841,6 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -25025,9 +22848,7 @@
mcc="405"
mnc="039"
apn="TATA.DOCOMO.INTERNET"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -25037,9 +22858,7 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -25051,8 +22870,6 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -25060,9 +22877,7 @@
mcc="405"
mnc="040"
apn="TATA.DOCOMO.INTERNET"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -25072,9 +22887,7 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -25086,8 +22899,6 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -25095,9 +22906,7 @@
mcc="405"
mnc="041"
apn="TATA.DOCOMO.INTERNET"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -25107,9 +22916,7 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -25121,8 +22928,6 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -25130,9 +22935,7 @@
mcc="405"
mnc="042"
apn="TATA.DOCOMO.INTERNET"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -25142,9 +22945,7 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -25156,8 +22957,6 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -25165,9 +22964,7 @@
mcc="405"
mnc="043"
apn="TATA.DOCOMO.INTERNET"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -25177,9 +22974,7 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -25191,8 +22986,6 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -25200,9 +22993,7 @@
mcc="405"
mnc="044"
apn="TATA.DOCOMO.INTERNET"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -25212,9 +23003,7 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -25226,8 +23015,6 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -25235,9 +23022,7 @@
mcc="405"
mnc="045"
apn="TATA.DOCOMO.INTERNET"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -25247,9 +23032,7 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -25261,8 +23044,6 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -25270,9 +23051,7 @@
mcc="405"
mnc="046"
apn="TATA.DOCOMO.INTERNET"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -25282,9 +23061,7 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -25296,8 +23073,6 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -25305,9 +23080,7 @@
mcc="405"
mnc="047"
apn="TATA.DOCOMO.INTERNET"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -25317,9 +23090,7 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -25331,8 +23102,6 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Mobile Office"
@@ -25340,9 +23109,7 @@
mcc="405"
mnc="51"
apn="airtelgprs.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="AIRTEL LIVE"
@@ -25352,9 +23119,7 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Airtel MMS"
@@ -25367,18 +23132,6 @@
mmsproxy="100.1.201.172"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- />
-
- <apn carrier="Airtel IMS"
- carrier_id = "1961"
- mcc="405"
- mnc="51"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Mobile Office"
@@ -25386,9 +23139,7 @@
mcc="405"
mnc="52"
apn="airtelgprs.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="AIRTEL LIVE"
@@ -25398,9 +23149,7 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Airtel MMS"
@@ -25413,18 +23162,6 @@
mmsproxy="100.1.201.172"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- />
-
- <apn carrier="Airtel IMS"
- carrier_id = "1961"
- mcc="405"
- mnc="52"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Mobile Office"
@@ -25432,9 +23169,7 @@
mcc="405"
mnc="53"
apn="airtelgprs.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="AIRTEL LIVE"
@@ -25444,9 +23179,7 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Airtel MMS"
@@ -25459,18 +23192,6 @@
mmsproxy="100.1.201.172"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- />
-
- <apn carrier="Airtel IMS"
- carrier_id = "1961"
- mcc="405"
- mnc="53"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Mobile Office"
@@ -25478,9 +23199,7 @@
mcc="405"
mnc="54"
apn="airtelgprs.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="AIRTEL LIVE"
@@ -25490,9 +23209,7 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Airtel MMS"
@@ -25505,18 +23222,6 @@
mmsproxy="100.1.201.172"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- />
-
- <apn carrier="Airtel IMS"
- carrier_id = "1961"
- mcc="405"
- mnc="54"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Mobile Office"
@@ -25524,9 +23229,7 @@
mcc="405"
mnc="55"
apn="airtelgprs.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="AIRTEL LIVE"
@@ -25536,9 +23239,7 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Airtel MMS"
@@ -25551,18 +23252,6 @@
mmsproxy="100.1.201.172"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- />
-
- <apn carrier="Airtel IMS"
- carrier_id = "1961"
- mcc="405"
- mnc="55"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Mobile Office"
@@ -25570,9 +23259,7 @@
mcc="405"
mnc="56"
apn="airtelgprs.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="AIRTEL LIVE"
@@ -25582,9 +23269,7 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Airtel MMS"
@@ -25597,18 +23282,6 @@
mmsproxy="100.1.201.172"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- />
-
- <apn carrier="Airtel IMS"
- carrier_id = "1961"
- mcc="405"
- mnc="56"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -25620,8 +23293,6 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -25629,9 +23300,7 @@
mcc="405"
mnc="66"
apn="www"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone live"
@@ -25641,9 +23310,7 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone_MMS"
@@ -25655,8 +23322,6 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -25664,9 +23329,7 @@
mcc="405"
mnc="67"
apn="www"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone live"
@@ -25676,9 +23339,7 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Idea_Internet"
@@ -25686,9 +23347,7 @@
mcc="405"
mnc="70"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA GPRS"
@@ -25698,9 +23357,7 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA MMS"
@@ -25712,8 +23369,6 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -25725,8 +23380,6 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -25734,9 +23387,7 @@
mcc="405"
mnc="750"
apn="www"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone live"
@@ -25746,9 +23397,7 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone_MMS"
@@ -25760,8 +23409,6 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -25769,9 +23416,7 @@
mcc="405"
mnc="751"
apn="www"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone live"
@@ -25781,9 +23426,7 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone_MMS"
@@ -25795,8 +23438,6 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -25804,9 +23445,7 @@
mcc="405"
mnc="752"
apn="www"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone live"
@@ -25816,9 +23455,7 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone_MMS"
@@ -25830,8 +23467,6 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -25839,9 +23474,7 @@
mcc="405"
mnc="753"
apn="www"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone live"
@@ -25851,9 +23484,7 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone_MMS"
@@ -25865,8 +23496,6 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -25874,9 +23503,7 @@
mcc="405"
mnc="754"
apn="www"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone live"
@@ -25886,9 +23513,7 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone_MMS"
@@ -25900,8 +23525,6 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -25909,9 +23532,7 @@
mcc="405"
mnc="755"
apn="www"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone live"
@@ -25921,9 +23542,7 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone_MMS"
@@ -25935,8 +23554,6 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -25944,9 +23561,7 @@
mcc="405"
mnc="756"
apn="www"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Vodafone live"
@@ -25956,9 +23571,7 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Idea_Internet"
@@ -25966,9 +23579,7 @@
mcc="405"
mnc="799"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA GPRS"
@@ -25978,9 +23589,7 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA MMS"
@@ -25992,34 +23601,25 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS"
- carrier_id = "1551"
mcc="405"
mnc="800"
apn="aircelgprs"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet"
- carrier_id = "1551"
mcc="405"
mnc="800"
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel-MMS"
- carrier_id = "1551"
mcc="405"
mnc="800"
apn="aircelmms"
@@ -26027,34 +23627,25 @@
mmsproxy="172.17.83.69"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS"
- carrier_id = "1551"
mcc="405"
mnc="801"
apn="aircelgprs"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet"
- carrier_id = "1551"
mcc="405"
mnc="801"
apn="aircelwap"
proxy="192.168.35.201"
port="8081"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel-MMS"
- carrier_id = "1551"
mcc="405"
mnc="801"
apn="aircelmms"
@@ -26062,34 +23653,25 @@
mmsproxy="192.168.35.196"
mmsport="8081"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS"
- carrier_id = "1551"
mcc="405"
mnc="802"
apn="aircelgprs"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet"
- carrier_id = "1551"
mcc="405"
mnc="802"
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel-MMS"
- carrier_id = "1551"
mcc="405"
mnc="802"
apn="aircelmms"
@@ -26097,34 +23679,25 @@
mmsproxy="172.17.83.69"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS"
- carrier_id = "1551"
mcc="405"
mnc="803"
apn="aircelgprs"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet"
- carrier_id = "1551"
mcc="405"
mnc="803"
apn="aircelwap"
proxy="192.168.35.201"
port="8081"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel-MMS"
- carrier_id = "1551"
mcc="405"
mnc="803"
apn="aircelmms"
@@ -26132,34 +23705,25 @@
mmsproxy="192.168.35.196"
mmsport="8081"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS"
- carrier_id = "1551"
mcc="405"
mnc="804"
apn="aircelgprs"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet"
- carrier_id = "1551"
mcc="405"
mnc="804"
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel-MMS"
- carrier_id = "1551"
mcc="405"
mnc="804"
apn="aircelmms"
@@ -26167,34 +23731,25 @@
mmsproxy="172.17.83.69"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS"
- carrier_id = "1551"
mcc="405"
mnc="805"
apn="aircelgprs"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet"
- carrier_id = "1551"
mcc="405"
mnc="805"
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel-MMS"
- carrier_id = "1551"
mcc="405"
mnc="805"
apn="aircelmms"
@@ -26202,34 +23757,25 @@
mmsproxy="172.17.83.69"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS"
- carrier_id = "1551"
mcc="405"
mnc="806"
apn="aircelgprs"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet"
- carrier_id = "1551"
mcc="405"
mnc="806"
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel-MMS"
- carrier_id = "1551"
mcc="405"
mnc="806"
apn="aircelmms"
@@ -26237,34 +23783,25 @@
mmsproxy="172.17.83.69"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS"
- carrier_id = "1551"
mcc="405"
mnc="807"
apn="aircelgprs"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet"
- carrier_id = "1551"
mcc="405"
mnc="807"
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel-MMS"
- carrier_id = "1551"
mcc="405"
mnc="807"
apn="aircelmms"
@@ -26272,34 +23809,25 @@
mmsproxy="172.17.83.69"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS"
- carrier_id = "1551"
mcc="405"
mnc="808"
apn="aircelgprs"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet"
- carrier_id = "1551"
mcc="405"
mnc="808"
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel-MMS"
- carrier_id = "1551"
mcc="405"
mnc="808"
apn="aircelmms"
@@ -26307,34 +23835,25 @@
mmsproxy="172.17.83.69"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS"
- carrier_id = "1551"
mcc="405"
mnc="809"
apn="aircelgprs"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet"
- carrier_id = "1551"
mcc="405"
mnc="809"
apn="aircelwap"
proxy="192.168.35.201"
port="8081"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel-MMS"
- carrier_id = "1551"
mcc="405"
mnc="809"
apn="aircelmms"
@@ -26342,34 +23861,25 @@
mmsproxy="192.168.35.196"
mmsport="8081"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS"
- carrier_id = "1551"
mcc="405"
mnc="810"
apn="aircelgprs"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet"
- carrier_id = "1551"
mcc="405"
mnc="810"
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel-MMS"
- carrier_id = "1551"
mcc="405"
mnc="810"
apn="aircelmms"
@@ -26377,34 +23887,25 @@
mmsproxy="172.17.83.69"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS"
- carrier_id = "1551"
mcc="405"
mnc="811"
apn="aircelgprs"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet"
- carrier_id = "1551"
mcc="405"
mnc="811"
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel-MMS"
- carrier_id = "1551"
mcc="405"
mnc="811"
apn="aircelmms"
@@ -26412,34 +23913,25 @@
mmsproxy="172.17.83.69"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS"
- carrier_id = "1551"
mcc="405"
mnc="812"
apn="aircelgprs"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Pocket Internet"
- carrier_id = "1551"
mcc="405"
mnc="812"
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Aircel-MMS"
- carrier_id = "1551"
mcc="405"
mnc="812"
apn="aircelmms"
@@ -26447,8 +23939,6 @@
mmsproxy="172.17.83.69"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -26457,9 +23947,7 @@
mnc="813"
apn="uninor"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor Wap"
@@ -26469,9 +23957,7 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor MMS"
@@ -26483,8 +23969,6 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -26493,9 +23977,7 @@
mnc="814"
apn="uninor"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor Wap"
@@ -26505,9 +23987,7 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor MMS"
@@ -26519,8 +23999,6 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -26529,9 +24007,7 @@
mnc="815"
apn="uninor"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor Wap"
@@ -26541,9 +24017,7 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor MMS"
@@ -26555,8 +24029,6 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -26565,9 +24037,7 @@
mnc="816"
apn="uninor"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor Wap"
@@ -26577,9 +24047,7 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor MMS"
@@ -26591,8 +24059,6 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -26601,9 +24067,7 @@
mnc="817"
apn="uninor"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor Wap"
@@ -26613,9 +24077,7 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor MMS"
@@ -26627,8 +24089,6 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -26637,9 +24097,7 @@
mnc="818"
apn="uninor"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor Wap"
@@ -26649,9 +24107,7 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor MMS"
@@ -26663,8 +24119,6 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -26673,9 +24127,7 @@
mnc="819"
apn="uninor"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor Wap"
@@ -26685,9 +24137,7 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor MMS"
@@ -26699,8 +24149,6 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -26709,9 +24157,7 @@
mnc="820"
apn="uninor"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor Wap"
@@ -26721,9 +24167,7 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor MMS"
@@ -26735,8 +24179,6 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -26745,9 +24187,7 @@
mnc="821"
apn="uninor"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor Wap"
@@ -26757,9 +24197,7 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor MMS"
@@ -26771,8 +24209,6 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -26781,9 +24217,7 @@
mnc="822"
apn="uninor"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor Wap"
@@ -26793,9 +24227,7 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor MMS"
@@ -26807,8 +24239,6 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon MMS"
@@ -26820,8 +24250,6 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -26829,9 +24257,7 @@
mcc="405"
mnc="823"
apn="vinternet.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Videocon MMS"
@@ -26843,8 +24269,6 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -26852,9 +24276,7 @@
mcc="405"
mnc="824"
apn="vinternet.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Videocon MMS"
@@ -26866,8 +24288,6 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -26875,9 +24295,7 @@
mcc="405"
mnc="825"
apn="vinternet.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Videocon MMS"
@@ -26889,8 +24307,6 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -26898,9 +24314,7 @@
mcc="405"
mnc="826"
apn="vinternet.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Videocon MMS"
@@ -26912,8 +24326,6 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -26921,9 +24333,7 @@
mcc="405"
mnc="827"
apn="vinternet.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Videocon MMS"
@@ -26935,8 +24345,6 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -26944,9 +24352,7 @@
mcc="405"
mnc="828"
apn="vinternet.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Videocon MMS"
@@ -26958,8 +24364,6 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -26967,9 +24371,7 @@
mcc="405"
mnc="829"
apn="vinternet.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Videocon MMS"
@@ -26981,8 +24383,6 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -26990,9 +24390,7 @@
mcc="405"
mnc="830"
apn="vinternet.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Videocon MMS"
@@ -27003,17 +24401,13 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
mcc="405"
mnc="831"
apn="vinternet.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Videocon MMS"
@@ -27025,8 +24419,6 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -27034,9 +24426,7 @@
mcc="405"
mnc="832"
apn="vinternet.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Videocon MMS"
@@ -27048,8 +24438,6 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -27057,9 +24445,7 @@
mcc="405"
mnc="833"
apn="vinternet.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Videocon MMS"
@@ -27071,8 +24457,6 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -27080,9 +24464,7 @@
mcc="405"
mnc="834"
apn="vinternet.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Videocon MMS"
@@ -27094,8 +24476,6 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -27103,9 +24483,7 @@
mcc="405"
mnc="835"
apn="vinternet.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Videocon MMS"
@@ -27117,8 +24495,6 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -27126,9 +24502,7 @@
mcc="405"
mnc="836"
apn="vinternet.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Videocon MMS"
@@ -27140,8 +24514,6 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -27149,9 +24521,7 @@
mcc="405"
mnc="837"
apn="vinternet.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Videocon MMS"
@@ -27163,8 +24533,6 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -27172,9 +24540,7 @@
mcc="405"
mnc="838"
apn="vinternet.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Videocon MMS"
@@ -27185,38 +24551,32 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
mcc="405"
mnc="839"
apn="vinternet.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
- <apn carrier="Reliance Jio"
+ <apn carrier="Videocon MMS"
carrier_id = "2018"
mcc="405"
mnc="840"
- apn="jionet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- network_type_bitmask="13"
+ apn="vgprs.com"
+ mmsc="http://10.202.4.119:10021/mmsc/"
+ mmsproxy="10.202.5.145"
+ mmsport="8799"
+ type="mms"
/>
- <apn carrier="Reliance Jio IMS"
+ <apn carrier="Videocon"
carrier_id = "2018"
mcc="405"
mnc="840"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ apn="vinternet.com"
+ type="default,supl"
/>
<apn carrier="Videocon MMS"
@@ -27228,8 +24588,6 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -27237,9 +24595,7 @@
mcc="405"
mnc="841"
apn="vinternet.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Videocon MMS"
@@ -27251,8 +24607,6 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -27260,9 +24614,7 @@
mcc="405"
mnc="842"
apn="vinternet.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Videocon MMS"
@@ -27274,8 +24626,6 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -27283,9 +24633,7 @@
mcc="405"
mnc="843"
apn="vinternet.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor Internet"
@@ -27294,9 +24642,7 @@
mnc="844"
apn="uninor"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor Wap"
@@ -27306,9 +24652,7 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor MMS"
@@ -27320,8 +24664,6 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -27329,9 +24671,7 @@
mcc="405"
mnc="845"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA GPRS"
@@ -27341,9 +24681,7 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA MMS"
@@ -27355,8 +24693,6 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -27364,9 +24700,7 @@
mcc="405"
mnc="846"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA GPRS"
@@ -27376,9 +24710,7 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA MMS"
@@ -27390,8 +24722,6 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -27399,9 +24729,7 @@
mcc="405"
mnc="847"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA GPRS"
@@ -27411,9 +24739,7 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA MMS"
@@ -27425,8 +24751,6 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -27434,9 +24758,7 @@
mcc="405"
mnc="848"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA GPRS"
@@ -27446,9 +24768,7 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA MMS"
@@ -27460,8 +24780,6 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -27469,9 +24787,7 @@
mcc="405"
mnc="849"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA GPRS"
@@ -27481,9 +24797,7 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA MMS"
@@ -27495,8 +24809,6 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -27504,9 +24816,7 @@
mcc="405"
mnc="850"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA GPRS"
@@ -27516,9 +24826,7 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA MMS"
@@ -27530,8 +24838,6 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -27539,9 +24845,7 @@
mcc="405"
mnc="851"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA GPRS"
@@ -27551,9 +24855,7 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA MMS"
@@ -27565,8 +24867,6 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -27574,9 +24874,7 @@
mcc="405"
mnc="852"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA GPRS"
@@ -27586,9 +24884,7 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA MMS"
@@ -27600,8 +24896,6 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -27609,9 +24903,7 @@
mcc="405"
mnc="853"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA GPRS"
@@ -27621,9 +24913,7 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA MMS"
@@ -27635,449 +24925,531 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
- <apn carrier="Reliance Jio"
+ <apn carrier="Loop Internet (405854)"
carrier_id = "2018"
mcc="405"
mnc="854"
- apn="jionet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- network_type_bitmask="13"
+ apn="www"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio IMS"
+ <apn carrier="Loop MMS (405854)"
carrier_id = "2018"
mcc="405"
mnc="854"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ apn="mizone"
+ mmsproxy="10.0.0.10"
+ mmsport="9401"
+ mmsc="http://mms.loopmobile.in:8080/"
+ type="mms"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio"
+ <apn carrier="Loop Internet (405855)"
carrier_id = "2018"
mcc="405"
mnc="855"
- apn="jionet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- network_type_bitmask="13"
+ apn="www"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio IMS"
+ <apn carrier="Loop MMS (405855)"
carrier_id = "2018"
mcc="405"
mnc="855"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ apn="mizone"
+ mmsproxy="10.0.0.10"
+ mmsport="9401"
+ mmsc="http://mms.loopmobile.in:8080/"
+ type="mms"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio"
+ <apn carrier="Loop Internet (405856)"
carrier_id = "2018"
mcc="405"
mnc="856"
- apn="jionet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- network_type_bitmask="13"
+ apn="www"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio IMS"
+ <apn carrier="Loop MMS (405856)"
carrier_id = "2018"
mcc="405"
mnc="856"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ apn="mizone"
+ mmsproxy="10.0.0.10"
+ mmsport="9401"
+ mmsc="http://mms.loopmobile.in:8080/"
+ type="mms"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio"
+ <apn carrier="Loop Internet (405857)"
carrier_id = "2018"
mcc="405"
mnc="857"
- apn="jionet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- network_type_bitmask="13"
+ apn="www"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio IMS"
+ <apn carrier="Loop MMS (405857)"
carrier_id = "2018"
mcc="405"
mnc="857"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ apn="mizone"
+ mmsproxy="10.0.0.10"
+ mmsport="9401"
+ mmsc="http://mms.loopmobile.in:8080/"
+ type="mms"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio"
+ <apn carrier="Loop Internet (405858)"
carrier_id = "2018"
mcc="405"
mnc="858"
- apn="jionet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- network_type_bitmask="13"
+ apn="www"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio IMS"
+ <apn carrier="Loop MMS (405858)"
carrier_id = "2018"
mcc="405"
mnc="858"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ apn="mizone"
+ mmsproxy="10.0.0.10"
+ mmsport="9401"
+ mmsc="http://mms.loopmobile.in:8080/"
+ type="mms"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio"
+ <apn carrier="Loop Internet (405859)"
carrier_id = "2018"
mcc="405"
mnc="859"
- apn="jionet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- network_type_bitmask="13"
+ apn="www"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio IMS"
+ <apn carrier="Loop MMS (405859)"
carrier_id = "2018"
mcc="405"
mnc="859"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ apn="mizone"
+ mmsproxy="10.0.0.10"
+ mmsport="9401"
+ mmsc="http://mms.loopmobile.in:8080/"
+ type="mms"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio"
+ <apn carrier="Loop Internet (405860)"
carrier_id = "2018"
mcc="405"
mnc="860"
- apn="jionet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- network_type_bitmask="13"
+ apn="www"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio IMS"
+ <apn carrier="Loop MMS (405860)"
carrier_id = "2018"
mcc="405"
mnc="860"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ apn="mizone"
+ mmsproxy="10.0.0.10"
+ mmsport="9401"
+ mmsc="http://mms.loopmobile.in:8080/"
+ type="mms"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio"
+ <apn carrier="Loop Internet (405861)"
carrier_id = "2018"
mcc="405"
mnc="861"
- apn="jionet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- network_type_bitmask="13"
+ apn="www"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio IMS"
+ <apn carrier="Loop MMS (405861)"
carrier_id = "2018"
mcc="405"
mnc="861"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ apn="mizone"
+ mmsproxy="10.0.0.10"
+ mmsport="9401"
+ mmsc="http://mms.loopmobile.in:8080/"
+ type="mms"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio"
+ <apn carrier="Loop Internet (405862)"
carrier_id = "2018"
mcc="405"
mnc="862"
- apn="jionet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- network_type_bitmask="13"
+ apn="www"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio IMS"
+ <apn carrier="Loop MMS (405862)"
carrier_id = "2018"
mcc="405"
mnc="862"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ apn="mizone"
+ mmsproxy="10.0.0.10"
+ mmsport="9401"
+ mmsc="http://mms.loopmobile.in:8080/"
+ type="mms"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio"
+ <apn carrier="Loop Internet (405863)"
carrier_id = "2018"
mcc="405"
mnc="863"
- apn="jionet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- network_type_bitmask="13"
+ apn="www"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio IMS"
+ <apn carrier="Loop MMS (405863)"
carrier_id = "2018"
mcc="405"
mnc="863"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ apn="mizone"
+ mmsproxy="10.0.0.10"
+ mmsport="9401"
+ mmsc="http://mms.loopmobile.in:8080/"
+ type="mms"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio"
+ <apn carrier="Loop Internet (405864)"
carrier_id = "2018"
mcc="405"
mnc="864"
- apn="jionet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- network_type_bitmask="13"
+ apn="www"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio IMS"
+ <apn carrier="Loop MMS (405864)"
carrier_id = "2018"
mcc="405"
mnc="864"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ apn="mizone"
+ mmsproxy="10.0.0.10"
+ mmsport="9401"
+ mmsc="http://mms.loopmobile.in:8080/"
+ type="mms"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio"
+ <apn carrier="Loop Internet (405865)"
carrier_id = "2018"
mcc="405"
mnc="865"
- apn="jionet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- network_type_bitmask="13"
+ apn="www"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio IMS"
+ <apn carrier="Loop MMS (405865)"
carrier_id = "2018"
mcc="405"
mnc="865"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ apn="mizone"
+ mmsproxy="10.0.0.10"
+ mmsport="9401"
+ mmsc="http://mms.loopmobile.in:8080/"
+ type="mms"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio"
+ <apn carrier="Loop Internet (405866)"
carrier_id = "2018"
mcc="405"
mnc="866"
- apn="jionet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- network_type_bitmask="13"
+ apn="www"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio IMS"
+ <apn carrier="Loop MMS (405866)"
carrier_id = "2018"
mcc="405"
mnc="866"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ apn="mizone"
+ mmsproxy="10.0.0.10"
+ mmsport="9401"
+ mmsc="http://mms.loopmobile.in:8080/"
+ type="mms"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio"
+ <apn carrier="Loop Internet (405867)"
carrier_id = "2018"
mcc="405"
mnc="867"
- apn="jionet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- network_type_bitmask="13"
+ apn="www"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio IMS"
+ <apn carrier="Loop MMS (405867)"
carrier_id = "2018"
mcc="405"
mnc="867"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ apn="mizone"
+ mmsproxy="10.0.0.10"
+ mmsport="9401"
+ mmsc="http://mms.loopmobile.in:8080/"
+ type="mms"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio"
+ <apn carrier="Loop Internet (405868)"
carrier_id = "2018"
mcc="405"
mnc="868"
- apn="jionet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- network_type_bitmask="13"
+ apn="www"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio IMS"
+ <apn carrier="Loop MMS (405868)"
carrier_id = "2018"
mcc="405"
mnc="868"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ apn="mizone"
+ mmsproxy="10.0.0.10"
+ mmsport="9401"
+ mmsc="http://mms.loopmobile.in:8080/"
+ type="mms"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio"
+ <apn carrier="Loop Internet (405869)"
carrier_id = "2018"
mcc="405"
mnc="869"
- apn="jionet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- network_type_bitmask="13"
+ apn="www"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio IMS"
+ <apn carrier="Loop MMS (405869)"
carrier_id = "2018"
mcc="405"
mnc="869"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ apn="mizone"
+ mmsproxy="10.0.0.10"
+ mmsport="9401"
+ mmsc="http://mms.loopmobile.in:8080/"
+ type="mms"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio"
+ <apn carrier="Loop Internet (405870)"
carrier_id = "2018"
mcc="405"
mnc="870"
- apn="jionet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- network_type_bitmask="13"
+ apn="www"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio IMS"
+ <apn carrier="Loop MMS (405870)"
carrier_id = "2018"
mcc="405"
mnc="870"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ apn="mizone"
+ mmsproxy="10.0.0.10"
+ mmsport="9401"
+ mmsc="http://mms.loopmobile.in:8080/"
+ type="mms"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio"
+ <apn carrier="Loop Internet (405871)"
carrier_id = "2018"
mcc="405"
mnc="871"
- apn="jionet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- network_type_bitmask="13"
+ apn="www"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio IMS"
+ <apn carrier="Loop MMS (405871)"
carrier_id = "2018"
mcc="405"
mnc="871"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ apn="mizone"
+ mmsproxy="10.0.0.10"
+ mmsport="9401"
+ mmsc="http://mms.loopmobile.in:8080/"
+ type="mms"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio"
+ <apn carrier="Loop Internet (405872)"
carrier_id = "2018"
mcc="405"
mnc="872"
- apn="jionet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- network_type_bitmask="13"
+ apn="www"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio IMS"
+ <apn carrier="Loop MMS (405872)"
carrier_id = "2018"
mcc="405"
mnc="872"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ apn="mizone"
+ mmsproxy="10.0.0.10"
+ mmsport="9401"
+ mmsc="http://mms.loopmobile.in:8080/"
+ type="mms"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio"
+ <apn carrier="Loop Internet (405873)"
carrier_id = "2018"
mcc="405"
mnc="873"
- apn="jionet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- network_type_bitmask="13"
+ apn="www"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio IMS"
+ <apn carrier="Loop MMS (405873)"
carrier_id = "2018"
mcc="405"
mnc="873"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ apn="mizone"
+ mmsproxy="10.0.0.10"
+ mmsport="9401"
+ mmsc="http://mms.loopmobile.in:8080/"
+ type="mms"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio"
+ <apn carrier="Loop Internet (405874)"
carrier_id = "2018"
mcc="405"
mnc="874"
- apn="jionet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- network_type_bitmask="13"
+ apn="www"
+ type="default,supl,fota,dun"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
- <apn carrier="Reliance Jio IMS"
+ <apn carrier="Loop MMS (405874)"
carrier_id = "2018"
mcc="405"
mnc="874"
- apn="ims"
- type="ims"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ apn="mizone"
+ mmsproxy="10.0.0.10"
+ mmsport="9401"
+ mmsc="http://mms.loopmobile.in:8080/"
+ type="mms"
+ protocol="IP"
+ roaming_protocol="IP"
+ carrier_enabled="true"
/>
<apn carrier="Uninor Internet"
@@ -28086,9 +25458,7 @@
mnc="875"
apn="uninor"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor Wap"
@@ -28098,9 +25468,7 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor MMS"
@@ -28112,8 +25480,6 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -28122,9 +25488,7 @@
mnc="876"
apn="uninor"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor Wap"
@@ -28134,9 +25498,7 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor MMS"
@@ -28148,8 +25510,6 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -28158,9 +25518,7 @@
mnc="877"
apn="uninor"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor Wap"
@@ -28170,9 +25528,7 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor MMS"
@@ -28184,8 +25540,6 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -28194,9 +25548,7 @@
mnc="878"
apn="uninor"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor Wap"
@@ -28206,9 +25558,7 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor MMS"
@@ -28220,8 +25570,6 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -28230,9 +25578,7 @@
mnc="879"
apn="uninor"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor Wap"
@@ -28242,9 +25588,7 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor MMS"
@@ -28256,8 +25600,6 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -28266,9 +25608,7 @@
mnc="880"
apn="uninor"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor Wap"
@@ -28278,9 +25618,7 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor MMS"
@@ -28292,8 +25630,6 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="STEL"
@@ -28301,9 +25637,7 @@
mcc="405"
mnc="881"
apn="gprs.stel.in"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="STEL"
@@ -28311,9 +25645,7 @@
mcc="405"
mnc="882"
apn="gprs.stel.in"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="STEL"
@@ -28321,9 +25653,7 @@
mcc="405"
mnc="883"
apn="gprs.stel.in"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="STEL"
@@ -28331,9 +25661,7 @@
mcc="405"
mnc="884"
apn="gprs.stel.in"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="STEL"
@@ -28341,9 +25669,7 @@
mcc="405"
mnc="885"
apn="gprs.stel.in"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="STEL"
@@ -28351,9 +25677,7 @@
mcc="405"
mnc="886"
apn="gprs.stel.in"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA"
@@ -28361,9 +25685,7 @@
mcc="405"
mnc="908"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA MMS"
@@ -28375,8 +25697,6 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA"
@@ -28384,9 +25704,7 @@
mcc="405"
mnc="909"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA MMS"
@@ -28398,8 +25716,6 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA"
@@ -28407,9 +25723,7 @@
mcc="405"
mnc="910"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA MMS"
@@ -28421,8 +25735,6 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA"
@@ -28430,9 +25742,7 @@
mcc="405"
mnc="911"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="IDEA MMS"
@@ -28444,8 +25754,6 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Cheers"
@@ -28453,9 +25761,7 @@
mcc="405"
mnc="912"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Cheers"
@@ -28463,9 +25769,7 @@
mcc="405"
mnc="913"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Cheers"
@@ -28473,9 +25777,7 @@
mcc="405"
mnc="914"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Cheers"
@@ -28483,9 +25785,7 @@
mcc="405"
mnc="915"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Cheers"
@@ -28493,9 +25793,7 @@
mcc="405"
mnc="916"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Cheers"
@@ -28503,9 +25801,7 @@
mcc="405"
mnc="917"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Cheers"
@@ -28513,9 +25809,7 @@
mcc="405"
mnc="918"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Cheers"
@@ -28523,9 +25817,7 @@
mcc="405"
mnc="919"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Cheers"
@@ -28533,9 +25825,7 @@
mcc="405"
mnc="920"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Cheers"
@@ -28543,9 +25833,7 @@
mcc="405"
mnc="921"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Cheers"
@@ -28553,9 +25841,7 @@
mcc="405"
mnc="922"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Cheers"
@@ -28563,18 +25849,14 @@
mcc="405"
mnc="923"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Cheers"
mcc="405"
mnc="924"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor Internet"
@@ -28583,9 +25865,7 @@
mnc="925"
apn="uninor"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor Wap"
@@ -28595,9 +25875,7 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor MMS"
@@ -28609,8 +25887,6 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -28619,9 +25895,7 @@
mnc="926"
apn="uninor"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor Wap"
@@ -28631,9 +25905,7 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor MMS"
@@ -28645,8 +25917,6 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -28655,9 +25925,7 @@
mnc="927"
apn="uninor"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor Wap"
@@ -28667,9 +25935,7 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor MMS"
@@ -28681,8 +25947,6 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -28691,9 +25955,7 @@
mnc="928"
apn="uninor"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor Wap"
@@ -28703,9 +25965,7 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor MMS"
@@ -28717,8 +25977,6 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -28727,9 +25985,7 @@
mnc="929"
apn="uninor"
authtype="1"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor Wap"
@@ -28739,9 +25995,7 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Uninor MMS"
@@ -28753,8 +26007,6 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Cheers"
@@ -28762,18 +26014,14 @@
mcc="405"
mnc="930"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Cheers"
mcc="405"
mnc="931"
apn="internet"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Videocon MMS"
@@ -28785,8 +26033,6 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -28794,9 +26040,7 @@
mcc="405"
mnc="932"
apn="vinternet.com"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
+ type="default,supl"
/>
<apn carrier="Mobilink WAP GPRS"
@@ -28806,7 +26050,7 @@
apn="connect.mobilinkworld.com"
user="Mobilink"
password="Mobilink"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Mobilink MMS"
@@ -28827,7 +26071,7 @@
mcc="410"
mnc="03"
apn="Ufone.internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Ufone MMS"
@@ -28846,7 +26090,7 @@
mcc="410"
mnc="04"
apn="zonginternet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="ZONG MMS"
@@ -28865,7 +26109,7 @@
mcc="410"
mnc="06"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Telenor MMS"
@@ -28886,7 +26130,7 @@
mcc="410"
mnc="07"
apn="Wap.warid"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Warid MMS"
@@ -28900,12 +26144,26 @@
type="mms"
/>
+ <apn carrier='Consumer Cellular'
+ mcc='410'
+ mnc='310'
+ apn='att.mvno'
+ type='default,mms,supl,hipri,fota'
+ protocol='IP'
+ roaming_protocol='IP'
+ mmsc='http://mms.fido.ca'
+ mmsproxy='mmsproxy.fido.ca'
+ mmsport='80'
+ mvno_type='gid'
+ mvno_match_data='2AC9'
+ />
+
<apn carrier="AWCC"
carrier_id = "452"
mcc="412"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Roshan"
@@ -28913,7 +26171,7 @@
mcc="412"
mnc="20"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MTN"
@@ -28921,7 +26179,7 @@
mcc="412"
mnc="40"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Etisalat"
@@ -28929,7 +26187,7 @@
mcc="412"
mnc="50"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Mobitel"
@@ -28937,7 +26195,7 @@
mcc="413"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Dialog"
@@ -28945,7 +26203,7 @@
mcc="413"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Etisalat"
@@ -28953,7 +26211,7 @@
mcc="413"
mnc="03"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Airtel"
@@ -28961,7 +26219,7 @@
mcc="413"
mnc="05"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Hutch"
@@ -28969,7 +26227,7 @@
mcc="413"
mnc="08"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MPT"
@@ -28977,7 +26235,7 @@
mcc="414"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Ooredoo Internet"
@@ -28985,7 +26243,7 @@
mcc="414"
mnc="05"
apn="Internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Alfa Internet"
@@ -28995,7 +26253,7 @@
user="mic1"
password="mic1"
apn="internet.mic1.com.lb"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Alfawap"
@@ -29007,7 +26265,7 @@
password="mic1"
proxy="192.168.23.50"
port="80"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Alfa MMS"
@@ -29028,7 +26286,7 @@
mcc="415"
mnc="03"
apn="touch"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="touch_WAP"
@@ -29038,7 +26296,7 @@
apn="wap"
proxy="192.168.4.11"
port="80"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="touch_MMS"
@@ -29061,7 +26319,7 @@
user="zain"
password="zain"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
@@ -29075,7 +26333,7 @@
authtype="1"
proxy="192.168.55.10"
port="80"
- type="default,ia,supl"
+ type="default,supl"
/>
@@ -29087,7 +26345,7 @@
user="zain"
password="zain"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
@@ -29111,7 +26369,7 @@
mcc="416"
mnc="03"
apn="net"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Umniah WAP"
@@ -29121,7 +26379,7 @@
apn="wap"
proxy="10.1.1.10"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
@@ -29159,7 +26417,7 @@
user="net"
password="net"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Orange WAP"
@@ -29172,7 +26430,7 @@
authtype="1"
proxy="172.16.1.2"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Orange MMS"
@@ -29197,7 +26455,7 @@
user="net"
password="net"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Orange WAP"
@@ -29210,7 +26468,7 @@
authtype="1"
proxy="172.16.1.2"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
@@ -29219,7 +26477,7 @@
mcc="417"
mnc="01"
apn="net.syriatel.com"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Syriatel MMS"
@@ -29238,7 +26496,7 @@
mcc="417"
mnc="02"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MTN MMS"
@@ -29257,7 +26515,7 @@
mcc="418"
mnc="05"
apn="net.asiacell.com"
- type="default,ia"
+ type="default"
/>
<apn carrier="MMS"
@@ -29276,7 +26534,7 @@
mcc="418"
mnc="08"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="ZAIN-GPRS"
@@ -29287,7 +26545,7 @@
user="atheer"
password="atheer"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Zain-MMS"
@@ -29312,7 +26570,7 @@
user="atheer"
password="atheer"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Zain-MMS"
@@ -29334,7 +26592,7 @@
mcc="418"
mnc="40"
apn="internet.korek.com"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Korek 9191"
@@ -29344,7 +26602,7 @@
apn="net.korek.com"
user="korek"
password="korek"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Korek 9494"
@@ -29352,7 +26610,7 @@
mcc="418"
mnc="40"
apn="internet.korek.com"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="KOREK MMS"
@@ -29374,7 +26632,7 @@
mcc="418"
mnc="45"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Itisaluna"
@@ -29382,7 +26640,7 @@
mcc="418"
mnc="62"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Omnnea"
@@ -29390,7 +26648,7 @@
mcc="418"
mnc="92"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MI"
@@ -29400,7 +26658,7 @@
apn="pps"
user="pps"
password="pps"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Zain WAP"
@@ -29413,7 +26671,7 @@
authtype="3"
proxy="10.43.4.5"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS"
@@ -29436,7 +26694,7 @@
mnc="03"
apn="action.ooredoo.com"
authtype="1"
- type="default,ia"
+ type="default"
/>
<apn carrier="Ooredoo MMS"
@@ -29448,7 +26706,7 @@
mmsproxy="194.126.53.64"
mmsport="8080"
authtype="1"
- type="default,ia"
+ type="default"
/>
<apn carrier="VIVA - KW"
@@ -29460,7 +26718,7 @@
mmsc="http://172.16.128.80:38090/was"
mmsproxy="172.16.128.228"
mmsport="8080"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="STC - GPRS"
@@ -29468,7 +26726,7 @@
mcc="420"
mnc="01"
apn="jawalnet.com.sa"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="STC MMS"
@@ -29487,7 +26745,7 @@
mcc="420"
mnc="03"
apn="web1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Mobily prepaid - GPRS"
@@ -29497,7 +26755,7 @@
apn="wap2"
proxy="10.3.2.133"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Mobily postpaid - GPRS"
@@ -29507,7 +26765,7 @@
apn="wap1"
proxy="10.3.2.133"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Mobily WEB 2"
@@ -29515,7 +26773,7 @@
mcc="420"
mnc="03"
apn="web2"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Mobily MMS Postpaid"
@@ -29546,7 +26804,7 @@
mnc="04"
apn="zain"
authtype="0"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="zain-mms"
@@ -29567,7 +26825,7 @@
mcc="421"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Sabafon MMS"
@@ -29589,7 +26847,7 @@
mcc="421"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MTN MMS YE"
@@ -29613,7 +26871,7 @@
user="ymobile"
password="ymobile"
authtype="3"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="HiTS-UNITEL"
@@ -29621,7 +26879,7 @@
mcc="421"
mnc="04"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="YemenMobile"
@@ -29630,7 +26888,7 @@
mnc="11"
apn="ymdata"
authtype="0"
- type="default,ia,mms,supl,fota,cbs,dun"
+ type="default,mms,supl,fota,cbs,dun"
protocol="IPV4V6"
/>
@@ -29667,7 +26925,7 @@
user="taif"
password="taif"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Nawras MMS"
@@ -29693,7 +26951,7 @@
user="test"
password="test"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
@@ -29703,7 +26961,7 @@
mnc="02"
apn="etisalat.ae"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Weyak Wap"
@@ -29714,7 +26972,7 @@
proxy="10.12.0.32"
port="8080"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Etisalat MMS"
@@ -29734,7 +26992,7 @@
mcc="424"
mnc="03"
apn="du"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="du WAP"
@@ -29744,7 +27002,7 @@
apn="du"
proxy="10.19.18.4"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="du MMS"
@@ -29766,7 +27024,7 @@
mmsc="http://192.168.220.15/servlets/mms"
mmsproxy="192.118.11.55"
mmsport="8080"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="Cellcom Internet"
@@ -29774,7 +27032,7 @@
mcc="425"
mnc="02"
apn="sphone"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Cellcom MMS"
@@ -29810,7 +27068,7 @@
user="pcl@3g"
password="pcl"
authtype="2"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Jawwal WAP"
@@ -29819,7 +27077,7 @@
apn="wap"
proxy="213.244.118.129"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Jawwal MMS"
@@ -29838,7 +27096,7 @@
apn="internet"
proxy="10.100.129.111"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Wataniya_mms"
@@ -29856,7 +27114,7 @@
mcc="425"
mnc="07"
apn="net.hotm"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="PC HOT mobile"
@@ -29884,7 +27142,7 @@
mcc="425"
mnc="08"
apn="internet.golantelecom.net.il"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="GolanTelecom MMS"
@@ -29905,7 +27163,7 @@
apn="uwap.orange.co.il"
mmsc="http://192.168.220.15/servlets/mms"
mmsport="8080"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="YouPhone"
@@ -29914,7 +27172,7 @@
mnc="14"
apn="data.youphone.co.il"
mmsc="http://192.168.220.15/servlets/mms"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="Home Cellular Internet"
@@ -29922,7 +27180,7 @@
mcc="425"
mnc="15"
apn="hcminternet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Home Cellular MMS"
@@ -29941,7 +27199,7 @@
mcc="425"
mnc="16"
apn="internet.rl"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Rami Levi Multimedia"
@@ -29960,7 +27218,7 @@
mcc="425"
mnc="26"
apn="annatel"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Batelco Internet"
@@ -29968,7 +27226,7 @@
mcc="426"
mnc="01"
apn="internet.batelco.com"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Batelco WAP"
@@ -29981,7 +27239,7 @@
authtype="0"
proxy="192.168.1.2"
port="80"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Batelco MMS"
@@ -30006,7 +27264,7 @@
user="internet"
password="internet"
authtype="0"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Zain BH WAP"
@@ -30019,7 +27277,7 @@
authtype="0"
proxy="172.18.85.33"
port="80"
- type="default,ia,supl"
+ type="default,supl"
/>
@@ -30042,7 +27300,7 @@
mcc="426"
mnc="04"
apn="viva.bh"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="VIVAWAP"
@@ -30052,7 +27310,7 @@
apn="vivawap.bh"
proxy="172.18.142.36"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="VIVAMMS"
@@ -30071,7 +27329,7 @@
mcc="427"
mnc="01"
apn="data"
- type="default,ia,supl"
+ type="default,supl"
authtype="1"
/>
@@ -30091,7 +27349,7 @@
mcc="427"
mnc="02"
apn="web.vodafone.com.qa"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="VFQ MMS"
@@ -30110,7 +27368,7 @@
mcc="428"
mnc="88"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Skytel"
@@ -30118,7 +27376,7 @@
mcc="428"
mnc="91"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="G.Mobile"
@@ -30126,7 +27384,7 @@
mcc="428"
mnc="98"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MobiCom"
@@ -30134,7 +27392,7 @@
mcc="428"
mnc="99"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Namaste / NT Mobile"
@@ -30142,7 +27400,7 @@
mcc="429"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Ncell"
@@ -30150,7 +27408,7 @@
mcc="429"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Sky/C-Phone"
@@ -30158,7 +27416,7 @@
mcc="429"
mnc="03"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="SmartCell"
@@ -30166,7 +27424,7 @@
mcc="429"
mnc="04"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MCI-GPRS"
@@ -30174,7 +27432,7 @@
mcc="432"
mnc="11"
apn="mcinet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MCCI MMS"
@@ -30193,7 +27451,7 @@
mcc="432"
mnc="14"
apn="mcinet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MCCI MMS"
@@ -30211,7 +27469,7 @@
mcc="432"
mnc="19"
apn="mcinet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MCCI MMS"
@@ -30229,7 +27487,7 @@
mcc="432"
mnc="20"
apn="rightel"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="RighTel-MMS"
@@ -30250,7 +27508,7 @@
apn="mtnirancell"
proxy="10.131.26.138"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Irancell-MMS"
@@ -30269,7 +27527,7 @@
mcc="432"
mnc="70"
apn="mcinet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MCCI MMS"
@@ -30288,7 +27546,7 @@
mcc="432"
mnc="93"
apn="mcinet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MCCI MMS"
@@ -30309,7 +27567,7 @@
user="beeline"
password="beeline"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Beeline-UZB MMS"
@@ -30331,7 +27589,7 @@
mcc="434"
mnc="05"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="UCELL MMS"
@@ -30350,7 +27608,7 @@
mcc="434"
mnc="06"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MTS-UZB Internet"
@@ -30361,7 +27619,7 @@
user="mts"
password="mts"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MTS-UZB MMS"
@@ -30380,7 +27638,7 @@
mcc="436"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Tcell"
@@ -30388,7 +27646,7 @@
mcc="436"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Megafon"
@@ -30396,7 +27654,7 @@
mcc="436"
mnc="03"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Babilon-M"
@@ -30404,7 +27662,7 @@
mcc="436"
mnc="04"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Tacom"
@@ -30412,7 +27670,7 @@
mcc="436"
mnc="05"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Tcell"
@@ -30420,7 +27678,7 @@
mcc="436"
mnc="12"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Beeline"
@@ -30428,7 +27686,7 @@
mcc="437"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Fonex"
@@ -30436,7 +27694,7 @@
mcc="437"
mnc="03"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MegaCom"
@@ -30444,7 +27702,7 @@
mcc="437"
mnc="05"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="O!"
@@ -30452,7 +27710,7 @@
mcc="437"
mnc="09"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MTS (BARASH Communication)"
@@ -30460,7 +27718,7 @@
mcc="438"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="TM-Cell"
@@ -30468,7 +27726,7 @@
mcc="438"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="IIJmio (TypeI)"
@@ -30479,7 +27737,7 @@
password="iij"
authtype="3"
protocol="IPV4V6"
- type="default,ia"
+ type="default"
roaming_protocol="IP"
/>
@@ -30491,7 +27749,7 @@
password="vmobile"
authtype="3"
protocol="IPV4V6"
- type="default,ia"
+ type="default"
roaming_protocol="IP"
/>
@@ -30499,7 +27757,7 @@
mcc="440"
mnc="10"
apn="spmode.ne.jp"
- type="default,ia,supl"
+ type="default,supl"
authtype="0"
protocol="IPV4V6"
/>
@@ -30529,7 +27787,7 @@
mcc="440"
mnc="11"
apn="rakuten.jp"
- type="default,ia,supl,dun"
+ type="default,supl,dun"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
/>
@@ -30572,7 +27830,7 @@
mmsproxy="andmms.plusacs.ne.jp"
mmsport="8080"
mmsc="http://mms-s"
- type="default,ia,mms,supl,hipri"
+ type="default,mms,supl,hipri"
authtype="2"
/>
@@ -30586,7 +27844,7 @@
password="ratel"
authtype="3"
protocol="IPV4V6"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="RATEL"
@@ -30599,7 +27857,7 @@
password="ratel"
authtype="3"
protocol="IPV4V6"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Rakuten"
@@ -30611,7 +27869,7 @@
server=""
password="0000"
authtype="3"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="SKT IA"
@@ -30638,7 +27896,7 @@
mcc="450"
mnc="05"
apn="lte.sktelecom.com"
- type="default,ia,mms,supl,fota,cbs"
+ type="default,mms,supl,fota,cbs"
mmsc="http://omms.nate.com:9082/oma_mms"
mmsproxy="smart.nate.com"
mmsport="9093"
@@ -30671,7 +27929,7 @@
mcc="450"
mnc="06"
apn="internet.lguplus.co.kr"
- type="default,ia,mms,supl,fota,cbs"
+ type="default,mms,supl,fota,cbs"
mmsc="http://omammsc.uplus.co.kr:9084"
protocol="IPV4V6"
/>
@@ -30700,7 +27958,7 @@
mcc="450"
mnc="08"
apn="lte.ktfwing.com"
- type="default,ia,mms,supl,fota,cbs"
+ type="default,mms,supl,fota,cbs"
mmsc="http://mmsc.ktfwing.com:9082"
port="80"
server="*"
@@ -30714,7 +27972,7 @@
user="mms"
password="mms"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Mobi-wap-gprs 1"
@@ -30727,7 +27985,7 @@
authtype="1"
proxy="203.162.21.107"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Mobi-gprs-mms"
@@ -30752,7 +28010,7 @@
user="mms"
password="mms"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Vina-gprs-mms"
@@ -30774,7 +28032,7 @@
mcc="452"
mnc="04"
apn="v-internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Viettel-wap-gprs 2"
@@ -30784,7 +28042,7 @@
apn="v-wap"
proxy="192.168.233.10"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Viettel-gprs-mms"
@@ -30803,7 +28061,7 @@
mcc="452"
mnc="05"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Vietnamobile_GPRS1"
@@ -30813,7 +28071,7 @@
apn="wap"
proxy="10.10.128.44"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Vietnamobile_GPRS2"
@@ -30821,7 +28079,7 @@
mcc="452"
mnc="05"
apn="wap"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Vietnamobile_MMS"
@@ -30840,7 +28098,7 @@
mcc="452"
mnc="07"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Gmobile-wap-gprs"
@@ -30850,7 +28108,7 @@
apn="internet"
proxy="10.16.70.199"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Gmobile-gprs-mms"
@@ -30883,7 +28141,7 @@
mcc="452"
mnc="08"
apn="e-internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="e-wap"
@@ -30893,7 +28151,7 @@
apn="e-wap"
proxy="10.18.2.183"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="e-mms"
@@ -30916,7 +28174,7 @@
mmsport="8080"
mmsc="http://192.168.58.171:8002"
authtype="3"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="one2free"
@@ -30928,7 +28186,7 @@
mmsport="8080"
mmsc="http://192.168.58.171:8002"
authtype="3"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="NWMOBILE"
@@ -30940,7 +28198,7 @@
mmsport="8080"
mmsc="http://192.168.58.171:8002"
authtype="3"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="Truphone"
@@ -30949,7 +28207,7 @@
mnc="00"
apn="truphone.com"
mmsc="http://mmsc.truphone.com:1981/mm1"
- type="default,ia,supl,mms,dun"
+ type="default,supl,mms,dun"
mvno_type="gid"
mvno_match_data="547275554B3030656E"
/>
@@ -30975,7 +28233,7 @@
mmsport="8080"
mmsc="http://192.168.58.171:8002"
authtype="3"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="one2free"
@@ -30987,7 +28245,7 @@
mmsport="8080"
mmsc="http://192.168.58.171:8002"
authtype="3"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="NWMOBILE"
@@ -30999,7 +28257,7 @@
mmsport="8080"
mmsc="http://192.168.58.171:8002"
authtype="3"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="3 LTE"
@@ -31011,7 +28269,7 @@
mmsproxy="mms.three.com.hk"
mmsport="8799"
authtype="1"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="3"
@@ -31023,7 +28281,7 @@
mmsproxy="mms.three.com.hk"
mmsport="8799"
authtype="1"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="3(2G) MMS"
@@ -31044,7 +28302,7 @@
apn="web-g.three.com.hk"
proxy="10.30.3.151"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="SmarTone"
@@ -31056,7 +28314,7 @@
mmsproxy="10.9.9.9"
mmsport="8080"
authtype="3"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="Truphone"
@@ -31065,7 +28323,7 @@
mnc="08"
apn="truphone.com"
mmsc="http://mmsc.truphone.com:1981/mm1"
- type="default,ia,supl,mms,dun"
+ type="default,supl,mms,dun"
mvno_type="gid"
mvno_match_data="547275554B3030656E"
/>
@@ -31091,7 +28349,7 @@
mmsproxy="192.168.59.51"
mmsport="8080"
authtype="3"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="CMHK MMS"
@@ -31108,7 +28366,7 @@
mcc="454"
mnc="12"
apn="cmhk"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="CMHK MMS"
@@ -31125,7 +28383,7 @@
mcc="454"
mnc="13"
apn="cmhk"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="SmarTone"
@@ -31137,7 +28395,7 @@
mmsport="8080"
mmsc="http://mms.smartone.com/server"
authtype="3"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="PCCW-HKT"
@@ -31149,7 +28407,7 @@
mmsproxy="10.140.14.10"
mmsport="8080"
authtype="1"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="SmarTone"
@@ -31161,7 +28419,7 @@
mmsport="8080"
mmsc="http://mms.smartone.com/server"
authtype="3"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="1O1O"
@@ -31173,7 +28431,7 @@
mmsport="8080"
mmsc="http://192.168.58.171:8002"
authtype="3"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="one2free"
@@ -31185,7 +28443,7 @@
mmsport="8080"
mmsc="http://192.168.58.171:8002"
authtype="3"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="NWMOBILE"
@@ -31197,7 +28455,7 @@
mmsport="8080"
mmsc="http://192.168.58.171:8002"
authtype="3"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="PCCW-HKT"
@@ -31209,7 +28467,7 @@
mmsproxy="10.140.14.10"
mmsport="8080"
authtype="1"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="SmarTone Macau"
@@ -31221,7 +28479,7 @@
mmsproxy="10.9.9.29"
mmsport="8080"
authtype="3"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="CTM Data"
@@ -31229,7 +28487,7 @@
mcc="455"
mnc="01"
apn="ctm-mobile"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="CTM MMS"
@@ -31251,7 +28509,7 @@
mmsc="http://mms.wap.ctm.net:8002"
mmsproxy="192.168.99.3"
mmsport="8080"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="3 Macau"
@@ -31263,7 +28521,7 @@
mmsproxy="mms.three.com.mo"
mmsport="8080"
authtype="1"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="CTM Data"
@@ -31271,7 +28529,7 @@
mcc="455"
mnc="04"
apn="ctm-mobile"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="CTM MMS"
@@ -31293,7 +28551,7 @@
mmsc="http://mms.wap.ctm.net:8002"
mmsproxy="192.168.99.3"
mmsport="8080"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="3 Macau"
@@ -31304,7 +28562,7 @@
mmsproxy="mms.three.com.mo"
mmsport="8080"
authtype="1"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="Cellcard"
@@ -31312,7 +28570,7 @@
mcc="456"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Smart"
@@ -31320,7 +28578,7 @@
mcc="456"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="qb"
@@ -31328,7 +28586,7 @@
mcc="456"
mnc="04"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Star-Cell"
@@ -31336,7 +28594,7 @@
mcc="456"
mnc="05"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Smart"
@@ -31344,7 +28602,7 @@
mcc="456"
mnc="06"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Metfone"
@@ -31352,14 +28610,14 @@
mcc="456"
mnc="08"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Beeline"
mcc="456"
mnc="09"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Excell"
@@ -31367,7 +28625,7 @@
mcc="456"
mnc="11"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Cellcard"
@@ -31375,7 +28633,7 @@
mcc="456"
mnc="18"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="LTC"
@@ -31383,7 +28641,7 @@
mcc="457"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="ETL"
@@ -31391,7 +28649,7 @@
mcc="457"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Unitel"
@@ -31399,7 +28657,7 @@
mcc="457"
mnc="03"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Beeline"
@@ -31407,7 +28665,7 @@
mcc="457"
mnc="08"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="中国移动 (China Mobile) GPRS"
@@ -31415,7 +28673,7 @@
mcc="460"
mnc="00"
apn="cmnet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="中国移动 (China Mobile) WAP"
@@ -31425,7 +28683,7 @@
apn="cmwap"
proxy="10.0.0.172"
port="80"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="中国移动彩信 (China Mobile)"
@@ -31446,7 +28704,7 @@
mcc="460"
mnc="01"
apn="3gnet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="沃3G手机上网 (China Unicom)"
@@ -31456,7 +28714,7 @@
apn="3gwap"
proxy="10.0.0.172"
port="80"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="联通2GNET上网 (China Unicom)"
@@ -31464,7 +28722,7 @@
mcc="460"
mnc="01"
apn="uninet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="联通彩信 (China Unicom)"
@@ -31494,7 +28752,7 @@
mcc="460"
mnc="02"
apn="cmnet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="中国移动 (China Mobile) WAP"
@@ -31504,7 +28762,7 @@
apn="cmwap"
proxy="10.0.0.172"
port="80"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="中国移动彩信 (China Mobile)"
@@ -31534,7 +28792,7 @@
mmsc=""
mmsproxy=""
mmsport=""
- type="default,ia,hipri,fota,cbs"
+ type="default,hipri,fota,cbs"
protocol="IP"
/>
@@ -31552,7 +28810,7 @@
mmsc="http://mmsc.vnet.mobi"
mmsproxy="10.0.0.200"
mmsport="80"
- type="default,ia,mms,hipri,supl,fota,cbs"
+ type="default,mms,hipri,supl,fota,cbs"
protocol="IP"
/>
@@ -31561,7 +28819,7 @@
mcc="460"
mnc="07"
apn="cmnet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="中国移动 (China Mobile) GPRS"
@@ -31569,7 +28827,7 @@
mcc="460"
mnc="08"
apn="cmnet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="中国移动 (China Mobile) WAP"
@@ -31579,7 +28837,7 @@
apn="cmwap"
proxy="10.0.0.172"
port="80"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="中国移动彩信 (China Mobile)"
@@ -31602,7 +28860,7 @@
apn="cmwap"
proxy="10.0.0.172"
port="80"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="中国移动彩信 (China Mobile)"
@@ -31624,7 +28882,7 @@
mcc="460"
mnc="09"
port="80"
- type="default,ia, supl"/>
+ type="default, supl"/>
<apn carrier="China Unicom wap"
apn="3gwap"
@@ -31636,7 +28894,7 @@
mmsproxy="10.0.0.172"
mmsport="80"
mmsc="http://mmsc.myuni.com.cn"
- type="default,ia, mms"/>
+ type="default, mms"/>
<apn carrier="ctlte"
carrier_id = "2237"
@@ -31652,7 +28910,7 @@
mmsc=""
mmsproxy=""
mmsport=""
- type="default,ia,hipri,supl,fota,cbs"
+ type="default,hipri,supl,fota,cbs"
protocol="IPV4V6"
/>
@@ -31690,7 +28948,7 @@
mcc="466"
mnc="01"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="和信電訊(KGT-Online) (Internet)"
@@ -31698,7 +28956,7 @@
mcc="466"
mnc="88"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="和信電訊(KGT-Online) (MMS)"
@@ -31717,7 +28975,7 @@
mcc="466"
mnc="89"
apn="vibo"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="T Star-internet"
@@ -31725,7 +28983,7 @@
mcc="466"
mnc="89"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="VIBOONE"
@@ -31733,7 +28991,7 @@
mcc="466"
mnc="89"
apn="viboone"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="T Star-MMS"
@@ -31752,7 +29010,7 @@
mcc="466"
mnc="92"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="中華電信(Chunghwa) (MMS)"
@@ -31771,7 +29029,7 @@
mcc="466"
mnc="93"
apn="Internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="台灣大哥大(TW Mobile) (MMS)"
@@ -31790,7 +29048,7 @@
mcc="466"
mnc="97"
apn="Internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="台灣大哥大(TW Mobile) (MMS)"
@@ -31809,7 +29067,7 @@
mcc="466"
mnc="99"
apn="Internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="台灣大哥大(TW Mobile) (MMS)"
@@ -31829,7 +29087,7 @@
mnc="01"
apn="gpinternet"
authtype="0"
- type="default,ia,supl,fota,dun"
+ type="default,supl,fota,dun"
/>
<apn carrier="GP-MMS"
@@ -31849,7 +29107,7 @@
mcc="472"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="OoredooData"
@@ -31857,7 +29115,7 @@
mcc="472"
mnc="02"
apn="OoredooData"
- type="default,ia"
+ type="default"
/>
<apn carrier="MMS"
@@ -31876,7 +29134,7 @@
mcc="502"
mnc="10"
apn="diginet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="DiGi MMS"
@@ -31904,7 +29162,7 @@
mmsport="80"
mmsc="http://172.16.74.100:10021/mmsc"
authtype="1"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="Celcom Internet"
@@ -31915,7 +29173,7 @@
mmsproxy="10.128.1.242"
mmsport="8080"
mmsc="http://mms.celcom.net.my"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="DiGi Internet"
@@ -31923,7 +29181,7 @@
mcc="502"
mnc="143"
apn="diginet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="DiGi MMS"
@@ -31948,7 +29206,7 @@
mmsproxy="10.128.1.242"
mmsport="8080"
mmsc="http://mms.celcom.net.my"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="DiGi Internet"
@@ -31956,7 +29214,7 @@
mcc="502"
mnc="146"
apn="diginet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="DiGi MMS"
@@ -31981,7 +29239,7 @@
mmsproxy="10.128.1.242"
mmsport="8080"
mmsc="http://mms.celcom.net.my"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="DiGi MMS"
@@ -32003,7 +29261,7 @@
mcc="502"
mnc="16"
apn="diginet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Maxis Internet"
@@ -32017,7 +29275,7 @@
mmsport="80"
mmsc="http://172.16.74.100:10021/mmsc"
authtype="1"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="U Mobile Internet"
@@ -32028,7 +29286,7 @@
mmsproxy="10.30.5.11"
mmsport="8080"
mmsc="http://10.30.3.11/servlets/mms"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="Celcom Internet"
@@ -32039,7 +29297,7 @@
mmsproxy="10.128.1.242"
mmsport="8080"
mmsc="http://mms.celcom.net.my"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="Telstra IMS"
@@ -32057,9 +29315,9 @@
mcc="505"
mnc="01"
apn="telstra.wap"
- type="default,ia,supl"
- protocol="IP"
- roaming_protocol="IP"
+ type="default,supl"
+ protocol="IPV4"
+ roaming_protocol="IPV4"
/>
<apn carrier="Telstra MMS"
@@ -32071,8 +29329,8 @@
mmsc="http://mmsc.telstra.com:8002/"
mmsproxy="10.1.1.180"
mmsport="80"
- protocol="IP"
- roaming_protocol="IP"
+ protocol="IPV4"
+ roaming_protocol="IPV4"
/>
<apn carrier="Telstra Tethering"
@@ -32082,7 +29340,7 @@
apn="telstra.internet"
type="dun"
protocol="IPV4V6"
- roaming_protocol="IP"
+ roaming_protocol="IPV4"
/>
<apn carrier="Telstra HOS"
@@ -32090,8 +29348,8 @@
mcc="505"
mnc="01"
apn="hos"
- protocol="IP"
- roaming_protocol="IP"
+ protocol="IPV4"
+ roaming_protocol="IPV4"
/>
<apn carrier="Optus Yes Internet"
@@ -32099,7 +29357,7 @@
mcc="505"
mnc="02"
apn="yesinternet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Optus MMS"
@@ -32118,7 +29376,7 @@
mcc="505"
mnc="02"
apn="yesinternet"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="505029"
mvno_type="imsi"
/>
@@ -32144,7 +29402,7 @@
mmsc="http://pxt.vodafone.net.au/pxtsend"
mmsproxy="10.202.2.60"
mmsport="8080"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="Planet 3"
@@ -32173,7 +29431,7 @@
mcc="505"
mnc="07"
apn="vfinternet.au"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="3Internet"
@@ -32181,7 +29439,7 @@
mcc="505"
mnc="12"
apn="3netaccess"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="3"
@@ -32192,7 +29450,7 @@
mmsc="http://mmsc.three.net.au:10021/mmsc"
mmsproxy="10.176.57.25"
mmsport="8799"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="Lycamobile"
@@ -32204,7 +29462,6 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
- type="default,ia,supl"
/>
<apn carrier="Truphone"
@@ -32213,7 +29470,7 @@
mnc="38"
apn="truphone.com"
mmsc="http://mmsc.truphone.com:1981/mm1"
- type="default,ia,supl,mms,dun"
+ type="default,supl,mms,dun"
mvno_type="gid"
mvno_match_data="547275554B3030656E"
/>
@@ -32230,45 +29487,6 @@
mvno_match_data="547275554B3030656E"
/>
- <apn carrier="OptiTel"
- carrier_id = "2535"
- mcc="505"
- mnc="52"
- apn="optitel"
- type="default,ia,supl"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- />
-
- <apn carrier="OptiTel IMS"
- carrier_id = "2535"
- mcc="505"
- mnc="52"
- apn="optitel.ims"
- type="ims"
- />
-
- <apn carrier="OptiTel MMS"
- carrier_id = "2535"
- mcc="505"
- mnc="52"
- apn="optitel.mms"
- type="mms"
- mmsc="http://mmsc.opti.tel"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- />
-
- <apn carrier="OptiTel MCX"
- carrier_id = "2535"
- mcc="505"
- mnc="52"
- apn="optitel.mcx"
- type="mcx"
- protocol="IP"
- roaming_protocol="IP"
- />
-
<apn carrier="Telstra IMS"
carrier_id = "1345"
mcc="505"
@@ -32284,9 +29502,9 @@
mcc="505"
mnc="71"
apn="telstra.wap"
- type="default,ia,supl"
- protocol="IP"
- roaming_protocol="IP"
+ type="default,supl"
+ protocol="IPV4"
+ roaming_protocol="IPV4"
/>
<apn carrier="Telstra MMS"
@@ -32298,8 +29516,8 @@
mmsc="http://mmsc.telstra.com:8002/"
mmsproxy="10.1.1.180"
mmsport="80"
- protocol="IP"
- roaming_protocol="IP"
+ protocol="IPV4"
+ roaming_protocol="IPV4"
/>
<apn carrier="Telstra Tethering"
@@ -32309,7 +29527,7 @@
apn="telstra.internet"
type="dun"
protocol="IPV4V6"
- roaming_protocol="IP"
+ roaming_protocol="IPV4"
/>
<apn carrier="Telstra HOS"
@@ -32317,8 +29535,8 @@
mcc="505"
mnc="71"
apn="hos"
- protocol="IP"
- roaming_protocol="IP"
+ protocol="IPV4"
+ roaming_protocol="IPV4"
/>
<apn carrier="Telstra IMS"
@@ -32336,9 +29554,9 @@
mcc="505"
mnc="72"
apn="telstra.wap"
- type="default,ia,supl"
- protocol="IP"
- roaming_protocol="IP"
+ type="default,supl"
+ protocol="IPV4"
+ roaming_protocol="IPV4"
/>
<apn carrier="Telstra MMS"
@@ -32350,8 +29568,8 @@
mmsc="http://mmsc.telstra.com:8002/"
mmsproxy="10.1.1.180"
mmsport="80"
- protocol="IP"
- roaming_protocol="IP"
+ protocol="IPV4"
+ roaming_protocol="IPV4"
/>
<apn carrier="Telstra Tethering"
@@ -32361,7 +29579,7 @@
apn="telstra.internet"
type="dun"
protocol="IPV4V6"
- roaming_protocol="IP"
+ roaming_protocol="IPV4"
/>
<apn carrier="Telstra HOS"
@@ -32369,8 +29587,8 @@
mcc="505"
mnc="72"
apn="hos"
- protocol="IP"
- roaming_protocol="IP"
+ protocol="IPV4"
+ roaming_protocol="IPV4"
/>
<apn carrier="VF AU PXT"
@@ -32389,7 +29607,7 @@
mcc="505"
mnc="88"
apn="vfinternet.au"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Optus Internet"
@@ -32397,7 +29615,7 @@
mcc="505"
mnc="90"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Optus MMS"
@@ -32427,7 +29645,7 @@
mnc="01"
apn="indosatgprs"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Indosat MMS"
@@ -32450,7 +29668,7 @@
mnc="08"
apn="AXIS"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="AXISwap"
@@ -32462,7 +29680,7 @@
password="123456"
proxy="10.8.3.8"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
authtype="1"
/>
@@ -32485,7 +29703,7 @@
mcc="510"
mnc="10"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="TSEL-WAP"
@@ -32498,7 +29716,7 @@
authtype="1"
proxy="10.1.89.130"
port="8000"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="TSEL-MMS"
@@ -32521,7 +29739,7 @@
mnc="11"
apn="internet"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="XL-MMS"
@@ -32544,7 +29762,7 @@
mnc="21"
apn="indosatgprs"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Indosat GPRS"
@@ -32557,7 +29775,7 @@
authtype="1"
proxy="10.19.19.19"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Indosat MMS"
@@ -32580,7 +29798,7 @@
mnc="89"
apn="3gprs"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="3GPRS"
@@ -32591,7 +29809,7 @@
user="3gprs"
password="3gprs"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="3MMS"
@@ -32613,7 +29831,7 @@
mcc="514"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Timor Telecom"
@@ -32621,7 +29839,7 @@
mcc="514"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Viettel Timor-Leste"
@@ -32629,7 +29847,7 @@
mcc="514"
mnc="03"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="myGlobe Internet"
@@ -32637,7 +29855,7 @@
mcc="515"
mnc="02"
apn="internet.globe.com.ph"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="myGlobe INET"
@@ -32645,7 +29863,7 @@
mcc="515"
mnc="02"
apn="http.globe.com.ph"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="myGlobe Connect"
@@ -32655,7 +29873,7 @@
apn="www.globe.com.ph"
proxy="203.177.42.214"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="myGlobe MMS"
@@ -32674,7 +29892,7 @@
mcc="515"
mnc="03"
apn="smartlte"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="SMART INTERNET"
@@ -32682,7 +29900,7 @@
mcc="515"
mnc="03"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Smart GPRS"
@@ -32692,7 +29910,7 @@
apn="Smart1"
proxy="10.102.61.46"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Smart MMS"
@@ -32711,7 +29929,7 @@
mcc="515"
mnc="05"
apn="minternet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="SUN WAP GPRS"
@@ -32721,7 +29939,7 @@
apn="wap"
proxy="202.138.159.78"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Sun SBW"
@@ -32729,7 +29947,7 @@
mcc="515"
mnc="05"
apn="fbband"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Sun Streaming"
@@ -32737,7 +29955,7 @@
mcc="515"
mnc="05"
apn="minternet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="SUN MMS"
@@ -32756,7 +29974,7 @@
mcc="515"
mnc="18"
apn="redinternet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Redmms"
@@ -32775,7 +29993,7 @@
mcc="520"
mnc="00"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="CAT3G MMS"
@@ -32797,7 +30015,7 @@
user="true"
password="true"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="01"
mvno_type="gid"
/>
@@ -32824,7 +30042,7 @@
mnc="01"
apn="internet"
authtype="0"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="AIS MMS"
@@ -32844,7 +30062,7 @@
mnc="03"
apn="internet"
authtype="0"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="AIS MMS"
@@ -32866,7 +30084,7 @@
user="true"
password="true"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="TRUE-H MMS"
@@ -32888,7 +30106,7 @@
mcc="520"
mnc="05"
apn="www.dtac.co.th"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="dtac MMS"
@@ -32907,7 +30125,7 @@
mcc="520"
mnc="15"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="TOT 3G MMS"
@@ -32937,7 +30155,7 @@
mcc="520"
mnc="18"
apn="www.dtac.co.th"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="TRUE INTERNET"
@@ -32948,7 +30166,7 @@
user="true"
password="true"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="TRUE MMS"
@@ -32973,7 +30191,7 @@
mmsproxy="165.21.42.84"
mmsport="8080"
mmsc="http://mms.singtel.com:10021/mmsc"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="SingTel (PrePaid)"
@@ -32984,7 +30202,7 @@
mmsproxy="165.21.42.84"
mmsport="8080"
mmsc="http://mms.singtel.com:10021/mmsc"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="SingTel (PostPaid)"
@@ -32995,7 +30213,7 @@
mmsproxy="165.21.42.84"
mmsport="8080"
mmsc="http://mms.singtel.com:10021/mmsc"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="SingTel (PrePaid)"
@@ -33006,7 +30224,7 @@
mmsproxy="165.21.42.84"
mmsport="8080"
mmsc="http://mms.singtel.com:10021/mmsc"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="Sunsurf Mobile"
@@ -33014,7 +30232,7 @@
mcc="525"
mnc="03"
apn="sunsurf"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="M1 MMS(3G)"
@@ -33036,7 +30254,7 @@
mcc="525"
mnc="04"
apn="sunsurf"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="M1 MMS(3G)"
@@ -33058,7 +30276,7 @@
mcc="525"
mnc="05"
apn="shwap"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="SH MMS Postpaid"
@@ -33077,7 +30295,7 @@
mcc="528"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="DSTCom"
@@ -33085,7 +30303,7 @@
mcc="528"
mnc="11"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="VFNZ Gateway"
@@ -33104,7 +30322,7 @@
mcc="530"
mnc="01"
apn="vodafone"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Data"
@@ -33112,7 +30330,7 @@
mcc="530"
mnc="05"
apn="Internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Content"
@@ -33122,7 +30340,7 @@
apn="Internet"
proxy="210.55.11.73"
port="80"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS"
@@ -33141,7 +30359,7 @@
mcc="530"
mnc="05"
apn="wapaccess.co.nz"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="Skinny"
mvno_type="spn"
/>
@@ -33153,7 +30371,7 @@
apn="wapaccess.co.nz"
proxy="210.55.11.73"
port="80"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="Skinny"
mvno_type="spn"
/>
@@ -33163,7 +30381,7 @@
mcc="530"
mnc="05"
apn="wapaccess.co.nz"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="Skinny"
mvno_type="spn"
/>
@@ -33186,7 +30404,7 @@
mcc="530"
mnc="24"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="2Degrees MMS"
@@ -33204,7 +30422,7 @@
mcc="536"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="BeMobile"
@@ -33212,7 +30430,7 @@
mcc="537"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="PNG WAP"
@@ -33222,7 +30440,7 @@
apn="wap.digicelpng.com"
proxy="10.149.83.116"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="PNG WEB"
@@ -33230,7 +30448,7 @@
mcc="537"
mnc="03"
apn="internet.digicelpng.com"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Papua New Guinea:Digicel:Modem"
@@ -33263,7 +30481,7 @@
apn="em"
mvno_match_data="5370309"
mvno_type="imsi"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="U-Call"
@@ -33271,7 +30489,7 @@
mcc="539"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Shoreline Communication"
@@ -33279,7 +30497,7 @@
mcc="539"
mnc="43"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Digicel"
@@ -33287,7 +30505,7 @@
mcc="539"
mnc="88"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Tonga:Digicel:Modem"
@@ -33319,7 +30537,7 @@
mcc="540"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="BeMobile"
@@ -33327,7 +30545,7 @@
mcc="540"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="AIL"
@@ -33335,7 +30553,7 @@
mcc="541"
mnc="00"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="SMILE"
@@ -33343,7 +30561,7 @@
mcc="541"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Digicel"
@@ -33351,7 +30569,7 @@
mcc="541"
mnc="05"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Vanatu:Digicel:Modem"
@@ -33383,7 +30601,7 @@
mcc="542"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Digicel"
@@ -33391,7 +30609,7 @@
mcc="542"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Fiji:Digicel:Modem"
@@ -33423,7 +30641,7 @@
mcc="544"
mnc="11"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Kiribati - TSKL"
@@ -33431,7 +30649,7 @@
mcc="545"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Kiribati - Frigate Net"
@@ -33439,7 +30657,7 @@
mcc="545"
mnc="09"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Mobilis"
@@ -33447,7 +30665,7 @@
mcc="546"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Vini"
@@ -33455,7 +30673,7 @@
mcc="547"
mnc="20"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Telecom Cook"
@@ -33463,7 +30681,7 @@
mcc="548"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Digicel"
@@ -33471,7 +30689,7 @@
mcc="549"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Bluesky"
@@ -33479,7 +30697,7 @@
mcc="549"
mnc="27"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="FSMTC"
@@ -33487,14 +30705,14 @@
mcc="550"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MINTA"
mcc="551"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="PNCC"
@@ -33502,7 +30720,7 @@
mcc="552"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Palau Mobile"
@@ -33510,7 +30728,7 @@
mcc="552"
mnc="80"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Mobinil Web"
@@ -33518,7 +30736,7 @@
mcc="602"
mnc="01"
apn="mobinilweb"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Mobinil WAP"
@@ -33528,7 +30746,7 @@
apn="mobinilwap"
proxy="62.241.155.45"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Mobinil MMS"
@@ -33550,7 +30768,7 @@
user="internet"
password="internet"
authtype="3"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Vodafone WAP"
@@ -33563,7 +30781,7 @@
authtype="3"
proxy="163.121.178.2"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Vodafone MMS"
@@ -33587,7 +30805,7 @@
apn="etisalat"
proxy="10.71.130.29"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Etisalat MMS"
@@ -33611,7 +30829,7 @@
user="wap"
password="wap"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Mobilis internet"
@@ -33622,7 +30840,7 @@
user="internet"
password="internet"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Mobilis mms"
@@ -33644,7 +30862,7 @@
mcc="603"
mnc="02"
apn="djezzy.internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="djezzy.mms"
@@ -33665,7 +30883,7 @@
mcc="603"
mnc="03"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
authtype="1"
/>
@@ -33688,7 +30906,7 @@
mnc="00"
apn="internet.orange.ma"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Imedia"
@@ -33701,7 +30919,7 @@
user="MEDIWAP"
password="MEDIWAP"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="GPRS MMS"
@@ -33725,7 +30943,7 @@
apn="wap.iamgprs.ma"
proxy="212.217.54.133"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Internet Mobile"
@@ -33733,7 +30951,7 @@
mcc="604"
mnc="01"
apn="www.iamgprs1.ma"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS IAM"
@@ -33752,7 +30970,7 @@
mcc="604"
mnc="02"
apn="www.wana.ma"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="WAP"
@@ -33762,7 +30980,7 @@
apn="www.wana.ma"
proxy="10.86.0.10"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS"
@@ -33781,7 +30999,7 @@
mcc="605"
mnc="01"
apn="weborange"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS Orange"
@@ -33800,7 +31018,7 @@
mcc="605"
mnc="02"
apn="internet.tn"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Internet Portail"
@@ -33811,7 +31029,7 @@
user="gprs"
password="gprs"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Tunisie Telecom MMS"
@@ -33833,7 +31051,7 @@
mcc="605"
mnc="03"
apn="internet.ooredoo.tn"
- type="default,ia"
+ type="default"
/>
<apn carrier="Ooredoo TN MMS"
@@ -33852,7 +31070,7 @@
mcc="606"
mnc="00"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Libyana MMS"
@@ -33872,7 +31090,7 @@
mcc="606"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Al-Jeel Phone"
@@ -33880,7 +31098,7 @@
mcc="606"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Libya Phone"
@@ -33888,7 +31106,7 @@
mcc="606"
mnc="03"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Hatef Libya"
@@ -33896,7 +31114,7 @@
mcc="606"
mnc="06"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Gamcel"
@@ -33904,7 +31122,7 @@
mcc="607"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Africel"
@@ -33912,7 +31130,7 @@
mcc="607"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Comium"
@@ -33920,7 +31138,7 @@
mcc="607"
mnc="03"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="QCell"
@@ -33928,7 +31146,7 @@
mcc="607"
mnc="04"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Orange MMS SN"
@@ -33953,7 +31171,7 @@
password="wap"
proxy="172.16.30.9"
port="8080"
- type="default,ia"
+ type="default"
/>
<apn carrier="Orange Web SN"
@@ -33963,7 +31181,7 @@
apn="internet"
user="internet"
password="internet"
- type="default,ia"
+ type="default"
/>
<apn carrier="Tigo Internet SN"
@@ -33971,7 +31189,7 @@
mcc="608"
mnc="02"
apn="web.sentel.com"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Expresso Internet SN"
@@ -33983,7 +31201,7 @@
password="wap"
proxy="10.71.123.69"
port="8080"
- type="default,ia"
+ type="default"
/>
<apn carrier="Mattel"
@@ -33991,7 +31209,7 @@
mcc="609"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Chinguitel"
@@ -33999,7 +31217,7 @@
mcc="609"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Mauritel"
@@ -34007,7 +31225,7 @@
mcc="609"
mnc="10"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Orange 3G/4G"
@@ -34018,7 +31236,7 @@
authtype="1"
user="internet"
password="internet"
- type="default,ia"
+ type="default"
/>
<apn carrier="Orange ML MMS"
@@ -34043,7 +31261,7 @@
password="wap"
proxy="10.109.4.35"
port="8080"
- type="default,ia"
+ type="default"
/>
<apn carrier="Orange S.A."
@@ -34051,7 +31269,7 @@
mcc="611"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Sotelgui"
@@ -34059,7 +31277,7 @@
mcc="611"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Telecel Guinee"
@@ -34067,7 +31285,7 @@
mcc="611"
mnc="03"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MTN"
@@ -34075,7 +31293,7 @@
mcc="611"
mnc="04"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Cellcom"
@@ -34083,7 +31301,7 @@
mcc="611"
mnc="05"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Moov Internet CI"
@@ -34095,7 +31313,7 @@
password="web"
proxy="10.172.11.17"
port="8080"
- type="default,ia"
+ type="default"
/>
<apn carrier="Oweb"
@@ -34106,7 +31324,7 @@
user="web"
password="web"
authtype="1"
- type="default,ia"
+ type="default"
/>
<apn carrier="OWORLD CI"
@@ -34118,7 +31336,7 @@
password="wap"
proxy="172.20.4.33"
port="8080"
- type="default,ia"
+ type="default"
/>
<apn carrier="Omms CI"
@@ -34143,7 +31361,7 @@
password="web"
proxy="10.20.3.10"
port="8080"
- type="default,ia"
+ type="default"
/>
<apn carrier="MTN Internet CI"
@@ -34153,7 +31371,7 @@
apn="web.mtn.ci"
user="vide"
password="vide"
- type="default,ia"
+ type="default"
/>
<apn carrier="Telmob"
@@ -34161,7 +31379,7 @@
mcc="613"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Airtel"
@@ -34169,7 +31387,7 @@
mcc="613"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Telecel Faso"
@@ -34177,7 +31395,7 @@
mcc="613"
mnc="03"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Orange MMS"
@@ -34198,7 +31416,7 @@
carrier_id = "1943"
mcc="614"
mnc="04"
- type="default,ia"
+ type="default"
/>
<apn carrier="Togo Cell"
@@ -34206,7 +31424,7 @@
mcc="615"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Moov"
@@ -34214,7 +31432,7 @@
mcc="615"
mnc="03"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Libercom"
@@ -34222,7 +31440,7 @@
mcc="616"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Moov"
@@ -34230,7 +31448,7 @@
mcc="616"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MTN"
@@ -34238,7 +31456,7 @@
mcc="616"
mnc="03"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="BBCOM"
@@ -34246,7 +31464,7 @@
mcc="616"
mnc="04"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Glo"
@@ -34254,7 +31472,7 @@
mcc="616"
mnc="05"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Orange MMS"
@@ -34275,7 +31493,7 @@
carrier_id = "1621"
mcc="617"
mnc="01"
- type="default,ia"
+ type="default"
/>
<apn carrier="Lonestar Cell"
@@ -34283,7 +31501,7 @@
mcc="618"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Libercell"
@@ -34291,7 +31509,7 @@
mcc="618"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Comium"
@@ -34299,7 +31517,7 @@
mcc="618"
mnc="04"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Orange"
@@ -34307,7 +31525,7 @@
mcc="618"
mnc="07"
apn="Orange"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="LIBTELCO"
@@ -34315,7 +31533,7 @@
mcc="618"
mnc="20"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Airtel"
@@ -34323,7 +31541,7 @@
mcc="619"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Tigo"
@@ -34331,7 +31549,7 @@
mcc="619"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Africell"
@@ -34339,7 +31557,7 @@
mcc="619"
mnc="03"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Comium"
@@ -34347,7 +31565,7 @@
mcc="619"
mnc="04"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Africell"
@@ -34355,7 +31573,7 @@
mcc="619"
mnc="05"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Mobitel"
@@ -34363,7 +31581,7 @@
mcc="619"
mnc="25"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Glo"
@@ -34371,7 +31589,7 @@
mnc="0"
apn="glowap"
authtype="0"
- type="default,ia,supl,fota,dun"
+ type="default,supl,fota,dun"
/>
<apn carrier="Glo mms"
@@ -34390,7 +31608,7 @@
carrier_id = "1515"
mcc="620"
mnc="01"
- type="default,ia"
+ type="default"
/>
<apn carrier="MTN MMS"
@@ -34410,7 +31628,7 @@
carrier_id = "2383"
mcc="620"
mnc="02"
- type="default,ia"
+ type="default"
/>
<apn carrier="Vodafone_mms"
@@ -34430,7 +31648,7 @@
carrier_id = "2108"
mcc="620"
mnc="03"
- type="default,ia"
+ type="default"
/>
<apn carrier="Tigo mms"
@@ -34452,7 +31670,7 @@
mnc="06"
proxy="10.93.85.88"
port="9201"
- type="default,ia"
+ type="default"
/>
<apn carrier="Airtel mms"
@@ -34477,7 +31695,7 @@
authtype="1"
proxy="10.161.85.4"
port="8799"
- type="default,ia"
+ type="default"
/>
<apn carrier="Airtel Internet"
@@ -34489,7 +31707,7 @@
password="internet"
authtype="1"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Airtel MMS"
@@ -34515,7 +31733,7 @@
authtype="1"
proxy="172.18.254.5"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MTN-WEB"
@@ -34526,7 +31744,7 @@
user="web"
password="web"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MTN ACESS"
@@ -34537,7 +31755,7 @@
user="web"
password="web"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MTN MMS"
@@ -34558,7 +31776,7 @@
user="gprs"
password="gprs"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Glo MMS"
@@ -34582,7 +31800,7 @@
apn="etisalat"
proxy="10.71.170.5"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="etisalat MMS"
@@ -34599,7 +31817,7 @@
mcc="622"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Tawali"
@@ -34607,7 +31825,7 @@
mcc="622"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Tigo"
@@ -34615,7 +31833,7 @@
mcc="622"
mnc="03"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Salam"
@@ -34623,7 +31841,7 @@
mcc="622"
mnc="04"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="CTP"
@@ -34631,7 +31849,7 @@
mcc="623"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="TC"
@@ -34639,7 +31857,7 @@
mcc="623"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Internet browsing"
@@ -34647,7 +31865,7 @@
mcc="623"
mnc="03"
apn="orangeca3g"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Nationlink"
@@ -34655,7 +31873,7 @@
mcc="623"
mnc="04"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Orange CM"
@@ -34670,7 +31888,7 @@
mmsc="http://mms.orange.cm"
mmsproxy="192.168.122.101"
mmsport="8080"
- type="default,ia,mms"
+ type="default,mms"
/>
<apn carrier="CVMOVEL"
@@ -34678,7 +31896,7 @@
mcc="625"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="T+"
@@ -34686,7 +31904,7 @@
mcc="625"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="CSTmovel"
@@ -34694,7 +31912,7 @@
mcc="626"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Orange GQ"
@@ -34702,7 +31920,7 @@
mcc="627"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Orange GQ MMS"
@@ -34724,7 +31942,7 @@
mcc="627"
mnc="03"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Libertis"
@@ -34732,7 +31950,7 @@
mcc="628"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Moov"
@@ -34740,7 +31958,7 @@
mcc="628"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Airtel"
@@ -34748,7 +31966,7 @@
mcc="628"
mnc="03"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Azur"
@@ -34756,7 +31974,7 @@
mcc="628"
mnc="04"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Airtel"
@@ -34764,7 +31982,7 @@
mcc="629"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Libertis Telecom"
@@ -34772,7 +31990,7 @@
mcc="629"
mnc="10"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Vodacom Internet CD"
@@ -34781,7 +31999,7 @@
mnc="01"
apn="vodanet"
port="8080"
- type="default,ia"
+ type="default"
/>
<apn carrier="Vodacom MMS"
@@ -34801,7 +32019,7 @@
mcc="630"
mnc="89"
apn="tigo.web"
- type="default,ia"
+ type="default"
/>
<apn carrier="UNITEL"
@@ -34809,7 +32027,7 @@
mcc="631"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MOVICEL"
@@ -34817,7 +32035,7 @@
mcc="631"
mnc="04"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Areeba"
@@ -34825,7 +32043,7 @@
mcc="632"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Orange Bissau"
@@ -34833,7 +32051,7 @@
mcc="632"
mnc="03"
apn="4Gogb"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Guinetel"
@@ -34841,7 +32059,7 @@
mcc="632"
mnc="07"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Cable &amp; Wireless"
@@ -34849,7 +32067,7 @@
mcc="633"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Mediatech International"
@@ -34857,7 +32075,7 @@
mcc="633"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Airtel"
@@ -34865,7 +32083,7 @@
mcc="633"
mnc="10"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Zain SD"
@@ -34873,7 +32091,7 @@
mcc="634"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MTN"
@@ -34881,7 +32099,7 @@
mcc="634"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Sudani One"
@@ -34889,7 +32107,7 @@
mcc="634"
mnc="07"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Privet Network"
@@ -34897,7 +32115,7 @@
mcc="634"
mnc="09"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MTN"
@@ -34905,7 +32123,7 @@
mcc="635"
mnc="10"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Rwandatel"
@@ -34913,7 +32131,7 @@
mcc="635"
mnc="12"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Tigo"
@@ -34921,7 +32139,7 @@
mcc="635"
mnc="13"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Airtel"
@@ -34929,7 +32147,7 @@
mcc="635"
mnc="14"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="ETH-MTN"
@@ -34937,7 +32155,7 @@
mcc="636"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Telesom"
@@ -34945,7 +32163,7 @@
mcc="637"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Somafone"
@@ -34953,7 +32171,7 @@
mcc="637"
mnc="04"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Nationlink"
@@ -34961,7 +32179,7 @@
mcc="637"
mnc="10"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Hormuud"
@@ -34969,7 +32187,7 @@
mcc="637"
mnc="25"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Golis"
@@ -34977,7 +32195,7 @@
mcc="637"
mnc="30"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Unittel"
@@ -34985,14 +32203,14 @@
mcc="637"
mnc="57"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Nationlink Telecom"
mcc="637"
mnc="60"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Somtel"
@@ -35000,7 +32218,7 @@
mcc="637"
mnc="71"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Telcom"
@@ -35008,7 +32226,7 @@
mcc="637"
mnc="82"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Evatis"
@@ -35016,7 +32234,7 @@
mcc="638"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="safaricom GPRS"
@@ -35029,7 +32247,7 @@
authtype="1"
proxy="172.22.2.38"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="safaricom mms"
@@ -35052,7 +32270,7 @@
mcc="639"
mnc="03"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Airtel mms"
@@ -35072,7 +32290,7 @@
mcc="639"
mnc="03"
apn="ke.celtel.com"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="mms"
@@ -35096,7 +32314,7 @@
mmsproxy="10.4.16.6"
mmsport="8080"
mmsc="http://10.4.16.22/servlets/mms"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="Yu WAP"
@@ -35104,7 +32322,7 @@
mcc="639"
mnc="05"
apn="Yu internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Yu mms"
@@ -35123,7 +32341,7 @@
mcc="639"
mnc="07"
apn="bew.orange.co.ke"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Orange net KE"
@@ -35131,7 +32349,7 @@
mcc="639"
mnc="07"
apn="bew.orange.co.ke"
- type="default,ia"
+ type="default"
/>
<apn carrier="Orange MMS"
@@ -35153,7 +32371,7 @@
apn="Wap"
proxy="10.154.0.8"
port="9401"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="VodaCom Tanzania"
mvno_type="spn"
/>
@@ -35174,7 +32392,7 @@
carrier_id = "1753"
mcc="641"
mnc="01"
- type="default,ia"
+ type="default"
/>
<apn carrier="MTN-WEB"
@@ -35182,7 +32400,7 @@
carrier_id = "1754"
mcc="641"
mnc="10"
- type="default,ia"
+ type="default"
/>
<apn carrier="UTL Internet UG"
@@ -35192,7 +32410,7 @@
mnc="11"
proxy="10.76.101.51"
port="8080"
- type="default,ia"
+ type="default"
/>
<apn carrier="Orange Internet UG"
@@ -35200,7 +32418,7 @@
mcc="641"
mnc="14"
apn="orange.ug"
- type="default,ia"
+ type="default"
/>
<apn carrier="Orange MMS"
@@ -35219,7 +32437,7 @@
mnc="22"
proxy="10.5.27.80"
port="8080"
- type="default,ia"
+ type="default"
/>
<apn carrier="Lycamobile"
@@ -35231,7 +32449,6 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
- type="default,ia,supl"
/>
<apn carrier="Spacetel"
@@ -35239,7 +32456,7 @@
mcc="642"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Tempo"
@@ -35247,7 +32464,7 @@
mcc="642"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Onatel"
@@ -35255,7 +32472,7 @@
mcc="642"
mnc="03"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Smart Mobile"
@@ -35263,7 +32480,7 @@
mcc="642"
mnc="07"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="HiTs Telecom"
@@ -35271,7 +32488,7 @@
mcc="642"
mnc="08"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Leo"
@@ -35279,7 +32496,7 @@
mcc="642"
mnc="82"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="mCel"
@@ -35287,7 +32504,7 @@
mcc="643"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Movitel"
@@ -35295,7 +32512,7 @@
mcc="643"
mnc="03"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Vodacom"
@@ -35303,7 +32520,7 @@
mcc="643"
mnc="04"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Airtel"
@@ -35311,7 +32528,7 @@
mcc="645"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MTN"
@@ -35319,7 +32536,7 @@
mcc="645"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="ZAMTEL"
@@ -35327,7 +32544,7 @@
mcc="645"
mnc="03"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Orange MG Internet"
@@ -35335,7 +32552,7 @@
mcc="646"
mnc="02"
apn="orangenet"
- type="default,ia,supl,fota,dun"
+ type="default,supl,fota,dun"
authtype="0"
/>
@@ -35348,7 +32565,7 @@
password="orange"
proxy="10.150.0.115"
port="8080"
- type="default,ia"
+ type="default"
/>
<apn carrier="Orange MG MMS"
@@ -35371,7 +32588,7 @@
apn="orangerun"
user="orange"
password="orange"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Orange RE"
@@ -35381,7 +32598,7 @@
apn="orangerun"
user="orange"
password="orange"
- type="default,ia"
+ type="default"
/>
<apn carrier="Orange MMS Réunion"
@@ -35407,7 +32624,7 @@
authtype="1"
proxy="10.4.85.50"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="OnlyMMS"
@@ -35430,7 +32647,7 @@
mnc="03"
apn="free.re"
mmsc="http://mms.free.re"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="Full Internet SRR"
@@ -35438,7 +32655,7 @@
mcc="647"
mnc="10"
apn="sl2sfr"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS"
@@ -35463,7 +32680,7 @@
password="wap"
proxy="10.0.224.161"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Coriolis WAP"
@@ -35471,7 +32688,7 @@
mcc="647"
mnc="10"
apn="fnetcoriolis"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="12"
mvno_type="gid"
/>
@@ -35494,7 +32711,7 @@
mcc="648"
mnc="03"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Econet"
@@ -35502,7 +32719,7 @@
mcc="648"
mnc="04"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MTC"
@@ -35510,7 +32727,7 @@
mcc="649"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="switch"
@@ -35518,7 +32735,7 @@
mcc="649"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Leo"
@@ -35526,7 +32743,7 @@
mcc="649"
mnc="03"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="TNM"
@@ -35534,7 +32751,7 @@
mcc="650"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Airtel"
@@ -35542,7 +32759,7 @@
mcc="650"
mnc="10"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="VCL Internet GPRS"
@@ -35550,7 +32767,7 @@
mcc="651"
mnc="01"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="VCL MMS GPRS"
@@ -35582,7 +32799,7 @@
apn="internet.orange.co.bw"
proxy="10.0.0.226"
port="8080"
- type="default,ia"
+ type="default"
/>
<apn carrier="Swazi MTN"
@@ -35590,7 +32807,7 @@
mcc="653"
mnc="10"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="HURI - SNPT"
@@ -35598,7 +32815,7 @@
mcc="654"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="LTE.Vodacom"
@@ -35606,7 +32823,7 @@
mcc="655"
mnc="01"
apn="lte.vodacom.za"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS.Vodacom"
@@ -35625,7 +32842,7 @@
mcc="655"
mnc="01"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS.Vodacom"
@@ -35644,7 +32861,7 @@
mcc="655"
mnc="02"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Telkom Mobile MMS"
@@ -35665,7 +32882,7 @@
apn="internet"
proxy="196.31.116.250"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Cell C MMS"
@@ -35686,7 +32903,7 @@
apn="vdata"
proxy="196.31.116.241"
port="8080"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="6550710"
mvno_type="imsi"
/>
@@ -35698,7 +32915,7 @@
apn="vdata"
proxy="196.31.116.241"
port="9201"
- type="default,ia,supl"
+ type="default,supl"
mvno_match_data="6550710"
mvno_type="imsi"
/>
@@ -35737,7 +32954,7 @@
user="mtnwap"
password="mtnwap"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MTN MMS"
@@ -35763,7 +32980,6 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
- type="default,ia,supl"
/>
<apn carrier="Eritel"
@@ -35771,7 +32987,7 @@
mcc="657"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="DigiCell"
@@ -35779,7 +32995,7 @@
mcc="702"
mnc="67"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Smart"
@@ -35787,7 +33003,7 @@
mcc="702"
mnc="99"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Internet CLARO"
@@ -35795,7 +33011,7 @@
mcc="704"
mnc="01"
apn="internet.ideasclaro"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS CLARO"
@@ -35814,7 +33030,7 @@
mcc="704"
mnc="02"
apn="broadband.tigo.gt"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS TIGO"
@@ -35836,7 +33052,7 @@
user="movistargt"
password="movistargt"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Movistar MMS"
@@ -35861,7 +33077,7 @@
user="movistargt"
password="movistargt"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Movistar MMS"
@@ -35883,7 +33099,7 @@
mcc="706"
mnc="01"
apn="internet.ideasclaro"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS CLARO"
@@ -35902,7 +33118,7 @@
mcc="706"
mnc="02"
apn="web.digicelsv.com"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS"
@@ -35921,7 +33137,7 @@
mcc="706"
mnc="03"
apn="internet.tigo.sv"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS Tigo"
@@ -35943,7 +33159,7 @@
user="movistarsv"
password="movistarsv"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Movistar MMS"
@@ -35968,7 +33184,7 @@
user="movistarsv"
password="movistarsv"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Movistar MMS"
@@ -35990,7 +33206,7 @@
mcc="708"
mnc="001"
apn="internet.ideasclaro"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS Claro"
@@ -36009,7 +33225,7 @@
mcc="708"
mnc="02"
apn="internet.tigo.hn"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS TIGO"
@@ -36029,7 +33245,7 @@
mnc='04'
apn='web.digicelhn.com'
authtype='1'
- type='default,ia'
+ type='default'
/>
<apn carrier='Honduras:Digicel:Mms'
@@ -36061,7 +33277,7 @@
mcc="708"
mnc="020"
apn="internet.tigo.hn"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS TIGO"
@@ -36081,7 +33297,7 @@
mnc='040'
apn='web.digicelhn.com'
authtype='1'
- type='default,ia'
+ type='default'
/>
<apn carrier='Honduras:Digicel:Mms:2'
@@ -36104,7 +33320,7 @@
user="internet"
password="internet"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
@@ -36130,7 +33346,7 @@
user="movistarni"
password="movistarni"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Movistar MMS"
@@ -36152,7 +33368,7 @@
mcc="710"
mnc="70"
apn="internet"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Movistar INTERNET"
@@ -36163,7 +33379,7 @@
user="movistarni"
password="movistarni"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Movistar MMS"
@@ -36188,7 +33404,7 @@
user="internet"
password="internet"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
@@ -36214,7 +33430,7 @@
user="internet"
password="internet"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
@@ -36237,7 +33453,7 @@
mcc="712"
mnc="01"
apn="kolbi3g"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Costar Rica:Kolbi:Modem"
@@ -36267,7 +33483,7 @@
mcc="712"
mnc="02"
apn="kolbi3g"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Kolbi_Multimedia"
@@ -36288,7 +33504,7 @@
apn="internet.ideasclaro"
user=""
password=""
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS CLARO CR"
@@ -36312,7 +33528,7 @@
user="movistarcr"
password="movistarcr"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Movistar MMS"
@@ -36334,7 +33550,7 @@
mcc="712"
mnc="019"
apn="tm7datos"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS Tuyo"
@@ -36353,7 +33569,7 @@
mcc="712"
mnc="190"
apn="tm7datos"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS Tuyo"
@@ -36371,7 +33587,7 @@
mcc="712"
mnc="20"
apn="datos.fullmovil.cr"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Internet"
@@ -36379,7 +33595,7 @@
mcc="714"
mnc="01"
apn="apn01.cwpanama.com.pa"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS"
@@ -36401,7 +33617,7 @@
user="movistarpa"
password="movistarpa"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Movistar MMS"
@@ -36426,7 +33642,7 @@
user="movistarpa"
password="movistarpa"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Movistar MMS"
@@ -36451,7 +33667,7 @@
user="CLAROWEB"
password="CLAROWEB"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS Claro"
@@ -36473,7 +33689,7 @@
mcc="714"
mnc="04"
apn="web.digicelpanama.com"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS"
@@ -36493,7 +33709,7 @@
mnc='040'
apn='web.digicelpanama.com'
authtype='1'
- type='default,ia'
+ type='default'
/>
<apn carrier='Panama:Digicel:Mms:2'
@@ -36516,7 +33732,7 @@
user="movistar@datos"
password="movistar"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Movistar MMS"
@@ -36541,7 +33757,7 @@
user="claro"
password="claro"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="CLARO MMS"
@@ -36564,7 +33780,7 @@
mnc="15"
apn="bitel"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
protocol="IP"
roaming_protocol="IP"
/>
@@ -36589,7 +33805,7 @@
mnc="17"
apn="entel.pe"
authtype="0"
- type="default,ia,dun"
+ type="default,dun"
protocol="IP"
/>
@@ -36626,26 +33842,11 @@
user="internet"
password="internet"
authtype="1"
- type="default,ia"
+ type="default"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
- mvno_type="gid"
- mvno_match_data="02"
- />
-
- <apn carrier="Servicio_WEB"
- carrier_id="2249"
- mcc="722"
- mnc="010"
- apn="internet.movil"
- user="internet"
- password="internet"
- authtype="1"
- type="default,ia"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- mvno_type="gid"
- mvno_match_data="01"
+ mvno_type="spn"
+ mvno_match_data="Tuenti"
/>
<apn carrier="Movistar INTERNET"
@@ -36656,7 +33857,7 @@
user="wap"
password="wap"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
protocol="IPV4V6"
/>
@@ -36680,7 +33881,7 @@
mnc="31"
apn="igprs.claro.com.ar"
mmsc="http://mms.claro.com.ar"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="Claro AR"
@@ -36689,7 +33890,7 @@
mnc="310"
apn="igprs.claro.com.ar"
mmsc="http://mms.claro.com.ar"
- type="default,ia,supl,mms"
+ type="default,supl,mms"
/>
<apn carrier="Personal Datos"
@@ -36700,7 +33901,7 @@
user="datos"
password="datos"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Argentina:Personal:DUN"
@@ -36747,7 +33948,7 @@
mnc='36'
apn='gprs.nuestro.com.ar'
authtype='0'
- type='default,ia'
+ type='default'
user='gprs'
/>
@@ -36757,7 +33958,7 @@
mnc='340'
apn='datos.personal.com'
authtype='0'
- type='default,ia'
+ type='default'
user='gprs'
password='adgj'
/>
@@ -36795,7 +33996,7 @@
user="datos"
password="datos"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Argentina:Personal: DUN"
@@ -36835,16 +34036,7 @@
mmsport="8080"
authtype="1"
protocol="IPV4V6"
- type="default,ia,supl,mms,xcap"
- />
-
- <apn carrier="TIM IMS"
- carrier_id="1385"
- mcc="724"
- mnc="02"
- apn="ims"
- protocol="IPV6"
- type="ims"
+ type="default,supl,mms"
/>
<apn carrier="TIM Connect"
@@ -36859,16 +34051,7 @@
mmsport="8080"
authtype="1"
protocol="IPV4V6"
- type="default,ia,supl,mms,xcap"
- />
-
- <apn carrier="TIM IMS"
- carrier_id="1385"
- mcc="724"
- mnc="03"
- apn="ims"
- protocol="IPV6"
- type="ims"
+ type="default,supl,mms"
/>
<apn carrier="TIM Connect"
@@ -36883,16 +34066,7 @@
mmsport="8080"
authtype="1"
protocol="IPV4V6"
- type="default,ia,supl,mms,xcap"
- />
-
- <apn carrier="TIM IMS"
- carrier_id="1385"
- mcc="724"
- mnc="04"
- apn="ims"
- protocol="IPV6"
- type="ims"
+ type="default,supl,mms"
/>
<apn carrier="Java Session"
@@ -36902,7 +34076,7 @@
apn="java.claro.com.br"
user="claro"
password="claro"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Claro Foto"
@@ -36931,7 +34105,7 @@
mmsport="80"
authtype="1"
protocol="IPV4V6"
- roaming_protocol="IP"
+ roaming_protocol="IPV4"
type="mms"
/>
@@ -36944,8 +34118,8 @@
password="vivo"
authtype="1"
protocol="IPV4V6"
- roaming_protocol="IP"
- type="default,ia,supl"
+ roaming_protocol="IPV4"
+ type="default,supl"
/>
<apn carrier="Vivo IMS"
@@ -36954,7 +34128,7 @@
mnc="06"
apn="ims"
protocol="IPV4V6"
- roaming_protocol="IP"
+ roaming_protocol="IPV4"
type="ims"
/>
@@ -36964,7 +34138,7 @@
mnc="06"
apn="xcap.ims"
protocol="IPV4V6"
- roaming_protocol="IP"
+ roaming_protocol="IPV4"
type="xcap"
/>
@@ -36988,7 +34162,7 @@
apn="sercomtel.com.br"
user="sercomtel"
password="sercomtel"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Vivo Internet"
@@ -37000,8 +34174,8 @@
password="vivo"
authtype="1"
protocol="IPV4V6"
- roaming_protocol="IP"
- type="default,ia,supl"
+ roaming_protocol="IPV4"
+ type="default,supl"
/>
<apn carrier="Vivo MMS"
@@ -37016,7 +34190,7 @@
mmsport="80"
authtype="1"
protocol="IPV4V6"
- roaming_protocol="IP"
+ roaming_protocol="IPV4"
type="mms"
/>
@@ -37026,7 +34200,7 @@
mnc="10"
apn="ims"
protocol="IPV4V6"
- roaming_protocol="IP"
+ roaming_protocol="IPV4"
type="ims"
/>
@@ -37036,7 +34210,7 @@
mnc="10"
apn="xcap.ims"
protocol="IPV4V6"
- roaming_protocol="IP"
+ roaming_protocol="IPV4"
type="xcap"
/>
@@ -37052,7 +34226,7 @@
mmsport="80"
authtype="1"
protocol="IPV4V6"
- roaming_protocol="IP"
+ roaming_protocol="IPV4"
type="mms"
/>
@@ -37065,8 +34239,8 @@
password="vivo"
authtype="1"
protocol="IPV4V6"
- roaming_protocol="IP"
- type="default,ia,supl"
+ roaming_protocol="IPV4"
+ type="default,supl"
/>
<apn carrier="Vivo IMS"
@@ -37075,7 +34249,7 @@
mnc="11"
apn="ims"
protocol="IPV4V6"
- roaming_protocol="IP"
+ roaming_protocol="IPV4"
type="ims"
/>
@@ -37085,7 +34259,7 @@
mnc="11"
apn="xcap.ims"
protocol="IPV4V6"
- roaming_protocol="IP"
+ roaming_protocol="IPV4"
type="xcap"
/>
@@ -37095,7 +34269,7 @@
mnc='15'
apn='sercomtel.com.br'
authtype='1'
- type='default,ia'
+ type='default'
user='sercomtel'
password='sercomtel'
/>
@@ -37131,7 +34305,7 @@
mnc="16"
apn="gprs.oi.com.br"
protocol="IPV4V6"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS GPRS"
@@ -37167,9 +34341,9 @@
authtype="1"
user="arqia"
password="arqia"
- type="default,ia"
+ type="default"
protocol="IPV4V6"
- roaming_protocol="IP"
+ roaming_protocol="IPV4"
mvno_type="spn"
mvno_match_data="LIGUE"
/>
@@ -37180,7 +34354,7 @@
apn="ims"
type="ims"
protocol="IPV4V6"
- roaming_protocol="IP"
+ roaming_protocol="IPV4"
mvno_type="spn"
mvno_match_data="LIGUE"
/>
@@ -37192,7 +34366,7 @@
apn="gprs.telemigcelular.com.br"
user="celular"
password="celular"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS Telemig"
@@ -37212,7 +34386,7 @@
mcc="724"
mnc="21"
apn="internet.ligue.vc"
- type="default,ia"
+ type="default"
protocol="IPV4V6"
/>
@@ -37233,8 +34407,8 @@
password="vivo"
authtype="1"
protocol="IPV4V6"
- roaming_protocol="IP"
- type="default,ia,supl"
+ roaming_protocol="IPV4"
+ type="default,supl"
/>
<apn carrier="Vivo MMS"
@@ -37249,7 +34423,7 @@
mmsport="80"
authtype="1"
protocol="IPV4V6"
- roaming_protocol="IP"
+ roaming_protocol="IPV4"
type="mms"
/>
@@ -37259,7 +34433,7 @@
mnc="23"
apn="ims"
protocol="IPV4V6"
- roaming_protocol="IP"
+ roaming_protocol="IPV4"
type="ims"
/>
@@ -37269,7 +34443,7 @@
mnc="23"
apn="xcap.ims"
protocol="IPV4V6"
- roaming_protocol="IP"
+ roaming_protocol="IPV4"
type="xcap"
/>
@@ -37279,7 +34453,7 @@
mnc="24"
apn="gprs.oi.com.br"
authtype="1"
- type="default,ia,dun"
+ type="default,dun"
user="oi"
password="oi"
protocol="IPV4V6"
@@ -37308,7 +34482,7 @@
mnc="31"
apn="gprs.oi.com.br"
protocol="IPV4V6"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS GPRS"
@@ -37332,7 +34506,7 @@
mnc='32'
apn='ctbc.br'
authtype='1'
- type='default,ia'
+ type='default'
user='CTBC'
password='1212'
/>
@@ -37368,7 +34542,7 @@
mnc='33'
apn='ctbc.br'
authtype='1'
- type='default,ia'
+ type='default'
user='CTBC'
password='1212'
/>
@@ -37404,7 +34578,7 @@
mnc='34'
apn='ctbc.br'
authtype='1'
- type='default,ia'
+ type='default'
user='CTBC'
password='1212'
/>
@@ -37454,7 +34628,7 @@
mnc='39'
apn='wap.nextel3g.net.br'
authtype='0'
- type='default,ia,dun'
+ type='default,dun'
protocol='IPV4V6'
roaming_protocol='IPV4V6'
/>
@@ -37464,34 +34638,10 @@
mcc='724'
mnc='54'
authtype='0'
- type='default,ia,dun'
+ type='default,dun'
apn='portoconecta.br'
/>
- <apn carrier="TIM Connect"
- carrier_id = "1385"
- mcc="724"
- mnc="54"
- apn="timbrasil.br"
- user="tim"
- password="tim"
- mmsc="http://mms.tim.br"
- mmsproxy="189.40.191.96"
- mmsport="8080"
- authtype="1"
- protocol="IPV4V6"
- type="default,ia,supl,mms,xcap"
- />
-
- <apn carrier="TIM IMS"
- carrier_id="1385"
- mcc="724"
- mnc="54"
- apn="ims"
- protocol="IPV6"
- type="ims"
- />
-
<apn carrier="Internet Movil"
carrier_id = "1427"
mcc="730"
@@ -37500,7 +34650,7 @@
user="entelpcs"
password="entelpcs"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS Entel"
@@ -37523,7 +34673,7 @@
mnc='09'
apn='wap.nextelmovil.cl'
authtype='0'
- type='default,ia'
+ type='default'
/>
<apn carrier='MMS Nextel'
@@ -37543,7 +34693,7 @@
mcc="730"
mnc="09"
apn="internet"
- type="default,ia"
+ type="default"
user=""
password=""
protocol="IPV4V6"
@@ -37559,8 +34709,8 @@
type="ims"
user=""
password=""
- protocol="IP"
- roaming_protocol="IP"
+ protocol="IPV4"
+ roaming_protocol="IPV4"
user_editable="false"
user_visible="false"
/>
@@ -37573,7 +34723,7 @@
user="entelpcs"
password="entelpcs"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS Entel"
@@ -37598,7 +34748,7 @@
user="wap"
password="wap"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Movistar MMS"
@@ -37623,7 +34773,7 @@
user="clarochile"
password="clarochile"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS Claro"
@@ -37648,7 +34798,7 @@
user="webgtd"
password="webgtd"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Internet"
@@ -37659,7 +34809,7 @@
user="vtrmovil"
password="vtrmovil"
authtype="2"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Wap"
@@ -37672,7 +34822,7 @@
user=""
password=""
authtype="0"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS"
@@ -37697,7 +34847,7 @@
user="entelpcs"
password="entelpcs"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS Entel PCS"
@@ -37719,7 +34869,7 @@
mnc='12'
apn='internet.movistar.com.co'
authtype='1'
- type='default,ia, dun'
+ type='default, dun'
user='movistar'
password='movistar'
/>
@@ -37745,7 +34895,7 @@
user="COMCELWEB"
password="COMCELWEB"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS Comcel 3GSM"
@@ -37770,7 +34920,7 @@
user=""
password=""
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="TIGO Multimedia"
@@ -37792,7 +34942,7 @@
mcc="732"
mnc="103"
apn="moviletb.net.co"
- type="default,ia,dun"
+ type="default,dun"
user="etb"
password="etb"
authtype="0"
@@ -37805,7 +34955,7 @@
mcc="732"
mnc="103"
apn="moviletb.net.co"
- type="default,ia,dun"
+ type="default,dun"
user="etb"
password="etb"
authtype="0"
@@ -37818,7 +34968,7 @@
mcc="732"
mnc="103"
apn="movilexito.net.co"
- type="default,ia,dun"
+ type="default,dun"
authtype="1"
mvno_match_data="movil exito"
mvno_type="spn"
@@ -37829,7 +34979,7 @@
mcc="732"
mnc="103"
apn="www.une.net.co"
- type="default,ia,dun"
+ type="default,dun"
user="une"
password="une"
authtype="0"
@@ -37845,7 +34995,7 @@
user=""
password=""
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="TIGO Multimedia"
@@ -37867,7 +35017,7 @@
mcc="732"
mnc="111"
apn="moviletb.net.co"
- type="default,ia,dun"
+ type="default,dun"
user="etb"
password="etb"
authtype="0"
@@ -37880,7 +35030,7 @@
mcc="732"
mnc="111"
apn="movilexito.net.co"
- type="default,ia,dun"
+ type="default,dun"
authtype="1"
mvno_match_data="movil exito"
mvno_type="spn"
@@ -37891,7 +35041,7 @@
mcc="732"
mnc="111"
apn="www.une.net.co"
- type="default,ia,dun"
+ type="default,dun"
user="une"
password="une"
authtype="0"
@@ -37907,7 +35057,7 @@
user="movistar"
password="movistar"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Movistar MMS"
@@ -37929,7 +35079,7 @@
mcc="732"
mnc="123"
apn="web.vmc.net.co"
- type="default,ia,supl"
+ type="default,supl"
authtype="1"
mvno_match_data="Virgin Mobile"
mvno_type="spn"
@@ -37941,7 +35091,7 @@
mnc="130"
apn="lte.avantel.com.co"
authtype="0"
- type="default,ia"
+ type="default"
/>
<apn carrier="ETB 4G"
@@ -37950,7 +35100,7 @@
mnc="187"
apn="internetmovil.etb.net.co"
authtype="0"
- type="default,ia"
+ type="default"
/>
<apn carrier="Internet WOM"
@@ -37958,7 +35108,7 @@
mcc="732"
mnc="360"
apn="internet.wom.co"
- type="default,ia,supl"
+ type="default,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
mtu="1500"
@@ -37992,7 +35142,7 @@
mcc="734"
mnc="01"
apn="internet.digitel.ve"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Venezuela:Digitel:MODEM:1"
@@ -38020,7 +35170,7 @@
mcc="734"
mnc="02"
apn="internet.digitel.ve"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Venezuela:Digitel:MODEM:2"
@@ -38048,7 +35198,7 @@
mcc="734"
mnc="03"
apn="internet.digitel.ve"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Venezuela:Digitel:MODEM:3"
@@ -38076,7 +35226,7 @@
mcc="734"
mnc="04"
apn="internet.movistar.ve"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Movistar MMS"
@@ -38097,7 +35247,7 @@
apn="wap.movistar.ve"
mmsproxy="200.35.64.73"
mmsport="9001"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MODEM"
@@ -38105,7 +35255,7 @@
mcc="734"
mnc="06"
apn="int.movilnet.com.ve"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS"
@@ -38129,7 +35279,7 @@
proxy="192.168.101.4"
port="3128"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="VIVAMMS"
@@ -38156,7 +35306,7 @@
proxy="172.27.7.10"
port="8080"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="ENTEL MMS GPRS"
@@ -38183,7 +35333,7 @@
proxy="172.25.100.8"
port="8080"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMSTIGO"
@@ -38205,7 +35355,7 @@
mcc="738"
mnc="01"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Guyana:Digicel:Modem"
@@ -38241,7 +35391,7 @@
mcc="738"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Movistar INTERNET"
@@ -38252,7 +35402,7 @@
user="movistar"
password="movistar"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Movistar MMS"
@@ -38274,7 +35424,7 @@
mcc="740"
mnc="01"
apn="internet.claro.com.ec"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS Claro"
@@ -38296,7 +35446,7 @@
mcc="740"
mnc="010"
apn="internet.claro.com.ec"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS Claro"
@@ -38318,7 +35468,7 @@
mcc="740"
mnc="02"
apn="internet3gsp.alegro.net.ec"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="CNT MMS"
@@ -38338,7 +35488,7 @@
mnc="01"
apn="vox.internet"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Paraguay:Voxx:Modem"
@@ -38375,7 +35525,7 @@
user="ctigprs"
password="ctigprs999"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS GPRS PY"
@@ -38398,7 +35548,7 @@
mnc="04"
apn="internet.tigo.py"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS Tigo"
@@ -38423,7 +35573,7 @@
user="personal"
password="personal"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Personal MMS Py"
@@ -38445,7 +35595,7 @@
mcc="746"
mnc="02"
apn="default"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier='Suriname:Digicel:Internet'
@@ -38454,7 +35604,7 @@
mnc='03'
apn='web.digicelsr.com'
authtype='1'
- type='default,ia'
+ type='default'
/>
<apn carrier='Suriname:Digicel:Mms'
@@ -38495,7 +35645,7 @@
user=""
password=""
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="mmsANCEL"
@@ -38518,7 +35668,7 @@
mnc="01"
apn="gprs.ancel"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Movistar INTERNET"
@@ -38529,7 +35679,7 @@
user="movistar"
password="movistar"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="Movistar MMS"
@@ -38554,7 +35704,7 @@
user="ctigprs"
password="ctigprs999"
authtype="1"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="MMS GPRS UY"
@@ -38577,21 +35727,21 @@
apn="ciot.vodafone.com"
user="vodafone"
password="vodafone"
- type="default,ia"
+ type="default"
/>
<apn carrier="mobiledata"
mcc="901"
mnc="37"
apn="mobiledata"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="EMnify"
mcc="901"
mnc="43"
apn="em"
- type="default,ia,supl"
+ type="default,supl"
/>
<apn carrier="BICS Internet"
@@ -38599,87 +35749,7 @@
mcc="901"
mnc="58"
apn="bicsapn"
- type="default,ia,supl"
- />
-
- <apn carrier="ATT 5G NSA default"
- carrier_id = "10021"
- apn="enhancedphone"
- type="default,ia,mms,supl,fota"
- mmsc="http://mmsc.mobile.att.net"
- mmsproxy="proxy.mobile.att.net"
- mmsport="80"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_editable="false"
- />
-
- <apn carrier="ATT 5G NSA IMS"
- carrier_id = "10021"
- apn="ims"
- type="ims"
- bearer_bitmask="3|9|10|11|14|15|18|20"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
- />
-
- <apn carrier="ATT 5G NSA Hotspot"
- carrier_id = "10021"
- apn="hotspot"
- type="dun"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
- />
-
- <apn carrier="ATT 5G NSA XCAP"
- carrier_id = "10021"
- apn="enhancedphone"
- type="xcap"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
- />
-
- <apn carrier="ATT 5G SA Default"
- carrier_id = "10028"
- apn="nrphone"
- type="default,ia,mms,supl,fota"
- mmsc="http://mmsc.mobile.att.net"
- mmsproxy="proxy.mobile.att.net"
- mmsport="80"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_editable="false"
- />
-
- <apn carrier="ATT 5G SA IMS"
- carrier_id = "10028"
- apn="ims"
- type="ims"
- bearer_bitmask="3|9|10|11|14|15|18|20"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
- />
-
- <apn carrier="ATT 5G SA Hotspot"
- carrier_id = "10028"
- apn="nrhotspot"
- type="dun"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
- />
-
- <apn carrier="ATT 5G SA XCAP"
- carrier_id = "10028"
- apn="nrphone"
- type="xcap"
- protocol="IPV4V6"
- roaming_protocol="IPV4V6"
- user_visible="false"
+ type="default,supl"
/>
</apns>
diff --git a/frameworks/Android.mk b/frameworks/Android.mk
new file mode 100644
index 0000000..5053e7d
--- /dev/null
+++ b/frameworks/Android.mk
@@ -0,0 +1 @@
+include $(call all-subdir-makefiles)
diff --git a/frameworks/PlatformLibrary/Android.bp b/frameworks/PlatformLibrary/Android.bp
index e3e929b..7b3ec73 100644
--- a/frameworks/PlatformLibrary/Android.bp
+++ b/frameworks/PlatformLibrary/Android.bp
@@ -28,19 +28,3 @@ javadoc {
],
java_version: "1.8",
}
-
-java_sdk_library {
- name: "com.example.android.platform_library",
-
- // Users of this sample will likely want to leave out this flag and
- // instead follow the instructions here
- // https://source.android.com/devices/architecture/java-library#maintaining-backward-compatibility
- unsafe_ignore_missing_latest_api: true,
-
- api_packages: ["com.example.android.platform_library"],
-
- srcs: ["**/*.java"],
-
- dist_group: "samples",
- sdk_version: "current",
-}
diff --git a/frameworks/PlatformLibrary/Android.mk b/frameworks/PlatformLibrary/Android.mk
new file mode 100644
index 0000000..db4c97c
--- /dev/null
+++ b/frameworks/PlatformLibrary/Android.mk
@@ -0,0 +1,50 @@
+#
+# Copyright (C) 2008 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+ifneq ($(TARGET_BUILD_JAVA_SUPPORT_LEVEL),)
+
+# This makefile shows how to build your own shared library that can be
+# shipped on the system of a phone, and included additional examples of
+# including JNI code with the library and writing client applications against it.
+
+LOCAL_PATH := $(call my-dir)
+
+# the library
+# ============================================================
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES := \
+ $(call all-subdir-java-files)
+
+LOCAL_MODULE_TAGS := optional
+
+# This is the target being built.
+LOCAL_MODULE:= com.example.android.platform_library
+LOCAL_LICENSE_KINDS:= SPDX-license-identifier-Apache-2.0
+LOCAL_LICENSE_CONDITIONS:= notice
+LOCAL_SDK_VERSION := current
+
+include $(BUILD_JAVA_LIBRARY)
+
+# The JNI component
+# ============================================================
+# Also build all of the sub-targets under this one: the library's
+# associated JNI code, and a sample client of the library.
+include $(CLEAR_VARS)
+
+include $(call all-makefiles-under,$(LOCAL_PATH))
+
+endif # JAVA_SUPPORT
diff --git a/frameworks/PlatformLibrary/api/current.txt b/frameworks/PlatformLibrary/api/current.txt
deleted file mode 100644
index 4290e15..0000000
--- a/frameworks/PlatformLibrary/api/current.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-// Signature format: 2.0
-package com.example.android.platform_library {
-
- public final class PlatformLibrary {
- ctor public PlatformLibrary();
- method public int getInt(boolean);
- }
-
-}
-
diff --git a/frameworks/PlatformLibrary/api/removed.txt b/frameworks/PlatformLibrary/api/removed.txt
deleted file mode 100644
index d802177..0000000
--- a/frameworks/PlatformLibrary/api/removed.txt
+++ /dev/null
@@ -1 +0,0 @@
-// Signature format: 2.0
diff --git a/frameworks/PlatformLibrary/api/system-current.txt b/frameworks/PlatformLibrary/api/system-current.txt
deleted file mode 100644
index d802177..0000000
--- a/frameworks/PlatformLibrary/api/system-current.txt
+++ /dev/null
@@ -1 +0,0 @@
-// Signature format: 2.0
diff --git a/frameworks/PlatformLibrary/api/system-removed.txt b/frameworks/PlatformLibrary/api/system-removed.txt
deleted file mode 100644
index d802177..0000000
--- a/frameworks/PlatformLibrary/api/system-removed.txt
+++ /dev/null
@@ -1 +0,0 @@
-// Signature format: 2.0
diff --git a/frameworks/PlatformLibrary/api/test-current.txt b/frameworks/PlatformLibrary/api/test-current.txt
deleted file mode 100644
index d802177..0000000
--- a/frameworks/PlatformLibrary/api/test-current.txt
+++ /dev/null
@@ -1 +0,0 @@
-// Signature format: 2.0
diff --git a/frameworks/PlatformLibrary/api/test-removed.txt b/frameworks/PlatformLibrary/api/test-removed.txt
deleted file mode 100644
index d802177..0000000
--- a/frameworks/PlatformLibrary/api/test-removed.txt
+++ /dev/null
@@ -1 +0,0 @@
-// Signature format: 2.0
diff --git a/frameworks/PlatformLibrary/jni/Android.bp b/frameworks/PlatformLibrary/jni/Android.bp
deleted file mode 100644
index 116e011..0000000
--- a/frameworks/PlatformLibrary/jni/Android.bp
+++ /dev/null
@@ -1,39 +0,0 @@
-//
-// Copyright (C) 2008 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// This bpfile supplies the rules for building a library of JNI code for
-// use by our example platform shared library.
-
-package {
- // See: http://go/android-license-faq
- default_applicable_licenses: ["Android-Apache-2.0"],
-}
-
-cc_library_shared {
- // This is the target being built.
- name: "libplatform_library_jni",
- // All of the source files that we will compile.
- srcs: ["PlatformLibrary.cpp"],
- // All of the shared libraries we link against.
- shared_libs: [
- "libnativehelper",
- "libcutils",
- "libutils",
- "liblog",
- ],
- // Also need the JNI headers.
- header_libs: ["jni_headers"],
-}
diff --git a/frameworks/PlatformLibrary/jni/Android.mk b/frameworks/PlatformLibrary/jni/Android.mk
new file mode 100644
index 0000000..1513f70
--- /dev/null
+++ b/frameworks/PlatformLibrary/jni/Android.mk
@@ -0,0 +1,50 @@
+#
+# Copyright (C) 2008 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+# This makefile supplies the rules for building a library of JNI code for
+# use by our example platform shared library.
+
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_MODULE_TAGS := optional
+
+# This is the target being built.
+LOCAL_MODULE:= libplatform_library_jni
+LOCAL_LICENSE_KINDS:= SPDX-license-identifier-Apache-2.0
+LOCAL_LICENSE_CONDITIONS:= notice
+
+# All of the source files that we will compile.
+LOCAL_SRC_FILES:= \
+ PlatformLibrary.cpp
+
+# All of the shared libraries we link against.
+LOCAL_SHARED_LIBRARIES := \
+ libnativehelper \
+ libcutils \
+ libutils \
+ liblog
+
+# No static libraries.
+LOCAL_STATIC_LIBRARIES :=
+
+# Also need the JNI headers.
+LOCAL_HEADER_LIBRARIES := \
+ jni_headers
+
+LOCAL_CFLAGS += -Wall -Werror
+
+include $(BUILD_SHARED_LIBRARY)
diff --git a/products/sample_addon.mk b/products/sample_addon.mk
index a4c73ea..f0abf2f 100644
--- a/products/sample_addon.mk
+++ b/products/sample_addon.mk
@@ -4,6 +4,10 @@ PRODUCT_PACKAGES := \
com.example.android.platform_library \
libplatform_library_jni
+# Manually copy the optional library XML files in the system image.
+PRODUCT_COPY_FILES := \
+ device/sample/frameworks/PlatformLibrary/com.example.android.platform_library.xml:system/etc/permissions/com.example.android.platform_library.xml
+
# name of the add-on
PRODUCT_SDK_ADDON_NAME := platform_library
@@ -32,8 +36,8 @@ PRODUCT_SDK_ADDON_STUB_DEFS := $(LOCAL_PATH)/addon_stub_defs
# in the documentation section.
PRODUCT_SDK_ADDON_DOC_MODULES := platform_library
-# This add-on extends the arm emulator/sdk product.
-$(call inherit-product, $(SRC_TARGET_DIR)/product/sdk_phone_armv7.mk)
+# This add-on extends the default sdk product.
+$(call inherit-product, $(SRC_TARGET_DIR)/product/sdk.mk)
# Real name of the add-on. This is the name used to build the add-on.
# Use 'lunch <PRODUCT_NAME>-userdebug; m sdk_addon' to build the add-on.