aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-05-10 06:53:34 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-05-10 06:53:34 +0000
commit78383ff1c53e3c89544535107a6bb76598b746d4 (patch)
treeeafa280f5f515a434b3fd590f4b93b178b27387a
parent25b229242df1c3157543cca11d9af74f862c8b92 (diff)
parent13b54d1231085260955101a68f72c7b1ea9322e1 (diff)
downloadsample-78383ff1c53e3c89544535107a6bb76598b746d4.tar.gz
Snap for 8564071 from 13b54d1231085260955101a68f72c7b1ea9322e1 to mainline-sdkext-release
Change-Id: I53688dd2ac93088bdacec580207ae35967bab93c
-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.mk4
24 files changed, 6043 insertions, 3123 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
new file mode 100644
index 0000000..23ca1d9
--- /dev/null
+++ b/.pre-commit-config.yaml
@@ -0,0 +1,9 @@
+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 5053e7d..885183c 100644
--- a/Android.mk
+++ b/Android.mk
@@ -1 +1,3 @@
+$(eval $(call declare-1p-copy-files,device/sample,))
+
include $(call all-subdir-makefiles)
diff --git a/OWNERS b/OWNERS
index e3e9ebb..3f638cb 100644
--- a/OWNERS
+++ b/OWNERS
@@ -1,3 +1,3 @@
-amitmahajan@google.com
+jackyu@google.com
rgreenwalt@google.com
fionaxu@google.com
diff --git a/apps/SampleEmailPolicy/Android.bp b/apps/SampleEmailPolicy/Android.bp
new file mode 100644
index 0000000..41e68c1
--- /dev/null
+++ b/apps/SampleEmailPolicy/Android.bp
@@ -0,0 +1,37 @@
+// 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
deleted file mode 100644
index c775a04..0000000
--- a/apps/SampleEmailPolicy/Android.mk
+++ /dev/null
@@ -1,40 +0,0 @@
-# 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
new file mode 100644
index 0000000..85cd541
--- /dev/null
+++ b/apps/client/Android.bp
@@ -0,0 +1,43 @@
+//
+// 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
deleted file mode 100644
index c2c8ba5..0000000
--- a/apps/client/Android.mk
+++ /dev/null
@@ -1,45 +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.
-#
-
-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 e931ca2..b878ce9 100644
--- a/apps/tv/LeanbackCustomizer/AndroidManifest.xml
+++ b/apps/tv/LeanbackCustomizer/AndroidManifest.xml
@@ -8,6 +8,7 @@
<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
new file mode 100644
index 0000000..03f15ed
--- /dev/null
+++ b/apps/upgrade/Android.bp
@@ -0,0 +1,29 @@
+//
+// 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
deleted file mode 100644
index e67fc16..0000000
--- a/apps/upgrade/Android.mk
+++ /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.
-#
-
-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
new file mode 100755
index 0000000..ad39f3d
--- /dev/null
+++ b/etc/add_missing_ia.py
@@ -0,0 +1,28 @@
+#!/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 d132e9e..c9ae289 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,mms,supl,hipri,fota,dun"
+ type="default,ia,mms,supl,hipri,fota,dun"
mtu="1410"
/>
@@ -46,7 +46,7 @@
password=""
proxy=""
port=""
- type="default,supl,hipri,dun"
+ type="default,ia,supl,hipri,dun"
mtu="1440"
/>
@@ -60,7 +60,7 @@
proxy=""
port=""
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,hipri,dun,fota"
+ type="default,ia,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,dun"
+ type="default,ia,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,dun"
+ type="default,ia,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,dun"
+ type="default,ia,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,dun"
+ type="default,ia,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,dun"
+ type="default,ia,dun"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -254,12 +254,13 @@
type="ia"
/>
- <apn carrier="Cosmote Wireless Internet"
+ <apn carrier="Cosmote Internet"
carrier_id = "747"
mcc="202"
mnc="01"
apn="internet"
- type="default,supl"
+ type="default,ia,supl,xcap"
+ protocol="IPV4V6"
/>
<apn carrier="Cosmote Mms"
@@ -273,6 +274,31 @@
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"
@@ -286,7 +312,9 @@
mcc="202"
mnc="05"
apn="internet.vodafone.gr"
- type="default,supl"
+ type="default,ia,supl"
+ user="user"
+ password="pass"
/>
<apn carrier="Vf MMS"
@@ -294,12 +322,9 @@
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"
/>
@@ -308,7 +333,9 @@
mcc="202"
mnc="09"
apn="myq"
- type="default,supl"
+ type="default,ia,supl"
+ mvno_type="spn"
+ mvno_match_data="Q-Telcom"
/>
<apn carrier="Q-Telecom MMS GPRS"
@@ -320,6 +347,8 @@
mmsproxy="192.168.80.134"
mmsport="8080"
type="mms"
+ mvno_type="spn"
+ mvno_match_data="Q-Telcom"
/>
<apn carrier="Wind Internet"
@@ -327,7 +356,7 @@
mcc="202"
mnc="10"
apn="gint.b-online.gr"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Wind MMS"
@@ -341,15 +370,29 @@
type="mms"
/>
- <apn carrier="Tele2 GPRS"
+ <apn carrier="Tele2 Internet"
carrier_id = "1643"
mcc="204"
mnc="02"
apn="internet.tele2.nl"
- mmsc="http://mmsc.tele2.nl"
- mmsproxy="193.12.40.64"
- mmsport="8080"
- type="default,supl,mms"
+ 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"
/>
<apn carrier="MVNO NL"
@@ -360,7 +403,7 @@
user="mvno"
password="mvno"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="20403"
mvno_type="imsi"
/>
@@ -370,7 +413,7 @@
mcc="204"
mnc="03"
apn="ims"
- protocol="IPV4"
+ protocol="IP"
type="ims"
mvno_match_data="20403"
mvno_type="imsi"
@@ -392,7 +435,7 @@
mnc="04"
apn="truphone.com"
mmsc="http://mmsc.truphone.com:1981/mm1"
- type="default,supl,mms,dun"
+ type="default,ia,supl,mms,dun"
mvno_type="gid"
mvno_match_data="547275554B3030656E"
/>
@@ -409,14 +452,29 @@
mvno_match_data="547275554B3030656E"
/>
- <apn carrier="Vodafone NL"
+ <apn carrier="Vodafone Internet"
+ carrier_id = "20"
mcc="204"
mnc="04"
apn="live.vodafone.com"
user="vodafone"
password="vodafone"
authtype="1"
- type="default,supl"
+ 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"
/>
<apn carrier="EHRPD - VZW Roaming Internet"
@@ -424,7 +482,7 @@
mcc="204"
mnc="04"
apn="VZWINTERNET"
- type="default,dun"
+ type="default,ia,dun"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -441,7 +499,7 @@
mcc="204"
mnc="04"
apn="VZWINTERNET"
- type="default,dun"
+ type="default,ia,dun"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
mvno_type="gid"
@@ -567,7 +625,7 @@
mmsc="http://pix.cspire.com"
mvno_type="spn"
mvno_match_data="C Spire"
- type="default,mms"
+ type="default,ia,mms"
protocol="IPV4V6"
/>
@@ -601,12 +659,26 @@
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,supl"
+ type="default,ia,supl"
mvno_match_data="HOT mobile"
mvno_type="spn"
/>
@@ -638,32 +710,262 @@
mmsc=""
mmsproxy=""
mmsport=""
- type="default,hipri,supl,fota,cbs"
+ type="default,ia,hipri,supl,fota,cbs"
mvno_type="spn"
mvno_match_data="中国电信"
protocol="IP"
/>
- <apn carrier="KPN/Hi 4G LTE Mobiel internet"
+ <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="KPN4G.nl"
- mmsc="http://mp.mobiel.kpn/mmsc"
- mmsproxy="10.10.100.20"
- mmsport="5080"
- type="default,supl,mms"
+ apn="internet"
+ type="default,ia"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
- <apn carrier="KPN/Hi Mobiel Internet"
+ <apn carrier="UT-Interface"
carrier_id = "1644"
mcc="204"
mnc="08"
- apn="portalmmm.nl"
- mmsc="http://mp.mobiel.kpn/mmsc"
- mmsproxy="10.10.100.20"
- mmsport="5080"
- type="default,supl,mms"
+ apn="ut"
+ type="xcap"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ user_visible="false"
+ />
+
+ <apn carrier="IMS"
+ carrier_id = "1644"
+ mcc="204"
+ mnc="08"
+ apn="ims"
+ type="ims"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ user_visible="false"
/>
<apn carrier="MVNO NL"
@@ -674,7 +976,7 @@
user="mvno"
password="mvno"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="204080950"
mvno_type="imsi"
/>
@@ -684,20 +986,7 @@
mcc="204"
mnc="08"
apn="rabo"
- 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"
+ type="default,ia,supl"
mvno_match_data="Rabo Mobiel"
mvno_type="spn"
/>
@@ -708,7 +997,7 @@
mnc="08"
apn="truphone.com"
mmsc="http://mmsc.truphone.com:1981/mm1"
- type="default,supl,mms,dun"
+ type="default,ia,supl,mms,dun"
mvno_type="gid"
mvno_match_data="547275554B3030656E"
/>
@@ -734,17 +1023,17 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
+ type="default,ia,supl"
/>
- <apn carrier="Telfort Internet"
+ <apn carrier="Telfort Mobiel Internet"
carrier_id = "1644"
mcc="204"
mnc="12"
apn="internet"
- mmsc="http://mms"
- mmsproxy="193.113.200.195"
- mmsport="8080"
- type="default,supl,mms"
+ type="default,ia"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="T-Mobile Internet"
@@ -759,57 +1048,133 @@
carrier_id = "2386"
mcc="204"
mnc="16"
- apn="internet"
+ apn="smartsites.t-mobile"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
/>
- <apn carrier="T-Mobile MMS"
+ <apn carrier="T-Mobile IMS"
carrier_id = "2386"
mcc="204"
mnc="16"
- apn="mms"
+ apn="ims"
+ type="ims"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ user_visible="false"
+ />
+
+ <apn carrier="HOS"
+ carrier_id = "2386"
+ mcc="204"
+ mnc="16"
+ apn="hos"
user="tmobilemms"
password="tmobilemms"
authtype="1"
- mmsc="http://t-mobilemms"
- mmsproxy="10.10.10.11"
- mmsport="8080"
- type="mms"
+ type="xcap"
+ protocol="IPV4V6"
+ user_visible="false"
/>
- <apn carrier="Ben Internet Abonnee"
+ <apn carrier="Ben Internet"
carrier_id = "2095"
mcc="204"
mnc="16"
apn="internet.ben"
- type="default,supl"
+ type="default,ia,supl"
+ authtype="1"
mvno_match_data="BEN NL"
mvno_type="spn"
/>
- <apn carrier="Ben Internet PrePaid"
- carrier_id = "2095"
+ <apn carrier="Tele2 Internet"
+ carrier_id = "2468"
mcc="204"
mnc="16"
- apn="basic.internet.ben.data"
- type="default,supl"
- mvno_match_data="BEN NL"
- mvno_type="spn"
+ apn="smartsites.t-mobile"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ authtype="1"
+ mvno_match_data="8F"
+ mvno_type="gid"
/>
- <apn carrier="Ben MMS"
- carrier_id = "2095"
+ <apn carrier="Tele2 Internet"
+ carrier_id = "2468"
mcc="204"
mnc="16"
- apn="mms.ben"
+ apn="smartsites.t-mobile"
+ type="default,ia,supl"
+ protocol="IPV4V6"
authtype="1"
- mmsc="http://benmms/"
- mmsproxy="10.10.10.11"
- mmsport="8080"
- type="mms"
- mvno_match_data="BEN NL"
- mvno_type="spn"
+ 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"
+ mcc="204"
+ mnc="16"
+ apn="ims"
+ type="ims"
+ protocol="IPV4V6"
+ mvno_type="gid"
+ mvno_match_data="4E4C"
+ user_visible="false"
+ />
+
+ <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"
+ 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="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"
/>
<apn carrier="T-Mobile Internet"
@@ -824,23 +1189,37 @@
carrier_id = "2386"
mcc="204"
mnc="20"
- apn="internet"
+ apn="smartsites.t-mobile"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
/>
- <apn carrier="T-Mobile MMS"
+ <apn carrier="HOS"
carrier_id = "2386"
mcc="204"
mnc="20"
- apn="mms"
+ apn="hos"
user="tmobilemms"
password="tmobilemms"
authtype="1"
mmsc="http://t-mobilemms"
mmsproxy="10.10.10.11"
mmsport="8080"
- type="mms"
+ 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"
/>
<apn carrier="Truphone"
@@ -849,7 +1228,7 @@
mnc="33"
apn="truphone.com"
mmsc="http://mmsc.truphone.com:1981/mm1"
- type="default,supl,mms,dun"
+ type="default,ia,supl,mms,dun"
mvno_type="gid"
mvno_match_data="547275554B3030656E"
/>
@@ -866,6 +1245,45 @@
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"
@@ -873,7 +1291,7 @@
apn="em"
mvno_match_data="206018"
mvno_type="imsi"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Px MMS"
@@ -895,7 +1313,7 @@
mcc="206"
mnc="01"
apn="INTERNET.PROXIMUS.BE"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Telenet Internet"
@@ -903,7 +1321,7 @@
mcc="206"
mnc="01"
apn="telenetwap.be"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="20601889"
mvno_type="imsi"
/>
@@ -930,7 +1348,7 @@
password="iij"
authtype="3"
protocol="IP"
- type="default"
+ type="default,ia"
roaming_protocol="IP"
mvno_type="spn"
mvno_match_data="IIJ"
@@ -945,7 +1363,7 @@
password="vmobile"
authtype="3"
protocol="IP"
- type="default"
+ type="default,ia"
roaming_protocol="IP"
mvno_type="spn"
mvno_match_data="IIJ"
@@ -956,7 +1374,7 @@
mcc="206"
mnc="05"
apn="telenetwap.be"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Telenet MMS"
@@ -979,6 +1397,7 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
+ type="default,ia,supl"
/>
<apn carrier="Mobistar MMS"
@@ -997,7 +1416,7 @@
mcc="206"
mnc="10"
apn="mworld.be"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="netgprs.com"
@@ -1007,7 +1426,7 @@
apn="netgprs.com"
user="tsl"
password="tsl"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="BE-Transatel"
mvno_type="spn"
/>
@@ -1020,7 +1439,7 @@
apn="netgprs.com"
user="tsl"
password="tsl"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="BB00"
mvno_type="gid"
/>
@@ -1041,7 +1460,7 @@
user="base"
password="base"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="BASE MMS"
@@ -1063,7 +1482,7 @@
mcc="206"
mnc="28"
apn="bicsapn"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Unleashed"
@@ -1071,7 +1490,7 @@
mcc="206"
mnc="30"
apn="web.be"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Orange World"
@@ -1090,7 +1509,18 @@
user="orange"
password="orange"
authtype="1"
- type="default,supl"
+ 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"
/>
<apn carrier="Orange MMS"
@@ -1117,7 +1547,7 @@
user="orange"
password="orange"
authtype="2"
- type="default"
+ type="default,ia"
/>
<apn carrier="Orange Internet"
@@ -1141,7 +1571,7 @@
user="orange"
password="orange"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="33"
mvno_type="gid"
/>
@@ -1170,7 +1600,7 @@
user="orange"
password="orange"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="4E"
mvno_type="gid"
/>
@@ -1196,7 +1626,7 @@
mcc="208"
mnc="01"
apn="coriolis"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="208011511"
mvno_type="imsi"
/>
@@ -1214,6 +1644,16 @@
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"
@@ -1224,7 +1664,7 @@
mmsproxy="10.151.0.1"
mmsport="8080"
protocol="IP"
- type="default,mms,supl,fota"
+ type="default,ia,mms,supl,fota"
/>
<apn carrier="SFR option modem"
@@ -1241,7 +1681,7 @@
mcc="208"
mnc="09"
apn="pda.newcomobile.com"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="208090021"
mvno_type="imsi"
/>
@@ -1252,7 +1692,7 @@
mnc="09"
apn="truphone.com"
mmsc="http://mmsc.truphone.com:1981/mm1"
- type="default,supl,mms,dun"
+ type="default,ia,supl,mms,dun"
mvno_type="gid"
mvno_match_data="547275554B3030656E"
/>
@@ -1274,7 +1714,7 @@
mcc="208"
mnc="09"
apn="coriolis"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="208090036"
mvno_type="imsi"
/>
@@ -1308,7 +1748,7 @@
mmsc="http://mms1"
mmsproxy="10.151.0.1"
mmsport="8080"
- type="default,mms,supl"
+ type="default,ia,mms,supl"
/>
<apn carrier="SFR option Modem"
@@ -1325,7 +1765,7 @@
mcc="208"
mnc="10"
apn="fnetnrj"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="4E"
mvno_type="gid"
/>
@@ -1359,7 +1799,7 @@
mcc="208"
mnc="10"
apn="wap65"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="A MOBILE"
mvno_type="spn"
/>
@@ -1384,7 +1824,7 @@
proxy="192.168.21.9"
port="8080"
apn="wap66"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="LeclercMobile"
mvno_type="spn"
/>
@@ -1407,7 +1847,7 @@
mcc="208"
mnc="10"
apn="fnetcoriolis"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="12"
mvno_type="gid"
/>
@@ -1431,7 +1871,7 @@
mnc="10"
apn="internetcoriolis"
authtype="0"
- type="default,supl,fota,dun"
+ type="default,ia,supl,fota,dun"
mvno_type="gid"
mvno_match_data="12"
/>
@@ -1454,7 +1894,7 @@
mmsc="http://mms1"
mmsproxy="010.143.156.003"
mmsport="8080"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
mvno_match_data="4C"
mvno_type="gid"
/>
@@ -1466,7 +1906,7 @@
proxy="192.168.21.3"
port="8080"
apn="wapdebitel"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="4C"
mvno_type="gid"
/>
@@ -1491,7 +1931,7 @@
apn="wap68"
proxy="192.168.21.11"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="44"
mvno_type="gid"
/>
@@ -1515,7 +1955,7 @@
mnc="10"
apn="internet68"
authtype="0"
- type="default,supl,fota,dun"
+ type="default,ia,supl,fota,dun"
mvno_type="spn"
mvno_match_data="Keyyo Mobile"
/>
@@ -1542,7 +1982,7 @@
proxy="192.168.21.11"
port="8080"
authtype="0"
- type="default,supl,fota"
+ type="default,ia,supl,fota"
mvno_type="spn"
mvno_match_data="Keyyo Mobile"
/>
@@ -1553,7 +1993,7 @@
mnc="10"
apn="internet68"
authtype="0"
- type="default,supl,fota,dun"
+ type="default,ia,supl,fota,dun"
mvno_type="spn"
mvno_match_data="ZERO FORFAIT"
/>
@@ -1580,7 +2020,7 @@
proxy="192.168.21.9"
port="8080"
authtype="0"
- type="default,supl,fota,dun"
+ type="default,ia,supl,fota,dun"
mvno_type="spn"
mvno_match_data="RegloMobile"
/>
@@ -1605,7 +2045,7 @@
mnc="12"
apn="truphone.com"
mmsc="http://mmsc.truphone.com:1981/mm1"
- type="default,supl,mms,dun"
+ type="default,ia,supl,mms,dun"
mvno_type="gid"
mvno_match_data="547275554B3030656E"
/>
@@ -1628,7 +2068,7 @@
mnc="15"
apn="free"
mmsc="http://mms.free.fr"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="Free MMS"
@@ -1646,7 +2086,7 @@
mnc="15"
apn="free.re"
mmsc="http://mms.free.re"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
mvno_match_data="F2330002"
mvno_type="gid"
/>
@@ -1657,7 +2097,7 @@
mnc="15"
apn="iliad"
mmsc="http://mms.iliad.it"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
mvno_match_data="F003"
mvno_type="gid"
/>
@@ -1667,7 +2107,7 @@
mcc="208"
mnc="17"
apn="bornsip"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Legos MMS"
@@ -1687,7 +2127,17 @@
mmsc="http://mms.bouyguestelecom.fr/mms/wapenc"
mmsproxy="62.201.129.226"
mmsport="8080"
- type="default,supl,mms"
+ 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"
/>
<apn carrier="mobiledata"
@@ -1695,7 +2145,7 @@
mnc="22"
apn="mobiledata"
mmsc="http://mms"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="netgprs.com"
@@ -1704,7 +2154,7 @@
apn="netgprs.com"
user="tsl"
password="tsl"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="FR-Transatel"
mvno_type="spn"
/>
@@ -1716,7 +2166,7 @@
apn="virgin-mobile.fr"
proxy="10.6.10.1"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="VM MMS"
@@ -1739,6 +2189,7 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
+ type="default,ia,supl"
/>
<apn carrier="NRJ WEB"
@@ -1746,7 +2197,7 @@
mcc="208"
mnc="26"
apn="fnetnrj"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="NRJ MMS"
@@ -1765,7 +2216,7 @@
mcc="208"
mnc="27"
apn="coriolis"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Coriolis MMS"
@@ -1779,12 +2230,22 @@
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,supl"
+ type="default,ia,supl"
/>
<apn carrier="Internet móvil"
@@ -1794,7 +2255,7 @@
user="wap@wap"
password="wap125"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="INTERNET"
@@ -1833,7 +2294,7 @@
mcc="214"
mnc="02"
apn="altecom.net"
- type="default"
+ type="default,ia"
/>
<apn carrier="FIBRACAT"
@@ -1841,7 +2302,7 @@
mcc="214"
mnc="02"
apn="fibracat.cat"
- type="default"
+ type="default,ia"
mvno_type="spn"
mvno_match_data="FIBRACAT"
/>
@@ -1864,7 +2325,7 @@
authtype="1"
mvno_type="spn"
mvno_match_data="Orange"
- type="default"
+ type="default,ia"
/>
<apn carrier="Orange MMS"
@@ -1901,7 +2362,7 @@
user="CLIENTE"
password="EUSKALTEL"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
mvno_type="imsi"
mvno_match_data="2140359"
/>
@@ -1927,7 +2388,7 @@
mnc="03"
apn="CARREFOURINTERNET"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
mvno_type="imsi"
mvno_match_data="2140352xxxxxxxx"
/>
@@ -1953,7 +2414,7 @@
mcc="214"
mnc="03"
apn="internettph"
- type="default,supl"
+ type="default,ia,supl"
mvno_type="spn"
mvno_match_data="Happy"
/>
@@ -1965,7 +2426,7 @@
apn="internet.racc.net"
user="CLIENTERACC"
password="RACC"
- type="default,supl"
+ type="default,ia,supl"
mvno_type="spn"
mvno_match_data="RACC"
/>
@@ -1990,7 +2451,7 @@
mcc="214"
mnc="03"
apn="internettph"
- type="default,supl"
+ type="default,ia,supl"
mvno_type="spn"
mvno_match_data="CABLE movil"
/>
@@ -2000,7 +2461,7 @@
mcc="214"
mnc="03"
apn="internetmas"
- type="default,supl"
+ type="default,ia,supl"
mvno_type="spn"
mvno_match_data="MASMovil"
/>
@@ -2010,7 +2471,7 @@
mcc="214"
mnc="03"
apn="ibercominternet"
- type="default,supl"
+ type="default,ia,supl"
mvno_type="spn"
mvno_match_data="Ibercom"
/>
@@ -2022,7 +2483,7 @@
apn="jazzinternet"
mvno_type="spn"
mvno_match_data="JAZZTEL"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS"
@@ -2051,7 +2512,7 @@
password = "orange"
mvno_type="spn"
mvno_match_data="simyo"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="simyo MMS"
@@ -2083,7 +2544,7 @@
mcc="214"
mnc="04"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Yoigo MMS"
@@ -2098,7 +2559,7 @@
/>
<apn carrier="Tuenti"
- carrier_id = "34"
+ carrier_id = "2357"
mcc="214"
mnc="05"
apn="tuenti.com"
@@ -2108,6 +2569,9 @@
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"
@@ -2118,7 +2582,7 @@
password=""
port=""
proxy=""
- type="default,supl,fota,hipri"
+ type="default,ia,supl,fota,hipri"
roaming_protocol="IPV4V6"
mvno_type="imsi"
mvno_match_data="214050104xxxxxx"
@@ -2129,7 +2593,7 @@
mcc="214"
mnc="05"
apn="internet.digimobil.es"
- type="default,supl"
+ type="default,ia,supl"
mvno_type="gid"
mvno_match_data="44474553"
/>
@@ -2139,11 +2603,45 @@
mcc="214"
mnc="05"
apn="digi.mobile"
- type="default,supl"
+ type="default,ia,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"
@@ -2151,7 +2649,7 @@
apn="airtelnet.es"
user="vodafone"
password="vodafone"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS Vodafone"
@@ -2187,7 +2685,7 @@
user="CLIENTE"
password="EUSKALTEL"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="0008"
mvno_type="gid"
/>
@@ -2198,7 +2696,7 @@
mnc="06"
apn="internet.mundo-r.com"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="2140612"
mvno_type="imsi"
/>
@@ -2225,7 +2723,7 @@
user="telecable"
password="telecable"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="2140613"
mvno_type="imsi"
/>
@@ -2254,7 +2752,7 @@
user="wap@wap"
password="wap125"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="2140606"
mvno_type="imsi"
/>
@@ -2292,7 +2790,7 @@
mnc="06"
apn="gprsmov.pepephone.com"
authtype="0"
- type="default,supl,fota"
+ type="default,ia,supl,fota"
mvno_type="spn"
mvno_match_data="pepephone"
/>
@@ -2324,70 +2822,27 @@
mmsproxy="10.138.255.5"
mmsport="8080"
authtype="1"
- type="default,supl,mms"
- />
-
- <apn carrier="Jazztel Internet"
- carrier_id = "1974"
- mcc="214"
- mnc="07"
- apn="jazzinternet"
- type="default,supl"
- mvno_match_data="JAZZTEL"
- mvno_type="spn"
- />
-
- <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"
+ type="default,ia,supl,mms"
/>
- <apn carrier="Conexióompartida"
+ <apn carrier="Movistar"
carrier_id = "34"
mcc="214"
mnc="07"
- 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="ims"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ type="ims"
/>
- <apn carrier="T-2"
- carrier_id = "2281"
+ <apn carrier="Movistar"
+ carrier_id = "34"
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="xcap"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ type="xcap"
/>
<apn carrier="Euskaltel MMS"
@@ -2412,7 +2867,7 @@
user="CLIENTE"
password="EUSKALTEL"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="TeleCable Internet"
@@ -2421,7 +2876,7 @@
apn="internet.telecable.es"
user="telecable"
password="telecable"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="TeleCable MMS"
@@ -2441,7 +2896,7 @@
mcc="214"
mnc="18"
apn="internet.ono.com"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="ONO MMS"
@@ -2463,7 +2918,7 @@
authtype="1"
user="orange"
password = "orange"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="simyo MMS"
@@ -2493,7 +2948,7 @@
mcc="214"
mnc="21"
apn="jazzinternet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS"
@@ -2515,7 +2970,7 @@
mcc="214"
mnc="22"
apn="internet.digimobil.es"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Lycamobile"
@@ -2527,6 +2982,7 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
+ type="default,ia,supl"
/>
<apn carrier="Truphone"
@@ -2535,7 +2991,7 @@
mnc="27"
apn="truphone.com"
mmsc="http://mmsc.truphone.com:1981/mm1"
- type="default,supl,mms,dun"
+ type="default,ia,supl,mms,dun"
mvno_type="gid"
mvno_match_data="547275554B3030656E"
/>
@@ -2552,22 +3008,6 @@
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"
@@ -2576,7 +3016,7 @@
password=""
port=""
proxy=""
- type="default,supl,fota,hipri"
+ type="default,ia,supl,fota,hipri"
protocol="IPV4V6"
/>
@@ -2596,7 +3036,7 @@
mcc="216"
mnc="01"
apn="online"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Djuice MMS"
@@ -2616,7 +3056,7 @@
mcc="216"
mnc="01"
apn="net"
- type="default"
+ type="default,ia"
authtype="0"
mvno_match_data="Djuice"
mvno_type="spn"
@@ -2628,12 +3068,38 @@
apn="wap"
proxy="84.225.255.1"
port="8080"
- type="default"
+ type="default,ia"
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"
@@ -2642,25 +3108,41 @@
type="ia"
/>
- <apn carrier="T-Mobile H MMS"
+ <apn carrier="Telekom HU NET"
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="T-Mobile H"
+ <apn carrier="Telekom IMS"
carrier_id = "2401"
mcc="216"
mnc="30"
- apn="internet.telekom"
- type="default,supl"
- authtype="1"
+ apn="ims"
+ type="ims"
+ protocol="IPV4V6"
+ user_visible="false"
+ />
+
+ <apn carrier="HOS"
+ 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 carrier="Vodafone Internet"
@@ -2668,10 +3150,10 @@
mcc="216"
mnc="70"
apn="internet.vodafone.net"
- type="default,supl"
- authtype="0"
- mvno_match_data="21670xx2xxx"
- mvno_type="imsi"
+ type="default,ia,supl,xcap"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ user_editable="false"
/>
<apn carrier="Vodafone MMS"
@@ -2683,31 +3165,13 @@
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,supl"
+ type="default,ia,supl"
mvno_match_data="21670xx1xxx"
mvno_type="imsi"
/>
@@ -2724,36 +3188,43 @@
mvno_type="imsi"
/>
- <apn carrier="Vodafone Live! VitaMAX"
+ <apn carrier="Vodafone HU IMS"
+ carrier_id = "1535"
mcc="216"
mnc="70"
- 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="ims"
+ type="ims"
+ protocol="IPV4V6"
+ user_visible="false"
/>
- <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="UPC Mobil Internet"
+ mcc="216"
+ mnc="71"
+ apn= "Internet.hu.upcmobile.com"
+ type="default,ia,supl"
+ mvno_type="gid"
+ mvno_match_data="75687531"
/>
- <apn carrier="HT Eronet GPRS"
+ <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 WEB"
carrier_id = "1357"
mcc="218"
mnc="03"
- apn="gprs.eronet.ba"
- type="default,supl"
+ apn="web.eronet.ba"
+ type="default,ia,supl"
/>
<apn carrier="Ht Eronet MMS"
@@ -2767,22 +3238,12 @@
type="mms"
/>
- <apn carrier="m:tel"
+ <apn carrier="mtel"
carrier_id = "1358"
mcc="218"
mnc="05"
- 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="mtelsmart"
+ type="default,ia,supl"
/>
<apn carrier="mtelmms"
@@ -2801,7 +3262,7 @@
mcc="218"
mnc="90"
apn="active.bhmobile.ba"
- type="default,supl"
+ type="default,ia,supl"
protocol="IPV4V6"
/>
@@ -2817,16 +3278,18 @@
protocol="IPV4V6"
/>
- <apn carrier="T-Mobile MMS"
+ <apn carrier="HOS"
carrier_id = "2365"
mcc="219"
mnc="01"
- apn="mms.htgprs"
+ apn="hos"
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"
@@ -2837,13 +3300,35 @@
type="ia"
/>
- <apn carrier="T-Mobile Internet"
+ <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"
carrier_id = "2365"
mcc="219"
mnc="01"
apn="internet.ht.hr"
authtype="1"
- type="default,supl"
+ 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"
/>
<apn carrier="bonbon Internet"
@@ -2852,7 +3337,7 @@
mnc="01"
apn="web.htgprs"
authtype="1"
- type="default,supl,fota,dun"
+ type="default,ia,supl,fota,dun"
mvno_type="spn"
mvno_match_data="bonbon"
/>
@@ -2877,12 +3362,12 @@
mnc="02"
apn="internet.tele2.hr"
mmsc="http://mmsc.tele2.hr"
- mmsproxy="193.12.40.66"
+ mmsproxy="mmsproxy.tele2.hr"
mmsport="8080"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
- <apn carrier="Broadband"
+ <apn carrier="A1 LTE IA"
carrier_id = "1530"
mcc="219"
mnc="10"
@@ -2890,30 +3375,35 @@
type="ia"
/>
- <apn carrier="Broadband"
+ <apn carrier="A1 internet"
carrier_id = "1530"
mcc="219"
mnc="10"
- apn="data.vip.hr"
- user="38591"
- password="38591"
- authtype="1"
- proxy="212.91.99.91"
- port="8080"
- type="default,supl"
+ apn="internet"
+ type="default,ia,supl"
/>
- <apn carrier="VIP.mms"
+ <apn carrier="A1 MMS"
carrier_id = "1530"
mcc="219"
mnc="10"
- apn="mms.vipnet.hr"
- mmsc="http://mms.vipnet.hr/servlets/mms"
+ apn="mms"
+ mmsc="http://mms.a1.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"
@@ -2922,7 +3412,7 @@
user="telenor"
password="gprs"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Telenor MMS"
@@ -2945,7 +3435,7 @@
password="gprs"
proxy="192.168.246.5"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Telenor MNE mms"
@@ -2961,20 +3451,19 @@
type="mms"
/>
- <apn carrier="mt:s wap"
+ <apn carrier="MTS 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,supl"
+ type="default,ia,supl"
+ server="http://m.mondo.rs"
/>
- <apn carrier="mt:s mms"
+ <apn carrier="MTS MMS"
carrier_id = "1013"
mcc="220"
mnc="03"
@@ -2988,17 +3477,6 @@
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"
@@ -3021,28 +3499,7 @@
password="38267"
proxy="10.0.5.19"
port="8080"
- 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"
+ type="default,ia,supl"
/>
<apn carrier="Vip GPRS"
@@ -3052,10 +3509,7 @@
apn="vipmobile"
user="vipmobile"
password="vipmobile"
- proxy="212.15.182.82"
- port="8080"
- authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Vip MMS"
@@ -3065,10 +3519,7 @@
apn="vipmobile.mms"
user="vipmobile"
password="vipmobile"
- mmsc="http://mmsc.vipmobile.rs"
- mmsproxy="212.15.182.82"
- mmsport="8080"
- authtype="1"
+ mmsc="http://mms.vipmobile.rs"
type="mms"
/>
@@ -3077,15 +3528,14 @@
mcc="222"
mnc="01"
apn="wap.tim.it"
- type="default,supl"
+ type="default,ia,supl"
/>
- <apn carrier="TIM DUN (IT)"
+ <apn carrier="TIM Web"
carrier_id = "33"
mcc="222"
mnc="01"
apn="ibox.tim.it"
- authtype="0"
type="dun"
/>
@@ -3100,53 +3550,47 @@
type="mms"
/>
- <apn carrier="Internet"
- carrier_id = "1895"
+ <apn carrier="TIM UT"
+ carrier_id = "33"
mcc="222"
mnc="01"
- apn="internet.windmobile.ca"
- type="default,supl"
+ apn="xcap.tim.it"
+ type="xcap"
protocol="IPV4V6"
- mvno_match_data="FFFFFF00"
- mvno_type="gid"
+ roaming_protocol="IPV4V6"
+ user_visible="false"
/>
- <apn carrier="MMS"
- carrier_id = "1895"
+ <apn carrier="TIM IMS"
+ carrier_id = "33"
mcc="222"
mnc="01"
- 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="IMS"
+ type="ims"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ user_visible="false"
/>
- <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="Modem"
+ <apn carrier="Location"
carrier_id = "1912"
mcc="222"
mnc="01"
- authtype="0"
- type="dun"
- user="iusacellgsm"
- password="iusacellgsm"
- apn="modem.iusacellgsm.mx"
+ apn="supl.iusacellgsm.mx"
+ server="http://supl.iusacell.com"
+ port="7275"
+ type="supl"
mvno_type="spn"
mvno_match_data="IUSACELL"
/>
@@ -3155,10 +3599,7 @@
carrier_id = "1912"
mcc="222"
mnc="01"
- authtype="0"
- type="default"
- user="iusacellgsm"
- password="iusacellgsm"
+ type="default,ia"
apn="web.iusacellgsm.mx"
mvno_type="spn"
mvno_match_data="IUSACELL"
@@ -3169,24 +3610,20 @@
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="Modem"
+ <apn carrier="Location"
carrier_id = "1912"
mcc="222"
mnc="01"
- apn="modem.iusacellgsm.mx"
- authtype="0"
- type="dun"
- user="iusacellgsm"
- password="iusacellgsm"
+ apn="supl.iusacellgsm.mx"
+ server="http://supl.iusacell.com"
+ port="7275"
+ type="supl"
mvno_type="spn"
mvno_match_data="UNEFON"
/>
@@ -3196,54 +3633,91 @@
mcc="222"
mnc="01"
apn="web.iusacellgsm.mx"
- authtype="0"
- type="default"
- user="iusacellgsm"
- password="iusacellgsm"
+ type="default,ia"
mvno_type="spn"
mvno_match_data="UNEFON"
/>
- <apn carrier="NOVERCA MMS"
- carrier_id = "2282"
+ <apn carrier="GigSky"
+ carrier_id="2459"
mcc="222"
mnc="01"
- apn="mms.noverca.it"
- authtype="0"
- mmsc="http://mms.noverca.it/"
+ apn="gigsky"
+ type="default,ia"
+ mvno_type="spn"
+ mvno_match_data="GigSky"
+ />
+
+ <apn carrier="CoopVoce MMS"
+ mcc="222"
+ mnc="01"
+ apn="mms.coopvoce.it"
+ mmsc="http://mms.coop.it/servlets/mms"
mmsproxy="213.230.130.89"
mmsport="80"
type="mms"
mvno_type="spn"
- mvno_match_data="Noverca"
+ mvno_match_data="Coop Mobile"
/>
- <apn carrier="NOVERCA WEB"
- carrier_id = "2282"
+ <apn carrier="CoopVoce"
mcc="222"
mnc="01"
- apn="web.noverca.it"
- authtype="0"
- type="default,supl,fota,dun"
+ apn="web.coopvoce.it"
+ type="default,ia"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
mvno_type="spn"
- mvno_match_data="Noverca"
+ mvno_match_data="Coop Mobile"
/>
- <apn carrier="GigSky"
- carrier_id="2459"
+ <apn carrier="Kenamobile web"
mcc="222"
mnc="01"
- apn="gigsky"
- type="default"
+ apn="web.kenamobile.it"
+ type="default,ia"
mvno_type="spn"
- mvno_match_data="GigSky"
+ mvno_match_data="Kena Mobile"
+ />
+
+ <apn carrier="Kenamobile MMS"
+ mcc="222"
+ mnc="01"
+ apn="mms.kenamobile.it"
+ mmsc="http://mms.kenamobile.it/"
+ mmsproxy="10.248.1.12"
+ mmsport="80"
+ type="mms"
+ 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"
/>
<apn carrier="Kena Mobile Web"
mcc="222"
mnc="07"
apn="web.kenamobile.it"
- type="default"
+ type="default,ia"
/>
<apn carrier="Kena Mobile MMS"
@@ -3265,6 +3739,7 @@
/>
<apn carrier="MMS Vodafone"
+ carrier_id = "29"
mcc="222"
mnc="10"
apn="mms.vodafone.it"
@@ -3274,13 +3749,29 @@
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"
- authtype="0"
- type="default,supl,hipri,fota"
+ type="default,ia,supl,hipri,fota"
mvno_type="spn"
mvno_match_data="ho."
/>
@@ -3290,43 +3781,17 @@
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"
- authtype="0"
- type="default,supl,fota"
+ type="default,ia,supl,fota"
mvno_type="spn"
mvno_match_data="PosteMobile"
/>
@@ -3336,7 +3801,6 @@
mcc="222"
mnc="10"
apn="internet.postemobile.it"
- authtype="0"
type="dun"
mvno_type="spn"
mvno_match_data="PosteMobile"
@@ -3347,7 +3811,6 @@
mcc="222"
mnc="10"
apn="mms.postemobile.it"
- authtype="0"
mmsc="http://mms.postemobile.it/servlets/mms"
mmsproxy="10.128.224.10"
mmsport="80"
@@ -3361,8 +3824,7 @@
mcc="222"
mnc="10"
apn="mobile.erg.it"
- authtype="0"
- type="default,supl,fota,dun"
+ type="default,ia,supl,fota,dun"
mvno_type="spn"
mvno_match_data="ERG"
/>
@@ -3372,11 +3834,32 @@
mcc="222"
mnc="10"
apn="wap.dtm.it"
- type="default,supl,dun"
+ type="default,ia,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"
@@ -3386,6 +3869,7 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
+ type="default,ia,supl"
/>
<apn carrier="DIGI Italy"
@@ -3393,7 +3877,7 @@
mcc="222"
mnc="36"
apn="digi.mobile"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Iliad"
@@ -3402,24 +3886,28 @@
mnc="50"
apn="iliad"
mmsc="http://mms.iliad.it"
- type="default,supl,mms"
+ type="default,ia,supl,hipri,mms"
+ mvno_type="gid"
+ mvno_match_data="F003"
/>
<apn carrier="WEB CoopVoce"
- mcc="222"
- mnc="53"
- apn="internet.coopvoce.it"
- type="default"
+ carrier_id = "2452"
+ mcc="222"
+ mnc="53"
+ apn="internet.coopvoce.it"
+ type="default,ia,supl,dun"
/>
<apn carrier="MMS CoopVoce"
- mcc="222"
- mnc="53"
- apn="message.coopvoce.it"
- type="mms"
- mmsc="http://mms.coop.it/servlets/mms"
- mmsproxy="213.230.130.89"
- mmsport="80"
+ 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"
/>
<apn carrier="Plintron"
@@ -3438,7 +3926,7 @@
mcc="222"
mnc="88"
apn="internet.it"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS"
@@ -3452,36 +3940,12 @@
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,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS"
@@ -3503,7 +3967,7 @@
mmsc="http://mms.fastweb.it/mms/wapenc"
mmsproxy="10.0.65.9"
mmsport="8080"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
mvno_match_data="FASTWEB"
mvno_type="spn"
/>
@@ -3524,7 +3988,10 @@
user="live"
password="vodafone"
authtype="1"
- type="default,supl"
+ type="default,ia,supl,xcap"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ user_editable="false"
/>
<apn carrier="Vodafone MMS"
@@ -3541,56 +4008,47 @@
type="mms"
/>
- <apn carrier="Vodafone live!PRE"
+ <apn carrier="Vodafone IMS"
carrier_id = "2391"
mcc="226"
mnc="01"
- apn="live.pre.vodafone.com"
- proxy="193.230.161.231"
- port="8080"
- authtype="0"
- user="live"
- password="vodafone"
- type="default"
+ apn="ims"
+ type="ims"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ user_visible="false"
/>
- <apn carrier="Cosmote Connect Mobile"
+ <apn carrier="Telekom Romania Mobil"
+ carrier_id = "1010"
mcc="226"
mnc="03"
apn=""
type="ia"
/>
- <apn carrier="Cosmote Connect Mobile"
+ <apn carrier="Telekom Romania Mobil"
+ carrier_id = "1010"
mcc="226"
mnc="03"
apn="broadband"
- type="default,supl"
+ type="default,ia,supl"
/>
- <apn carrier="Cosmote MMS"
+ <apn carrier="Telekom Romania MMS"
+ carrier_id = "1010"
mcc="226"
mnc="03"
apn="mms"
user="mms"
password="mms"
- mmsc="http://mmsc1.mms.cosmote.ro:8002"
+ mmsc="http://mmsc1.mms.telekom.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"
@@ -3608,7 +4066,20 @@
mnc="05"
apn="internet"
authtype="1"
- type="default,supl"
+ 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"
/>
<apn carrier="DIGI Spain"
@@ -3616,7 +4087,7 @@
mcc="226"
mnc="05"
apn="internet.digimobil.es"
- type="default,supl"
+ type="default,ia,supl"
mvno_type="gid"
mvno_match_data="44474553"
/>
@@ -3626,47 +4097,41 @@
mcc="226"
mnc="05"
apn="digi.mobile"
- type="default,supl"
+ type="default,ia,supl"
mvno_type="gid"
mvno_match_data="44474954"
/>
- <apn carrier="Cosmote Connect Mobile"
+ <apn carrier="Telekom Romania Mobil"
+ carrier_id = "1010"
mcc="226"
mnc="06"
apn=""
type="ia"
/>
- <apn carrier="Cosmote Connect Mobile"
+ <apn carrier="Telekom Romania Mobil"
+ carrier_id = "1010"
mcc="226"
mnc="06"
apn="broadband"
- type="default,supl"
+ type="default,ia,supl"
/>
- <apn carrier="Cosmote MMS"
+ <apn carrier="Telekom Romania MMS"
+ carrier_id = "1010"
mcc="226"
mnc="06"
apn="mms"
user="mms"
password="mms"
- mmsc="http://mmsc1.mms.cosmote.ro:8002"
+ mmsc="http://mmsc1.mms.telekom.ro:8002"
mmsproxy="10.252.1.62"
mmsport="8080"
type="mms"
/>
- <apn carrier="web'n'walk"
- mcc="226"
- mnc="06"
- apn="wnw"
- user="wnw"
- password="wnw"
- type="default,supl"
- />
-
- <apn carrier="Orange Internet"
+ <apn carrier="Orange LTE"
carrier_id = "1011"
mcc="226"
mnc="10"
@@ -3686,6 +4151,7 @@
mmsport="8799"
authtype="1"
type="mms"
+ user_editable="false"
/>
<apn carrier="Orange Internet"
@@ -3693,7 +4159,19 @@
mcc="226"
mnc="10"
apn="net"
- type="default"
+ 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"
/>
<apn carrier="Lycamobile"
@@ -3705,6 +4183,7 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
+ type="default,ia,supl"
/>
<apn carrier="Swisscom MMS"
@@ -3723,9 +4202,27 @@
mcc="228"
mnc="01"
apn="gprs.swisscom.ch"
- proxy="192.168.210.1"
- port="8080"
- type="default,supl"
+ 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"
/>
<apn carrier="Sunrise live"
@@ -3733,7 +4230,7 @@
mcc="228"
mnc="02"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Sunrise MMS"
@@ -3747,15 +4244,36 @@
type="mms"
/>
- <apn carrier="Orange Internet"
+ <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"
carrier_id = "1414"
mcc="228"
mnc="03"
apn="internet"
- type="default,supl"
+ authtype="1"
+ type="default,ia,supl"
/>
- <apn carrier="Orange MMS"
+ <apn carrier="Salt MMS"
carrier_id = "1414"
mcc="228"
mnc="03"
@@ -3763,9 +4281,30 @@
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"
@@ -3773,7 +4312,7 @@
apn="netgprs.com"
user="tsl"
password="tsl"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="CH-Transatel"
mvno_type="spn"
/>
@@ -3785,11 +4324,32 @@
apn="netgprs.com"
user="tsl"
password="tsl"
- type="default,supl"
+ type="default,ia,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"
@@ -3799,6 +4359,7 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
+ type="default,ia,supl"
/>
<apn carrier="T-Mobile CZ"
@@ -3814,9 +4375,11 @@
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"
@@ -3827,7 +4390,7 @@
user="wap"
password="wap"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="T-Mobile MMS"
@@ -3844,12 +4407,39 @@
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,supl"
+ type="default,ia,supl"
+ authtype="0"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="O2 MMS"
@@ -3863,12 +4453,32 @@
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,supl"
+ type="default,ia,supl,xcap"
/>
<apn carrier="MMS"
@@ -3883,17 +4493,35 @@
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 SK"
+ <apn carrier="Orange Internet"
carrier_id = "1713"
mcc="231"
mnc="01"
apn="internet"
- type="default"
+ type="default,ia,supl"
/>
- <apn carrier="Orange SK MMS"
+ <apn carrier="Orange LTE"
+ carrier_id = "1713"
+ mcc="231"
+ mnc="01"
+ apn=""
+ type="ia"
+ />
+
+ <apn carrier="Orange MMS"
carrier_id = "1713"
mcc="231"
mnc="01"
@@ -3905,19 +4533,26 @@
mmsproxy="213.151.208.145"
mmsport="8799"
type="mms"
+ user_editable="false"
/>
- <apn carrier="Orange World"
+ <apn carrier="Orange IMS"
carrier_id = "1713"
mcc="231"
mnc="01"
- apn="orangewap"
- user="wap"
- password="wap"
- authtype="1"
- proxy="213.151.208.156"
- port="8799"
- type="default,supl"
+ apn="ims"
+ type="ims"
+ protocol="IPV4V6"
+ user_visible="false"
+ />
+
+ <apn carrier="Orange UT"
+ carrier_id = "1713"
+ mcc="231"
+ mnc="01"
+ apn="xcap"
+ type="xcap"
+ user_visible="false"
/>
<apn carrier="T-Mobile internet"
@@ -3926,21 +4561,40 @@
mnc="02"
apn="internet"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
/>
- <apn carrier="T-Mobile MMS"
+ <apn carrier="HOS"
carrier_id = "2385"
mcc="231"
mnc="02"
- apn="mms"
+ apn="hos"
user="mms"
password="mms"
authtype="1"
- mmsc="http://mms"
- mmsproxy="192.168.1.1"
- mmsport="8080"
- type="mms"
+ 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"
/>
<apn carrier="O2 internet"
@@ -3948,7 +4602,7 @@
mcc="231"
mnc="06"
apn="o2internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="O2 MMS"
@@ -3963,19 +4617,22 @@
/>
<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,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
/>
<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"
@@ -3985,34 +4642,56 @@
type="mms"
/>
- <apn carrier="T-Mobile Internet"
+ <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"
mcc="232"
mnc="03"
apn=""
type="ia"
/>
- <apn carrier="T-Mobile LTE"
+ <apn carrier="T-Mobile A Internet"
mcc="232"
mnc="03"
apn="internet.t-mobile.at"
- user="t-mobile"
+ user="T"
password="tm"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
/>
- <apn carrier="T-Mobile MMS"
+ <apn carrier="T-Mobile IMS"
mcc="232"
mnc="03"
- apn="gprsmms"
+ apn="ims"
+ type="ims"
+ protocol="IPV4V6"
+ user_visible="false"
+ />
+
+ <apn carrier="HOS"
+ mcc="232"
+ mnc="03"
+ 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"
+ type="mms,xcap"
+ protocol="IPV4V6"
+ user_visible="false"
/>
<apn carrier="Goodspeed"
@@ -4020,11 +4699,46 @@
mcc="232"
mnc="03"
apn="uros.iot"
- type="default"
+ type="default,ia"
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"
@@ -4033,30 +4747,124 @@
mmsc="http://mmsc"
mmsproxy="213.94.78.133"
mmsport="8799"
- type="default,supl,mms"
+ 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="tele.ring mms"
+ <apn carrier="HOS"
+ carrier_id = "2094"
mcc="232"
mnc="07"
- apn="mms"
- user="wap@telering.at"
- password="wap"
- mmsc="http://relay.mms.telering.at"
- mmsproxy="212.95.31.50"
+ 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"
+ />
+
+ <apn carrier="T-Mobile IMS"
+ carrier_id = "2094"
+ 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"
+ mmsport="80"
type="mms"
+ mvno_type="imsi"
+ mvno_match_data="23207761"
/>
- <apn carrier="tele.ring web"
+ <apn carrier="0677 web"
mcc="232"
mnc="07"
- apn="web"
- user="web@telering.at"
- password="web"
+ 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"
+ mcc="232"
+ mnc="07"
+ apn="mmsaut"
authtype="1"
- type="default,supl"
+ mmsc="http://mmsaut.at/send"
+ mmsproxy="212.095.031.050"
+ mmsport="80"
+ type="mms"
+ mvno_type="imsi"
+ mvno_match_data="23207799"
/>
<apn carrier="Lycamobile"
@@ -4069,9 +4877,10 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
+ type="default,ia,supl"
/>
- <apn carrier="Planet3"
+ <apn carrier="Planet 3"
carrier_id = "1344"
mcc="232"
mnc="10"
@@ -4079,20 +4888,33 @@
mmsc="http://mmsc"
mmsproxy="213.94.78.133"
mmsport="8799"
- type="default,supl,mms"
+ 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"
/>
<apn carrier="data.bob"
+ carrier_id = "14"
mcc="232"
mnc="11"
apn="bob.at"
user="data@bob.at"
password="ppp"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
/>
<apn carrier="data.bob MMS"
+ carrier_id = "14"
mcc="232"
mnc="11"
apn="mms.bob.at"
@@ -4105,14 +4927,50 @@
type="mms"
/>
- <apn carrier="yesss!"
+ <apn carrier="WEBAPN.AT"
mcc="232"
mnc="12"
- apn="web.yesss.at"
- type="default,supl"
+ 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 carrier="Plintron"
+ carrier_id = "2424"
mcc="232"
mnc="22"
apn="data.plintron.at"
@@ -4128,7 +4986,7 @@
mcc="234"
mnc="01"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="O2 MOBILE WEB"
@@ -4138,7 +4996,7 @@
apn="mobile.o2.co.uk"
user="O2web"
password="O2web"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="O2 MMS Prepay"
@@ -4174,7 +5032,7 @@
apn="internet.btonephone.com"
mvno_type="gid"
mvno_match_data="B2"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="BT One Phone MMS"
@@ -4197,7 +5055,7 @@
apn="mobile.o2.co.uk"
user="o2web"
password="password"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="O2 MMS"
@@ -4226,7 +5084,7 @@
mmsc="http://mmsc.mms.o2.co.uk:8002"
mmsproxy="82.132.254.1"
mmsport="8080"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="TESCO"
@@ -4242,7 +5100,7 @@
mmsproxy="193.113.200.195"
mmsport="8080"
authtype="1"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
mvno_match_data="0A"
mvno_type="gid"
/>
@@ -4279,7 +5137,7 @@
apn="mobile.o2.co.uk"
user="O2web"
password="O2web"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="O2 MMS Prepay"
@@ -4316,7 +5174,7 @@
apn="mobile.o2.co.uk"
user="O2web"
password="O2web"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="O2 MMS Prepay"
@@ -4355,7 +5213,7 @@
mmsproxy="212.183.137.12"
mmsport="8799"
authtype="1"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
user_editable="false"
/>
@@ -4369,10 +5227,21 @@
mmsproxy="212.183.137.12"
mmsport="8799"
authtype="1"
- type="default,supl,mms"
+ type="default,ia,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"
@@ -4385,7 +5254,7 @@
mmsproxy="212.183.137.12"
mmsport="8799"
authtype="1"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
mvno_match_data="A0"
mvno_type="gid"
/>
@@ -4402,7 +5271,7 @@
mmsproxy="212.183.137.12"
mmsport="8799"
authtype="1"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
mvno_match_data="C1"
mvno_type="gid"
/>
@@ -4419,7 +5288,7 @@
mmsproxy="212.183.137.12"
mmsport="8799"
authtype="1"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
mvno_match_data="C1"
mvno_type="gid"
/>
@@ -4431,7 +5300,7 @@
mmsc="http://mms.talktalk.co.uk/servlets/mms"
mmsproxy="212.183.137.12"
mmsport="8799"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
mvno_match_data="70"
mvno_type="gid"
/>
@@ -4462,7 +5331,7 @@
mmsport="8799"
mvno_type="spn"
mvno_match_data="Lebara"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="3"
@@ -4473,7 +5342,7 @@
mmsc="http://mms.um.three.co.uk:10021/mmsc"
mmsproxy="mms.three.co.uk"
mmsport="8799"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="3 Hotspot"
@@ -4485,6 +5354,17 @@
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"
@@ -4495,6 +5375,7 @@
password="plus"
mvno_type="spn"
mvno_match_data="Lycamobile"
+ type="default,ia,supl"
/>
<apn carrier="Virgin Media Mobile Internet"
@@ -4507,7 +5388,7 @@
mmsproxy="193.30.166.2"
mmsport="8080"
authtype="1"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
mvno_match_data="28"
mvno_type="gid"
/>
@@ -4520,9 +5401,9 @@
user="eesecure"
password="secure"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
protocol="IPV4V6"
- roaming_protocol="IPV4"
+ roaming_protocol="IP"
/>
<apn carrier="EE MMS"
@@ -4537,7 +5418,7 @@
mmsport="8080"
authtype="1"
type="mms"
- protocol="IPV4"
+ protocol="IP"
/>
<apn carrier="EE Emergency"
@@ -4568,7 +5449,7 @@
apn="internet.btonephone.com"
mvno_type="gid"
mvno_match_data="B2"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="BT One Phone MMS"
@@ -4594,9 +5475,9 @@
authtype="1"
mvno_type="gid"
mvno_match_data="B3"
- type="default,supl"
+ type="default,ia,supl"
protocol="IPV4V6"
- roaming_protocol="IPV4"
+ roaming_protocol="IP"
/>
<apn carrier="BT MMS"
@@ -4650,9 +5531,9 @@
authtype="1"
mvno_type="gid"
mvno_match_data="C3"
- type="default,supl"
+ type="default,ia,supl"
protocol="IPV4V6"
- roaming_protocol="IPV4"
+ roaming_protocol="IP"
/>
<apn carrier="BT MMS"
@@ -4702,7 +5583,7 @@
mnc="33"
apn="tslpaygnet"
authtype="0"
- type="default,supl,fota,dun"
+ type="default,ia,supl,fota,dun"
mvno_type="spn"
mvno_match_data="LIFE"
/>
@@ -4731,7 +5612,7 @@
user="eesecure"
password="secure"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="EE MMS"
@@ -4767,6 +5648,18 @@
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"
@@ -4775,7 +5668,7 @@
mnc="25"
apn="truphone.com"
mmsc="http://mmsc.truphone.com:1981/mm1"
- type="default,supl,mms,dun"
+ type="default,ia,supl,mms,dun"
mvno_type="gid"
mvno_match_data="547275554B3030656E"
/>
@@ -4825,7 +5718,7 @@
apn="em"
mvno_match_data="234500022"
mvno_type="imsi"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Jersey Telecom"
@@ -4846,7 +5739,39 @@
mcc="234"
mnc="50"
apn="pepper"
- type="default,supl"
+ 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"
/>
<apn carrier="C&amp;W Guernsey Internet"
@@ -4854,7 +5779,7 @@
mcc="234"
mnc="55"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Sure Picture Messaging"
@@ -4873,7 +5798,7 @@
mnc="57"
apn="mobile.sky"
authtype="0"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS"
@@ -4891,7 +5816,7 @@
mcc="234"
mnc="58"
apn="3gpronto"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Manx Telecom Contract MMS"
@@ -4927,7 +5852,7 @@
apn="web.manxpronto.net"
user="gprs"
password="gprs"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="EE Internet"
@@ -4938,7 +5863,7 @@
user="eesecure"
password="secure"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="EE MMS"
@@ -4972,7 +5897,7 @@
mmsc="http://mms.um.three.co.uk:10021/mmsc"
mmsproxy="mms.three.co.uk"
mmsport="8799"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="DK TDC"
@@ -4981,7 +5906,7 @@
mnc="01"
apn="internet"
authtype="0"
- type="default,supl,fota,dun"
+ type="default,ia,supl,fota,dun"
/>
<apn carrier="DK TDC mms"
@@ -5000,7 +5925,7 @@
mcc="238"
mnc="01"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="2380101xxxxxxxx"
mvno_type="imsi"
/>
@@ -5022,7 +5947,7 @@
mcc="238"
mnc="01"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
mvno_type="spn"
mvno_match_data="TELMORE"
/>
@@ -5048,7 +5973,7 @@
proxy="194.182.251.15"
port="8080"
authtype="0"
- type="default"
+ type="default,ia"
mvno_type="spn"
mvno_match_data="TELMORE"
/>
@@ -5058,7 +5983,7 @@
mcc="238"
mnc="02"
apn="Internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Telenor MMS"
@@ -5080,7 +6005,7 @@
mmsc="http://mms.3.dk/"
mmsproxy="mmsproxy.3.dk"
mmsport="8799"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
protocol="IPV4V6"
roaming_protocol="IP"
/>
@@ -5094,6 +6019,7 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
+ type="default,ia,supl"
/>
<apn carrier="Telia SurfPort"
@@ -5101,7 +6027,7 @@
mcc="238"
mnc="20"
apn="www.internet.mtelia.dk"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Telia MMS"
@@ -5120,7 +6046,7 @@
mcc="238"
mnc="20"
apn="webSP"
- type="default,supl"
+ type="default,ia,supl"
mvno_type="spn"
mvno_match_data="Call me"
/>
@@ -5143,7 +6069,7 @@
mcc="238"
mnc="20"
apn="webSP"
- type="default,supl"
+ type="default,ia,supl"
mvno_type="spn"
mvno_match_data="DLG Tele"
/>
@@ -5175,7 +6101,7 @@
mcc="238"
mnc="77"
apn="Internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Telenor MMS"
@@ -5205,7 +6131,7 @@
mcc="240"
mnc="01"
apn="online.telia.se"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Halebop Internet"
@@ -5213,7 +6139,7 @@
mcc="240"
mnc="01"
apn="halebop.telia.se"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="240017xxxxxxxxx"
mvno_type="imsi"
/>
@@ -5239,7 +6165,7 @@
mmsc="http://mms.tre.se"
mmsproxy="mmsproxy.tre.se"
mmsport="8799"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
protocol="IPV4V6"
roaming_protocol="IP"
/>
@@ -5252,7 +6178,7 @@
mmsc="http://mms.tre.se"
mmsproxy="mmsproxy.tre.se"
mmsport="8799"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
protocol="IPV4V6"
roaming_protocol="IP"
/>
@@ -5261,7 +6187,7 @@
mcc="240"
mnc="05"
apn="4g.tele2.se"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="Tele2"
mvno_type="spn"
/>
@@ -5282,7 +6208,7 @@
mcc="240"
mnc="05"
apn="internet.tele2.se"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="Tele2"
mvno_type="spn"
/>
@@ -5317,7 +6243,7 @@
mcc="240"
mnc="05"
apn="online.telia.se"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="Telia"
mvno_type="spn"
/>
@@ -5327,7 +6253,7 @@
mcc="240"
mnc="05"
apn="halebop.telia.se"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="Halebop"
mvno_type="spn"
/>
@@ -5350,7 +6276,7 @@
mcc="240"
mnc="06"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS"
@@ -5367,7 +6293,7 @@
mcc="240"
mnc="07"
apn="4g.tele2.se"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Tele2 MMS"
@@ -5386,7 +6312,7 @@
mcc="240"
mnc="07"
apn="internet.tele2.se"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Tele2 MMS 3G"
@@ -5406,7 +6332,7 @@
apn="internet.tele2.no"
user="wap"
password="wap"
- type="default,supl"
+ type="default,ia,supl"
authtype="1"
mvno_match_data="2400768xxxxxxxx"
mvno_type="imsi"
@@ -5424,6 +6350,17 @@
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"
@@ -5457,7 +6394,7 @@
mcc="240"
mnc="08"
apn="services.telenor.se"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Telenor MMS"
@@ -5476,7 +6413,7 @@
mcc="240"
mnc="09"
apn="com4"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Spring data"
@@ -5484,7 +6421,7 @@
mcc="240"
mnc="10"
apn="data.springmobil.se"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Spring MMS"
@@ -5508,13 +6445,14 @@
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,supl"
+ type="default,ia,supl"
/>
<apn carrier="Halebop MMS"
@@ -5534,7 +6472,7 @@
mcc="240"
mnc="24"
apn="4g.tele2.se"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="Tele2"
mvno_type="spn"
/>
@@ -5557,7 +6495,7 @@
mcc="240"
mnc="24"
apn="internet.tele2.se"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="Tele2"
mvno_type="spn"
/>
@@ -5580,7 +6518,7 @@
mcc="240"
mnc="42"
apn="uros.iot"
- type="default"
+ type="default,ia"
mvno_type="gid"
mvno_match_data="C5"
/>
@@ -5590,7 +6528,7 @@
mcc="242"
mnc="01"
apn="internet.ventelo.no"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="24201700xxxxxxx"
mvno_type="imsi"
/>
@@ -5619,7 +6557,18 @@
mmsc="http://mmsc"
mmsproxy="10.10.10.11"
mmsport="8080"
- type="default,supl,mms"
+ 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"
/>
<apn carrier="NetCom"
@@ -5630,7 +6579,7 @@
mmsc="http://mm/"
mmsproxy="212.169.66.4"
mmsport="8080"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="Chess MMS"
@@ -5654,7 +6603,7 @@
mcc="242"
mnc="02"
apn="netcom"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="2420256xxxxxxxx"
mvno_type="imsi"
/>
@@ -5667,7 +6616,7 @@
mmsc="http://mmsc.tele2.no"
mmsproxy="193.12.40.14"
mmsport="8080"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="NwN Internet"
@@ -5675,7 +6624,7 @@
mcc="242"
mnc="05"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="NwN MMS"
@@ -5694,7 +6643,47 @@
mcc="242"
mnc="09"
apn="com4"
- type="default,supl"
+ 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"
/>
<apn carrier="Lycamobile"
@@ -5706,6 +6695,7 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
+ type="default,ia,supl"
/>
<apn carrier="DNA Internet"
@@ -5713,7 +6703,7 @@
mcc="244"
mnc="03"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="DNA MMS"
@@ -5732,7 +6722,7 @@
mcc="244"
mnc="04"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="DNA MMS"
@@ -5753,7 +6743,7 @@
mcc="244"
mnc="05"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Elisa MMS"
@@ -5772,7 +6762,7 @@
mcc="244"
mnc="05"
apn="internet.saunalahti"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="2440541"
mvno_type="imsi"
/>
@@ -5797,7 +6787,7 @@
apn="internet.song.fi"
user="song@internet"
password="songnet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="TDC MMS"
@@ -5816,7 +6806,7 @@
mcc="244"
mnc="12"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="DNA MMS"
@@ -5836,7 +6826,7 @@
mnc="12"
apn="dnapro.fi"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="DNA Pro MMS"
@@ -5857,7 +6847,7 @@
mnc="12"
apn="inet.tdc.fi"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="TDC MMS Finland"
@@ -5877,7 +6867,7 @@
mcc="244"
mnc="13"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="DNA MMS"
@@ -5898,7 +6888,7 @@
mcc="244"
mnc="21"
apn="internet.saunalahti"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Saunalahti MMS"
@@ -5917,7 +6907,7 @@
mcc="244"
mnc="91"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="SONERA MMS"
@@ -5953,7 +6943,7 @@
user="omni"
password="omni"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Bite Internet"
@@ -5961,7 +6951,7 @@
mcc="246"
mnc="02"
apn="wap"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Bite MMS"
@@ -5986,7 +6976,7 @@
mmsc="http://mmsc.tele2.lt/"
mmsproxy="193.12.40.29"
mmsport="8080"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="Test FOTA"
@@ -6054,7 +7044,7 @@
mnc="081"
apn="VZWINTERNET"
mmsc="http://mms.vtext.com/servlets/mms"
- type="default,dun"
+ type="default,ia,dun"
carrier_enabled="false"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -6067,7 +7057,7 @@
mnc="081"
apn="VZWINTERNET"
mmsc="http://mms.vtext.com/servlets/mms"
- type="default,dun"
+ type="default,ia,dun"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -6082,7 +7072,7 @@
mnc="081"
apn="VZWINTERNET"
mmsc="http://mms.vtext.com/servlets/mms"
- type="default,dun"
+ type="default,ia,dun"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -6181,7 +7171,7 @@
mnc="81"
apn="VZWINTERNET"
mmsc="http://mms.vtext.com/servlets/mms"
- type="default,dun"
+ type="default,ia,dun"
carrier_enabled="false"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -6194,7 +7184,7 @@
mnc="81"
apn="VZWINTERNET"
mmsc="http://mms.vtext.com/servlets/mms"
- type="default,dun"
+ type="default,ia,dun"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -6209,7 +7199,7 @@
mnc="81"
apn="VZWINTERNET"
mmsc="http://mms.vtext.com/servlets/mms"
- type="default,dun"
+ type="default,ia,dun"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -6224,7 +7214,7 @@
mcc="247"
mnc="01"
apn="internet.lmt.lv"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="LMT MMS"
@@ -6241,7 +7231,7 @@
mcc="247"
mnc="02"
apn="internet.tele2.lv"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Tele2 LV MMS"
@@ -6263,7 +7253,7 @@
mcc="247"
mnc="05"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Bite LV MMS"
@@ -6287,7 +7277,7 @@
apn="wap"
proxy="213.226.131.133"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="EMT Internet"
@@ -6295,7 +7285,7 @@
mcc="248"
mnc="01"
apn="internet.emt.ee"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="EMT MMS"
@@ -6316,7 +7306,7 @@
apn="wap.emt.ee"
proxy="217.71.32.236"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Send"
@@ -6327,7 +7317,7 @@
mmsc="http://mms.emt.ee/servlets/mms"
mmsproxy="217.71.32.82"
mmsport="8080"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
mvno_match_data="248010x2"
mvno_type="imsi"
/>
@@ -6340,7 +7330,7 @@
mmsc="http://mms.emt.ee/servlets/mms"
mmsproxy="217.71.32.82"
mmsport="8080"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
mvno_match_data="248010x3"
mvno_type="imsi"
/>
@@ -6350,7 +7340,7 @@
mcc="248"
mnc="02"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Elisa MMS"
@@ -6371,7 +7361,7 @@
apn="wap"
proxy="194.204.2.6"
port="8000"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Tele2 Internet"
@@ -6379,7 +7369,7 @@
mcc="248"
mnc="03"
apn="internet.tele2.ee"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Tele2 MMS"
@@ -6412,7 +7402,7 @@
user="mts"
password="mts"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
/>
@@ -6438,7 +7428,7 @@
apn="internet"
user=""
password=""
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Megafon MMS"
@@ -6460,7 +7450,7 @@
mcc="250"
mnc="11"
apn="yota.ru"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="TELE2 Internet"
@@ -6468,7 +7458,7 @@
mcc="250"
mnc="20"
apn="internet.tele2.ru"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="TELE2 MMS"
@@ -6489,7 +7479,7 @@
apn="vtb"
user=""
password=""
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="VODA internet"
@@ -6497,7 +7487,7 @@
mcc="250"
mnc="28"
apn="vodalte.ru"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Next Mobile"
@@ -6507,7 +7497,7 @@
apn="Next"
user=""
password=""
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Sberbank-Telecom Internet"
@@ -6517,7 +7507,7 @@
apn="internet.sberbank-tele.com"
user=""
password=""
- type="default,supl"
+ type="default,ia,supl"
mvno_type="gid"
mvno_match_data="FA3207"
/>
@@ -6555,7 +7545,7 @@
apn="m.tinkoff"
user=""
password=""
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Beeline Internet"
@@ -6566,7 +7556,7 @@
user="beeline"
password="beeline"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Beeline MMS"
@@ -6599,7 +7589,7 @@
mcc="255"
mnc="01"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Beeline-internet"
@@ -6607,7 +7597,7 @@
mcc="255"
mnc="02"
apn="internet.beeline.ua"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Beeline MMS"
@@ -6644,7 +7634,7 @@
user="igprs"
password="internet"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Djuice MMS"
@@ -6668,7 +7658,7 @@
mcc="255"
mnc="03"
apn="www.djuice.com.ua"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="DJUICE"
mvno_type="spn"
/>
@@ -6678,7 +7668,7 @@
mcc="255"
mnc="06"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Life:) MMS"
@@ -6697,7 +7687,7 @@
mcc="255"
mnc="07"
apn="3g.utel.ua"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Utel MMS"
@@ -6719,7 +7709,7 @@
authtype="1"
proxy="10.200.15.15"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Velcom MMS"
@@ -6746,7 +7736,7 @@
protocol="IPV4V6"
roaming_protocol="IPV4V6"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MTS MMS"
@@ -6769,7 +7759,7 @@
mnc="04"
apn="internet.life.com.by"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="life:) MMS"
@@ -6789,7 +7779,7 @@
mcc="259"
mnc="01"
apn="wap.orange.md"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Orange_MMS_GPRS"
@@ -6808,7 +7798,7 @@
mcc="259"
mnc="02"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Moldcell MMS"
@@ -6827,7 +7817,7 @@
mcc="259"
mnc="05"
apn="internet3g.unite.md"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Unite Internet PostPay"
@@ -6835,7 +7825,7 @@
mcc="259"
mnc="05"
apn="internet.unite.md"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Unite MMS"
@@ -6854,7 +7844,7 @@
mcc="260"
mnc="01"
apn="plus"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Plus MMS"
@@ -6868,7 +7858,7 @@
type="mms"
/>
- <apn carrier="T-mobile.pl"
+ <apn carrier="T-Mobile Internet"
carrier_id = "2367"
mcc="260"
mnc="02"
@@ -6881,18 +7871,33 @@
mcc="260"
mnc="02"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ authtype="1"
/>
- <apn carrier="T-mobile.pl"
+ <apn carrier="HOS"
carrier_id = "2367"
mcc="260"
mnc="02"
- apn="mms"
+ apn="hos"
mmsc="http://mms/servlets/mms"
mmsproxy="213.158.194.226"
mmsport="8080"
- type="mms"
+ 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"
/>
<apn carrier="heyahinternet"
@@ -6900,7 +7905,7 @@
mcc="260"
mnc="02"
apn="heyah.pl"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="heyahmms"
@@ -6922,7 +7927,7 @@
user="internet"
password="internet"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Orange MMS"
@@ -6944,7 +7949,7 @@
mcc="260"
mnc="06"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Play MMS"
@@ -6966,6 +7971,7 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
+ type="default,ia,supl"
/>
<apn carrier="Truphone"
@@ -6974,7 +7980,7 @@
mnc="33"
apn="truphone.com"
mmsc="http://mmsc.truphone.com:1981/mm1"
- type="default,supl,mms,dun"
+ type="default,ia,supl,mms,dun"
mvno_type="gid"
mvno_match_data="547275554B3030656E"
/>
@@ -6999,14 +8005,14 @@
mmsc="http://mmsc.rebtel.com"
mmsproxy="185.114.248.80"
mmsport="8080"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="Telekom Internet"
- carrier_id = "2395"
+ carrier_id = "3"
mcc="262"
mnc="01"
- apn="internet.telekom"
+ apn="internet.v6.telekom"
user="telekom"
password="telekom"
authtype="1"
@@ -7014,24 +8020,19 @@
protocol="IPV4V6"
/>
- <apn carrier="Telekom Internet"
- carrier_id = "2395"
+ <apn carrier="Telekom IMS"
+ carrier_id = "3"
mcc="262"
mnc="01"
- 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"
+ apn="ims"
+ type="ims"
protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ user_visible="false"
/>
- <apn carrier="Telekom Internet"
- carrier_id = "2395"
+ <apn carrier="HOS"
+ carrier_id = "3"
mcc="262"
mnc="01"
apn="hos"
@@ -7040,9 +8041,8 @@
mmsc="http://mms.t-mobile.de/servlets/mms"
mmsproxy="109.237.176.193"
mmsport="8008"
- bearer_bitmask="18"
authtype="1"
- type="mms"
+ type="xcap,mms"
protocol="IPV4V6"
user_visible="false"
/>
@@ -7060,7 +8060,51 @@
mmsport="8008"
mvno_match_data="debitel"
mvno_type="spn"
- protocol="IP"
+ />
+
+ <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"
/>
<apn carrier="Vodafone DE"
@@ -7088,7 +8132,7 @@
mcc="262"
mnc="02"
apn="web.vodafone.de"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Vodafone DE-IMS"
@@ -7098,6 +8142,8 @@
apn="ims"
type="ims"
protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ user_visible="false"
/>
<apn carrier="E-Plus Internet"
@@ -7108,7 +8154,7 @@
user="eplus"
password="internet"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="E-Plus MMS"
@@ -7133,11 +8179,102 @@
user="mvno"
password="mvno"
authtype="1"
- type="default,supl"
+ type="default,ia,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"
@@ -7145,7 +8282,7 @@
mmsc="http://10.81.0.7:8002"
mmsproxy="82.113.100.5"
mmsport="8080"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
mvno_match_data="2620739"
mvno_type="imsi"
/>
@@ -7158,6 +8295,7 @@
type="ims"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
+ user_visible="false"
/>
<apn carrier="o2 Internet Prepaid"
@@ -7167,7 +8305,7 @@
mmsc="http://10.81.0.7:8002"
mmsproxy="82.113.100.6"
mmsport="8080"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
mvno_match_data="2620749"
mvno_type="imsi"
/>
@@ -7180,7 +8318,7 @@
mmsc="http://10.81.0.7:8002"
mmsproxy="82.113.100.6"
mmsport="8080"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
mvno_match_data="26207515"
mvno_type="imsi"
/>
@@ -7193,7 +8331,7 @@
mmsc="http://10.81.0.7:8002"
mmsproxy="82.113.100.6"
mmsport="8080"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
mvno_match_data="26207520"
mvno_type="imsi"
/>
@@ -7206,11 +8344,89 @@
mmsc="http://10.81.0.7:8002"
mmsproxy="82.113.100.8"
mmsport="8080"
- type="default,supl,mms"
+ type="default,ia,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"
@@ -7229,7 +8445,7 @@
user="mvno"
password="mvno"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="26220"
mvno_type="imsi"
/>
@@ -7240,7 +8456,7 @@
mnc="42"
apn="truphone.com"
mmsc="http://mmsc.truphone.com:1981/mm1"
- type="default,supl,mms,dun"
+ type="default,ia,supl,mms,dun"
mvno_type="gid"
mvno_match_data="547275554B3030656E"
/>
@@ -7266,6 +8482,7 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
+ type="default,ia,supl"
/>
<apn carrier="Vodafone Net2"
@@ -7285,7 +8502,7 @@
mmsc="http://mms.vodafone.pt/servlets/mms"
mmsproxy="iproxy.vodafone.pt"
mmsport="80"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="vodafone P dun"
@@ -7312,7 +8529,7 @@
mmsc="http://mmsc:10021/mmsc"
mmsproxy="62.169.66.5"
mmsport="8799"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="Optimus HotSpot"
@@ -7332,6 +8549,7 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
+ type="default,ia,supl"
/>
<apn carrier="tmn internet"
@@ -7347,7 +8565,7 @@
mcc="268"
mnc="06"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="mms tmn"
@@ -7386,14 +8604,14 @@
password="wap"
proxy="194.154.192.98"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MTXC"
mcc="270"
mnc="02"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Tango WAP"
@@ -7405,7 +8623,7 @@
password="tango"
proxy="130.244.196.90"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Tango MMS"
@@ -7428,7 +8646,7 @@
apn="netgprs.com"
user="tsl"
password="tsl"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="BB00"
mvno_type="gid"
/>
@@ -7440,7 +8658,7 @@
apn="netgprs.com"
user="tsl"
password="tsl"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="LU-Transatel"
mvno_type="spn"
/>
@@ -7453,7 +8671,7 @@
mmsc="http://mms.orange.lu"
mmsproxy="212.88.139.44"
mmsport="8080"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="Vodafone IE"
@@ -7461,7 +8679,7 @@
mcc="272"
mnc="01"
apn="live.vodafone.com"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Vodafone IE-MMS"
@@ -7494,7 +8712,7 @@
mmsc="http://mms.three.ie"
mmsproxy="62.40.32.40"
mmsport="8080"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="O2.ie Mobile Hotspot"
@@ -7514,7 +8732,7 @@
user="my"
password="wap"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Meteor MMS"
@@ -7539,7 +8757,7 @@
mmsc="http://mms.um.3ireland.ie:10021/mmsc"
mmsproxy="mms.3ireland.ie"
mmsport="8799"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="Tesco"
@@ -7550,7 +8768,7 @@
mmsc="http://mmc1/servlets/mms"
mmsproxy="10.1.11.19"
mmsport="8080"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
mvno_match_data="0A"
mvno_type="gid"
/>
@@ -7564,6 +8782,7 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
+ type="default,ia,supl"
/>
<apn carrier="Siminn Internet"
@@ -7571,7 +8790,7 @@
mcc="274"
mnc="01"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Siminn MMS"
@@ -7590,7 +8809,7 @@
mcc="274"
mnc="02"
apn="gprs.is"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Vodafone MMS"
@@ -7610,7 +8829,7 @@
mnc="03"
apn="gprs.is"
authtype="0"
- type="default,supl,fota,dun"
+ type="default,ia,supl,fota,dun"
/>
<apn carrier="Vodafone MMS"
@@ -7643,7 +8862,7 @@
apn="net.nova.is"
proxy="10.10.2.60"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Vodafone MT"
@@ -7653,7 +8872,7 @@
apn="internet"
user="internet"
password="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Vodafone MT-MMS"
@@ -7675,7 +8894,7 @@
mmsc="http://mmsc.cyta.com.cy"
mmsproxy="212.31.96.161"
mmsport="8080"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="MTN MMS"
@@ -7696,7 +8915,7 @@
mcc="280"
mnc="10"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="PrimeTel"
@@ -7705,7 +8924,7 @@
mnc="20"
apn="ip.primetel"
mmsc="http://mms.primetel"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="Orange Armenia MMS"
@@ -7725,7 +8944,7 @@
mcc="283"
mnc="10"
apn="Internet"
- type="default"
+ type="default,ia"
authtype="1"
/>
@@ -7734,7 +8953,7 @@
mcc="284"
mnc="01"
apn="inet-gprs.mtel.bg"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MTel MMS"
@@ -7759,7 +8978,7 @@
user="vivacom"
password="vivacom"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Vivacom MMS"
@@ -7782,7 +9001,7 @@
mnc="05"
apn="telenorbg"
authtype="0"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Telenor MMS"
@@ -7803,7 +9022,7 @@
mcc="284"
mnc="11"
apn="bulsat.com"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MAX TELECOM"
@@ -7811,7 +9030,7 @@
mcc="284"
mnc="13"
apn="apn.maxtelecom.bg"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="TURKCELL INTERNET"
@@ -7819,7 +9038,7 @@
mcc="286"
mnc="01"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="TURKCELL MMS"
@@ -7842,7 +9061,7 @@
mnc="02"
apn="internet"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Vodafone MMS"
@@ -7865,7 +9084,7 @@
mnc="03"
apn="internet"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="AVEA MMS"
@@ -7887,7 +9106,7 @@
mcc="290"
mnc="01"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Tele MMS"
@@ -7909,7 +9128,7 @@
user="simobil"
password="internet"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Si.mobil MMS"
@@ -7926,6 +9145,27 @@
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"
@@ -7937,7 +9177,7 @@
mmsc="http://mms.mobitel.si/servlets/mms"
mmsproxy="213.229.249.40"
mmsport="8080"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="T2"
@@ -7948,7 +9188,7 @@
mmsc="http://www.mms.t-2.net:8002"
mmsproxy="172.20.18.137"
mmsport="8080"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="Tusmobil Internet"
@@ -7959,7 +9199,7 @@
user="tusmobil"
password="internet"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Tusmobil MMS"
@@ -7986,7 +9226,7 @@
mmsport="8080"
mvno_type="imsi"
mvno_match_data="29370029xxxxxxx"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="T-Mobile MK Internet"
@@ -8004,7 +9244,8 @@
apn="internet"
user="internet"
password="t-mobile"
- type="default,supl"
+ authtype="1"
+ type="default,ia,supl"
/>
<apn carrier="T-Mobile MK MMS"
@@ -8017,6 +9258,7 @@
mmsc="http://mms.t-mobile.com.mk"
mmsproxy="62.162.155.227"
mmsport="8080"
+ authtype="1"
type="mms"
/>
@@ -8029,7 +9271,7 @@
password="Internet"
proxy="http://wap.planet.mk"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Cosmofon MMS"
@@ -8052,7 +9294,7 @@
password="vipoperator"
proxy="78.40.0.1"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS"
@@ -8077,6 +9319,7 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
+ type="default,ia,supl"
/>
<apn carrier="EMnify"
@@ -8086,7 +9329,7 @@
apn="em"
mvno_match_data="2950509"
mvno_type="imsi"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="EMnify"
@@ -8094,7 +9337,7 @@
mcc="295"
mnc="09"
apn="em"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="BICS"
@@ -8104,36 +9347,18 @@
apn="bicsapn"
mvno_match_data="BICS"
mvno_type="spn"
- 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"
+ type="default,ia"
/>
<apn carrier="T-Mobile Internet"
- carrier_id = "2088"
+ carrier_id = "2363"
mcc="297"
mnc="02"
- apn="tmcg-wnw"
+ apn="tmcg-4g"
user="38267"
password="38267"
- proxy="10.0.5.19"
- port="8080"
- type="default,supl"
- mvno_match_data="Telekom.me"
- mvno_type="spn"
+ authtype="1"
+ type="default,ia,supl"
/>
<apn carrier="TELUS"
@@ -8141,7 +9366,7 @@
mcc="302"
mnc="220"
apn="sp.telus.com"
- type="default,mms,supl"
+ type="default,ia,mms,supl"
mmsc="http://aliasredirect.net/proxy/mmsc"
mmsproxy="mmscproxy.mobility.ca"
mmsport="8799"
@@ -8156,7 +9381,6 @@
apn="isp.telus.com"
server="*"
type="dun"
- protocol="IPV4"
mvno_match_data="5455"
mvno_type="gid"
/>
@@ -8166,7 +9390,7 @@
mcc="302"
mnc="220"
apn="sp.koodo.com"
- type="default,mms,supl"
+ type="default,ia,mms,supl"
mmsc="http://aliasredirect.net/proxy/koodo/mmsc"
mmsproxy="mmscproxy.mobility.ca"
mmsport="8799"
@@ -8181,7 +9405,6 @@
apn="sp.koodo.com"
server="*"
type="dun"
- protocol="IPV4"
mvno_match_data="4B4F"
mvno_type="gid"
/>
@@ -8191,7 +9414,7 @@
mcc="302"
mnc="220"
apn="sp.mb.com"
- type="default,mms,supl"
+ type="default,ia,mms,supl"
mmsc="http://aliasredirect.net/proxy/mb/mmsc"
mmsproxy="mmscproxy.mobility.ca"
mmsport="8799"
@@ -8205,7 +9428,6 @@
mnc="220"
apn="isp.mb.com"
type="dun"
- protocol="IPV4"
mvno_type="gid"
mvno_match_data="5043"
/>
@@ -8215,7 +9437,7 @@
mcc="302"
mnc="220"
apn="sp.mb.com"
- type="default,mms,supl,fota,hipri"
+ type="default,ia,mms,supl,fota,hipri"
mmsc="http://aliasredirect.net/proxy/mb/mmsc"
mmsproxy="mmscproxy.mobility.ca"
mmsport="8799"
@@ -8229,7 +9451,6 @@
mnc="220"
apn="isp.mb.com"
type="dun"
- protocol="IPV4"
mvno_type="gid"
mvno_match_data="4D4F"
/>
@@ -8241,7 +9462,6 @@
apn="isp.telus.com"
server="*"
type="dun"
- protocol="IPV4"
mvno_match_data="5455"
mvno_type="gid"
/>
@@ -8253,7 +9473,6 @@
apn="sp.koodo.com"
server="*"
type="dun"
- protocol="IPV4"
mvno_match_data="4B4F"
mvno_type="gid"
/>
@@ -8264,33 +9483,11 @@
mnc="221"
apn="isp.mb.com"
type="dun"
- protocol="IPV4"
mvno_type="gid"
mvno_match_data="5043"
/>
- <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"
+ <apn carrier="Eastlink MMS"
carrier_id = "2252"
mcc="302"
mnc="270"
@@ -8299,14 +9496,29 @@
mmsproxy="10.232.12.49"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
/>
- <apn carrier="Internet"
+ <apn carrier="Eastlink Internet"
carrier_id = "2252"
mcc="302"
mnc="270"
apn="wisp.mobi.eastlink.ca"
- type="default,supl"
+ 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"
/>
<apn carrier="Rogers IMS"
@@ -8328,7 +9540,6 @@
mvno_match_data="DD"
mvno_type="gid"
protocol="IPV4V6"
- roaming_protocol="IP"
/>
<apn carrier="Fido Internet"
@@ -8336,14 +9547,13 @@
mcc="302"
mnc="370"
apn="ltemobile.apn"
- type="default,mms,supl,fota,hipri"
+ type="default,ia,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"
@@ -8358,39 +9568,12 @@
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.windmobile.ca"
- type="default,supl"
+ apn="internet.freedommobile.ca"
+ type="default,ia,supl"
protocol="IPV4V6"
/>
@@ -8398,8 +9581,8 @@
carrier_id = "1895"
mcc="302"
mnc="490"
- apn="mms.windmobile.ca"
- mmsc="http://mms.windmobile.ca"
+ apn="mms.freedommobile.ca"
+ mmsc="http://mms.freedommobile.ca"
mmsproxy="74.115.197.70"
mmsport="8080"
type="mms"
@@ -8411,34 +9594,19 @@
mnc="500"
apn="media.ng"
mmsc="http://media.videotron.com"
- 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"
+ authtype="1"
+ type="default,ia,supl,mms"
/>
- <apn carrier="Bell Mobility"
+ <apn carrier="Bell Internet"
carrier_id = "576"
mcc="302"
mnc="610"
apn="pda.bell.ca"
- type="default,mms,supl"
+ type="default,ia,mms,supl"
+ authtype="2"
mmsc="http://mms.bell.ca/mms/wapenc"
+ protocol="IPV4V6"
/>
<apn carrier="Bell Mobility IMS"
@@ -8451,18 +9619,26 @@
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,mms,supl"
+ type="default,ia,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"
@@ -8471,7 +9647,6 @@
apn="internet.mts"
type="dun"
protocol="IPV4V6"
- roaming_protocol="IP"
mvno_type="spn"
mvno_match_data="MTS"
/>
@@ -8481,7 +9656,7 @@
mcc="302"
mnc="720"
apn="ltemobile.apn"
- type="default,mms,supl"
+ type="default,ia,mms,supl"
mmsproxy="mmsproxy.rogers.com"
mmsc="http://mms.gprs.rogers.com"
mmsport="80"
@@ -8499,21 +9674,34 @@
roaming_protocol="IPV4V6"
/>
- <apn carrier="chatr"
+ <apn carrier="Chatr Internet"
carrier_id = "2055"
mcc="302"
mnc="720"
apn="chatrweb.apn"
- type="default,mms,supl"
+ type="default,ia,mms,supl"
mmsc="http://mms.chatrwireless.com"
- mmsproxy="205.151.11.11"
+ mmsproxy="mmsproxy.chatrwireless.com"
mmsport="80"
- proxy="205.151.11.11"
- port="80"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
- mvno_match_data="302720x94"
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"
/>
<apn carrier="Chatr Tethering"
@@ -8525,7 +9713,7 @@
mvno_type="imsi"
mvno_match_data="302720x94"
protocol="IPV4V6"
- roaming_protocol="IP"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Tbaytel Tethering"
@@ -8535,19 +9723,31 @@
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,mms,supl,fota,hipri"
+ type="default,ia,mms,supl"
protocol="IPV4V6"
- roaming_protocol="IP"
mmsc="http://mms.gprs.rogers.com"
mmsproxy="mmsproxy.rogers.com"
mmsport="80"
@@ -8562,67 +9762,81 @@
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,mms,supl,fota,hipri"
+ type="default,ia,mms,supl"
protocol="IPV4V6"
- roaming_protocol="IP"
mmsc="http://mms.gprs.rogers.com"
mmsproxy="mmsproxy.rogers.com"
mmsport="80"
- mvno_type="spn"
- mvno_match_data="CITYFONE"
+ mvno_type="imsi"
+ mvno_match_data="302720x97"
/>
- <apn carrier="Rogers Tethering"
+ <apn carrier="Cityfone Internet"
+ carrier_id = "2057"
mcc="302"
mnc="720"
- apn="ltedata.apn"
- type="dun"
- mvno_match_data="ROGERS"
- mvno_type="spn"
+ apn="ltemobile.apn"
+ type="default,ia,mms,supl"
protocol="IPV4V6"
- roaming_protocol="IP"
+ mmsc="http://mms.gprs.rogers.com"
+ mmsproxy="mmsproxy.rogers.com"
+ mmsport="80"
+ mvno_type="gid"
+ mvno_match_data="CC"
/>
- <apn carrier="Rogers Internet"
+ <apn carrier="Ztar Internet"
+ carrier_id = "2056"
mcc="302"
mnc="720"
- apn="ltemobile.apn"
- type="default,mms,supl,fota,hipri"
+ apn="rogers-core-appl1.apn"
+ type="default,ia,mms,supl"
+ mmsc="http://mms.gprs.rogers.com"
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_match_data="ROGERS"
- mvno_type="spn"
- protocol="IPV4V6"
- roaming_protocol="IP"
+ mvno_type="gid"
+ mvno_match_data="D4"
/>
- <apn carrier="SaskTel"
+ <apn carrier="SaskTel Internet"
carrier_id = "580"
mcc="302"
mnc="780"
apn="pda.stm.sk.ca"
- type="default,mms,supl"
+ type="default,ia,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,mms,hipri,dun,supl"
+ type="default,ia,mms,hipri,dun,supl"
mvno_type="spn"
mvno_match_data="Tracfone"
authtype="3"
@@ -8701,7 +9915,7 @@
mmsport="8514"
mvno_type="spn"
mvno_match_data="bluewire"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -8716,7 +9930,7 @@
mmsport="8514"
mvno_type="spn"
mvno_match_data="bluewire"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -8795,7 +10009,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="flatwire"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -8810,7 +10024,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="flatwire"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -8889,7 +10103,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="mobipcs"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -8904,7 +10118,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="mobipcs"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -8983,7 +10197,7 @@
mmsport="8081"
mvno_type="spn"
mvno_match_data="mobilenation"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -8998,7 +10212,7 @@
mmsport="8081"
mvno_type="spn"
mvno_match_data="mobilenation"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -9077,7 +10291,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="mohave"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -9092,7 +10306,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="mohave"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -9171,7 +10385,7 @@
mmsport="80"
mvno_type="spn"
mvno_match_data="Peopleswire"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -9186,7 +10400,7 @@
mmsport="80"
mvno_type="spn"
mvno_match_data="Peopleswire"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -9265,7 +10479,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="revol"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -9280,7 +10494,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="revol"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -9375,7 +10589,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="distribution"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -9390,7 +10604,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="distribution"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -9403,7 +10617,7 @@
apn="union.wap.com"
proxy="166.230.4.83"
port="8799"
- type="default,hipri,dun,supl"
+ type="default,ia,hipri,dun,supl"
/>
<apn carrier="Union Wireless MMS"
@@ -9427,7 +10641,7 @@
mnc="004"
apn="internet"
authtype="3"
- type="default,mms,supl,fota,cbs"
+ type="default,ia,mms,supl,fota,cbs"
mmsc="http://mms.vtext.com/servlets/mms"
protocol="IPV4V6"
bearer_bitmask="4|5|6|7|8|12"
@@ -9438,7 +10652,7 @@
mnc="004"
apn="internet"
authtype="3"
- type="default,mms,supl,fota,cbs,dun"
+ type="default,ia,mms,supl,fota,cbs,dun"
mmsc="http://mms.vtext.com/servlets/mms"
protocol="IPV4V6"
bearer_bitmask="4|5|6|7|8|12"
@@ -9450,7 +10664,7 @@
mcc="310"
mnc="004"
apn="VZWINTERNET"
- type="default,dun"
+ type="default,ia,dun"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13|14"
@@ -9512,7 +10726,7 @@
mnc="028"
apn="VZWINTERNET"
mmsc="http://mms.vtext.com/servlets/mms"
- type="default,dun"
+ type="default,ia,dun"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
/>
@@ -9548,27 +10762,6 @@
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"
@@ -9642,7 +10835,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="itewire"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -9657,7 +10850,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="itewire"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -9742,7 +10935,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="etex"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -9758,7 +10951,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="etex"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -9831,7 +11024,7 @@
mmsc="http://mmsc.mta.dataonair.net/"
mmsproxy="209.4.229.85"
mmsport="6672"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -9845,7 +11038,7 @@
mmsc="http://mmsc.mta.dataonair.net/"
mmsproxy="209.4.229.85"
mmsport="6672"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -9924,7 +11117,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="alaskacomm"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -9963,7 +11156,7 @@
server="http://w.iot1.com/corr/wml.php"
proxy="74.112.57.172"
port="9201"
- type="default"
+ type="default,ia"
/>
<apn carrier="CorrMMS"
@@ -9982,7 +11175,7 @@
mcc="310"
mnc="090"
apn="isp"
- type="default,supl"
+ type="default,ia,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
/>
@@ -10029,7 +11222,7 @@
mcc="310"
mnc="100"
apn="isp.plateau"
- type="default,supl"
+ type="default,ia,supl"
/>
<!-- Need two APNs for CDMA technologies: a default that is used normally -->
@@ -10042,7 +11235,7 @@
mcc="310"
mnc="120"
apn="sprint"
- type="default,supl,mms,ims,cbs"
+ type="default,ia,supl,mms,ims,cbs"
mmsc="http://mms.sprintpcs.com"
mmsproxy="68.28.31.7"
mmsport="80"
@@ -10054,7 +11247,7 @@
mcc="310"
mnc="120"
apn="sprint"
- type="default,supl,mms,ims,cbs,dun"
+ type="default,ia,supl,mms,ims,cbs,dun"
mmsc="http://mms.sprintpcs.com"
mmsproxy="68.28.31.7"
mmsport="80"
@@ -10084,7 +11277,7 @@
mmsc="http://mms.sprintpcs.com"
mmsproxy="68.28.31.7"
mmsport="80"
- type="default,supl,mms,dun"
+ type="default,ia,supl,mms,dun"
bearer_bitmask="1|2|3|9|10|11|15|16"
/>
@@ -10093,7 +11286,7 @@
mcc="310"
mnc="130"
apn="home.cww.com"
- type="default,supl,mms,ims,cbs"
+ type="default,ia,supl,mms,ims,cbs"
mmsc="http://mms.cwwmms.com/cww/mms.php"
mmsport="80"
bearer_bitmask="4|5|6|7|8|12"
@@ -10121,7 +11314,7 @@
mmsc="http://mmsc.aiowireless.net"
mmsproxy="proxy.aiowireless.net"
mmsport="80"
- type="default,mms,fota,hipri,supl"
+ type="default,ia,mms,fota,hipri,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
/>
@@ -10170,7 +11363,7 @@
mnc="160"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -10193,7 +11386,7 @@
mcc="310"
mnc="170"
apn="isp.cingular"
- type="default,supl"
+ type="default,ia,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
/>
@@ -10220,7 +11413,7 @@
apn="internet.wcc.net"
user="13257630000"
password="mmsc"
- type="default"
+ type="default,ia"
/>
<apn carrier="WCW-MMS"
@@ -10280,7 +11473,7 @@
mnc="200"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -10330,7 +11523,7 @@
mnc="210"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -10380,7 +11573,7 @@
mnc="220"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -10430,7 +11623,7 @@
mnc="230"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -10480,7 +11673,7 @@
mnc="240"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -10530,7 +11723,7 @@
mnc="250"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -10628,7 +11821,7 @@
mnc="260"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D38"
@@ -10640,7 +11833,7 @@
mcc="310"
mnc="260"
apn="simple"
- type="default,mms,supl,hipri,fota"
+ type="default,ia,mms,supl,hipri,fota"
protocol="IP"
roaming_protocol="IP"
mmsc="http://smpl.mms.msg.eng.t-mobile.com/mms/wapenc"
@@ -10653,7 +11846,7 @@
mcc="310"
mnc="260"
apn="wap.tracfone"
- type="default,mms,supl,hipri,fota"
+ type="default,ia,mms,supl,hipri,fota"
protocol="IP"
roaming_protocol="IP"
mmsc="http://mms.tracfone.com"
@@ -10666,7 +11859,7 @@
mcc="310"
mnc="260"
apn="wap.tracfone"
- type="default,mms,supl,hipri,fota"
+ type="default,ia,mms,supl,hipri,fota"
protocol="IP"
roaming_protocol="IP"
mmsc="http://mms.tracfone.com"
@@ -10686,7 +11879,7 @@
mmsc="http://wholesale.mmsmvno.com/mms/wapenc"
mmsproxy=""
mmsport="80"
- type="default,mms,supl,hipri"
+ type="default,ia,mms,supl,hipri"
mvno_type="gid"
mvno_match_data="2AC9"
/>
@@ -10734,7 +11927,7 @@
mnc="270"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -10746,7 +11939,38 @@
mcc="310"
mnc="280"
apn="agms"
- type="default,supl"
+ 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"
/>
<apn carrier="T-Mobile US 300"
@@ -10792,7 +12016,7 @@
mnc="300"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -10805,7 +12029,7 @@
mnc="300"
apn="truphone.com"
mmsc="http://mmsc.truphone.com:1981/mm1"
- type="default,supl,mms,dun"
+ type="default,ia,supl,mms,dun"
mvno_type="gid"
mvno_match_data="547275554B3030656E"
/>
@@ -10865,7 +12089,7 @@
mnc="310"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -10877,7 +12101,7 @@
mcc="310"
mnc="320"
apn="isp.cellularoneaz.net"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Cellular One ClearSky MMS"
@@ -10964,7 +12188,7 @@
mmsport="8080"
mvno_type="spn"
mvno_match_data="alltel2"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -10979,7 +12203,7 @@
mmsport="8080"
mvno_type="spn"
mvno_match_data="alltel2"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -11052,7 +12276,7 @@
mmsc="http://mms1.zsend.com"
mmsproxy=""
mmsport=""
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -11066,7 +12290,7 @@
mmsc="http://mms1.zsend.com"
mmsproxy=""
mmsport=""
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -11079,7 +12303,7 @@
apn="proxy"
mmsc="http://mmsc.cingular.com/"
mmsproxy="wireless.cingular.com"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
/>
@@ -11102,7 +12326,7 @@
mcc="310"
mnc="380"
apn="agms.nl.gmm"
- type="default"
+ type="default,ia"
mvno_type="gid"
mvno_match_data="50FF"
/>
@@ -11112,7 +12336,7 @@
mcc="310"
mnc="380"
apn="gigsky"
- type="default"
+ type="default,ia"
mvno_type="spn"
mvno_match_data="GigSky"
/>
@@ -11132,10 +12356,8 @@
<apn carrier="ATT Nextgenphone"
carrier_id = "1187"
- mcc="310"
- mnc="410"
apn="nxtgenphone"
- type="default,mms,supl,fota,hipri"
+ type="default,ia,mms,supl,fota,hipri"
mmsc="http://mmsc.mobile.att.net"
mmsproxy="proxy.mobile.att.net"
mmsport="80"
@@ -11143,10 +12365,8 @@
roaming_protocol="IPV4V6"
/>
- <apn carrier="IMS"
+ <apn carrier="ATT IMS"
carrier_id = "1187"
- mcc="310"
- mnc="410"
apn="ims"
type="ims"
protocol="IPV4V6"
@@ -11155,10 +12375,8 @@
<apn carrier="ATT Phone"
carrier_id = "1187"
- mcc="310"
- mnc="410"
apn="phone"
- type="default,mms,supl,fota,hipri"
+ type="default,ia,mms,supl,fota,hipri"
mmsc="http://mmsc.mobile.att.net"
mmsproxy="proxy.mobile.att.net"
mmsport="80"
@@ -11168,15 +12386,13 @@
<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,supl,mms"
+ type="default,ia,supl,mms"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
/>
@@ -11189,7 +12405,7 @@
mmsc="http://mmsc.mobile.att.net"
mmsproxy="proxy.mobile.att.net"
mmsport="80"
- type="default,mms,supl"
+ type="default,ia,mms,supl"
protocol="IP"
mtusize="1410"
mvno_type="gid"
@@ -11201,7 +12417,7 @@
mcc="310"
mnc="410"
apn="tfdata"
- type="default,mms,supl,hipri,fota"
+ type="default,ia,mms,supl,hipri,fota"
protocol="IP"
roaming_protocol="IP"
mmsc="http://mms-tf.net"
@@ -11216,7 +12432,7 @@
mcc="310"
mnc="410"
apn="tfdata"
- type="default,mms,supl,hipri,fota"
+ type="default,ia,mms,supl,hipri,fota"
protocol="IP"
roaming_protocol="IP"
mmsc="http://mms-tf.net"
@@ -11226,6 +12442,37 @@
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"
@@ -11234,7 +12481,7 @@
mmsc="http://mms.gocbw.com:8088/mms"
mmsproxy="216.68.79.202"
mmsport="80"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="gci"
@@ -11310,7 +12557,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="gci"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -11325,7 +12572,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="gci"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -11336,7 +12583,7 @@
mcc="310"
mnc="450"
apn="internet.vedge.com"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Viaero MMS"
@@ -11355,7 +12602,7 @@
mcc="310"
mnc="470"
apn="isp.cingular"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MediaNet"
@@ -11368,7 +12615,7 @@
mmsc="http://mmsc.cingular.com"
mmsproxy="66.209.11.32"
mmsport="8080"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="nTelos Ota"
@@ -11400,7 +12647,7 @@
mcc="310"
mnc="470"
apn="internet.4g.ntelos.com"
- type="default,supl,hipri,mms"
+ type="default,ia,supl,hipri,mms"
mmsc="http://mms.ntelospcs.net"
server="*"
protocol="IPV4V6"
@@ -11450,7 +12697,7 @@
mcc="310"
mnc="480"
apn="isp.cingular"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MediaNet"
@@ -11463,7 +12710,7 @@
mmsc="http://mmsc.cingular.com"
mmsproxy="66.209.11.32"
mmsport="8080"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="T-Mobile US 490"
@@ -11509,7 +12756,7 @@
mnc="490"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -11581,7 +12828,7 @@
mnc="530"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -11590,13 +12837,11 @@
<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,mms,supl,fota,hipri"
+ type="default,ia,mms,supl,fota,hipri"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
mtu="1410"
@@ -11630,7 +12875,7 @@
mcc="310"
mnc="570"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Cellular One MMS"
@@ -11711,7 +12956,7 @@
mmsc="http://mms.inland3g.com/inland/mms.php"
mmsproxy=""
mmsport=""
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -11725,7 +12970,7 @@
mmsc="http://mms.inland3g.com/inland/mms.php"
mmsproxy=""
mmsport=""
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -11785,7 +13030,7 @@
mnc="590"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -11859,7 +13104,7 @@
mmsc="http://mms.cellcom.com/cellcom/mms.php"
mmsproxy=""
mmsport=""
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -11873,7 +13118,7 @@
mmsc="http://mms.cellcom.com/cellcom/mms.php"
mmsproxy=""
mmsport=""
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -11884,7 +13129,7 @@
mcc="310"
mnc="610"
apn="internet.epictouch"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="EpicMMS"
@@ -11940,7 +13185,7 @@
mnc="640"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -11990,7 +13235,7 @@
mnc="660"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -12003,7 +13248,7 @@
mnc="690"
apn="truphone.com"
mmsc="http://mmsc.truphone.com:1981/mm1"
- type="default,supl,mms,dun"
+ type="default,ia,supl,mms,dun"
mvno_type="gid"
mvno_match_data="547275554B3030656E"
/>
@@ -12030,30 +13275,6 @@
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"
@@ -12121,7 +13342,7 @@
mmsc="http://mms.ekn.com"
mmsproxy=""
mmsport="80"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -12135,7 +13356,7 @@
mmsc="http://mms.ekn.com"
mmsproxy=""
mmsport="80"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -12145,7 +13366,7 @@
mcc="310"
mnc="770"
apn="i2.iwireless.com"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Web 1"
@@ -12155,7 +13376,7 @@
apn="wap1.iwireless.com"
proxy="209.4.229.31"
port="9401"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Picture Messaging"
@@ -12212,7 +13433,7 @@
mnc="800"
apn="fast.metropcs.com"
mmsc="http://metropcs.mmsmvno.com/mms/wapenc"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
protocol="IPV6"
roaming_protocol="IP"
mvno_match_data="6D"
@@ -12298,7 +13519,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="nepa"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -12314,7 +13535,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="nepa"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -12325,7 +13546,7 @@
mcc="310"
mnc="840"
apn="isp"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS"
@@ -12355,7 +13576,7 @@
mcc="310"
mnc="880"
apn="wapdtcw.com"
- type="default"
+ type="default,ia"
proxy="204.181.155.218"
port="8080"
/>
@@ -12436,7 +13657,7 @@
mmsc="http://mmsc.midrivers.csky.us:6672/"
mmsproxy="209.4.229.27"
mmsport="9401"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -12450,7 +13671,7 @@
mmsc="http://mmsc.midrivers.csky.us:6672/"
mmsproxy="209.4.229.27"
mmsport="9401"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -12463,7 +13684,7 @@
mmsc="mms.firstcellular.net/mmsc"
mmsproxy="10.101.1.5"
mmsport="3128"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="jamesvalley"
@@ -12533,7 +13754,7 @@
mmsc="http://m.iot1.com/jamesvalley/mms.php"
mmsproxy="m.iot1.com"
mmsport="9201"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -12547,7 +13768,7 @@
mmsc="http://m.iot1.com/jamesvalley/mms.php"
mmsproxy="m.iot1.com"
mmsport="9201"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -12620,7 +13841,7 @@
mmsc="http://cvwmms.com/servlets/mms"
mmsproxy=""
mmsport=""
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -12634,7 +13855,7 @@
mmsc="http://cvwmms.com/servlets/mms"
mmsproxy=""
mmsport=""
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -12719,7 +13940,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="nntcwire"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -12735,7 +13956,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="nntcwire"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -12820,7 +14041,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="silverstar"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -12836,7 +14057,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="silverstar"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -12921,7 +14142,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="snakeriver"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -12937,7 +14158,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="snakeriver"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -13022,7 +14243,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="southcentral"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -13038,7 +14259,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="southcentral"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -13123,7 +14344,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="strata"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -13139,7 +14360,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="strata"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -13218,7 +14439,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="syringa"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -13233,7 +14454,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="syringa"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -13306,7 +14527,7 @@
mmsc="http://mms.thumbcell.com/thumb/mms.php"
mmsproxy=""
mmsport=""
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -13320,7 +14541,7 @@
mmsc="http://mms.thumbcell.com/thumb/mms.php"
mmsproxy=""
mmsport=""
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -13405,7 +14626,7 @@
mmsport="8080"
mvno_type="spn"
mvno_match_data="elementmobile"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -13421,7 +14642,7 @@
mmsport="8080"
mvno_type="spn"
mvno_match_data="elementmobile"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -13435,7 +14656,7 @@
mmsc="http://69.8.34.146/mms/"
mmsproxy="69.8.34.146"
mmsport="9401"
- type="default,mms"
+ type="default,ia,mms"
/>
<apn carrier="NexTech Wireless"
@@ -13528,7 +14749,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="sprocket"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -13544,7 +14765,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="sprocket"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -13555,7 +14776,7 @@
mcc="311"
mnc="190"
apn="isp.cellular1.net"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Tether"
@@ -13582,7 +14803,7 @@
mcc="311"
mnc="210"
apn="internet.farmerswireless.com"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Farmers MMS"
@@ -13599,7 +14820,7 @@
mcc="311"
mnc="220"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
authtype="3"
roaming_protocol="IPV4V6"
@@ -13613,7 +14834,7 @@
mnc="220"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -13626,7 +14847,7 @@
mnc="220"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -13638,7 +14859,7 @@
mnc="221"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -13650,7 +14871,7 @@
mnc="221"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -13662,7 +14883,7 @@
mcc="311"
mnc="220"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -13675,7 +14896,7 @@
mcc="311"
mnc="221"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -13687,7 +14908,7 @@
mcc="311"
mnc="221"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -13699,7 +14920,7 @@
mcc="311"
mnc="221"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -13712,7 +14933,7 @@
mnc="222"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -13724,7 +14945,7 @@
mnc="222"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -13736,7 +14957,7 @@
mcc="311"
mnc="222"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -13749,7 +14970,7 @@
mnc="223"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -13761,7 +14982,7 @@
mnc="223"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -13773,7 +14994,7 @@
mcc="311"
mnc="223"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -13786,7 +15007,7 @@
mnc="224"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -13798,7 +15019,7 @@
mnc="224"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -13810,7 +15031,7 @@
mcc="311"
mnc="224"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -13823,7 +15044,7 @@
mcc="311"
mnc="225"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -13836,7 +15057,7 @@
mnc="225"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
carrier_enabled="true"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -13849,7 +15070,7 @@
mnc="225"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
carrier_enabled="true"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -13862,7 +15083,7 @@
mnc="226"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -13874,7 +15095,7 @@
mnc="226"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -13886,7 +15107,7 @@
mcc="311"
mnc="226"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -13899,7 +15120,7 @@
mnc="227"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -13911,7 +15132,7 @@
mnc="227"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -13923,7 +15144,7 @@
mcc="311"
mnc="227"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -13936,7 +15157,7 @@
mnc="228"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -13948,7 +15169,7 @@
mnc="228"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -13960,7 +15181,7 @@
mcc="311"
mnc="228"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -13973,7 +15194,7 @@
mnc="229"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -13985,7 +15206,7 @@
mnc="229"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -13997,7 +15218,7 @@
mcc="311"
mnc="229"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -14042,7 +15263,7 @@
mmsport=""
mmsproxy=""
mmsc="http://pix.cspire.com"
- type="default,mms"
+ type="default,ia,mms"
protocol="IPV4V6"
/>
@@ -14156,7 +15377,7 @@
mmsc="http://204.181.155.217/mms/"
mmsproxy=""
mmsport=""
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -14170,7 +15391,7 @@
mmsc="http://204.181.155.217/mms/"
mmsproxy=""
mmsport=""
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -14243,7 +15464,7 @@
mmsc="http://mms.iot1.com/ivc/mms.php"
mmsproxy=""
mmsport=""
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -14257,7 +15478,7 @@
mmsc="http://mms.iot1.com/ivc/mms.php"
mmsproxy=""
mmsport=""
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -14342,7 +15563,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="nemont"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -14358,7 +15579,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="nemont"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -14369,7 +15590,7 @@
mcc="311"
mnc="370"
apn="web.gci"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="GCI MMS"
@@ -14391,7 +15612,7 @@
mnc="390"
apn="VZWINTERNET"
mmsc="http://mms.vtext.com/servlets/mms"
- type="default,dun"
+ type="default,ia,dun"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -14407,7 +15628,7 @@
mnc="390"
apn="VZWINTERNET"
mmsc="http://mms.vtext.com/servlets/mms"
- type="default,dun"
+ type="default,ia,dun"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -14576,7 +15797,7 @@
mmsc="http://mmsc.hawkeyeswitch.net/mms/"
mmsproxy=""
mmsport="80"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -14590,7 +15811,7 @@
mmsc="http://mmsc.hawkeyeswitch.net/mms/"
mmsproxy=""
mmsport="80"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -14663,7 +15884,7 @@
mmsc="http://mms.nwmcell.com/mms/"
mmsproxy=""
mmsport=""
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -14677,7 +15898,7 @@
mmsc="http://mms.nwmcell.com/mms/"
mmsproxy=""
mmsport=""
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -14756,7 +15977,7 @@
mmsport="80"
mvno_type="spn"
mvno_match_data="chatmobrsa1"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -14771,7 +15992,7 @@
mmsport="80"
mvno_type="spn"
mvno_match_data="chatmobrsa1"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -14844,7 +16065,7 @@
mmsc="http://mms.iot1.com/bluegrass/mms.php"
mmsproxy=""
mmsport=""
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -14858,7 +16079,7 @@
mmsc="http://mms.iot1.com/bluegrass/mms.php"
mmsproxy=""
mmsport=""
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -14931,7 +16152,7 @@
mmsc="http://mmsc.ptci.net"
mmsproxy=""
mmsport="6672"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -14945,7 +16166,7 @@
mmsc="http://mmsc.ptci.net"
mmsproxy=""
mmsport="6672"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -14962,7 +16183,7 @@
mnc="480"
apn="internet"
authtype="3"
- type="default,mms,supl,fota,cbs"
+ type="default,ia,mms,supl,fota,cbs"
mmsc="http://mms.vtext.com/servlets/mms"
protocol="IPV4V6"
bearer_bitmask="4|5|6|7|8|12"
@@ -14975,7 +16196,7 @@
mnc="480"
apn="internet"
authtype="3"
- type="default,mms,supl,fota,cbs,dun"
+ type="default,ia,mms,supl,fota,cbs,dun"
mmsc="http://mms.vtext.com/servlets/mms"
protocol="IPV4V6"
bearer_bitmask="4|5|6|7|8|12"
@@ -14989,7 +16210,7 @@
mcc="311"
mnc="480"
apn="VZWINTERNET"
- type="default,dun,supl"
+ type="default,ia,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="1|2|3|9|10|11|13|14|15"
@@ -15066,7 +16287,7 @@
mcc="311"
mnc="500"
apn="wap"
- type="default,mms"
+ type="default,ia,mms"
mmsc="http://mmsc.ctc.csky.us:6672/"
mmsproxy="209.4.229.46"
mmsport="9201"
@@ -15079,7 +16300,7 @@
mcc="311"
mnc="500"
apn="wap"
- type="default,mms"
+ type="default,ia,mms"
mmsc="http://mmsc.ctc.csky.us:6672/"
mmsproxy="209.4.229.46"
mmsport="9201"
@@ -15092,7 +16313,7 @@
mcc="311"
mnc="500"
apn="wap"
- type="default,mms"
+ type="default,ia,mms"
mmsc="http://mmsc.ctc.csky.us:6672/"
mmsproxy="209.4.229.46"
mmsport="9201"
@@ -15105,7 +16326,7 @@
mcc="311"
mnc="500"
apn="wap"
- type="default,mms"
+ type="default,ia,mms"
mmsc="http://mmsc.ctc.csky.us:6672/"
mmsproxy="209.4.229.46"
mmsport="9201"
@@ -15118,7 +16339,7 @@
mcc="311"
mnc="500"
apn="wap"
- type="default,mms"
+ type="default,ia,mms"
mmsc="http://mmsc.ctc.csky.us:6672/"
mmsproxy="209.4.229.46"
mmsport="9201"
@@ -15131,7 +16352,7 @@
mcc="311"
mnc="500"
apn="wap"
- type="default,mms"
+ type="default,ia,mms"
mmsc="http://mmsc.ctc.csky.us:6672/"
mmsproxy="209.4.229.46"
mmsport="9201"
@@ -15144,7 +16365,7 @@
mcc="311"
mnc="500"
apn="wap"
- type="default,mms"
+ type="default,ia,mms"
mmsc="http://mmsc.ctc.csky.us:6672/"
mmsproxy="209.4.229.46"
mmsport="9201"
@@ -15157,7 +16378,7 @@
mcc="311"
mnc="500"
apn="wap"
- type="default,mms"
+ type="default,ia,mms"
mmsc="http://mmsc.ctc.csky.us:6672/"
mmsproxy="209.4.229.46"
mmsport="9201"
@@ -15170,7 +16391,7 @@
mcc="311"
mnc="530"
apn="mms.mymobiletxt.com"
- type="default,mms"
+ type="default,ia,mms"
mmsc="http://mms2.mymobiletxt.net"
/>
@@ -15179,7 +16400,7 @@
mcc="311"
mnc="530"
apn="wap.mymobiletxt.com"
- type="default,mms"
+ type="default,ia,mms"
protocol="IP"
mmsc="http://172.16.16.103/mms/"
mmsproxy="172.16.16.102"
@@ -15192,7 +16413,7 @@
mcc="311"
mnc="580"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -15206,7 +16427,7 @@
mnc="580"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -15219,7 +16440,7 @@
mnc="580"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -15231,7 +16452,7 @@
mnc="581"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -15243,7 +16464,7 @@
mnc="581"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -15255,7 +16476,7 @@
mcc="311"
mnc="581"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -15268,7 +16489,7 @@
mnc="582"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -15280,7 +16501,7 @@
mnc="582"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -15292,7 +16513,7 @@
mcc="311"
mnc="582"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -15305,7 +16526,7 @@
mnc="583"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -15317,7 +16538,7 @@
mnc="583"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -15329,7 +16550,7 @@
mcc="311"
mnc="583"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -15342,7 +16563,7 @@
mnc="584"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -15354,7 +16575,7 @@
mnc="584"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -15366,7 +16587,7 @@
mcc="311"
mnc="584"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -15379,7 +16600,7 @@
mnc="585"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -15391,7 +16612,7 @@
mnc="585"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -15403,7 +16624,7 @@
mcc="311"
mnc="585"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -15416,7 +16637,7 @@
mnc="586"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -15428,7 +16649,7 @@
mnc="586"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -15440,7 +16661,7 @@
mcc="311"
mnc="586"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -15453,7 +16674,7 @@
mnc="587"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -15465,7 +16686,7 @@
mnc="587"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -15477,7 +16698,7 @@
mcc="311"
mnc="587"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -15490,7 +16711,7 @@
mnc="588"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -15502,7 +16723,7 @@
mnc="588"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -15514,7 +16735,7 @@
mcc="311"
mnc="588"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -15527,7 +16748,7 @@
mnc="589"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -15539,7 +16760,7 @@
mnc="589"
apn="usccinternet"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -15551,7 +16772,7 @@
mcc="311"
mnc="589"
mmsc="http://mmsc1.uscc.net/mmsc/MMS"
- type="default,mms,dun,hipri,fota"
+ type="default,ia,mms,dun,hipri,fota"
authtype="3"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -15638,7 +16859,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="gsc"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -15654,7 +16875,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="gsc"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -15727,7 +16948,7 @@
mmsc="http://mms.cox.net/cox/mms.php"
mmsproxy=""
mmsport=""
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -15741,7 +16962,7 @@
mmsc="http://mms.cox.net/cox/mms.php"
mmsproxy=""
mmsport=""
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -15826,7 +17047,7 @@
mmsport="9201"
mvno_type="spn"
mvno_match_data="srtcomm"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -15842,7 +17063,7 @@
mmsport="9201"
mvno_type="spn"
mvno_match_data="srtcomm"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -15927,7 +17148,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="unitedwireless"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -15943,7 +17164,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="unitedwireless"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -15977,7 +17198,7 @@
mmsc="http://mmsc.pinebelt.net:6672/"
mmsproxy=""
mmsport=""
- type="default,mms,supl"
+ type="default,ia,mms,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
/>
@@ -16000,7 +17221,7 @@
mcc="311"
mnc="740"
apn="akcell.mobi"
- type="default"
+ type="default,ia"
protocol="IP"
roaming_protocol="IP"
/>
@@ -16011,7 +17232,7 @@
mnc="750"
apn="CdmaNai"
authtype="3"
- type="default,mms,supl,dun"
+ type="default,ia,mms,supl,dun"
mmsc="http://mms.cleartalk.us/cleartalk/mms.php"
protocol="IPV4V6"
bearer_bitmask="6"
@@ -16021,7 +17242,7 @@
mcc="311"
mnc="750"
apn="home.netamerica.com"
- type="default,mms,supl,dun"
+ type="default,ia,mms,supl,dun"
bearer_bitmask="14"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
@@ -16034,7 +17255,7 @@
mcc="311"
mnc="882"
apn="internet.curiosity.sprint.com"
- type="default"
+ type="default,ia"
protocol="IPV4V6"
network_type_bitmask="13"
/>
@@ -16048,7 +17269,7 @@
mmsport="8081"
mmsproxy="mms.mymn3g.net"
mmsc="http://mms.mymn3g.net"
- type="default,fota,dun,mms"
+ type="default,ia,fota,dun,mms"
protocol="IPV4V6"
/>
@@ -16125,7 +17346,7 @@
mmsport="80"
mvno_type="spn"
mvno_match_data="charitonvalley"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -16140,7 +17361,7 @@
mmsport="80"
mvno_type="spn"
mvno_match_data="charitonvalley"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -16155,7 +17376,7 @@
mmsport="80"
mmsproxy=""
mmsc="http://mms.rinawireless.com"
- type="default,fota,dun,mms"
+ type="default,ia,fota,dun,mms"
protocol="IPV4V6"
/>
@@ -16168,6 +17389,7 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
+ type="default,ia,supl"
/>
<apn carrier="custer"
@@ -16249,7 +17471,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="custer"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -16265,7 +17487,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="custer"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -16344,7 +17566,7 @@
mmsport="80"
mvno_type="spn"
mvno_match_data="chatmobility"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -16359,7 +17581,7 @@
mmsport="80"
mvno_type="spn"
mvno_match_data="chatmobility"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -16402,7 +17624,7 @@
mmsport=""
mmsproxy=""
mmsc="http://mms.ntwls.net/nex-tech/mms.php"
- type="default,supl,hipri,mms"
+ type="default,ia,supl,hipri,mms"
protocol="IPV4V6"
/>
@@ -16445,7 +17667,7 @@
user="%M@dun.bluehandset.com"
password="wirelessblue"
mmsc="http://mms.blueunlimited.com"
- type="default,dun,mms"
+ type="default,ia,dun,mms"
protocol="IPV4V6"
/>
@@ -16454,7 +17676,39 @@
mcc="312"
mnc="870"
apn="gigsky"
- type="default"
+ 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"
/>
<apn carrier="openmobile"
@@ -16530,7 +17784,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="openmobile"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="13"
@@ -16545,7 +17799,7 @@
mmsport=""
mvno_type="spn"
mvno_match_data="openmobile"
- type="default,mms,dun,supl"
+ type="default,ia,mms,dun,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
bearer_bitmask="14"
@@ -16556,7 +17810,7 @@
mcc="330"
mnc="110"
apn="lte.claropr.com"
- type="default"
+ type="default,ia"
authtype="1"
/>
@@ -16590,7 +17844,7 @@
user="webgprs"
password="webgprs2002"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
@@ -16617,7 +17871,7 @@
user="movistar"
password="movistar"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Movistar MMS"
@@ -16642,7 +17896,7 @@
user="movistar"
password="movistar"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Movistar MMS"
@@ -16666,7 +17920,7 @@
apn="web.iusacellgsm.mx"
user="iusacellgsm"
password="iusacellgsm"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Iusacell MMS"
@@ -16728,7 +17982,7 @@
mnc='090'
apn='wap.nexteldata.com.mx'
authtype='0'
- type='default'
+ type='default,ia'
/>
<apn carrier="Altan"
@@ -16736,7 +17990,7 @@
mcc="334"
mnc="140"
apn="internet.altan"
- type="default"
+ type="default,ia"
user=""
password=""
/>
@@ -16756,7 +18010,7 @@
mcc="334"
mnc="140"
apn="internet.ientc.com"
- type="default"
+ type="default,ia"
user=""
password=""
mvno_type="spn"
@@ -16768,7 +18022,7 @@
mcc="334"
mnc="140"
apn="internet.newww.com"
- type="default"
+ type="default,ia"
user=""
password=""
mvno_type="spn"
@@ -16790,7 +18044,7 @@
<apn carrier="travelfy"
carrier_id="2472"
apn="travelfy"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Megacable"
@@ -16798,7 +18052,7 @@
mcc="334"
mnc="140"
apn="mega45g.com"
- type="default"
+ type="default,ia"
user=""
password=""
mvno_type="spn"
@@ -16822,7 +18076,7 @@
mcc="334"
mnc="140"
apn="internet.netwey.com.mx"
- type="default"
+ type="default,ia"
user=""
password=""
mvno_type="spn"
@@ -16846,7 +18100,7 @@
mcc="334"
mnc="140"
apn="internet.retemex.com"
- type="default"
+ type="default,ia"
user=""
password=""
mvno_type="spn"
@@ -16870,7 +18124,7 @@
mcc="334"
mnc="140"
apn="internet.wm.com"
- type="default"
+ type="default,ia"
user=""
password=""
mvno_type="spn"
@@ -16894,7 +18148,7 @@
mcc="334"
mnc="140"
apn="internet.iusacomm.com"
- type="default"
+ type="default,ia"
user=""
password=""
mvno_type="spn"
@@ -16918,7 +18172,7 @@
mcc="334"
mnc="140"
apn="internet.cfe.com"
- type="default"
+ type="default,ia"
user=""
password=""
mvno_type="spn"
@@ -16942,7 +18196,7 @@
mcc="334"
mnc="140"
apn="internet.inten.com"
- type="default"
+ type="default,ia"
user=""
password=""
mvno_type="spn"
@@ -16966,7 +18220,7 @@
mcc="334"
mnc="140"
apn="internet.diveracy.com"
- type="default"
+ type="default,ia"
user=""
password=""
mvno_type="spn"
@@ -16990,7 +18244,7 @@
mcc="334"
mnc="140"
apn="internet.diri.com"
- type="default"
+ type="default,ia"
user=""
password=""
mvno_type="spn"
@@ -17014,7 +18268,7 @@
mcc="334"
mnc="140"
apn="internet.turbored.com"
- type="default"
+ type="default,ia"
user=""
password=""
mvno_type="spn"
@@ -17038,7 +18292,7 @@
mcc="334"
mnc="140"
apn="internet.gugacom.com"
- type="default"
+ type="default,ia"
user=""
password=""
mvno_type="spn"
@@ -17062,7 +18316,7 @@
mcc="334"
mnc="140"
apn="internet.ubix.com"
- type="default"
+ type="default,ia"
user=""
password=""
mvno_type="spn"
@@ -17086,7 +18340,7 @@
mcc="334"
mnc="140"
apn="internet.rocketel.com"
- type="default"
+ type="default,ia"
user=""
password=""
mvno_type="spn"
@@ -17110,7 +18364,7 @@
mcc="334"
mnc="140"
apn="internet.edilar.com"
- type="default"
+ type="default,ia"
user=""
password=""
mvno_type="spn"
@@ -17134,7 +18388,7 @@
mcc="334"
mnc="140"
apn="internet.plus.com"
- type="default"
+ type="default,ia"
user=""
password=""
mvno_type="spn"
@@ -17158,7 +18412,7 @@
mcc="334"
mnc="140"
apn="internet.plus.com"
- type="default"
+ type="default,ia"
user=""
password=""
mvno_type="spn"
@@ -17182,7 +18436,7 @@
mcc="334"
mnc="140"
apn="internet.izzi.mx"
- type="default"
+ type="default,ia"
user=""
password=""
mvno_type="spn"
@@ -17206,7 +18460,7 @@
mcc="334"
mnc="140"
apn="internet.adm.com"
- type="default"
+ type="default,ia"
user=""
password=""
mvno_type="spn"
@@ -17230,7 +18484,7 @@
mcc="334"
mnc="140"
apn="internet.mexfon.com"
- type="default"
+ type="default,ia"
user=""
password=""
mvno_type="spn"
@@ -17254,7 +18508,7 @@
mcc="334"
mnc="140"
apn="internet.yotelco.com"
- type="default"
+ type="default,ia"
user=""
password=""
mvno_type="spn"
@@ -17278,7 +18532,7 @@
mcc="334"
mnc="140"
apn="internet.arloesinet.com"
- type="default"
+ type="default,ia"
user=""
password=""
mvno_type="spn"
@@ -17302,7 +18556,7 @@
mcc="334"
mnc="140"
apn="internet.valor.com"
- type="default"
+ type="default,ia"
user=""
password=""
mvno_type="spn"
@@ -17326,7 +18580,7 @@
mcc="334"
mnc="140"
apn="internet.wimo.com"
- type="default"
+ type="default,ia"
user=""
password=""
mvno_type="spn"
@@ -17350,7 +18604,7 @@
mcc="334"
mnc="140"
apn="internet.oui.com"
- type="default"
+ type="default,ia"
user=""
password=""
mvno_type="spn"
@@ -17374,7 +18628,7 @@
mcc="334"
mnc="140"
apn="Internet.mvne1.com"
- type="default"
+ type="default,ia"
user=""
password=""
mvno_type="spn"
@@ -17410,7 +18664,7 @@
mcc="338"
mnc="05"
apn="web"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS Digicel"
@@ -17429,7 +18683,7 @@
mcc="338"
mnc="050"
apn="web"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS Digicel"
@@ -17448,7 +18702,7 @@
mcc="338"
mnc="18"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Lime Postpaid MMS"
@@ -17467,7 +18721,7 @@
mcc="338"
mnc="18"
apn="ppinternet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Lime Prepaid MMS"
@@ -17486,7 +18740,7 @@
mcc="338"
mnc="180"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Lime Postpaid MMS"
@@ -17505,7 +18759,7 @@
mcc="338"
mnc="180"
apn="ppinternet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Lime Prepaid MMS"
@@ -17527,7 +18781,7 @@
user=""
password=""
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Claro MMS"
@@ -17552,7 +18806,7 @@
user=""
password=""
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Lime Postpaid MMS"
@@ -17576,7 +18830,7 @@
apn="orangeweb"
user="orange"
password="orange"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Orange MMS Caraïbe"
@@ -17612,7 +18866,7 @@
mmsc="http://mmc.digicelfr.com/servlets/mms"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
- type="default,mms,supl"
+ type="default,ia,mms,supl"
/>
<apn carrier="Lime Internet Postpaid"
@@ -17621,7 +18875,7 @@
apn="internet"
user=""
password=""
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Lime Postpaid MMS"
@@ -17643,7 +18897,7 @@
apn='internet'
authtype='1'
mmsc='http://www.time4lime.com/'
- type='default'
+ type='default,ia'
/>
<apn carrier="Barbados:Lime:Mms"
@@ -17674,7 +18928,7 @@
apn="internet"
user=""
password=""
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Lime Postpaid MMS"
@@ -17696,7 +18950,7 @@
apn='internet'
authtype='1'
mmsc='http://www.time4lime.com/'
- type='default'
+ type='default,ia'
/>
<apn carrier='Antigua:Lime:Mms'
@@ -17727,7 +18981,7 @@
apn="internet"
user=""
password=""
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Lime Postpaid MMS"
@@ -17749,7 +19003,7 @@
apn='internet'
authtype='1'
mmsc='http://www.time4lime.com/'
- type='default'
+ type='default,ia'
/>
<apn carrier='Cayman Islands:Lime:Modem'
@@ -17780,7 +19034,7 @@
apn="internet"
user=""
password=""
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Lime Postpaid MMS"
@@ -17801,7 +19055,7 @@
mnc='77'
apn='wap.digicelbvi.com'
authtype='1'
- type='default'
+ type='default,ia'
/>
<apn carrier='Bvi:Digicel:Mms'
@@ -17839,7 +19093,7 @@
apn='internet'
authtype='1'
mmsc='http://www.time4lime.com/'
- type='default'
+ type='default,ia'
/>
<apn carrier='Bvi:Lime:Mms'
@@ -17870,7 +19124,7 @@
apn="internet"
user=""
password=""
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Lime Postpaid MMS"
@@ -17892,7 +19146,7 @@
apn='internet'
authtype='1'
mmsc='http://www.time4lime.com/'
- type='default'
+ type='default,ia'
/>
<apn carrier='Grenada:Lime:Mms'
@@ -17923,7 +19177,7 @@
apn="internet"
user=""
password=""
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Lime Postpaid MMS"
@@ -17945,7 +19199,7 @@
apn='internet'
authtype='1'
mmsc='http://www.time4lime.com/'
- type='default'
+ type='default,ia'
/>
<apn carrier='Monserrat:Lime:Mms'
@@ -17976,7 +19230,7 @@
apn="internet"
user=""
password=""
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Lime Postpaid MMS"
@@ -17997,7 +19251,7 @@
apn='internet'
authtype='1'
mmsc='http://www.time4lime.com/'
- type='default'
+ type='default,ia'
/>
<apn carrier='St Kitts And Nevis:Lime:Mms'
@@ -18026,7 +19280,7 @@
apn="internet"
user=""
password=""
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Lime Postpaid MMS"
@@ -18048,7 +19302,7 @@
apn='internet'
authtype='1'
mmsc='http://www.time4lime.com/'
- type='default'
+ type='default,ia'
/>
<apn carrier='St Lucia:Lime:Mms'
@@ -18079,7 +19333,7 @@
apn="internet"
user=""
password=""
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Lime Postpaid MMS"
@@ -18101,7 +19355,7 @@
apn='internet'
authtype='1'
mmsc='http://www.time4lime.com/'
- type='default'
+ type='default,ia'
/>
<apn carrier='St Vincent:Lime:Mms'
@@ -18132,7 +19386,7 @@
mnc='69'
apn='web.digicelcuracao.com'
authtype='1'
- type='default'
+ type='default,ia'
/>
<apn carrier='Curacao:Digicel:Mms'
@@ -18167,7 +19421,7 @@
user=""
password=""
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS Digicel"
@@ -18192,7 +19446,7 @@
user=""
password=""
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS Digicel"
@@ -18214,7 +19468,7 @@
mcc="364"
mnc="49"
apn="pda.newcomobile.com"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Be Aliv IMS"
@@ -18231,7 +19485,7 @@
apn="internet"
user=""
password=""
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Lime Postpaid MMS"
@@ -18253,7 +19507,7 @@
apn='internet'
authtype='1'
mmsc='http://www.time4lime.com/'
- type='default'
+ type='default,ia'
/>
<apn carrier='Anguilla:Lime:Mms'
@@ -18284,7 +19538,7 @@
apn="internet"
user=""
password=""
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Lime Postpaid MMS"
@@ -18306,7 +19560,7 @@
apn='internet'
authtype='1'
mmsc='http://www.time4lime.com/'
- type='default'
+ type='default,ia'
/>
<apn carrier='Dominica:Lime:Mms'
@@ -18336,7 +19590,7 @@
mcc="368"
mnc="01"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
@@ -18356,7 +19610,7 @@
mcc="370"
mnc="01"
apn="orangeinternet"
- type="ia,default,supl"
+ type="ia,default,ia,supl"
/>
<apn carrier="Orange net (3G)"
@@ -18364,7 +19618,7 @@
mcc="370"
mnc="01"
apn="orangenet.com.do"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Orange MMS"
@@ -18386,7 +19640,7 @@
mcc="370"
mnc="02"
apn="internet.ideasclaro.com.do"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS"
@@ -18403,7 +19657,7 @@
mcc="370"
mnc="020"
apn="internet.ideasclaro.com.do"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS"
@@ -18425,7 +19679,7 @@
user="viva"
password="viva"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Viva MMS"
@@ -18447,7 +19701,7 @@
mcc="370"
mnc="05"
apn="smart.wind4g.com.do"
- type="default"
+ type="default,ia"
protocol="IPV4V6"
/>
@@ -18457,7 +19711,7 @@
mnc='02'
apn='wap.digicelha.com'
authtype='1'
- type='default'
+ type='default,ia'
/>
<apn carrier='Haiti:Digicel:Mms'
@@ -18493,7 +19747,7 @@
mcc="372"
mnc="03"
apn="natcom"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Bmobile internet"
@@ -18504,7 +19758,7 @@
user=""
password=""
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Bmobile mms"
@@ -18528,7 +19782,7 @@
user=""
password=""
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Bmobile mms"
@@ -18551,7 +19805,7 @@
user=""
password=""
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Bmobile mms"
@@ -18575,7 +19829,7 @@
user=""
password=""
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Bmobile mms"
@@ -18600,7 +19854,7 @@
user=""
password=""
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Bmobile mms"
@@ -18625,7 +19879,7 @@
user=""
password=""
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Bmobile mms"
@@ -18650,7 +19904,7 @@
user=""
password=""
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Bmobile mms"
@@ -18675,7 +19929,7 @@
user=""
password=""
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Bmobile mms"
@@ -18700,7 +19954,7 @@
user=""
password=""
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Bmobile mms"
@@ -18725,7 +19979,7 @@
user=""
password=""
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Bmobile mms"
@@ -18750,7 +20004,7 @@
user=""
password=""
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Bmobile mms"
@@ -18775,7 +20029,7 @@
user=""
password=""
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS Trinidad"
@@ -18800,7 +20054,7 @@
user=""
password=""
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS Trinidad"
@@ -18823,7 +20077,7 @@
apn="internet"
user=""
password=""
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Lime Postpaid MMS"
@@ -18844,7 +20098,7 @@
mnc='350'
apn='internet'
authtype='1'
- type='default'
+ type='default,ia'
/>
<apn carrier='Turks And Caicos:Lime:Mms'
@@ -18874,7 +20128,7 @@
mcc="400"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Bakcell"
@@ -18882,7 +20136,7 @@
mcc="400"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="FONEX"
@@ -18890,7 +20144,7 @@
mcc="400"
mnc="03"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Nar Mobile"
@@ -18898,7 +20152,7 @@
mcc="400"
mnc="04"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Beeline Internet"
@@ -18909,7 +20163,7 @@
user="@internet.beeline"
password="beeline"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Beeline MMS"
@@ -18931,7 +20185,7 @@
mcc="401"
mnc="01"
apn="internet.dos.kz"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="izi"
@@ -18939,7 +20193,7 @@
mcc="401"
mnc="01"
apn="izi.me"
- type="default,supl"
+ type="default,ia,supl"
mvno_type="imsi"
mvno_match_data="40101568"
/>
@@ -18949,7 +20203,7 @@
mcc="401"
mnc="02"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Kcell MMS"
@@ -18968,7 +20222,7 @@
mcc="401"
mnc="07"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Tele2 Internet"
@@ -18976,7 +20230,7 @@
mcc="401"
mnc="77"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Tele2 MMS"
@@ -18995,7 +20249,7 @@
mcc="402"
mnc="11"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
protocol="IPV4V6"
/>
@@ -19008,7 +20262,7 @@
password=""
proxy=""
port=""
- type="default,supl"
+ type="default,ia,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
/>
@@ -19020,7 +20274,9 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -19028,7 +20284,9 @@
mcc="404"
mnc="01"
apn="www"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -19040,6 +20298,8 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="AIRTEL LIVE"
@@ -19049,7 +20309,9 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Mobile Office"
@@ -19057,7 +20319,9 @@
mcc="404"
mnc="02"
apn="airtelgprs.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Airtel MMS"
@@ -19070,6 +20334,18 @@
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"
@@ -19077,7 +20353,9 @@
mcc="404"
mnc="03"
apn="airtelgprs.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="AIRTEL LIVE"
@@ -19087,7 +20365,9 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Airtel MMS"
@@ -19100,6 +20380,18 @@
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"
@@ -19107,7 +20399,9 @@
mcc="404"
mnc="04"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA GPRS"
@@ -19117,7 +20411,9 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA MMS"
@@ -19129,6 +20425,8 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -19140,6 +20438,8 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -19147,7 +20447,9 @@
mcc="404"
mnc="05"
apn="www"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone live"
@@ -19157,7 +20459,9 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -19165,7 +20469,9 @@
mcc="404"
mnc="07"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA GPRS"
@@ -19175,7 +20481,9 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA MMS"
@@ -19187,6 +20495,8 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -19198,6 +20508,8 @@
mmsproxy="10.239.221.7"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance Net"
@@ -19205,7 +20517,9 @@
mcc="404"
mnc="09"
apn="smartnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance WAP"
@@ -19216,26 +20530,35 @@
proxy="10.239.221.7"
port="8080"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Mobile Office"
+ carrier_id = "1961"
mcc="404"
mnc="10"
apn="airtelgprs.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="AIRTEL LIVE"
+ carrier_id = "1961"
mcc="404"
mnc="10"
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Airtel MMS"
+ carrier_id = "1961"
mcc="404"
mnc="10"
apn="airtelmms.com"
@@ -19244,6 +20567,18 @@
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"
@@ -19255,6 +20590,8 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -19262,7 +20599,9 @@
mcc="404"
mnc="11"
apn="www"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone live"
@@ -19272,7 +20611,9 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -19280,7 +20621,9 @@
mcc="404"
mnc="12"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA GPRS"
@@ -19290,7 +20633,9 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA MMS"
@@ -19302,6 +20647,8 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -19313,6 +20660,8 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -19320,7 +20669,9 @@
mcc="404"
mnc="13"
apn="www"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone live"
@@ -19330,7 +20681,9 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA MMS"
@@ -19342,6 +20695,8 @@
mmsproxy="10.11.12.13"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -19349,7 +20704,9 @@
mcc="404"
mnc="14"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA GPRS"
@@ -19359,7 +20716,9 @@
apn="imis"
proxy="10.11.12.13"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -19371,6 +20730,8 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -19378,7 +20739,9 @@
mcc="404"
mnc="15"
apn="www"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone live"
@@ -19388,7 +20751,9 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Mobile Office"
@@ -19396,7 +20761,9 @@
mcc="404"
mnc="16"
apn="airtelgprs.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="AIRTEL LIVE"
@@ -19406,7 +20773,9 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Airtel MMS"
@@ -19419,13 +20788,26 @@
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,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet-Postpaid"
@@ -19434,7 +20816,9 @@
apn="aircelwappost"
proxy="172.17.83.69"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet-Prepaid"
@@ -19443,23 +20827,27 @@
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS-Prepaid"
mcc="404"
mnc="17"
apn="aircelweb"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel Internet (40417)"
mcc="404"
mnc="17"
apn="aircelgprs"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
+ type="default,ia,supl,fota,dun"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-MMS"
@@ -19470,6 +20858,8 @@
mmsproxy="172.17.83.69"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -19481,6 +20871,8 @@
mmsproxy="10.239.221.7"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance Net"
@@ -19488,7 +20880,9 @@
mcc="404"
mnc="18"
apn="smartnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance WAP"
@@ -19499,7 +20893,9 @@
proxy="10.239.221.7"
port="8080"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance Internet (40418)"
@@ -19507,9 +20903,9 @@
mcc="404"
mnc="18"
apn="rcomnet"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
+ type="default,ia,supl,fota,dun"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -19517,7 +20913,9 @@
mcc="404"
mnc="19"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA GPRS"
@@ -19527,7 +20925,9 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA MMS"
@@ -19539,6 +20939,8 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -19550,6 +20952,8 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -19557,7 +20961,9 @@
mcc="404"
mnc="20"
apn="www"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone live"
@@ -19567,27 +20973,9 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- 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"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -19595,7 +20983,9 @@
mcc="404"
mnc="22"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA GPRS"
@@ -19605,7 +20995,9 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA MMS"
@@ -19617,6 +21009,8 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -19624,7 +21018,9 @@
mcc="404"
mnc="24"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA GPRS"
@@ -19634,7 +21030,9 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA MMS"
@@ -19646,13 +21044,17 @@
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,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet-Postpaid"
@@ -19661,7 +21063,9 @@
apn="aircelwappost"
proxy="172.17.83.69"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet-Prepaid"
@@ -19670,23 +21074,27 @@
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS-Prepaid"
mcc="404"
mnc="25"
apn="aircelweb"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel Internet (40425)"
mcc="404"
mnc="25"
apn="aircelgprs"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
+ type="default,ia,supl,fota,dun"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-MMS"
@@ -19697,6 +21105,8 @@
mmsproxy="172.17.83.69"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -19708,6 +21118,8 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -19715,7 +21127,9 @@
mcc="404"
mnc="27"
apn="www"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone live"
@@ -19725,14 +21139,18 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS-Postpaid"
mcc="404"
mnc="28"
apn="aircelwebpost"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet-Postpaid"
@@ -19741,7 +21159,9 @@
apn="aircelwappost"
proxy="172.17.83.69"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet-Prepaid"
@@ -19750,23 +21170,27 @@
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS-Prepaid"
mcc="404"
mnc="28"
apn="aircelweb"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel Internet (40428)"
mcc="404"
mnc="28"
apn="aircelgprs"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
+ type="default,ia,supl,fota,dun"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-MMS"
@@ -19777,13 +21201,17 @@
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,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet-Postpaid"
@@ -19792,7 +21220,9 @@
apn="myaircelpost"
proxy="172.17.83.69"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet-Prepaid"
@@ -19801,32 +21231,38 @@
apn="myaircel"
proxy="172.17.83.69"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS-Prepaid"
mcc="404"
mnc="29"
apn="aircelweb"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel Internet (40429)"
mcc="404"
mnc="29"
apn="aircelgprs"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
+ type="default,ia,supl,fota,dun"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel WAP (40429)"
mcc="404"
mnc="29"
apn="aircelwap"
- type="default,supl"
+ type="default,ia,supl"
proxy="172.17.83.69"
port="8080"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-MMS"
@@ -19837,6 +21273,8 @@
mmsproxy="172.17.83.69"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -19848,6 +21286,8 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -19855,7 +21295,9 @@
mcc="404"
mnc="30"
apn="www"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone live"
@@ -19865,7 +21307,9 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Mobile Office"
@@ -19873,7 +21317,9 @@
mcc="404"
mnc="31"
apn="airtelgprs.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="AIRTEL LIVE"
@@ -19883,7 +21329,9 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Airtel MMS"
@@ -19896,13 +21344,27 @@
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,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet-Postpaid"
@@ -19911,7 +21373,9 @@
apn="myaircelpost"
proxy="172.17.83.69"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet-Prepaid"
@@ -19920,32 +21384,38 @@
apn="myaircel"
proxy="172.17.83.69"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS-Prepaid"
mcc="404"
mnc="33"
apn="aircelweb"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel Internet (40433)"
mcc="404"
mnc="33"
apn="aircelgprs"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
+ type="default,ia,supl,fota,dun"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel WAP (40433)"
mcc="404"
mnc="33"
apn="aircelwap"
- type="default,supl"
+ type="default,ia,supl"
proxy="172.17.83.69"
port="8080"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-MMS"
@@ -19956,6 +21426,8 @@
mmsproxy="172.17.83.69"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -19964,7 +21436,9 @@
mnc="34"
apn="bsnlnet"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnllive"
@@ -19974,7 +21448,9 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlmms"
@@ -19986,13 +21462,17 @@
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,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet-Postpaid"
@@ -20001,7 +21481,9 @@
apn="aircelwappost"
proxy="172.17.83.69"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet-Prepaid"
@@ -20010,23 +21492,27 @@
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS-Prepaid"
mcc="404"
mnc="35"
apn="aircelweb"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel Internet (40435)"
mcc="404"
mnc="35"
apn="aircelgprs"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
+ type="default,ia,supl,fota,dun"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-MMS"
@@ -20037,6 +21523,8 @@
mmsproxy="172.17.83.69"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -20048,6 +21536,8 @@
mmsproxy="10.239.221.7"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance Net"
@@ -20055,7 +21545,9 @@
mcc="404"
mnc="36"
apn="smartnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance WAP"
@@ -20066,7 +21558,9 @@
proxy="10.239.221.7"
port="8080"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance Internet (40436)"
@@ -20074,16 +21568,18 @@
mcc="404"
mnc="36"
apn="rcomnet"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
+ type="default,ia,supl,fota,dun"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS-Postpaid"
mcc="404"
mnc="37"
apn="aircelwebpost"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet-Postpaid"
@@ -20092,7 +21588,9 @@
apn="aircelwappost"
proxy="172.17.83.69"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet-Prepaid"
@@ -20101,23 +21599,27 @@
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS-Prepaid"
mcc="404"
mnc="37"
apn="aircelweb"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel Internet (40437)"
mcc="404"
mnc="37"
apn="aircelgprs"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
+ type="default,ia,supl,fota,dun"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-MMS"
@@ -20128,6 +21630,8 @@
mmsproxy="172.17.83.69"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlmms"
@@ -20139,6 +21643,8 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -20146,7 +21652,9 @@
mcc="404"
mnc="38"
apn="bsnlnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnllive"
@@ -20156,7 +21664,9 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Mobile Office"
@@ -20164,7 +21674,9 @@
mcc="404"
mnc="40"
apn="airtelgprs.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="AIRTEL LIVE"
@@ -20174,7 +21686,9 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Airtel MMS"
@@ -20187,6 +21701,18 @@
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"
@@ -20194,7 +21720,9 @@
mcc="404"
mnc="41"
apn="aircelgprs.po"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS-Prepaid"
@@ -20202,7 +21730,9 @@
mcc="404"
mnc="41"
apn="aircelgprs.pr"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet-Postpaid"
@@ -20212,7 +21742,9 @@
apn="aircelwap.po"
proxy="192.168.35.201"
port="8081"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet-Prepaid"
@@ -20222,7 +21754,9 @@
apn="aircelwap.pr"
proxy="192.168.35.201"
port="8081"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel Internet (40441)"
@@ -20230,9 +21764,9 @@
mcc="404"
mnc="41"
apn="aircelgprs"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
+ type="default,ia,supl,fota,dun"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel WAP (40441)"
@@ -20240,9 +21774,11 @@
mcc="404"
mnc="41"
apn="aircelwap"
- type="default,supl"
+ type="default,ia,supl"
proxy="172.17.83.69"
port="8080"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-MMS-Postpaid"
@@ -20254,6 +21790,8 @@
mmsproxy="192.168.35.196"
mmsport="8081"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-MMS-Prepaid"
@@ -20265,6 +21803,8 @@
mmsproxy="192.168.35.196"
mmsport="8081"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel MMS (40441)"
@@ -20276,8 +21816,8 @@
mmsport="8080"
mmsc="http://172.17.83.67/servlets/mms"
type="mms"
- protocol="IP"
- roaming_protocol="IP"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS-Postpaid"
@@ -20285,7 +21825,9 @@
mcc="404"
mnc="42"
apn="aircelgprs.po"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS-Prepaid"
@@ -20293,7 +21835,9 @@
mcc="404"
mnc="42"
apn="aircelgprs.pr"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet-Postpaid"
@@ -20303,7 +21847,9 @@
apn="aircelwap.po"
proxy="192.168.35.201"
port="8081"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet-Prepaid"
@@ -20313,7 +21859,9 @@
apn="aircelwap.pr"
proxy="192.168.35.201"
port="8081"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel Internet (40442)"
@@ -20321,9 +21869,9 @@
mcc="404"
mnc="42"
apn="aircelgprs"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
+ type="default,ia,supl,fota,dun"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-MMS-Postpaid"
@@ -20335,6 +21883,8 @@
mmsproxy="192.168.35.196"
mmsport="8081"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-MMS-Prepaid"
@@ -20346,6 +21896,8 @@
mmsproxy="192.168.35.196"
mmsport="8081"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -20357,6 +21909,8 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -20364,7 +21918,9 @@
mcc="404"
mnc="43"
apn="www"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone live"
@@ -20374,7 +21930,9 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -20382,7 +21940,9 @@
mcc="404"
mnc="44"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA GPRS"
@@ -20392,7 +21952,9 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA MMS"
@@ -20404,6 +21966,8 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Mobile Office"
@@ -20411,7 +21975,9 @@
mcc="404"
mnc="45"
apn="airtelgprs.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="AIRTEL LIVE"
@@ -20421,7 +21987,9 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Airtel MMS"
@@ -20434,6 +22002,18 @@
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"
@@ -20445,6 +22025,8 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -20452,7 +22034,9 @@
mcc="404"
mnc="46"
apn="www"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone live"
@@ -20462,7 +22046,9 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Mobile Office"
@@ -20470,7 +22056,9 @@
mcc="404"
mnc="49"
apn="airtelgprs.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="AIRTEL LIVE"
@@ -20480,7 +22068,9 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Airtel MMS"
@@ -20493,6 +22083,18 @@
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"
@@ -20504,6 +22106,8 @@
mmsproxy="10.239.221.7"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance Net"
@@ -20511,7 +22115,9 @@
mcc="404"
mnc="50"
apn="smartnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance WAP"
@@ -20522,7 +22128,9 @@
proxy="10.239.221.7"
port="8080"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlmms"
@@ -20534,6 +22142,8 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -20541,7 +22151,9 @@
mcc="404"
mnc="51"
apn="bsnlnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnllive"
@@ -20551,7 +22163,9 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -20563,6 +22177,8 @@
mmsproxy="10.239.221.7"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance Net"
@@ -20570,7 +22186,9 @@
mcc="404"
mnc="52"
apn="smartnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance WAP"
@@ -20581,7 +22199,9 @@
proxy="10.239.221.7"
port="8080"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlmms"
@@ -20593,6 +22213,8 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -20600,7 +22222,9 @@
mcc="404"
mnc="53"
apn="bsnlnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnllive"
@@ -20610,7 +22234,9 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlmms"
@@ -20622,6 +22248,8 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -20629,7 +22257,9 @@
mcc="404"
mnc="54"
apn="bsnlnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnllive"
@@ -20639,7 +22269,9 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlmms"
@@ -20651,6 +22283,8 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -20658,7 +22292,9 @@
mcc="404"
mnc="55"
apn="bsnlnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnllive"
@@ -20668,7 +22304,9 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -20676,7 +22314,9 @@
mcc="404"
mnc="56"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA GPRS"
@@ -20686,7 +22326,9 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA MMS"
@@ -20698,6 +22340,8 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlmms"
@@ -20709,6 +22353,8 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -20716,7 +22362,9 @@
mcc="404"
mnc="57"
apn="bsnlnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnllive"
@@ -20726,7 +22374,9 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlmms"
@@ -20738,6 +22388,8 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -20745,7 +22397,9 @@
mcc="404"
mnc="58"
apn="bsnlnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnllive"
@@ -20755,7 +22409,9 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlmms"
@@ -20767,6 +22423,8 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -20774,7 +22432,9 @@
mcc="404"
mnc="59"
apn="bsnlnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnllive"
@@ -20784,7 +22444,9 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -20796,6 +22458,8 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -20803,7 +22467,9 @@
mcc="404"
mnc="60"
apn="www"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone live"
@@ -20813,7 +22479,9 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlmms"
@@ -20825,6 +22493,8 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -20832,7 +22502,9 @@
mcc="404"
mnc="62"
apn="bsnlnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnllive"
@@ -20842,7 +22514,9 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlmms"
@@ -20854,6 +22528,8 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -20861,7 +22537,9 @@
mcc="404"
mnc="64"
apn="bsnlnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnllive"
@@ -20871,7 +22549,9 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlmms"
@@ -20883,6 +22563,8 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -20890,7 +22572,9 @@
mcc="404"
mnc="66"
apn="bsnlnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnllive"
@@ -20900,7 +22584,9 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -20912,6 +22598,8 @@
mmsproxy="10.239.221.7"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance Net"
@@ -20919,7 +22607,9 @@
mcc="404"
mnc="67"
apn="smartnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance WAP"
@@ -20930,7 +22620,9 @@
proxy="10.239.221.7"
port="8080"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="MTNL"
@@ -20944,7 +22636,9 @@
mmsc="http://mtnlmms/"
mmsproxy="10.10.10.10"
mmsport="9401"
- type="default,mms,supl,fota,dun"
+ type="default,ia,mms,supl,fota,dun"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="MTNL"
@@ -20958,9 +22652,9 @@
mmsc="http://mtnlmms/"
mmsproxy="10.10.10.10"
mmsport="9401"
- type="default,mms,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
+ type="default,ia,mms,supl,fota,dun"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Mobile Office"
@@ -20968,7 +22662,9 @@
mcc="404"
mnc="70"
apn="airtelgprs.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="AIRTEL LIVE"
@@ -20978,7 +22674,9 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Airtel MMS"
@@ -20991,6 +22689,18 @@
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"
@@ -21002,6 +22712,8 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -21009,7 +22721,9 @@
mcc="404"
mnc="71"
apn="bsnlnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnllive"
@@ -21019,7 +22733,9 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlmms"
@@ -21031,6 +22747,8 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -21038,7 +22756,9 @@
mcc="404"
mnc="72"
apn="bsnlnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnllive"
@@ -21048,7 +22768,9 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlmms"
@@ -21060,6 +22782,8 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -21067,7 +22791,9 @@
mcc="404"
mnc="73"
apn="bsnlnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnllive"
@@ -21077,7 +22803,9 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlmms"
@@ -21089,6 +22817,8 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -21096,7 +22826,9 @@
mcc="404"
mnc="74"
apn="bsnlnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnllive"
@@ -21106,7 +22838,9 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlmms"
@@ -21118,6 +22852,8 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -21125,7 +22861,9 @@
mcc="404"
mnc="75"
apn="bsnlnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnllive"
@@ -21135,7 +22873,9 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlmms"
@@ -21147,6 +22887,8 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -21154,7 +22896,9 @@
mcc="404"
mnc="76"
apn="bsnlnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnllive"
@@ -21164,7 +22908,9 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlmms"
@@ -21176,6 +22922,8 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -21183,7 +22931,9 @@
mcc="404"
mnc="77"
apn="bsnlnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnllive"
@@ -21193,7 +22943,9 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -21201,7 +22953,9 @@
mcc="404"
mnc="78"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA GPRS"
@@ -21211,7 +22965,9 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA MMS"
@@ -21223,6 +22979,8 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlmms"
@@ -21234,6 +22992,8 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -21241,7 +23001,9 @@
mcc="404"
mnc="79"
apn="bsnlnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnllive"
@@ -21251,7 +23013,9 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlmms"
@@ -21263,6 +23027,8 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -21270,7 +23036,9 @@
mcc="404"
mnc="80"
apn="bsnlnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnllive"
@@ -21280,7 +23048,9 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlmms"
@@ -21292,6 +23062,8 @@
mmsproxy="10.210.10.11"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnlnet"
@@ -21299,7 +23071,9 @@
mcc="404"
mnc="81"
apn="bsnlnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="bsnllive"
@@ -21309,7 +23083,9 @@
apn="bsnllive"
proxy="10.220.67.131"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -21317,7 +23093,9 @@
mcc="404"
mnc="82"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA GPRS"
@@ -21327,7 +23105,9 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA MMS"
@@ -21339,6 +23119,8 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -21350,6 +23132,8 @@
mmsproxy="10.239.221.7"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance Net"
@@ -21357,7 +23141,9 @@
mcc="404"
mnc="83"
apn="smartnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance WAP"
@@ -21368,7 +23154,9 @@
proxy="10.239.221.7"
port="8080"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -21380,6 +23168,8 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -21387,7 +23177,9 @@
mcc="404"
mnc="84"
apn="www"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone live"
@@ -21397,7 +23189,9 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -21409,6 +23203,8 @@
mmsproxy="10.239.221.7"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance Net"
@@ -21416,7 +23212,9 @@
mcc="404"
mnc="85"
apn="smartnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance WAP"
@@ -21427,7 +23225,9 @@
proxy="10.239.221.7"
port="8080"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -21439,6 +23239,8 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -21446,7 +23248,9 @@
mcc="404"
mnc="86"
apn="www"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone live"
@@ -21456,7 +23260,9 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -21464,7 +23270,9 @@
mcc="404"
mnc="87"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA GPRS"
@@ -21474,7 +23282,9 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA MMS"
@@ -21486,6 +23296,8 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -21497,6 +23309,8 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -21504,7 +23318,9 @@
mcc="404"
mnc="88"
apn="www"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone live"
@@ -21514,7 +23330,9 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -21522,7 +23340,9 @@
mcc="404"
mnc="89"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA GPRS"
@@ -21532,7 +23352,9 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA MMS"
@@ -21544,6 +23366,8 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Mobile Office"
@@ -21551,7 +23375,9 @@
mcc="404"
mnc="90"
apn="airtelgprs.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="AIRTEL LIVE"
@@ -21561,7 +23387,9 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Airtel MMS"
@@ -21574,41 +23402,66 @@
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,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet-Postpaid"
+ carrier_id = "1551"
mcc="404"
mnc="91"
apn="aircelwappost"
proxy="172.17.83.69"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet-Prepaid"
+ carrier_id = "1551"
mcc="404"
mnc="91"
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-GPRS-Prepaid"
+ carrier_id = "1551"
mcc="404"
mnc="91"
apn="aircelweb"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-MMS"
+ carrier_id = "1551"
mcc="404"
mnc="91"
apn="aircelmms"
@@ -21616,6 +23469,8 @@
mmsproxy="172.17.83.69"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Mobile Office"
@@ -21623,7 +23478,9 @@
mcc="404"
mnc="92"
apn="airtelgprs.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="AIRTEL LIVE"
@@ -21633,7 +23490,9 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Airtel MMS"
@@ -21646,6 +23505,18 @@
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"
@@ -21653,7 +23524,9 @@
mcc="404"
mnc="93"
apn="airtelgprs.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="AIRTEL LIVE"
@@ -21663,7 +23536,9 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Airtel MMS"
@@ -21676,6 +23551,18 @@
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"
@@ -21683,7 +23570,9 @@
mcc="404"
mnc="94"
apn="airtelgprs.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="AIRTEL LIVE"
@@ -21693,7 +23582,9 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Airtel MMS"
@@ -21706,6 +23597,18 @@
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"
@@ -21713,7 +23616,9 @@
mcc="404"
mnc="95"
apn="airtelgprs.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="AIRTEL LIVE"
@@ -21723,7 +23628,9 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Airtel MMS"
@@ -21736,6 +23643,18 @@
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"
@@ -21743,7 +23662,9 @@
mcc="404"
mnc="96"
apn="airtelgprs.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="AIRTEL LIVE"
@@ -21753,7 +23674,9 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Airtel MMS"
@@ -21766,6 +23689,18 @@
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"
@@ -21773,7 +23708,9 @@
mcc="404"
mnc="97"
apn="airtelgprs.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="AIRTEL LIVE"
@@ -21783,7 +23720,9 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Airtel MMS"
@@ -21796,6 +23735,18 @@
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"
@@ -21803,7 +23754,9 @@
mcc="404"
mnc="98"
apn="airtelgprs.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="AIRTEL LIVE"
@@ -21813,7 +23766,9 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Airtel MMS"
@@ -21826,6 +23781,18 @@
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"
@@ -21837,6 +23804,8 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -21844,7 +23813,9 @@
mcc="405"
mnc="01"
apn="rcomnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="RelianceMbWorld"
@@ -21854,7 +23825,9 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -21866,6 +23839,8 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -21873,7 +23848,9 @@
mcc="405"
mnc="03"
apn="rcomnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="RelianceMbWorld"
@@ -21883,7 +23860,9 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -21895,6 +23874,8 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -21902,7 +23883,9 @@
mcc="405"
mnc="04"
apn="rcomnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="RelianceMbWorld"
@@ -21912,7 +23895,9 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -21924,6 +23909,8 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -21931,7 +23918,9 @@
mcc="405"
mnc="05"
apn="rcomnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="RelianceMbWorld"
@@ -21941,7 +23930,9 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -21953,6 +23944,8 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -21960,7 +23953,9 @@
mcc="405"
mnc="06"
apn="rcomnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="RelianceMbWorld"
@@ -21970,7 +23965,9 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -21982,6 +23979,8 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -21989,7 +23988,9 @@
mcc="405"
mnc="07"
apn="rcomnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="RelianceMbWorld"
@@ -21999,7 +24000,9 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -22011,6 +24014,8 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -22018,7 +24023,9 @@
mcc="405"
mnc="08"
apn="rcomnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="RelianceMbWorld"
@@ -22028,7 +24035,9 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -22040,6 +24049,8 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -22047,7 +24058,9 @@
mcc="405"
mnc="09"
apn="rcomnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="RelianceMbWorld"
@@ -22057,7 +24070,9 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -22069,6 +24084,8 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -22076,7 +24093,9 @@
mcc="405"
mnc="10"
apn="rcomnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="RelianceMbWorld"
@@ -22086,7 +24105,9 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -22098,6 +24119,8 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -22105,7 +24128,9 @@
mcc="405"
mnc="11"
apn="rcomnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="RelianceMbWorld"
@@ -22115,7 +24140,9 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -22127,6 +24154,8 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -22134,7 +24163,9 @@
mcc="405"
mnc="12"
apn="rcomnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="RelianceMbWorld"
@@ -22144,7 +24175,9 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -22156,6 +24189,8 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -22163,7 +24198,9 @@
mcc="405"
mnc="13"
apn="rcomnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="RelianceMbWorld"
@@ -22173,7 +24210,9 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -22185,6 +24224,8 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -22192,7 +24233,9 @@
mcc="405"
mnc="14"
apn="rcomnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="RelianceMbWorld"
@@ -22202,7 +24245,9 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -22214,6 +24259,8 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -22221,7 +24268,9 @@
mcc="405"
mnc="15"
apn="rcomnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="RelianceMbWorld"
@@ -22231,7 +24280,9 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -22243,6 +24294,8 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -22250,7 +24303,9 @@
mcc="405"
mnc="17"
apn="rcomnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="RelianceMbWorld"
@@ -22260,7 +24315,9 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -22272,6 +24329,8 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -22279,7 +24338,9 @@
mcc="405"
mnc="18"
apn="rcomnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="RelianceMbWorld"
@@ -22289,7 +24350,9 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -22301,6 +24364,8 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -22308,7 +24373,9 @@
mcc="405"
mnc="19"
apn="rcomnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="RelianceMbWorld"
@@ -22318,7 +24385,9 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -22330,6 +24399,8 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -22337,7 +24408,9 @@
mcc="405"
mnc="20"
apn="rcomnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="RelianceMbWorld"
@@ -22347,7 +24420,9 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -22359,6 +24434,8 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -22366,7 +24443,9 @@
mcc="405"
mnc="21"
apn="rcomnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="RelianceMbWorld"
@@ -22376,7 +24455,9 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -22388,6 +24469,8 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -22395,7 +24478,9 @@
mcc="405"
mnc="22"
apn="rcomnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="RelianceMbWorld"
@@ -22405,7 +24490,9 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Reliance MMS"
@@ -22417,6 +24504,8 @@
mmsproxy="10.239.221.5"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Netconnect"
@@ -22424,7 +24513,9 @@
mcc="405"
mnc="23"
apn="rcomnet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="RelianceMbWorld"
@@ -22434,7 +24525,9 @@
apn="rcomwap"
proxy="10.239.221.5"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -22444,7 +24537,9 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -22452,7 +24547,9 @@
mcc="405"
mnc="025"
apn="TATA.DOCOMO.INTERNET"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -22464,6 +24561,8 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -22471,7 +24570,9 @@
mcc="405"
mnc="026"
apn="TATA.DOCOMO.INTERNET"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -22481,7 +24582,9 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -22493,6 +24596,8 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -22500,7 +24605,9 @@
mcc="405"
mnc="027"
apn="TATA.DOCOMO.INTERNET"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -22510,7 +24617,9 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -22522,6 +24631,8 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -22529,7 +24640,9 @@
mcc="405"
mnc="028"
apn="TATA.DOCOMO.INTERNET"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -22539,7 +24652,9 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -22551,6 +24666,8 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -22558,7 +24675,9 @@
mcc="405"
mnc="029"
apn="TATA.DOCOMO.INTERNET"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -22568,7 +24687,9 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -22580,6 +24701,8 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -22587,7 +24710,9 @@
mcc="405"
mnc="030"
apn="TATA.DOCOMO.INTERNET"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -22597,7 +24722,9 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -22609,6 +24736,8 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -22616,7 +24745,9 @@
mcc="405"
mnc="031"
apn="TATA.DOCOMO.INTERNET"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -22626,7 +24757,9 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -22638,6 +24771,8 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -22645,7 +24780,9 @@
mcc="405"
mnc="032"
apn="TATA.DOCOMO.INTERNET"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -22655,7 +24792,9 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -22667,6 +24806,8 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -22674,7 +24815,9 @@
mcc="405"
mnc="033"
apn="TATA.DOCOMO.INTERNET"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -22684,7 +24827,9 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -22696,6 +24841,8 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -22703,7 +24850,9 @@
mcc="405"
mnc="034"
apn="TATA.DOCOMO.INTERNET"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -22713,7 +24862,9 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -22725,6 +24876,8 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -22732,7 +24885,9 @@
mcc="405"
mnc="035"
apn="TATA.DOCOMO.INTERNET"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -22742,7 +24897,9 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -22754,6 +24911,8 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -22761,7 +24920,9 @@
mcc="405"
mnc="036"
apn="TATA.DOCOMO.INTERNET"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -22771,7 +24932,9 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -22783,6 +24946,8 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -22790,7 +24955,9 @@
mcc="405"
mnc="037"
apn="TATA.DOCOMO.INTERNET"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -22800,7 +24967,9 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -22812,6 +24981,8 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -22819,7 +24990,9 @@
mcc="405"
mnc="038"
apn="TATA.DOCOMO.INTERNET"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -22829,7 +25002,9 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -22841,6 +25016,8 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -22848,7 +25025,9 @@
mcc="405"
mnc="039"
apn="TATA.DOCOMO.INTERNET"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -22858,7 +25037,9 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -22870,6 +25051,8 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -22877,7 +25060,9 @@
mcc="405"
mnc="040"
apn="TATA.DOCOMO.INTERNET"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -22887,7 +25072,9 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -22899,6 +25086,8 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -22906,7 +25095,9 @@
mcc="405"
mnc="041"
apn="TATA.DOCOMO.INTERNET"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -22916,7 +25107,9 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -22928,6 +25121,8 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -22935,7 +25130,9 @@
mcc="405"
mnc="042"
apn="TATA.DOCOMO.INTERNET"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -22945,7 +25142,9 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -22957,6 +25156,8 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -22964,7 +25165,9 @@
mcc="405"
mnc="043"
apn="TATA.DOCOMO.INTERNET"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -22974,7 +25177,9 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -22986,6 +25191,8 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -22993,7 +25200,9 @@
mcc="405"
mnc="044"
apn="TATA.DOCOMO.INTERNET"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -23003,7 +25212,9 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -23015,6 +25226,8 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -23022,7 +25235,9 @@
mcc="405"
mnc="045"
apn="TATA.DOCOMO.INTERNET"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -23032,7 +25247,9 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -23044,6 +25261,8 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -23051,7 +25270,9 @@
mcc="405"
mnc="046"
apn="TATA.DOCOMO.INTERNET"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -23061,7 +25282,9 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -23073,6 +25296,8 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO INTERNET"
@@ -23080,7 +25305,9 @@
mcc="405"
mnc="047"
apn="TATA.DOCOMO.INTERNET"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO DIVE-IN"
@@ -23090,7 +25317,9 @@
apn="TATA.DOCOMO.DIVE.IN"
proxy="10.124.94.7"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="TATA DOCOMO MMS"
@@ -23102,6 +25331,8 @@
mmsproxy="10.124.26.94"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Mobile Office"
@@ -23109,7 +25340,9 @@
mcc="405"
mnc="51"
apn="airtelgprs.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="AIRTEL LIVE"
@@ -23119,7 +25352,9 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Airtel MMS"
@@ -23132,6 +25367,18 @@
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"
@@ -23139,7 +25386,9 @@
mcc="405"
mnc="52"
apn="airtelgprs.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="AIRTEL LIVE"
@@ -23149,7 +25398,9 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Airtel MMS"
@@ -23162,6 +25413,18 @@
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"
@@ -23169,7 +25432,9 @@
mcc="405"
mnc="53"
apn="airtelgprs.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="AIRTEL LIVE"
@@ -23179,7 +25444,9 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Airtel MMS"
@@ -23192,6 +25459,18 @@
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"
@@ -23199,7 +25478,9 @@
mcc="405"
mnc="54"
apn="airtelgprs.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="AIRTEL LIVE"
@@ -23209,7 +25490,9 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Airtel MMS"
@@ -23222,6 +25505,18 @@
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"
@@ -23229,7 +25524,9 @@
mcc="405"
mnc="55"
apn="airtelgprs.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="AIRTEL LIVE"
@@ -23239,7 +25536,9 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Airtel MMS"
@@ -23252,6 +25551,18 @@
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"
@@ -23259,7 +25570,9 @@
mcc="405"
mnc="56"
apn="airtelgprs.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="AIRTEL LIVE"
@@ -23269,7 +25582,9 @@
apn="airtelfun.com"
proxy="100.1.200.99"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Airtel MMS"
@@ -23282,6 +25597,18 @@
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"
@@ -23293,6 +25620,8 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -23300,7 +25629,9 @@
mcc="405"
mnc="66"
apn="www"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone live"
@@ -23310,7 +25641,9 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -23322,6 +25655,8 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -23329,7 +25664,9 @@
mcc="405"
mnc="67"
apn="www"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone live"
@@ -23339,7 +25676,9 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -23347,7 +25686,9 @@
mcc="405"
mnc="70"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA GPRS"
@@ -23357,7 +25698,9 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA MMS"
@@ -23369,6 +25712,8 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -23380,6 +25725,8 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -23387,7 +25734,9 @@
mcc="405"
mnc="750"
apn="www"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone live"
@@ -23397,7 +25746,9 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -23409,6 +25760,8 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -23416,7 +25769,9 @@
mcc="405"
mnc="751"
apn="www"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone live"
@@ -23426,7 +25781,9 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -23438,6 +25795,8 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -23445,7 +25804,9 @@
mcc="405"
mnc="752"
apn="www"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone live"
@@ -23455,7 +25816,9 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -23467,6 +25830,8 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -23474,7 +25839,9 @@
mcc="405"
mnc="753"
apn="www"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone live"
@@ -23484,7 +25851,9 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -23496,6 +25865,8 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -23503,7 +25874,9 @@
mcc="405"
mnc="754"
apn="www"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone live"
@@ -23513,7 +25886,9 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -23525,6 +25900,8 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -23532,7 +25909,9 @@
mcc="405"
mnc="755"
apn="www"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone live"
@@ -23542,7 +25921,9 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone_MMS"
@@ -23554,6 +25935,8 @@
mmsproxy="10.10.1.100"
mmsport="9401"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafonemobileconnect"
@@ -23561,7 +25944,9 @@
mcc="405"
mnc="756"
apn="www"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Vodafone live"
@@ -23571,7 +25956,9 @@
apn="portalnmms"
proxy="10.10.1.100"
port="9401"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -23579,7 +25966,9 @@
mcc="405"
mnc="799"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA GPRS"
@@ -23589,7 +25978,9 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA MMS"
@@ -23601,25 +25992,34 @@
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,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet"
+ carrier_id = "1551"
mcc="405"
mnc="800"
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-MMS"
+ carrier_id = "1551"
mcc="405"
mnc="800"
apn="aircelmms"
@@ -23627,25 +26027,34 @@
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,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet"
+ carrier_id = "1551"
mcc="405"
mnc="801"
apn="aircelwap"
proxy="192.168.35.201"
port="8081"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-MMS"
+ carrier_id = "1551"
mcc="405"
mnc="801"
apn="aircelmms"
@@ -23653,25 +26062,34 @@
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,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet"
+ carrier_id = "1551"
mcc="405"
mnc="802"
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-MMS"
+ carrier_id = "1551"
mcc="405"
mnc="802"
apn="aircelmms"
@@ -23679,25 +26097,34 @@
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,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet"
+ carrier_id = "1551"
mcc="405"
mnc="803"
apn="aircelwap"
proxy="192.168.35.201"
port="8081"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-MMS"
+ carrier_id = "1551"
mcc="405"
mnc="803"
apn="aircelmms"
@@ -23705,25 +26132,34 @@
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,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet"
+ carrier_id = "1551"
mcc="405"
mnc="804"
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-MMS"
+ carrier_id = "1551"
mcc="405"
mnc="804"
apn="aircelmms"
@@ -23731,25 +26167,34 @@
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,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet"
+ carrier_id = "1551"
mcc="405"
mnc="805"
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-MMS"
+ carrier_id = "1551"
mcc="405"
mnc="805"
apn="aircelmms"
@@ -23757,25 +26202,34 @@
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,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet"
+ carrier_id = "1551"
mcc="405"
mnc="806"
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-MMS"
+ carrier_id = "1551"
mcc="405"
mnc="806"
apn="aircelmms"
@@ -23783,25 +26237,34 @@
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,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet"
+ carrier_id = "1551"
mcc="405"
mnc="807"
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-MMS"
+ carrier_id = "1551"
mcc="405"
mnc="807"
apn="aircelmms"
@@ -23809,25 +26272,34 @@
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,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet"
+ carrier_id = "1551"
mcc="405"
mnc="808"
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-MMS"
+ carrier_id = "1551"
mcc="405"
mnc="808"
apn="aircelmms"
@@ -23835,25 +26307,34 @@
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,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet"
+ carrier_id = "1551"
mcc="405"
mnc="809"
apn="aircelwap"
proxy="192.168.35.201"
port="8081"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-MMS"
+ carrier_id = "1551"
mcc="405"
mnc="809"
apn="aircelmms"
@@ -23861,25 +26342,34 @@
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,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet"
+ carrier_id = "1551"
mcc="405"
mnc="810"
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-MMS"
+ carrier_id = "1551"
mcc="405"
mnc="810"
apn="aircelmms"
@@ -23887,25 +26377,34 @@
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,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet"
+ carrier_id = "1551"
mcc="405"
mnc="811"
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-MMS"
+ carrier_id = "1551"
mcc="405"
mnc="811"
apn="aircelmms"
@@ -23913,25 +26412,34 @@
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,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Pocket Internet"
+ carrier_id = "1551"
mcc="405"
mnc="812"
apn="aircelwap"
proxy="172.17.83.69"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Aircel-MMS"
+ carrier_id = "1551"
mcc="405"
mnc="812"
apn="aircelmms"
@@ -23939,6 +26447,8 @@
mmsproxy="172.17.83.69"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -23947,7 +26457,9 @@
mnc="813"
apn="uninor"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Wap"
@@ -23957,7 +26469,9 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor MMS"
@@ -23969,6 +26483,8 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -23977,7 +26493,9 @@
mnc="814"
apn="uninor"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Wap"
@@ -23987,7 +26505,9 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor MMS"
@@ -23999,6 +26519,8 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -24007,7 +26529,9 @@
mnc="815"
apn="uninor"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Wap"
@@ -24017,7 +26541,9 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor MMS"
@@ -24029,6 +26555,8 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -24037,7 +26565,9 @@
mnc="816"
apn="uninor"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Wap"
@@ -24047,7 +26577,9 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor MMS"
@@ -24059,6 +26591,8 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -24067,7 +26601,9 @@
mnc="817"
apn="uninor"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Wap"
@@ -24077,7 +26613,9 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor MMS"
@@ -24089,6 +26627,8 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -24097,7 +26637,9 @@
mnc="818"
apn="uninor"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Wap"
@@ -24107,7 +26649,9 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor MMS"
@@ -24119,6 +26663,8 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -24127,7 +26673,9 @@
mnc="819"
apn="uninor"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Wap"
@@ -24137,7 +26685,9 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor MMS"
@@ -24149,6 +26699,8 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -24157,7 +26709,9 @@
mnc="820"
apn="uninor"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Wap"
@@ -24167,7 +26721,9 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor MMS"
@@ -24179,6 +26735,8 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -24187,7 +26745,9 @@
mnc="821"
apn="uninor"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Wap"
@@ -24197,7 +26757,9 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor MMS"
@@ -24209,6 +26771,8 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -24217,7 +26781,9 @@
mnc="822"
apn="uninor"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Wap"
@@ -24227,7 +26793,9 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor MMS"
@@ -24239,6 +26807,8 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon MMS"
@@ -24250,6 +26820,8 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -24257,7 +26829,9 @@
mcc="405"
mnc="823"
apn="vinternet.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon MMS"
@@ -24269,6 +26843,8 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -24276,7 +26852,9 @@
mcc="405"
mnc="824"
apn="vinternet.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon MMS"
@@ -24288,6 +26866,8 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -24295,7 +26875,9 @@
mcc="405"
mnc="825"
apn="vinternet.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon MMS"
@@ -24307,6 +26889,8 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -24314,7 +26898,9 @@
mcc="405"
mnc="826"
apn="vinternet.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon MMS"
@@ -24326,6 +26912,8 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -24333,7 +26921,9 @@
mcc="405"
mnc="827"
apn="vinternet.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon MMS"
@@ -24345,6 +26935,8 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -24352,7 +26944,9 @@
mcc="405"
mnc="828"
apn="vinternet.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon MMS"
@@ -24364,6 +26958,8 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -24371,7 +26967,9 @@
mcc="405"
mnc="829"
apn="vinternet.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon MMS"
@@ -24383,6 +26981,8 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -24390,7 +26990,9 @@
mcc="405"
mnc="830"
apn="vinternet.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon MMS"
@@ -24401,13 +27003,17 @@
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,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon MMS"
@@ -24419,6 +27025,8 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -24426,7 +27034,9 @@
mcc="405"
mnc="832"
apn="vinternet.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon MMS"
@@ -24438,6 +27048,8 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -24445,7 +27057,9 @@
mcc="405"
mnc="833"
apn="vinternet.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon MMS"
@@ -24457,6 +27071,8 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -24464,7 +27080,9 @@
mcc="405"
mnc="834"
apn="vinternet.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon MMS"
@@ -24476,6 +27094,8 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -24483,7 +27103,9 @@
mcc="405"
mnc="835"
apn="vinternet.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon MMS"
@@ -24495,6 +27117,8 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -24502,7 +27126,9 @@
mcc="405"
mnc="836"
apn="vinternet.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon MMS"
@@ -24514,6 +27140,8 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -24521,7 +27149,9 @@
mcc="405"
mnc="837"
apn="vinternet.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon MMS"
@@ -24533,6 +27163,8 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -24540,7 +27172,9 @@
mcc="405"
mnc="838"
apn="vinternet.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon MMS"
@@ -24551,32 +27185,38 @@
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,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
- <apn carrier="Videocon MMS"
+ <apn carrier="Reliance Jio"
carrier_id = "2018"
mcc="405"
mnc="840"
- apn="vgprs.com"
- mmsc="http://10.202.4.119:10021/mmsc/"
- mmsproxy="10.202.5.145"
- mmsport="8799"
- type="mms"
+ apn="jionet"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ network_type_bitmask="13"
/>
- <apn carrier="Videocon"
+ <apn carrier="Reliance Jio IMS"
carrier_id = "2018"
mcc="405"
mnc="840"
- apn="vinternet.com"
- type="default,supl"
+ apn="ims"
+ type="ims"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon MMS"
@@ -24588,6 +27228,8 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -24595,7 +27237,9 @@
mcc="405"
mnc="841"
apn="vinternet.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon MMS"
@@ -24607,6 +27251,8 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -24614,7 +27260,9 @@
mcc="405"
mnc="842"
apn="vinternet.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon MMS"
@@ -24626,6 +27274,8 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -24633,7 +27283,9 @@
mcc="405"
mnc="843"
apn="vinternet.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -24642,7 +27294,9 @@
mnc="844"
apn="uninor"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Wap"
@@ -24652,7 +27306,9 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor MMS"
@@ -24664,6 +27320,8 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -24671,7 +27329,9 @@
mcc="405"
mnc="845"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA GPRS"
@@ -24681,7 +27341,9 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA MMS"
@@ -24693,6 +27355,8 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -24700,7 +27364,9 @@
mcc="405"
mnc="846"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA GPRS"
@@ -24710,7 +27376,9 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA MMS"
@@ -24722,6 +27390,8 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -24729,7 +27399,9 @@
mcc="405"
mnc="847"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA GPRS"
@@ -24739,7 +27411,9 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA MMS"
@@ -24751,6 +27425,8 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -24758,7 +27434,9 @@
mcc="405"
mnc="848"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA GPRS"
@@ -24768,7 +27446,9 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA MMS"
@@ -24780,6 +27460,8 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -24787,7 +27469,9 @@
mcc="405"
mnc="849"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA GPRS"
@@ -24797,7 +27481,9 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA MMS"
@@ -24809,6 +27495,8 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -24816,7 +27504,9 @@
mcc="405"
mnc="850"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA GPRS"
@@ -24826,7 +27516,9 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA MMS"
@@ -24838,6 +27530,8 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -24845,7 +27539,9 @@
mcc="405"
mnc="851"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA GPRS"
@@ -24855,7 +27551,9 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA MMS"
@@ -24867,6 +27565,8 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -24874,7 +27574,9 @@
mcc="405"
mnc="852"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA GPRS"
@@ -24884,7 +27586,9 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA MMS"
@@ -24896,6 +27600,8 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Idea_Internet"
@@ -24903,7 +27609,9 @@
mcc="405"
mnc="853"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA GPRS"
@@ -24913,7 +27621,9 @@
apn="imis"
proxy="10.4.42.15"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA MMS"
@@ -24925,531 +27635,449 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
- <apn carrier="Loop Internet (405854)"
+ <apn carrier="Reliance Jio"
carrier_id = "2018"
mcc="405"
mnc="854"
- apn="www"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
- carrier_enabled="true"
+ apn="jionet"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ network_type_bitmask="13"
/>
- <apn carrier="Loop MMS (405854)"
+ <apn carrier="Reliance Jio IMS"
carrier_id = "2018"
mcc="405"
mnc="854"
- 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="ims"
+ type="ims"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
- <apn carrier="Loop Internet (405855)"
+ <apn carrier="Reliance Jio"
carrier_id = "2018"
mcc="405"
mnc="855"
- apn="www"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
- carrier_enabled="true"
+ apn="jionet"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ network_type_bitmask="13"
/>
- <apn carrier="Loop MMS (405855)"
+ <apn carrier="Reliance Jio IMS"
carrier_id = "2018"
mcc="405"
mnc="855"
- 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="ims"
+ type="ims"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
- <apn carrier="Loop Internet (405856)"
+ <apn carrier="Reliance Jio"
carrier_id = "2018"
mcc="405"
mnc="856"
- apn="www"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
- carrier_enabled="true"
+ apn="jionet"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ network_type_bitmask="13"
/>
- <apn carrier="Loop MMS (405856)"
+ <apn carrier="Reliance Jio IMS"
carrier_id = "2018"
mcc="405"
mnc="856"
- 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="ims"
+ type="ims"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
- <apn carrier="Loop Internet (405857)"
+ <apn carrier="Reliance Jio"
carrier_id = "2018"
mcc="405"
mnc="857"
- apn="www"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
- carrier_enabled="true"
+ apn="jionet"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ network_type_bitmask="13"
/>
- <apn carrier="Loop MMS (405857)"
+ <apn carrier="Reliance Jio IMS"
carrier_id = "2018"
mcc="405"
mnc="857"
- 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="ims"
+ type="ims"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
- <apn carrier="Loop Internet (405858)"
+ <apn carrier="Reliance Jio"
carrier_id = "2018"
mcc="405"
mnc="858"
- apn="www"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
- carrier_enabled="true"
+ apn="jionet"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ network_type_bitmask="13"
/>
- <apn carrier="Loop MMS (405858)"
+ <apn carrier="Reliance Jio IMS"
carrier_id = "2018"
mcc="405"
mnc="858"
- 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="ims"
+ type="ims"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
- <apn carrier="Loop Internet (405859)"
+ <apn carrier="Reliance Jio"
carrier_id = "2018"
mcc="405"
mnc="859"
- apn="www"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
- carrier_enabled="true"
+ apn="jionet"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ network_type_bitmask="13"
/>
- <apn carrier="Loop MMS (405859)"
+ <apn carrier="Reliance Jio IMS"
carrier_id = "2018"
mcc="405"
mnc="859"
- 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="ims"
+ type="ims"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
- <apn carrier="Loop Internet (405860)"
+ <apn carrier="Reliance Jio"
carrier_id = "2018"
mcc="405"
mnc="860"
- apn="www"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
- carrier_enabled="true"
+ apn="jionet"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ network_type_bitmask="13"
/>
- <apn carrier="Loop MMS (405860)"
+ <apn carrier="Reliance Jio IMS"
carrier_id = "2018"
mcc="405"
mnc="860"
- 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="ims"
+ type="ims"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
- <apn carrier="Loop Internet (405861)"
+ <apn carrier="Reliance Jio"
carrier_id = "2018"
mcc="405"
mnc="861"
- apn="www"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
- carrier_enabled="true"
+ apn="jionet"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ network_type_bitmask="13"
/>
- <apn carrier="Loop MMS (405861)"
+ <apn carrier="Reliance Jio IMS"
carrier_id = "2018"
mcc="405"
mnc="861"
- 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="ims"
+ type="ims"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
- <apn carrier="Loop Internet (405862)"
+ <apn carrier="Reliance Jio"
carrier_id = "2018"
mcc="405"
mnc="862"
- apn="www"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
- carrier_enabled="true"
+ apn="jionet"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ network_type_bitmask="13"
/>
- <apn carrier="Loop MMS (405862)"
+ <apn carrier="Reliance Jio IMS"
carrier_id = "2018"
mcc="405"
mnc="862"
- 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="ims"
+ type="ims"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
- <apn carrier="Loop Internet (405863)"
+ <apn carrier="Reliance Jio"
carrier_id = "2018"
mcc="405"
mnc="863"
- apn="www"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
- carrier_enabled="true"
+ apn="jionet"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ network_type_bitmask="13"
/>
- <apn carrier="Loop MMS (405863)"
+ <apn carrier="Reliance Jio IMS"
carrier_id = "2018"
mcc="405"
mnc="863"
- 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="ims"
+ type="ims"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
- <apn carrier="Loop Internet (405864)"
+ <apn carrier="Reliance Jio"
carrier_id = "2018"
mcc="405"
mnc="864"
- apn="www"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
- carrier_enabled="true"
+ apn="jionet"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ network_type_bitmask="13"
/>
- <apn carrier="Loop MMS (405864)"
+ <apn carrier="Reliance Jio IMS"
carrier_id = "2018"
mcc="405"
mnc="864"
- 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="ims"
+ type="ims"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
- <apn carrier="Loop Internet (405865)"
+ <apn carrier="Reliance Jio"
carrier_id = "2018"
mcc="405"
mnc="865"
- apn="www"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
- carrier_enabled="true"
+ apn="jionet"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ network_type_bitmask="13"
/>
- <apn carrier="Loop MMS (405865)"
+ <apn carrier="Reliance Jio IMS"
carrier_id = "2018"
mcc="405"
mnc="865"
- 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="ims"
+ type="ims"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
- <apn carrier="Loop Internet (405866)"
+ <apn carrier="Reliance Jio"
carrier_id = "2018"
mcc="405"
mnc="866"
- apn="www"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
- carrier_enabled="true"
+ apn="jionet"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ network_type_bitmask="13"
/>
- <apn carrier="Loop MMS (405866)"
+ <apn carrier="Reliance Jio IMS"
carrier_id = "2018"
mcc="405"
mnc="866"
- 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="ims"
+ type="ims"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
- <apn carrier="Loop Internet (405867)"
+ <apn carrier="Reliance Jio"
carrier_id = "2018"
mcc="405"
mnc="867"
- apn="www"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
- carrier_enabled="true"
+ apn="jionet"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ network_type_bitmask="13"
/>
- <apn carrier="Loop MMS (405867)"
+ <apn carrier="Reliance Jio IMS"
carrier_id = "2018"
mcc="405"
mnc="867"
- 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="ims"
+ type="ims"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
- <apn carrier="Loop Internet (405868)"
+ <apn carrier="Reliance Jio"
carrier_id = "2018"
mcc="405"
mnc="868"
- apn="www"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
- carrier_enabled="true"
+ apn="jionet"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ network_type_bitmask="13"
/>
- <apn carrier="Loop MMS (405868)"
+ <apn carrier="Reliance Jio IMS"
carrier_id = "2018"
mcc="405"
mnc="868"
- 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="ims"
+ type="ims"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
- <apn carrier="Loop Internet (405869)"
+ <apn carrier="Reliance Jio"
carrier_id = "2018"
mcc="405"
mnc="869"
- apn="www"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
- carrier_enabled="true"
+ apn="jionet"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ network_type_bitmask="13"
/>
- <apn carrier="Loop MMS (405869)"
+ <apn carrier="Reliance Jio IMS"
carrier_id = "2018"
mcc="405"
mnc="869"
- 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="ims"
+ type="ims"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
- <apn carrier="Loop Internet (405870)"
+ <apn carrier="Reliance Jio"
carrier_id = "2018"
mcc="405"
mnc="870"
- apn="www"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
- carrier_enabled="true"
+ apn="jionet"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ network_type_bitmask="13"
/>
- <apn carrier="Loop MMS (405870)"
+ <apn carrier="Reliance Jio IMS"
carrier_id = "2018"
mcc="405"
mnc="870"
- 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="ims"
+ type="ims"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
- <apn carrier="Loop Internet (405871)"
+ <apn carrier="Reliance Jio"
carrier_id = "2018"
mcc="405"
mnc="871"
- apn="www"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
- carrier_enabled="true"
+ apn="jionet"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ network_type_bitmask="13"
/>
- <apn carrier="Loop MMS (405871)"
+ <apn carrier="Reliance Jio IMS"
carrier_id = "2018"
mcc="405"
mnc="871"
- 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="ims"
+ type="ims"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
- <apn carrier="Loop Internet (405872)"
+ <apn carrier="Reliance Jio"
carrier_id = "2018"
mcc="405"
mnc="872"
- apn="www"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
- carrier_enabled="true"
+ apn="jionet"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ network_type_bitmask="13"
/>
- <apn carrier="Loop MMS (405872)"
+ <apn carrier="Reliance Jio IMS"
carrier_id = "2018"
mcc="405"
mnc="872"
- 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="ims"
+ type="ims"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
- <apn carrier="Loop Internet (405873)"
+ <apn carrier="Reliance Jio"
carrier_id = "2018"
mcc="405"
mnc="873"
- apn="www"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
- carrier_enabled="true"
+ apn="jionet"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ network_type_bitmask="13"
/>
- <apn carrier="Loop MMS (405873)"
+ <apn carrier="Reliance Jio IMS"
carrier_id = "2018"
mcc="405"
mnc="873"
- 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="ims"
+ type="ims"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
- <apn carrier="Loop Internet (405874)"
+ <apn carrier="Reliance Jio"
carrier_id = "2018"
mcc="405"
mnc="874"
- apn="www"
- type="default,supl,fota,dun"
- protocol="IP"
- roaming_protocol="IP"
- carrier_enabled="true"
+ apn="jionet"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
+ network_type_bitmask="13"
/>
- <apn carrier="Loop MMS (405874)"
+ <apn carrier="Reliance Jio IMS"
carrier_id = "2018"
mcc="405"
mnc="874"
- 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="ims"
+ type="ims"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -25458,7 +28086,9 @@
mnc="875"
apn="uninor"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Wap"
@@ -25468,7 +28098,9 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor MMS"
@@ -25480,6 +28112,8 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -25488,7 +28122,9 @@
mnc="876"
apn="uninor"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Wap"
@@ -25498,7 +28134,9 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor MMS"
@@ -25510,6 +28148,8 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -25518,7 +28158,9 @@
mnc="877"
apn="uninor"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Wap"
@@ -25528,7 +28170,9 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor MMS"
@@ -25540,6 +28184,8 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -25548,7 +28194,9 @@
mnc="878"
apn="uninor"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Wap"
@@ -25558,7 +28206,9 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor MMS"
@@ -25570,6 +28220,8 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -25578,7 +28230,9 @@
mnc="879"
apn="uninor"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Wap"
@@ -25588,7 +28242,9 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor MMS"
@@ -25600,6 +28256,8 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -25608,7 +28266,9 @@
mnc="880"
apn="uninor"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Wap"
@@ -25618,7 +28278,9 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor MMS"
@@ -25630,6 +28292,8 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="STEL"
@@ -25637,7 +28301,9 @@
mcc="405"
mnc="881"
apn="gprs.stel.in"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="STEL"
@@ -25645,7 +28311,9 @@
mcc="405"
mnc="882"
apn="gprs.stel.in"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="STEL"
@@ -25653,7 +28321,9 @@
mcc="405"
mnc="883"
apn="gprs.stel.in"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="STEL"
@@ -25661,7 +28331,9 @@
mcc="405"
mnc="884"
apn="gprs.stel.in"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="STEL"
@@ -25669,7 +28341,9 @@
mcc="405"
mnc="885"
apn="gprs.stel.in"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="STEL"
@@ -25677,7 +28351,9 @@
mcc="405"
mnc="886"
apn="gprs.stel.in"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA"
@@ -25685,7 +28361,9 @@
mcc="405"
mnc="908"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA MMS"
@@ -25697,6 +28375,8 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA"
@@ -25704,7 +28384,9 @@
mcc="405"
mnc="909"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA MMS"
@@ -25716,6 +28398,8 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA"
@@ -25723,7 +28407,9 @@
mcc="405"
mnc="910"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA MMS"
@@ -25735,6 +28421,8 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA"
@@ -25742,7 +28430,9 @@
mcc="405"
mnc="911"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="IDEA MMS"
@@ -25754,6 +28444,8 @@
mmsproxy="10.4.42.15"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Cheers"
@@ -25761,7 +28453,9 @@
mcc="405"
mnc="912"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Cheers"
@@ -25769,7 +28463,9 @@
mcc="405"
mnc="913"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Cheers"
@@ -25777,7 +28473,9 @@
mcc="405"
mnc="914"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Cheers"
@@ -25785,7 +28483,9 @@
mcc="405"
mnc="915"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Cheers"
@@ -25793,7 +28493,9 @@
mcc="405"
mnc="916"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Cheers"
@@ -25801,7 +28503,9 @@
mcc="405"
mnc="917"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Cheers"
@@ -25809,7 +28513,9 @@
mcc="405"
mnc="918"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Cheers"
@@ -25817,7 +28523,9 @@
mcc="405"
mnc="919"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Cheers"
@@ -25825,7 +28533,9 @@
mcc="405"
mnc="920"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Cheers"
@@ -25833,7 +28543,9 @@
mcc="405"
mnc="921"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Cheers"
@@ -25841,7 +28553,9 @@
mcc="405"
mnc="922"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Cheers"
@@ -25849,14 +28563,18 @@
mcc="405"
mnc="923"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Cheers"
mcc="405"
mnc="924"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -25865,7 +28583,9 @@
mnc="925"
apn="uninor"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Wap"
@@ -25875,7 +28595,9 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor MMS"
@@ -25887,6 +28609,8 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -25895,7 +28619,9 @@
mnc="926"
apn="uninor"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Wap"
@@ -25905,7 +28631,9 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor MMS"
@@ -25917,6 +28645,8 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -25925,7 +28655,9 @@
mnc="927"
apn="uninor"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Wap"
@@ -25935,7 +28667,9 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor MMS"
@@ -25947,6 +28681,8 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -25955,7 +28691,9 @@
mnc="928"
apn="uninor"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Wap"
@@ -25965,7 +28703,9 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor MMS"
@@ -25977,6 +28717,8 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Internet"
@@ -25985,7 +28727,9 @@
mnc="929"
apn="uninor"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor Wap"
@@ -25995,7 +28739,9 @@
apn="uninor"
proxy="10.58.10.58"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Uninor MMS"
@@ -26007,6 +28753,8 @@
mmsproxy="10.58.10.59"
mmsport="8080"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Cheers"
@@ -26014,14 +28762,18 @@
mcc="405"
mnc="930"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Cheers"
mcc="405"
mnc="931"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon MMS"
@@ -26033,6 +28785,8 @@
mmsproxy="10.202.5.145"
mmsport="8799"
type="mms"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Videocon"
@@ -26040,7 +28794,9 @@
mcc="405"
mnc="932"
apn="vinternet.com"
- type="default,supl"
+ type="default,ia,supl"
+ protocol="IPV4V6"
+ roaming_protocol="IPV4V6"
/>
<apn carrier="Mobilink WAP GPRS"
@@ -26050,7 +28806,7 @@
apn="connect.mobilinkworld.com"
user="Mobilink"
password="Mobilink"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Mobilink MMS"
@@ -26071,7 +28827,7 @@
mcc="410"
mnc="03"
apn="Ufone.internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Ufone MMS"
@@ -26090,7 +28846,7 @@
mcc="410"
mnc="04"
apn="zonginternet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="ZONG MMS"
@@ -26109,7 +28865,7 @@
mcc="410"
mnc="06"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Telenor MMS"
@@ -26130,7 +28886,7 @@
mcc="410"
mnc="07"
apn="Wap.warid"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Warid MMS"
@@ -26144,26 +28900,12 @@
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,supl"
+ type="default,ia,supl"
/>
<apn carrier="Roshan"
@@ -26171,7 +28913,7 @@
mcc="412"
mnc="20"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MTN"
@@ -26179,7 +28921,7 @@
mcc="412"
mnc="40"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Etisalat"
@@ -26187,7 +28929,7 @@
mcc="412"
mnc="50"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Mobitel"
@@ -26195,7 +28937,7 @@
mcc="413"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Dialog"
@@ -26203,7 +28945,7 @@
mcc="413"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Etisalat"
@@ -26211,7 +28953,7 @@
mcc="413"
mnc="03"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Airtel"
@@ -26219,7 +28961,7 @@
mcc="413"
mnc="05"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Hutch"
@@ -26227,7 +28969,7 @@
mcc="413"
mnc="08"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MPT"
@@ -26235,7 +28977,7 @@
mcc="414"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Ooredoo Internet"
@@ -26243,7 +28985,7 @@
mcc="414"
mnc="05"
apn="Internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Alfa Internet"
@@ -26253,7 +28995,7 @@
user="mic1"
password="mic1"
apn="internet.mic1.com.lb"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Alfawap"
@@ -26265,7 +29007,7 @@
password="mic1"
proxy="192.168.23.50"
port="80"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Alfa MMS"
@@ -26286,7 +29028,7 @@
mcc="415"
mnc="03"
apn="touch"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="touch_WAP"
@@ -26296,7 +29038,7 @@
apn="wap"
proxy="192.168.4.11"
port="80"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="touch_MMS"
@@ -26319,7 +29061,7 @@
user="zain"
password="zain"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
@@ -26333,7 +29075,7 @@
authtype="1"
proxy="192.168.55.10"
port="80"
- type="default,supl"
+ type="default,ia,supl"
/>
@@ -26345,7 +29087,7 @@
user="zain"
password="zain"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
@@ -26369,7 +29111,7 @@
mcc="416"
mnc="03"
apn="net"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Umniah WAP"
@@ -26379,7 +29121,7 @@
apn="wap"
proxy="10.1.1.10"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
@@ -26417,7 +29159,7 @@
user="net"
password="net"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Orange WAP"
@@ -26430,7 +29172,7 @@
authtype="1"
proxy="172.16.1.2"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Orange MMS"
@@ -26455,7 +29197,7 @@
user="net"
password="net"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Orange WAP"
@@ -26468,7 +29210,7 @@
authtype="1"
proxy="172.16.1.2"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
@@ -26477,7 +29219,7 @@
mcc="417"
mnc="01"
apn="net.syriatel.com"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Syriatel MMS"
@@ -26496,7 +29238,7 @@
mcc="417"
mnc="02"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MTN MMS"
@@ -26515,7 +29257,7 @@
mcc="418"
mnc="05"
apn="net.asiacell.com"
- type="default"
+ type="default,ia"
/>
<apn carrier="MMS"
@@ -26534,7 +29276,7 @@
mcc="418"
mnc="08"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="ZAIN-GPRS"
@@ -26545,7 +29287,7 @@
user="atheer"
password="atheer"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Zain-MMS"
@@ -26570,7 +29312,7 @@
user="atheer"
password="atheer"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Zain-MMS"
@@ -26592,7 +29334,7 @@
mcc="418"
mnc="40"
apn="internet.korek.com"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Korek 9191"
@@ -26602,7 +29344,7 @@
apn="net.korek.com"
user="korek"
password="korek"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Korek 9494"
@@ -26610,7 +29352,7 @@
mcc="418"
mnc="40"
apn="internet.korek.com"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="KOREK MMS"
@@ -26632,7 +29374,7 @@
mcc="418"
mnc="45"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Itisaluna"
@@ -26640,7 +29382,7 @@
mcc="418"
mnc="62"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Omnnea"
@@ -26648,7 +29390,7 @@
mcc="418"
mnc="92"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MI"
@@ -26658,7 +29400,7 @@
apn="pps"
user="pps"
password="pps"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Zain WAP"
@@ -26671,7 +29413,7 @@
authtype="3"
proxy="10.43.4.5"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS"
@@ -26694,7 +29436,7 @@
mnc="03"
apn="action.ooredoo.com"
authtype="1"
- type="default"
+ type="default,ia"
/>
<apn carrier="Ooredoo MMS"
@@ -26706,7 +29448,7 @@
mmsproxy="194.126.53.64"
mmsport="8080"
authtype="1"
- type="default"
+ type="default,ia"
/>
<apn carrier="VIVA - KW"
@@ -26718,7 +29460,7 @@
mmsc="http://172.16.128.80:38090/was"
mmsproxy="172.16.128.228"
mmsport="8080"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="STC - GPRS"
@@ -26726,7 +29468,7 @@
mcc="420"
mnc="01"
apn="jawalnet.com.sa"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="STC MMS"
@@ -26745,7 +29487,7 @@
mcc="420"
mnc="03"
apn="web1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Mobily prepaid - GPRS"
@@ -26755,7 +29497,7 @@
apn="wap2"
proxy="10.3.2.133"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Mobily postpaid - GPRS"
@@ -26765,7 +29507,7 @@
apn="wap1"
proxy="10.3.2.133"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Mobily WEB 2"
@@ -26773,7 +29515,7 @@
mcc="420"
mnc="03"
apn="web2"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Mobily MMS Postpaid"
@@ -26804,7 +29546,7 @@
mnc="04"
apn="zain"
authtype="0"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="zain-mms"
@@ -26825,7 +29567,7 @@
mcc="421"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Sabafon MMS"
@@ -26847,7 +29589,7 @@
mcc="421"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MTN MMS YE"
@@ -26871,7 +29613,7 @@
user="ymobile"
password="ymobile"
authtype="3"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="HiTS-UNITEL"
@@ -26879,7 +29621,7 @@
mcc="421"
mnc="04"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="YemenMobile"
@@ -26888,7 +29630,7 @@
mnc="11"
apn="ymdata"
authtype="0"
- type="default,mms,supl,fota,cbs,dun"
+ type="default,ia,mms,supl,fota,cbs,dun"
protocol="IPV4V6"
/>
@@ -26925,7 +29667,7 @@
user="taif"
password="taif"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Nawras MMS"
@@ -26951,7 +29693,7 @@
user="test"
password="test"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
@@ -26961,7 +29703,7 @@
mnc="02"
apn="etisalat.ae"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Weyak Wap"
@@ -26972,7 +29714,7 @@
proxy="10.12.0.32"
port="8080"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Etisalat MMS"
@@ -26992,7 +29734,7 @@
mcc="424"
mnc="03"
apn="du"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="du WAP"
@@ -27002,7 +29744,7 @@
apn="du"
proxy="10.19.18.4"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="du MMS"
@@ -27024,7 +29766,7 @@
mmsc="http://192.168.220.15/servlets/mms"
mmsproxy="192.118.11.55"
mmsport="8080"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="Cellcom Internet"
@@ -27032,7 +29774,7 @@
mcc="425"
mnc="02"
apn="sphone"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Cellcom MMS"
@@ -27068,7 +29810,7 @@
user="pcl@3g"
password="pcl"
authtype="2"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Jawwal WAP"
@@ -27077,7 +29819,7 @@
apn="wap"
proxy="213.244.118.129"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Jawwal MMS"
@@ -27096,7 +29838,7 @@
apn="internet"
proxy="10.100.129.111"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Wataniya_mms"
@@ -27114,7 +29856,7 @@
mcc="425"
mnc="07"
apn="net.hotm"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="PC HOT mobile"
@@ -27142,7 +29884,7 @@
mcc="425"
mnc="08"
apn="internet.golantelecom.net.il"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="GolanTelecom MMS"
@@ -27163,7 +29905,7 @@
apn="uwap.orange.co.il"
mmsc="http://192.168.220.15/servlets/mms"
mmsport="8080"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="YouPhone"
@@ -27172,7 +29914,7 @@
mnc="14"
apn="data.youphone.co.il"
mmsc="http://192.168.220.15/servlets/mms"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="Home Cellular Internet"
@@ -27180,7 +29922,7 @@
mcc="425"
mnc="15"
apn="hcminternet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Home Cellular MMS"
@@ -27199,7 +29941,7 @@
mcc="425"
mnc="16"
apn="internet.rl"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Rami Levi Multimedia"
@@ -27218,7 +29960,7 @@
mcc="425"
mnc="26"
apn="annatel"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Batelco Internet"
@@ -27226,7 +29968,7 @@
mcc="426"
mnc="01"
apn="internet.batelco.com"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Batelco WAP"
@@ -27239,7 +29981,7 @@
authtype="0"
proxy="192.168.1.2"
port="80"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Batelco MMS"
@@ -27264,7 +30006,7 @@
user="internet"
password="internet"
authtype="0"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Zain BH WAP"
@@ -27277,7 +30019,7 @@
authtype="0"
proxy="172.18.85.33"
port="80"
- type="default,supl"
+ type="default,ia,supl"
/>
@@ -27300,7 +30042,7 @@
mcc="426"
mnc="04"
apn="viva.bh"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="VIVAWAP"
@@ -27310,7 +30052,7 @@
apn="vivawap.bh"
proxy="172.18.142.36"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="VIVAMMS"
@@ -27329,7 +30071,7 @@
mcc="427"
mnc="01"
apn="data"
- type="default,supl"
+ type="default,ia,supl"
authtype="1"
/>
@@ -27349,7 +30091,7 @@
mcc="427"
mnc="02"
apn="web.vodafone.com.qa"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="VFQ MMS"
@@ -27368,7 +30110,7 @@
mcc="428"
mnc="88"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Skytel"
@@ -27376,7 +30118,7 @@
mcc="428"
mnc="91"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="G.Mobile"
@@ -27384,7 +30126,7 @@
mcc="428"
mnc="98"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MobiCom"
@@ -27392,7 +30134,7 @@
mcc="428"
mnc="99"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Namaste / NT Mobile"
@@ -27400,7 +30142,7 @@
mcc="429"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Ncell"
@@ -27408,7 +30150,7 @@
mcc="429"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Sky/C-Phone"
@@ -27416,7 +30158,7 @@
mcc="429"
mnc="03"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="SmartCell"
@@ -27424,7 +30166,7 @@
mcc="429"
mnc="04"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MCI-GPRS"
@@ -27432,7 +30174,7 @@
mcc="432"
mnc="11"
apn="mcinet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MCCI MMS"
@@ -27451,7 +30193,7 @@
mcc="432"
mnc="14"
apn="mcinet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MCCI MMS"
@@ -27469,7 +30211,7 @@
mcc="432"
mnc="19"
apn="mcinet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MCCI MMS"
@@ -27487,7 +30229,7 @@
mcc="432"
mnc="20"
apn="rightel"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="RighTel-MMS"
@@ -27508,7 +30250,7 @@
apn="mtnirancell"
proxy="10.131.26.138"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Irancell-MMS"
@@ -27527,7 +30269,7 @@
mcc="432"
mnc="70"
apn="mcinet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MCCI MMS"
@@ -27546,7 +30288,7 @@
mcc="432"
mnc="93"
apn="mcinet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MCCI MMS"
@@ -27567,7 +30309,7 @@
user="beeline"
password="beeline"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Beeline-UZB MMS"
@@ -27589,7 +30331,7 @@
mcc="434"
mnc="05"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="UCELL MMS"
@@ -27608,7 +30350,7 @@
mcc="434"
mnc="06"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MTS-UZB Internet"
@@ -27619,7 +30361,7 @@
user="mts"
password="mts"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MTS-UZB MMS"
@@ -27638,7 +30380,7 @@
mcc="436"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Tcell"
@@ -27646,7 +30388,7 @@
mcc="436"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Megafon"
@@ -27654,7 +30396,7 @@
mcc="436"
mnc="03"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Babilon-M"
@@ -27662,7 +30404,7 @@
mcc="436"
mnc="04"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Tacom"
@@ -27670,7 +30412,7 @@
mcc="436"
mnc="05"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Tcell"
@@ -27678,7 +30420,7 @@
mcc="436"
mnc="12"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Beeline"
@@ -27686,7 +30428,7 @@
mcc="437"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Fonex"
@@ -27694,7 +30436,7 @@
mcc="437"
mnc="03"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MegaCom"
@@ -27702,7 +30444,7 @@
mcc="437"
mnc="05"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="O!"
@@ -27710,7 +30452,7 @@
mcc="437"
mnc="09"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MTS (BARASH Communication)"
@@ -27718,7 +30460,7 @@
mcc="438"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="TM-Cell"
@@ -27726,7 +30468,7 @@
mcc="438"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="IIJmio (TypeI)"
@@ -27737,7 +30479,7 @@
password="iij"
authtype="3"
protocol="IPV4V6"
- type="default"
+ type="default,ia"
roaming_protocol="IP"
/>
@@ -27749,7 +30491,7 @@
password="vmobile"
authtype="3"
protocol="IPV4V6"
- type="default"
+ type="default,ia"
roaming_protocol="IP"
/>
@@ -27757,7 +30499,7 @@
mcc="440"
mnc="10"
apn="spmode.ne.jp"
- type="default,supl"
+ type="default,ia,supl"
authtype="0"
protocol="IPV4V6"
/>
@@ -27787,7 +30529,7 @@
mcc="440"
mnc="11"
apn="rakuten.jp"
- type="default,supl,dun"
+ type="default,ia,supl,dun"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
/>
@@ -27830,7 +30572,7 @@
mmsproxy="andmms.plusacs.ne.jp"
mmsport="8080"
mmsc="http://mms-s"
- type="default,mms,supl,hipri"
+ type="default,ia,mms,supl,hipri"
authtype="2"
/>
@@ -27844,7 +30586,7 @@
password="ratel"
authtype="3"
protocol="IPV4V6"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="RATEL"
@@ -27857,7 +30599,7 @@
password="ratel"
authtype="3"
protocol="IPV4V6"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Rakuten"
@@ -27869,7 +30611,7 @@
server=""
password="0000"
authtype="3"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="SKT IA"
@@ -27896,7 +30638,7 @@
mcc="450"
mnc="05"
apn="lte.sktelecom.com"
- type="default,mms,supl,fota,cbs"
+ type="default,ia,mms,supl,fota,cbs"
mmsc="http://omms.nate.com:9082/oma_mms"
mmsproxy="smart.nate.com"
mmsport="9093"
@@ -27929,7 +30671,7 @@
mcc="450"
mnc="06"
apn="internet.lguplus.co.kr"
- type="default,mms,supl,fota,cbs"
+ type="default,ia,mms,supl,fota,cbs"
mmsc="http://omammsc.uplus.co.kr:9084"
protocol="IPV4V6"
/>
@@ -27958,7 +30700,7 @@
mcc="450"
mnc="08"
apn="lte.ktfwing.com"
- type="default,mms,supl,fota,cbs"
+ type="default,ia,mms,supl,fota,cbs"
mmsc="http://mmsc.ktfwing.com:9082"
port="80"
server="*"
@@ -27972,7 +30714,7 @@
user="mms"
password="mms"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Mobi-wap-gprs 1"
@@ -27985,7 +30727,7 @@
authtype="1"
proxy="203.162.21.107"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Mobi-gprs-mms"
@@ -28010,7 +30752,7 @@
user="mms"
password="mms"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Vina-gprs-mms"
@@ -28032,7 +30774,7 @@
mcc="452"
mnc="04"
apn="v-internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Viettel-wap-gprs 2"
@@ -28042,7 +30784,7 @@
apn="v-wap"
proxy="192.168.233.10"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Viettel-gprs-mms"
@@ -28061,7 +30803,7 @@
mcc="452"
mnc="05"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Vietnamobile_GPRS1"
@@ -28071,7 +30813,7 @@
apn="wap"
proxy="10.10.128.44"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Vietnamobile_GPRS2"
@@ -28079,7 +30821,7 @@
mcc="452"
mnc="05"
apn="wap"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Vietnamobile_MMS"
@@ -28098,7 +30840,7 @@
mcc="452"
mnc="07"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Gmobile-wap-gprs"
@@ -28108,7 +30850,7 @@
apn="internet"
proxy="10.16.70.199"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Gmobile-gprs-mms"
@@ -28141,7 +30883,7 @@
mcc="452"
mnc="08"
apn="e-internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="e-wap"
@@ -28151,7 +30893,7 @@
apn="e-wap"
proxy="10.18.2.183"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="e-mms"
@@ -28174,7 +30916,7 @@
mmsport="8080"
mmsc="http://192.168.58.171:8002"
authtype="3"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="one2free"
@@ -28186,7 +30928,7 @@
mmsport="8080"
mmsc="http://192.168.58.171:8002"
authtype="3"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="NWMOBILE"
@@ -28198,7 +30940,7 @@
mmsport="8080"
mmsc="http://192.168.58.171:8002"
authtype="3"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="Truphone"
@@ -28207,7 +30949,7 @@
mnc="00"
apn="truphone.com"
mmsc="http://mmsc.truphone.com:1981/mm1"
- type="default,supl,mms,dun"
+ type="default,ia,supl,mms,dun"
mvno_type="gid"
mvno_match_data="547275554B3030656E"
/>
@@ -28233,7 +30975,7 @@
mmsport="8080"
mmsc="http://192.168.58.171:8002"
authtype="3"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="one2free"
@@ -28245,7 +30987,7 @@
mmsport="8080"
mmsc="http://192.168.58.171:8002"
authtype="3"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="NWMOBILE"
@@ -28257,7 +30999,7 @@
mmsport="8080"
mmsc="http://192.168.58.171:8002"
authtype="3"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="3 LTE"
@@ -28269,7 +31011,7 @@
mmsproxy="mms.three.com.hk"
mmsport="8799"
authtype="1"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="3"
@@ -28281,7 +31023,7 @@
mmsproxy="mms.three.com.hk"
mmsport="8799"
authtype="1"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="3(2G) MMS"
@@ -28302,7 +31044,7 @@
apn="web-g.three.com.hk"
proxy="10.30.3.151"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="SmarTone"
@@ -28314,7 +31056,7 @@
mmsproxy="10.9.9.9"
mmsport="8080"
authtype="3"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="Truphone"
@@ -28323,7 +31065,7 @@
mnc="08"
apn="truphone.com"
mmsc="http://mmsc.truphone.com:1981/mm1"
- type="default,supl,mms,dun"
+ type="default,ia,supl,mms,dun"
mvno_type="gid"
mvno_match_data="547275554B3030656E"
/>
@@ -28349,7 +31091,7 @@
mmsproxy="192.168.59.51"
mmsport="8080"
authtype="3"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="CMHK MMS"
@@ -28366,7 +31108,7 @@
mcc="454"
mnc="12"
apn="cmhk"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="CMHK MMS"
@@ -28383,7 +31125,7 @@
mcc="454"
mnc="13"
apn="cmhk"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="SmarTone"
@@ -28395,7 +31137,7 @@
mmsport="8080"
mmsc="http://mms.smartone.com/server"
authtype="3"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="PCCW-HKT"
@@ -28407,7 +31149,7 @@
mmsproxy="10.140.14.10"
mmsport="8080"
authtype="1"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="SmarTone"
@@ -28419,7 +31161,7 @@
mmsport="8080"
mmsc="http://mms.smartone.com/server"
authtype="3"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="1O1O"
@@ -28431,7 +31173,7 @@
mmsport="8080"
mmsc="http://192.168.58.171:8002"
authtype="3"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="one2free"
@@ -28443,7 +31185,7 @@
mmsport="8080"
mmsc="http://192.168.58.171:8002"
authtype="3"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="NWMOBILE"
@@ -28455,7 +31197,7 @@
mmsport="8080"
mmsc="http://192.168.58.171:8002"
authtype="3"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="PCCW-HKT"
@@ -28467,7 +31209,7 @@
mmsproxy="10.140.14.10"
mmsport="8080"
authtype="1"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="SmarTone Macau"
@@ -28479,7 +31221,7 @@
mmsproxy="10.9.9.29"
mmsport="8080"
authtype="3"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="CTM Data"
@@ -28487,7 +31229,7 @@
mcc="455"
mnc="01"
apn="ctm-mobile"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="CTM MMS"
@@ -28509,7 +31251,7 @@
mmsc="http://mms.wap.ctm.net:8002"
mmsproxy="192.168.99.3"
mmsport="8080"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="3 Macau"
@@ -28521,7 +31263,7 @@
mmsproxy="mms.three.com.mo"
mmsport="8080"
authtype="1"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="CTM Data"
@@ -28529,7 +31271,7 @@
mcc="455"
mnc="04"
apn="ctm-mobile"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="CTM MMS"
@@ -28551,7 +31293,7 @@
mmsc="http://mms.wap.ctm.net:8002"
mmsproxy="192.168.99.3"
mmsport="8080"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="3 Macau"
@@ -28562,7 +31304,7 @@
mmsproxy="mms.three.com.mo"
mmsport="8080"
authtype="1"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="Cellcard"
@@ -28570,7 +31312,7 @@
mcc="456"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Smart"
@@ -28578,7 +31320,7 @@
mcc="456"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="qb"
@@ -28586,7 +31328,7 @@
mcc="456"
mnc="04"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Star-Cell"
@@ -28594,7 +31336,7 @@
mcc="456"
mnc="05"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Smart"
@@ -28602,7 +31344,7 @@
mcc="456"
mnc="06"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Metfone"
@@ -28610,14 +31352,14 @@
mcc="456"
mnc="08"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Beeline"
mcc="456"
mnc="09"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Excell"
@@ -28625,7 +31367,7 @@
mcc="456"
mnc="11"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Cellcard"
@@ -28633,7 +31375,7 @@
mcc="456"
mnc="18"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="LTC"
@@ -28641,7 +31383,7 @@
mcc="457"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="ETL"
@@ -28649,7 +31391,7 @@
mcc="457"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Unitel"
@@ -28657,7 +31399,7 @@
mcc="457"
mnc="03"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Beeline"
@@ -28665,7 +31407,7 @@
mcc="457"
mnc="08"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="中国移动 (China Mobile) GPRS"
@@ -28673,7 +31415,7 @@
mcc="460"
mnc="00"
apn="cmnet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="中国移动 (China Mobile) WAP"
@@ -28683,7 +31425,7 @@
apn="cmwap"
proxy="10.0.0.172"
port="80"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="中国移动彩信 (China Mobile)"
@@ -28704,7 +31446,7 @@
mcc="460"
mnc="01"
apn="3gnet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="沃3G手机上网 (China Unicom)"
@@ -28714,7 +31456,7 @@
apn="3gwap"
proxy="10.0.0.172"
port="80"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="联通2GNET上网 (China Unicom)"
@@ -28722,7 +31464,7 @@
mcc="460"
mnc="01"
apn="uninet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="联通彩信 (China Unicom)"
@@ -28752,7 +31494,7 @@
mcc="460"
mnc="02"
apn="cmnet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="中国移动 (China Mobile) WAP"
@@ -28762,7 +31504,7 @@
apn="cmwap"
proxy="10.0.0.172"
port="80"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="中国移动彩信 (China Mobile)"
@@ -28792,7 +31534,7 @@
mmsc=""
mmsproxy=""
mmsport=""
- type="default,hipri,fota,cbs"
+ type="default,ia,hipri,fota,cbs"
protocol="IP"
/>
@@ -28810,7 +31552,7 @@
mmsc="http://mmsc.vnet.mobi"
mmsproxy="10.0.0.200"
mmsport="80"
- type="default,mms,hipri,supl,fota,cbs"
+ type="default,ia,mms,hipri,supl,fota,cbs"
protocol="IP"
/>
@@ -28819,7 +31561,7 @@
mcc="460"
mnc="07"
apn="cmnet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="中国移动 (China Mobile) GPRS"
@@ -28827,7 +31569,7 @@
mcc="460"
mnc="08"
apn="cmnet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="中国移动 (China Mobile) WAP"
@@ -28837,7 +31579,7 @@
apn="cmwap"
proxy="10.0.0.172"
port="80"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="中国移动彩信 (China Mobile)"
@@ -28860,7 +31602,7 @@
apn="cmwap"
proxy="10.0.0.172"
port="80"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="中国移动彩信 (China Mobile)"
@@ -28882,7 +31624,7 @@
mcc="460"
mnc="09"
port="80"
- type="default, supl"/>
+ type="default,ia, supl"/>
<apn carrier="China Unicom wap"
apn="3gwap"
@@ -28894,7 +31636,7 @@
mmsproxy="10.0.0.172"
mmsport="80"
mmsc="http://mmsc.myuni.com.cn"
- type="default, mms"/>
+ type="default,ia, mms"/>
<apn carrier="ctlte"
carrier_id = "2237"
@@ -28910,7 +31652,7 @@
mmsc=""
mmsproxy=""
mmsport=""
- type="default,hipri,supl,fota,cbs"
+ type="default,ia,hipri,supl,fota,cbs"
protocol="IPV4V6"
/>
@@ -28948,7 +31690,7 @@
mcc="466"
mnc="01"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="和信電訊(KGT-Online) (Internet)"
@@ -28956,7 +31698,7 @@
mcc="466"
mnc="88"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="和信電訊(KGT-Online) (MMS)"
@@ -28975,7 +31717,7 @@
mcc="466"
mnc="89"
apn="vibo"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="T Star-internet"
@@ -28983,7 +31725,7 @@
mcc="466"
mnc="89"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="VIBOONE"
@@ -28991,7 +31733,7 @@
mcc="466"
mnc="89"
apn="viboone"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="T Star-MMS"
@@ -29010,7 +31752,7 @@
mcc="466"
mnc="92"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="中華電信(Chunghwa) (MMS)"
@@ -29029,7 +31771,7 @@
mcc="466"
mnc="93"
apn="Internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="台灣大哥大(TW Mobile) (MMS)"
@@ -29048,7 +31790,7 @@
mcc="466"
mnc="97"
apn="Internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="台灣大哥大(TW Mobile) (MMS)"
@@ -29067,7 +31809,7 @@
mcc="466"
mnc="99"
apn="Internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="台灣大哥大(TW Mobile) (MMS)"
@@ -29087,7 +31829,7 @@
mnc="01"
apn="gpinternet"
authtype="0"
- type="default,supl,fota,dun"
+ type="default,ia,supl,fota,dun"
/>
<apn carrier="GP-MMS"
@@ -29107,7 +31849,7 @@
mcc="472"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="OoredooData"
@@ -29115,7 +31857,7 @@
mcc="472"
mnc="02"
apn="OoredooData"
- type="default"
+ type="default,ia"
/>
<apn carrier="MMS"
@@ -29134,7 +31876,7 @@
mcc="502"
mnc="10"
apn="diginet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="DiGi MMS"
@@ -29162,7 +31904,7 @@
mmsport="80"
mmsc="http://172.16.74.100:10021/mmsc"
authtype="1"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="Celcom Internet"
@@ -29173,7 +31915,7 @@
mmsproxy="10.128.1.242"
mmsport="8080"
mmsc="http://mms.celcom.net.my"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="DiGi Internet"
@@ -29181,7 +31923,7 @@
mcc="502"
mnc="143"
apn="diginet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="DiGi MMS"
@@ -29206,7 +31948,7 @@
mmsproxy="10.128.1.242"
mmsport="8080"
mmsc="http://mms.celcom.net.my"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="DiGi Internet"
@@ -29214,7 +31956,7 @@
mcc="502"
mnc="146"
apn="diginet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="DiGi MMS"
@@ -29239,7 +31981,7 @@
mmsproxy="10.128.1.242"
mmsport="8080"
mmsc="http://mms.celcom.net.my"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="DiGi MMS"
@@ -29261,7 +32003,7 @@
mcc="502"
mnc="16"
apn="diginet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Maxis Internet"
@@ -29275,7 +32017,7 @@
mmsport="80"
mmsc="http://172.16.74.100:10021/mmsc"
authtype="1"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="U Mobile Internet"
@@ -29286,7 +32028,7 @@
mmsproxy="10.30.5.11"
mmsport="8080"
mmsc="http://10.30.3.11/servlets/mms"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="Celcom Internet"
@@ -29297,7 +32039,7 @@
mmsproxy="10.128.1.242"
mmsport="8080"
mmsc="http://mms.celcom.net.my"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="Telstra IMS"
@@ -29315,9 +32057,9 @@
mcc="505"
mnc="01"
apn="telstra.wap"
- type="default,supl"
- protocol="IPV4"
- roaming_protocol="IPV4"
+ type="default,ia,supl"
+ protocol="IP"
+ roaming_protocol="IP"
/>
<apn carrier="Telstra MMS"
@@ -29329,8 +32071,8 @@
mmsc="http://mmsc.telstra.com:8002/"
mmsproxy="10.1.1.180"
mmsport="80"
- protocol="IPV4"
- roaming_protocol="IPV4"
+ protocol="IP"
+ roaming_protocol="IP"
/>
<apn carrier="Telstra Tethering"
@@ -29340,7 +32082,7 @@
apn="telstra.internet"
type="dun"
protocol="IPV4V6"
- roaming_protocol="IPV4"
+ roaming_protocol="IP"
/>
<apn carrier="Telstra HOS"
@@ -29348,8 +32090,8 @@
mcc="505"
mnc="01"
apn="hos"
- protocol="IPV4"
- roaming_protocol="IPV4"
+ protocol="IP"
+ roaming_protocol="IP"
/>
<apn carrier="Optus Yes Internet"
@@ -29357,7 +32099,7 @@
mcc="505"
mnc="02"
apn="yesinternet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Optus MMS"
@@ -29376,7 +32118,7 @@
mcc="505"
mnc="02"
apn="yesinternet"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="505029"
mvno_type="imsi"
/>
@@ -29402,7 +32144,7 @@
mmsc="http://pxt.vodafone.net.au/pxtsend"
mmsproxy="10.202.2.60"
mmsport="8080"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="Planet 3"
@@ -29431,7 +32173,7 @@
mcc="505"
mnc="07"
apn="vfinternet.au"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="3Internet"
@@ -29439,7 +32181,7 @@
mcc="505"
mnc="12"
apn="3netaccess"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="3"
@@ -29450,7 +32192,7 @@
mmsc="http://mmsc.three.net.au:10021/mmsc"
mmsproxy="10.176.57.25"
mmsport="8799"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="Lycamobile"
@@ -29462,6 +32204,7 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
+ type="default,ia,supl"
/>
<apn carrier="Truphone"
@@ -29470,7 +32213,7 @@
mnc="38"
apn="truphone.com"
mmsc="http://mmsc.truphone.com:1981/mm1"
- type="default,supl,mms,dun"
+ type="default,ia,supl,mms,dun"
mvno_type="gid"
mvno_match_data="547275554B3030656E"
/>
@@ -29487,6 +32230,45 @@
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"
@@ -29502,9 +32284,9 @@
mcc="505"
mnc="71"
apn="telstra.wap"
- type="default,supl"
- protocol="IPV4"
- roaming_protocol="IPV4"
+ type="default,ia,supl"
+ protocol="IP"
+ roaming_protocol="IP"
/>
<apn carrier="Telstra MMS"
@@ -29516,8 +32298,8 @@
mmsc="http://mmsc.telstra.com:8002/"
mmsproxy="10.1.1.180"
mmsport="80"
- protocol="IPV4"
- roaming_protocol="IPV4"
+ protocol="IP"
+ roaming_protocol="IP"
/>
<apn carrier="Telstra Tethering"
@@ -29527,7 +32309,7 @@
apn="telstra.internet"
type="dun"
protocol="IPV4V6"
- roaming_protocol="IPV4"
+ roaming_protocol="IP"
/>
<apn carrier="Telstra HOS"
@@ -29535,8 +32317,8 @@
mcc="505"
mnc="71"
apn="hos"
- protocol="IPV4"
- roaming_protocol="IPV4"
+ protocol="IP"
+ roaming_protocol="IP"
/>
<apn carrier="Telstra IMS"
@@ -29554,9 +32336,9 @@
mcc="505"
mnc="72"
apn="telstra.wap"
- type="default,supl"
- protocol="IPV4"
- roaming_protocol="IPV4"
+ type="default,ia,supl"
+ protocol="IP"
+ roaming_protocol="IP"
/>
<apn carrier="Telstra MMS"
@@ -29568,8 +32350,8 @@
mmsc="http://mmsc.telstra.com:8002/"
mmsproxy="10.1.1.180"
mmsport="80"
- protocol="IPV4"
- roaming_protocol="IPV4"
+ protocol="IP"
+ roaming_protocol="IP"
/>
<apn carrier="Telstra Tethering"
@@ -29579,7 +32361,7 @@
apn="telstra.internet"
type="dun"
protocol="IPV4V6"
- roaming_protocol="IPV4"
+ roaming_protocol="IP"
/>
<apn carrier="Telstra HOS"
@@ -29587,8 +32369,8 @@
mcc="505"
mnc="72"
apn="hos"
- protocol="IPV4"
- roaming_protocol="IPV4"
+ protocol="IP"
+ roaming_protocol="IP"
/>
<apn carrier="VF AU PXT"
@@ -29607,7 +32389,7 @@
mcc="505"
mnc="88"
apn="vfinternet.au"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Optus Internet"
@@ -29615,7 +32397,7 @@
mcc="505"
mnc="90"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Optus MMS"
@@ -29645,7 +32427,7 @@
mnc="01"
apn="indosatgprs"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Indosat MMS"
@@ -29668,7 +32450,7 @@
mnc="08"
apn="AXIS"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="AXISwap"
@@ -29680,7 +32462,7 @@
password="123456"
proxy="10.8.3.8"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
authtype="1"
/>
@@ -29703,7 +32485,7 @@
mcc="510"
mnc="10"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="TSEL-WAP"
@@ -29716,7 +32498,7 @@
authtype="1"
proxy="10.1.89.130"
port="8000"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="TSEL-MMS"
@@ -29739,7 +32521,7 @@
mnc="11"
apn="internet"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="XL-MMS"
@@ -29762,7 +32544,7 @@
mnc="21"
apn="indosatgprs"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Indosat GPRS"
@@ -29775,7 +32557,7 @@
authtype="1"
proxy="10.19.19.19"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Indosat MMS"
@@ -29798,7 +32580,7 @@
mnc="89"
apn="3gprs"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="3GPRS"
@@ -29809,7 +32591,7 @@
user="3gprs"
password="3gprs"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="3MMS"
@@ -29831,7 +32613,7 @@
mcc="514"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Timor Telecom"
@@ -29839,7 +32621,7 @@
mcc="514"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Viettel Timor-Leste"
@@ -29847,7 +32629,7 @@
mcc="514"
mnc="03"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="myGlobe Internet"
@@ -29855,7 +32637,7 @@
mcc="515"
mnc="02"
apn="internet.globe.com.ph"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="myGlobe INET"
@@ -29863,7 +32645,7 @@
mcc="515"
mnc="02"
apn="http.globe.com.ph"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="myGlobe Connect"
@@ -29873,7 +32655,7 @@
apn="www.globe.com.ph"
proxy="203.177.42.214"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="myGlobe MMS"
@@ -29892,7 +32674,7 @@
mcc="515"
mnc="03"
apn="smartlte"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="SMART INTERNET"
@@ -29900,7 +32682,7 @@
mcc="515"
mnc="03"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Smart GPRS"
@@ -29910,7 +32692,7 @@
apn="Smart1"
proxy="10.102.61.46"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Smart MMS"
@@ -29929,7 +32711,7 @@
mcc="515"
mnc="05"
apn="minternet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="SUN WAP GPRS"
@@ -29939,7 +32721,7 @@
apn="wap"
proxy="202.138.159.78"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Sun SBW"
@@ -29947,7 +32729,7 @@
mcc="515"
mnc="05"
apn="fbband"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Sun Streaming"
@@ -29955,7 +32737,7 @@
mcc="515"
mnc="05"
apn="minternet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="SUN MMS"
@@ -29974,7 +32756,7 @@
mcc="515"
mnc="18"
apn="redinternet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Redmms"
@@ -29993,7 +32775,7 @@
mcc="520"
mnc="00"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="CAT3G MMS"
@@ -30015,7 +32797,7 @@
user="true"
password="true"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="01"
mvno_type="gid"
/>
@@ -30042,7 +32824,7 @@
mnc="01"
apn="internet"
authtype="0"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="AIS MMS"
@@ -30062,7 +32844,7 @@
mnc="03"
apn="internet"
authtype="0"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="AIS MMS"
@@ -30084,7 +32866,7 @@
user="true"
password="true"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="TRUE-H MMS"
@@ -30106,7 +32888,7 @@
mcc="520"
mnc="05"
apn="www.dtac.co.th"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="dtac MMS"
@@ -30125,7 +32907,7 @@
mcc="520"
mnc="15"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="TOT 3G MMS"
@@ -30155,7 +32937,7 @@
mcc="520"
mnc="18"
apn="www.dtac.co.th"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="TRUE INTERNET"
@@ -30166,7 +32948,7 @@
user="true"
password="true"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="TRUE MMS"
@@ -30191,7 +32973,7 @@
mmsproxy="165.21.42.84"
mmsport="8080"
mmsc="http://mms.singtel.com:10021/mmsc"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="SingTel (PrePaid)"
@@ -30202,7 +32984,7 @@
mmsproxy="165.21.42.84"
mmsport="8080"
mmsc="http://mms.singtel.com:10021/mmsc"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="SingTel (PostPaid)"
@@ -30213,7 +32995,7 @@
mmsproxy="165.21.42.84"
mmsport="8080"
mmsc="http://mms.singtel.com:10021/mmsc"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="SingTel (PrePaid)"
@@ -30224,7 +33006,7 @@
mmsproxy="165.21.42.84"
mmsport="8080"
mmsc="http://mms.singtel.com:10021/mmsc"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="Sunsurf Mobile"
@@ -30232,7 +33014,7 @@
mcc="525"
mnc="03"
apn="sunsurf"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="M1 MMS(3G)"
@@ -30254,7 +33036,7 @@
mcc="525"
mnc="04"
apn="sunsurf"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="M1 MMS(3G)"
@@ -30276,7 +33058,7 @@
mcc="525"
mnc="05"
apn="shwap"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="SH MMS Postpaid"
@@ -30295,7 +33077,7 @@
mcc="528"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="DSTCom"
@@ -30303,7 +33085,7 @@
mcc="528"
mnc="11"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="VFNZ Gateway"
@@ -30322,7 +33104,7 @@
mcc="530"
mnc="01"
apn="vodafone"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Data"
@@ -30330,7 +33112,7 @@
mcc="530"
mnc="05"
apn="Internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Content"
@@ -30340,7 +33122,7 @@
apn="Internet"
proxy="210.55.11.73"
port="80"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS"
@@ -30359,7 +33141,7 @@
mcc="530"
mnc="05"
apn="wapaccess.co.nz"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="Skinny"
mvno_type="spn"
/>
@@ -30371,7 +33153,7 @@
apn="wapaccess.co.nz"
proxy="210.55.11.73"
port="80"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="Skinny"
mvno_type="spn"
/>
@@ -30381,7 +33163,7 @@
mcc="530"
mnc="05"
apn="wapaccess.co.nz"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="Skinny"
mvno_type="spn"
/>
@@ -30404,7 +33186,7 @@
mcc="530"
mnc="24"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="2Degrees MMS"
@@ -30422,7 +33204,7 @@
mcc="536"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="BeMobile"
@@ -30430,7 +33212,7 @@
mcc="537"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="PNG WAP"
@@ -30440,7 +33222,7 @@
apn="wap.digicelpng.com"
proxy="10.149.83.116"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="PNG WEB"
@@ -30448,7 +33230,7 @@
mcc="537"
mnc="03"
apn="internet.digicelpng.com"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Papua New Guinea:Digicel:Modem"
@@ -30481,7 +33263,7 @@
apn="em"
mvno_match_data="5370309"
mvno_type="imsi"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="U-Call"
@@ -30489,7 +33271,7 @@
mcc="539"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Shoreline Communication"
@@ -30497,7 +33279,7 @@
mcc="539"
mnc="43"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Digicel"
@@ -30505,7 +33287,7 @@
mcc="539"
mnc="88"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Tonga:Digicel:Modem"
@@ -30537,7 +33319,7 @@
mcc="540"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="BeMobile"
@@ -30545,7 +33327,7 @@
mcc="540"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="AIL"
@@ -30553,7 +33335,7 @@
mcc="541"
mnc="00"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="SMILE"
@@ -30561,7 +33343,7 @@
mcc="541"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Digicel"
@@ -30569,7 +33351,7 @@
mcc="541"
mnc="05"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Vanatu:Digicel:Modem"
@@ -30601,7 +33383,7 @@
mcc="542"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Digicel"
@@ -30609,7 +33391,7 @@
mcc="542"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Fiji:Digicel:Modem"
@@ -30641,7 +33423,7 @@
mcc="544"
mnc="11"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Kiribati - TSKL"
@@ -30649,7 +33431,7 @@
mcc="545"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Kiribati - Frigate Net"
@@ -30657,7 +33439,7 @@
mcc="545"
mnc="09"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Mobilis"
@@ -30665,7 +33447,7 @@
mcc="546"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Vini"
@@ -30673,7 +33455,7 @@
mcc="547"
mnc="20"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Telecom Cook"
@@ -30681,7 +33463,7 @@
mcc="548"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Digicel"
@@ -30689,7 +33471,7 @@
mcc="549"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Bluesky"
@@ -30697,7 +33479,7 @@
mcc="549"
mnc="27"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="FSMTC"
@@ -30705,14 +33487,14 @@
mcc="550"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MINTA"
mcc="551"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="PNCC"
@@ -30720,7 +33502,7 @@
mcc="552"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Palau Mobile"
@@ -30728,7 +33510,7 @@
mcc="552"
mnc="80"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Mobinil Web"
@@ -30736,7 +33518,7 @@
mcc="602"
mnc="01"
apn="mobinilweb"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Mobinil WAP"
@@ -30746,7 +33528,7 @@
apn="mobinilwap"
proxy="62.241.155.45"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Mobinil MMS"
@@ -30768,7 +33550,7 @@
user="internet"
password="internet"
authtype="3"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Vodafone WAP"
@@ -30781,7 +33563,7 @@
authtype="3"
proxy="163.121.178.2"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Vodafone MMS"
@@ -30805,7 +33587,7 @@
apn="etisalat"
proxy="10.71.130.29"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Etisalat MMS"
@@ -30829,7 +33611,7 @@
user="wap"
password="wap"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Mobilis internet"
@@ -30840,7 +33622,7 @@
user="internet"
password="internet"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Mobilis mms"
@@ -30862,7 +33644,7 @@
mcc="603"
mnc="02"
apn="djezzy.internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="djezzy.mms"
@@ -30883,7 +33665,7 @@
mcc="603"
mnc="03"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
authtype="1"
/>
@@ -30906,7 +33688,7 @@
mnc="00"
apn="internet.orange.ma"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Imedia"
@@ -30919,7 +33701,7 @@
user="MEDIWAP"
password="MEDIWAP"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="GPRS MMS"
@@ -30943,7 +33725,7 @@
apn="wap.iamgprs.ma"
proxy="212.217.54.133"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Internet Mobile"
@@ -30951,7 +33733,7 @@
mcc="604"
mnc="01"
apn="www.iamgprs1.ma"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS IAM"
@@ -30970,7 +33752,7 @@
mcc="604"
mnc="02"
apn="www.wana.ma"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="WAP"
@@ -30980,7 +33762,7 @@
apn="www.wana.ma"
proxy="10.86.0.10"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS"
@@ -30999,7 +33781,7 @@
mcc="605"
mnc="01"
apn="weborange"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS Orange"
@@ -31018,7 +33800,7 @@
mcc="605"
mnc="02"
apn="internet.tn"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Internet Portail"
@@ -31029,7 +33811,7 @@
user="gprs"
password="gprs"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Tunisie Telecom MMS"
@@ -31051,7 +33833,7 @@
mcc="605"
mnc="03"
apn="internet.ooredoo.tn"
- type="default"
+ type="default,ia"
/>
<apn carrier="Ooredoo TN MMS"
@@ -31070,7 +33852,7 @@
mcc="606"
mnc="00"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Libyana MMS"
@@ -31090,7 +33872,7 @@
mcc="606"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Al-Jeel Phone"
@@ -31098,7 +33880,7 @@
mcc="606"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Libya Phone"
@@ -31106,7 +33888,7 @@
mcc="606"
mnc="03"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Hatef Libya"
@@ -31114,7 +33896,7 @@
mcc="606"
mnc="06"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Gamcel"
@@ -31122,7 +33904,7 @@
mcc="607"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Africel"
@@ -31130,7 +33912,7 @@
mcc="607"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Comium"
@@ -31138,7 +33920,7 @@
mcc="607"
mnc="03"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="QCell"
@@ -31146,7 +33928,7 @@
mcc="607"
mnc="04"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Orange MMS SN"
@@ -31171,7 +33953,7 @@
password="wap"
proxy="172.16.30.9"
port="8080"
- type="default"
+ type="default,ia"
/>
<apn carrier="Orange Web SN"
@@ -31181,7 +33963,7 @@
apn="internet"
user="internet"
password="internet"
- type="default"
+ type="default,ia"
/>
<apn carrier="Tigo Internet SN"
@@ -31189,7 +33971,7 @@
mcc="608"
mnc="02"
apn="web.sentel.com"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Expresso Internet SN"
@@ -31201,7 +33983,7 @@
password="wap"
proxy="10.71.123.69"
port="8080"
- type="default"
+ type="default,ia"
/>
<apn carrier="Mattel"
@@ -31209,7 +33991,7 @@
mcc="609"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Chinguitel"
@@ -31217,7 +33999,7 @@
mcc="609"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Mauritel"
@@ -31225,7 +34007,7 @@
mcc="609"
mnc="10"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Orange 3G/4G"
@@ -31236,7 +34018,7 @@
authtype="1"
user="internet"
password="internet"
- type="default"
+ type="default,ia"
/>
<apn carrier="Orange ML MMS"
@@ -31261,7 +34043,7 @@
password="wap"
proxy="10.109.4.35"
port="8080"
- type="default"
+ type="default,ia"
/>
<apn carrier="Orange S.A."
@@ -31269,7 +34051,7 @@
mcc="611"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Sotelgui"
@@ -31277,7 +34059,7 @@
mcc="611"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Telecel Guinee"
@@ -31285,7 +34067,7 @@
mcc="611"
mnc="03"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MTN"
@@ -31293,7 +34075,7 @@
mcc="611"
mnc="04"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Cellcom"
@@ -31301,7 +34083,7 @@
mcc="611"
mnc="05"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Moov Internet CI"
@@ -31313,7 +34095,7 @@
password="web"
proxy="10.172.11.17"
port="8080"
- type="default"
+ type="default,ia"
/>
<apn carrier="Oweb"
@@ -31324,7 +34106,7 @@
user="web"
password="web"
authtype="1"
- type="default"
+ type="default,ia"
/>
<apn carrier="OWORLD CI"
@@ -31336,7 +34118,7 @@
password="wap"
proxy="172.20.4.33"
port="8080"
- type="default"
+ type="default,ia"
/>
<apn carrier="Omms CI"
@@ -31361,7 +34143,7 @@
password="web"
proxy="10.20.3.10"
port="8080"
- type="default"
+ type="default,ia"
/>
<apn carrier="MTN Internet CI"
@@ -31371,7 +34153,7 @@
apn="web.mtn.ci"
user="vide"
password="vide"
- type="default"
+ type="default,ia"
/>
<apn carrier="Telmob"
@@ -31379,7 +34161,7 @@
mcc="613"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Airtel"
@@ -31387,7 +34169,7 @@
mcc="613"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Telecel Faso"
@@ -31395,7 +34177,7 @@
mcc="613"
mnc="03"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Orange MMS"
@@ -31416,7 +34198,7 @@
carrier_id = "1943"
mcc="614"
mnc="04"
- type="default"
+ type="default,ia"
/>
<apn carrier="Togo Cell"
@@ -31424,7 +34206,7 @@
mcc="615"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Moov"
@@ -31432,7 +34214,7 @@
mcc="615"
mnc="03"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Libercom"
@@ -31440,7 +34222,7 @@
mcc="616"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Moov"
@@ -31448,7 +34230,7 @@
mcc="616"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MTN"
@@ -31456,7 +34238,7 @@
mcc="616"
mnc="03"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="BBCOM"
@@ -31464,7 +34246,7 @@
mcc="616"
mnc="04"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Glo"
@@ -31472,7 +34254,7 @@
mcc="616"
mnc="05"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Orange MMS"
@@ -31493,7 +34275,7 @@
carrier_id = "1621"
mcc="617"
mnc="01"
- type="default"
+ type="default,ia"
/>
<apn carrier="Lonestar Cell"
@@ -31501,7 +34283,7 @@
mcc="618"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Libercell"
@@ -31509,7 +34291,7 @@
mcc="618"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Comium"
@@ -31517,7 +34299,7 @@
mcc="618"
mnc="04"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Orange"
@@ -31525,7 +34307,7 @@
mcc="618"
mnc="07"
apn="Orange"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="LIBTELCO"
@@ -31533,7 +34315,7 @@
mcc="618"
mnc="20"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Airtel"
@@ -31541,7 +34323,7 @@
mcc="619"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Tigo"
@@ -31549,7 +34331,7 @@
mcc="619"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Africell"
@@ -31557,7 +34339,7 @@
mcc="619"
mnc="03"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Comium"
@@ -31565,7 +34347,7 @@
mcc="619"
mnc="04"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Africell"
@@ -31573,7 +34355,7 @@
mcc="619"
mnc="05"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Mobitel"
@@ -31581,7 +34363,7 @@
mcc="619"
mnc="25"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Glo"
@@ -31589,7 +34371,7 @@
mnc="0"
apn="glowap"
authtype="0"
- type="default,supl,fota,dun"
+ type="default,ia,supl,fota,dun"
/>
<apn carrier="Glo mms"
@@ -31608,7 +34390,7 @@
carrier_id = "1515"
mcc="620"
mnc="01"
- type="default"
+ type="default,ia"
/>
<apn carrier="MTN MMS"
@@ -31628,7 +34410,7 @@
carrier_id = "2383"
mcc="620"
mnc="02"
- type="default"
+ type="default,ia"
/>
<apn carrier="Vodafone_mms"
@@ -31648,7 +34430,7 @@
carrier_id = "2108"
mcc="620"
mnc="03"
- type="default"
+ type="default,ia"
/>
<apn carrier="Tigo mms"
@@ -31670,7 +34452,7 @@
mnc="06"
proxy="10.93.85.88"
port="9201"
- type="default"
+ type="default,ia"
/>
<apn carrier="Airtel mms"
@@ -31695,7 +34477,7 @@
authtype="1"
proxy="10.161.85.4"
port="8799"
- type="default"
+ type="default,ia"
/>
<apn carrier="Airtel Internet"
@@ -31707,7 +34489,7 @@
password="internet"
authtype="1"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Airtel MMS"
@@ -31733,7 +34515,7 @@
authtype="1"
proxy="172.18.254.5"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MTN-WEB"
@@ -31744,7 +34526,7 @@
user="web"
password="web"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MTN ACESS"
@@ -31755,7 +34537,7 @@
user="web"
password="web"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MTN MMS"
@@ -31776,7 +34558,7 @@
user="gprs"
password="gprs"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Glo MMS"
@@ -31800,7 +34582,7 @@
apn="etisalat"
proxy="10.71.170.5"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="etisalat MMS"
@@ -31817,7 +34599,7 @@
mcc="622"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Tawali"
@@ -31825,7 +34607,7 @@
mcc="622"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Tigo"
@@ -31833,7 +34615,7 @@
mcc="622"
mnc="03"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Salam"
@@ -31841,7 +34623,7 @@
mcc="622"
mnc="04"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="CTP"
@@ -31849,7 +34631,7 @@
mcc="623"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="TC"
@@ -31857,7 +34639,7 @@
mcc="623"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Internet browsing"
@@ -31865,7 +34647,7 @@
mcc="623"
mnc="03"
apn="orangeca3g"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Nationlink"
@@ -31873,7 +34655,7 @@
mcc="623"
mnc="04"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Orange CM"
@@ -31888,7 +34670,7 @@
mmsc="http://mms.orange.cm"
mmsproxy="192.168.122.101"
mmsport="8080"
- type="default,mms"
+ type="default,ia,mms"
/>
<apn carrier="CVMOVEL"
@@ -31896,7 +34678,7 @@
mcc="625"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="T+"
@@ -31904,7 +34686,7 @@
mcc="625"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="CSTmovel"
@@ -31912,7 +34694,7 @@
mcc="626"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Orange GQ"
@@ -31920,7 +34702,7 @@
mcc="627"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Orange GQ MMS"
@@ -31942,7 +34724,7 @@
mcc="627"
mnc="03"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Libertis"
@@ -31950,7 +34732,7 @@
mcc="628"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Moov"
@@ -31958,7 +34740,7 @@
mcc="628"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Airtel"
@@ -31966,7 +34748,7 @@
mcc="628"
mnc="03"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Azur"
@@ -31974,7 +34756,7 @@
mcc="628"
mnc="04"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Airtel"
@@ -31982,7 +34764,7 @@
mcc="629"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Libertis Telecom"
@@ -31990,7 +34772,7 @@
mcc="629"
mnc="10"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Vodacom Internet CD"
@@ -31999,7 +34781,7 @@
mnc="01"
apn="vodanet"
port="8080"
- type="default"
+ type="default,ia"
/>
<apn carrier="Vodacom MMS"
@@ -32019,7 +34801,7 @@
mcc="630"
mnc="89"
apn="tigo.web"
- type="default"
+ type="default,ia"
/>
<apn carrier="UNITEL"
@@ -32027,7 +34809,7 @@
mcc="631"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MOVICEL"
@@ -32035,7 +34817,7 @@
mcc="631"
mnc="04"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Areeba"
@@ -32043,7 +34825,7 @@
mcc="632"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Orange Bissau"
@@ -32051,7 +34833,7 @@
mcc="632"
mnc="03"
apn="4Gogb"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Guinetel"
@@ -32059,7 +34841,7 @@
mcc="632"
mnc="07"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Cable &amp; Wireless"
@@ -32067,7 +34849,7 @@
mcc="633"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Mediatech International"
@@ -32075,7 +34857,7 @@
mcc="633"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Airtel"
@@ -32083,7 +34865,7 @@
mcc="633"
mnc="10"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Zain SD"
@@ -32091,7 +34873,7 @@
mcc="634"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MTN"
@@ -32099,7 +34881,7 @@
mcc="634"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Sudani One"
@@ -32107,7 +34889,7 @@
mcc="634"
mnc="07"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Privet Network"
@@ -32115,7 +34897,7 @@
mcc="634"
mnc="09"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MTN"
@@ -32123,7 +34905,7 @@
mcc="635"
mnc="10"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Rwandatel"
@@ -32131,7 +34913,7 @@
mcc="635"
mnc="12"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Tigo"
@@ -32139,7 +34921,7 @@
mcc="635"
mnc="13"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Airtel"
@@ -32147,7 +34929,7 @@
mcc="635"
mnc="14"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="ETH-MTN"
@@ -32155,7 +34937,7 @@
mcc="636"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Telesom"
@@ -32163,7 +34945,7 @@
mcc="637"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Somafone"
@@ -32171,7 +34953,7 @@
mcc="637"
mnc="04"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Nationlink"
@@ -32179,7 +34961,7 @@
mcc="637"
mnc="10"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Hormuud"
@@ -32187,7 +34969,7 @@
mcc="637"
mnc="25"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Golis"
@@ -32195,7 +34977,7 @@
mcc="637"
mnc="30"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Unittel"
@@ -32203,14 +34985,14 @@
mcc="637"
mnc="57"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Nationlink Telecom"
mcc="637"
mnc="60"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Somtel"
@@ -32218,7 +35000,7 @@
mcc="637"
mnc="71"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Telcom"
@@ -32226,7 +35008,7 @@
mcc="637"
mnc="82"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Evatis"
@@ -32234,7 +35016,7 @@
mcc="638"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="safaricom GPRS"
@@ -32247,7 +35029,7 @@
authtype="1"
proxy="172.22.2.38"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="safaricom mms"
@@ -32270,7 +35052,7 @@
mcc="639"
mnc="03"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Airtel mms"
@@ -32290,7 +35072,7 @@
mcc="639"
mnc="03"
apn="ke.celtel.com"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="mms"
@@ -32314,7 +35096,7 @@
mmsproxy="10.4.16.6"
mmsport="8080"
mmsc="http://10.4.16.22/servlets/mms"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="Yu WAP"
@@ -32322,7 +35104,7 @@
mcc="639"
mnc="05"
apn="Yu internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Yu mms"
@@ -32341,7 +35123,7 @@
mcc="639"
mnc="07"
apn="bew.orange.co.ke"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Orange net KE"
@@ -32349,7 +35131,7 @@
mcc="639"
mnc="07"
apn="bew.orange.co.ke"
- type="default"
+ type="default,ia"
/>
<apn carrier="Orange MMS"
@@ -32371,7 +35153,7 @@
apn="Wap"
proxy="10.154.0.8"
port="9401"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="VodaCom Tanzania"
mvno_type="spn"
/>
@@ -32392,7 +35174,7 @@
carrier_id = "1753"
mcc="641"
mnc="01"
- type="default"
+ type="default,ia"
/>
<apn carrier="MTN-WEB"
@@ -32400,7 +35182,7 @@
carrier_id = "1754"
mcc="641"
mnc="10"
- type="default"
+ type="default,ia"
/>
<apn carrier="UTL Internet UG"
@@ -32410,7 +35192,7 @@
mnc="11"
proxy="10.76.101.51"
port="8080"
- type="default"
+ type="default,ia"
/>
<apn carrier="Orange Internet UG"
@@ -32418,7 +35200,7 @@
mcc="641"
mnc="14"
apn="orange.ug"
- type="default"
+ type="default,ia"
/>
<apn carrier="Orange MMS"
@@ -32437,7 +35219,7 @@
mnc="22"
proxy="10.5.27.80"
port="8080"
- type="default"
+ type="default,ia"
/>
<apn carrier="Lycamobile"
@@ -32449,6 +35231,7 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
+ type="default,ia,supl"
/>
<apn carrier="Spacetel"
@@ -32456,7 +35239,7 @@
mcc="642"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Tempo"
@@ -32464,7 +35247,7 @@
mcc="642"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Onatel"
@@ -32472,7 +35255,7 @@
mcc="642"
mnc="03"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Smart Mobile"
@@ -32480,7 +35263,7 @@
mcc="642"
mnc="07"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="HiTs Telecom"
@@ -32488,7 +35271,7 @@
mcc="642"
mnc="08"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Leo"
@@ -32496,7 +35279,7 @@
mcc="642"
mnc="82"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="mCel"
@@ -32504,7 +35287,7 @@
mcc="643"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Movitel"
@@ -32512,7 +35295,7 @@
mcc="643"
mnc="03"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Vodacom"
@@ -32520,7 +35303,7 @@
mcc="643"
mnc="04"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Airtel"
@@ -32528,7 +35311,7 @@
mcc="645"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MTN"
@@ -32536,7 +35319,7 @@
mcc="645"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="ZAMTEL"
@@ -32544,7 +35327,7 @@
mcc="645"
mnc="03"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Orange MG Internet"
@@ -32552,7 +35335,7 @@
mcc="646"
mnc="02"
apn="orangenet"
- type="default,supl,fota,dun"
+ type="default,ia,supl,fota,dun"
authtype="0"
/>
@@ -32565,7 +35348,7 @@
password="orange"
proxy="10.150.0.115"
port="8080"
- type="default"
+ type="default,ia"
/>
<apn carrier="Orange MG MMS"
@@ -32588,7 +35371,7 @@
apn="orangerun"
user="orange"
password="orange"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Orange RE"
@@ -32598,7 +35381,7 @@
apn="orangerun"
user="orange"
password="orange"
- type="default"
+ type="default,ia"
/>
<apn carrier="Orange MMS Réunion"
@@ -32624,7 +35407,7 @@
authtype="1"
proxy="10.4.85.50"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="OnlyMMS"
@@ -32647,7 +35430,7 @@
mnc="03"
apn="free.re"
mmsc="http://mms.free.re"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="Full Internet SRR"
@@ -32655,7 +35438,7 @@
mcc="647"
mnc="10"
apn="sl2sfr"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS"
@@ -32680,7 +35463,7 @@
password="wap"
proxy="10.0.224.161"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Coriolis WAP"
@@ -32688,7 +35471,7 @@
mcc="647"
mnc="10"
apn="fnetcoriolis"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="12"
mvno_type="gid"
/>
@@ -32711,7 +35494,7 @@
mcc="648"
mnc="03"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Econet"
@@ -32719,7 +35502,7 @@
mcc="648"
mnc="04"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MTC"
@@ -32727,7 +35510,7 @@
mcc="649"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="switch"
@@ -32735,7 +35518,7 @@
mcc="649"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Leo"
@@ -32743,7 +35526,7 @@
mcc="649"
mnc="03"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="TNM"
@@ -32751,7 +35534,7 @@
mcc="650"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Airtel"
@@ -32759,7 +35542,7 @@
mcc="650"
mnc="10"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="VCL Internet GPRS"
@@ -32767,7 +35550,7 @@
mcc="651"
mnc="01"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="VCL MMS GPRS"
@@ -32799,7 +35582,7 @@
apn="internet.orange.co.bw"
proxy="10.0.0.226"
port="8080"
- type="default"
+ type="default,ia"
/>
<apn carrier="Swazi MTN"
@@ -32807,7 +35590,7 @@
mcc="653"
mnc="10"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="HURI - SNPT"
@@ -32815,7 +35598,7 @@
mcc="654"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="LTE.Vodacom"
@@ -32823,7 +35606,7 @@
mcc="655"
mnc="01"
apn="lte.vodacom.za"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS.Vodacom"
@@ -32842,7 +35625,7 @@
mcc="655"
mnc="01"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS.Vodacom"
@@ -32861,7 +35644,7 @@
mcc="655"
mnc="02"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Telkom Mobile MMS"
@@ -32882,7 +35665,7 @@
apn="internet"
proxy="196.31.116.250"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Cell C MMS"
@@ -32903,7 +35686,7 @@
apn="vdata"
proxy="196.31.116.241"
port="8080"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="6550710"
mvno_type="imsi"
/>
@@ -32915,7 +35698,7 @@
apn="vdata"
proxy="196.31.116.241"
port="9201"
- type="default,supl"
+ type="default,ia,supl"
mvno_match_data="6550710"
mvno_type="imsi"
/>
@@ -32954,7 +35737,7 @@
user="mtnwap"
password="mtnwap"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MTN MMS"
@@ -32980,6 +35763,7 @@
password=""
mvno_type="spn"
mvno_match_data="Lycamobile"
+ type="default,ia,supl"
/>
<apn carrier="Eritel"
@@ -32987,7 +35771,7 @@
mcc="657"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="DigiCell"
@@ -32995,7 +35779,7 @@
mcc="702"
mnc="67"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Smart"
@@ -33003,7 +35787,7 @@
mcc="702"
mnc="99"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Internet CLARO"
@@ -33011,7 +35795,7 @@
mcc="704"
mnc="01"
apn="internet.ideasclaro"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS CLARO"
@@ -33030,7 +35814,7 @@
mcc="704"
mnc="02"
apn="broadband.tigo.gt"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS TIGO"
@@ -33052,7 +35836,7 @@
user="movistargt"
password="movistargt"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Movistar MMS"
@@ -33077,7 +35861,7 @@
user="movistargt"
password="movistargt"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Movistar MMS"
@@ -33099,7 +35883,7 @@
mcc="706"
mnc="01"
apn="internet.ideasclaro"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS CLARO"
@@ -33118,7 +35902,7 @@
mcc="706"
mnc="02"
apn="web.digicelsv.com"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS"
@@ -33137,7 +35921,7 @@
mcc="706"
mnc="03"
apn="internet.tigo.sv"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS Tigo"
@@ -33159,7 +35943,7 @@
user="movistarsv"
password="movistarsv"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Movistar MMS"
@@ -33184,7 +35968,7 @@
user="movistarsv"
password="movistarsv"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Movistar MMS"
@@ -33206,7 +35990,7 @@
mcc="708"
mnc="001"
apn="internet.ideasclaro"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS Claro"
@@ -33225,7 +36009,7 @@
mcc="708"
mnc="02"
apn="internet.tigo.hn"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS TIGO"
@@ -33245,7 +36029,7 @@
mnc='04'
apn='web.digicelhn.com'
authtype='1'
- type='default'
+ type='default,ia'
/>
<apn carrier='Honduras:Digicel:Mms'
@@ -33277,7 +36061,7 @@
mcc="708"
mnc="020"
apn="internet.tigo.hn"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS TIGO"
@@ -33297,7 +36081,7 @@
mnc='040'
apn='web.digicelhn.com'
authtype='1'
- type='default'
+ type='default,ia'
/>
<apn carrier='Honduras:Digicel:Mms:2'
@@ -33320,7 +36104,7 @@
user="internet"
password="internet"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
@@ -33346,7 +36130,7 @@
user="movistarni"
password="movistarni"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Movistar MMS"
@@ -33368,7 +36152,7 @@
mcc="710"
mnc="70"
apn="internet"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Movistar INTERNET"
@@ -33379,7 +36163,7 @@
user="movistarni"
password="movistarni"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Movistar MMS"
@@ -33404,7 +36188,7 @@
user="internet"
password="internet"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
@@ -33430,7 +36214,7 @@
user="internet"
password="internet"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
@@ -33453,7 +36237,7 @@
mcc="712"
mnc="01"
apn="kolbi3g"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Costar Rica:Kolbi:Modem"
@@ -33483,7 +36267,7 @@
mcc="712"
mnc="02"
apn="kolbi3g"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Kolbi_Multimedia"
@@ -33504,7 +36288,7 @@
apn="internet.ideasclaro"
user=""
password=""
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS CLARO CR"
@@ -33528,7 +36312,7 @@
user="movistarcr"
password="movistarcr"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Movistar MMS"
@@ -33550,7 +36334,7 @@
mcc="712"
mnc="019"
apn="tm7datos"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS Tuyo"
@@ -33569,7 +36353,7 @@
mcc="712"
mnc="190"
apn="tm7datos"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS Tuyo"
@@ -33587,7 +36371,7 @@
mcc="712"
mnc="20"
apn="datos.fullmovil.cr"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Internet"
@@ -33595,7 +36379,7 @@
mcc="714"
mnc="01"
apn="apn01.cwpanama.com.pa"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS"
@@ -33617,7 +36401,7 @@
user="movistarpa"
password="movistarpa"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Movistar MMS"
@@ -33642,7 +36426,7 @@
user="movistarpa"
password="movistarpa"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Movistar MMS"
@@ -33667,7 +36451,7 @@
user="CLAROWEB"
password="CLAROWEB"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS Claro"
@@ -33689,7 +36473,7 @@
mcc="714"
mnc="04"
apn="web.digicelpanama.com"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS"
@@ -33709,7 +36493,7 @@
mnc='040'
apn='web.digicelpanama.com'
authtype='1'
- type='default'
+ type='default,ia'
/>
<apn carrier='Panama:Digicel:Mms:2'
@@ -33732,7 +36516,7 @@
user="movistar@datos"
password="movistar"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Movistar MMS"
@@ -33757,7 +36541,7 @@
user="claro"
password="claro"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="CLARO MMS"
@@ -33780,7 +36564,7 @@
mnc="15"
apn="bitel"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
protocol="IP"
roaming_protocol="IP"
/>
@@ -33805,7 +36589,7 @@
mnc="17"
apn="entel.pe"
authtype="0"
- type="default,dun"
+ type="default,ia,dun"
protocol="IP"
/>
@@ -33842,11 +36626,26 @@
user="internet"
password="internet"
authtype="1"
- type="default"
+ type="default,ia"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
- mvno_type="spn"
- mvno_match_data="Tuenti"
+ 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"
/>
<apn carrier="Movistar INTERNET"
@@ -33857,7 +36656,7 @@
user="wap"
password="wap"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
protocol="IPV4V6"
/>
@@ -33881,7 +36680,7 @@
mnc="31"
apn="igprs.claro.com.ar"
mmsc="http://mms.claro.com.ar"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="Claro AR"
@@ -33890,7 +36689,7 @@
mnc="310"
apn="igprs.claro.com.ar"
mmsc="http://mms.claro.com.ar"
- type="default,supl,mms"
+ type="default,ia,supl,mms"
/>
<apn carrier="Personal Datos"
@@ -33901,7 +36700,7 @@
user="datos"
password="datos"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Argentina:Personal:DUN"
@@ -33948,7 +36747,7 @@
mnc='36'
apn='gprs.nuestro.com.ar'
authtype='0'
- type='default'
+ type='default,ia'
user='gprs'
/>
@@ -33958,7 +36757,7 @@
mnc='340'
apn='datos.personal.com'
authtype='0'
- type='default'
+ type='default,ia'
user='gprs'
password='adgj'
/>
@@ -33996,7 +36795,7 @@
user="datos"
password="datos"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Argentina:Personal: DUN"
@@ -34036,7 +36835,16 @@
mmsport="8080"
authtype="1"
protocol="IPV4V6"
- type="default,supl,mms"
+ type="default,ia,supl,mms,xcap"
+ />
+
+ <apn carrier="TIM IMS"
+ carrier_id="1385"
+ mcc="724"
+ mnc="02"
+ apn="ims"
+ protocol="IPV6"
+ type="ims"
/>
<apn carrier="TIM Connect"
@@ -34051,7 +36859,16 @@
mmsport="8080"
authtype="1"
protocol="IPV4V6"
- type="default,supl,mms"
+ type="default,ia,supl,mms,xcap"
+ />
+
+ <apn carrier="TIM IMS"
+ carrier_id="1385"
+ mcc="724"
+ mnc="03"
+ apn="ims"
+ protocol="IPV6"
+ type="ims"
/>
<apn carrier="TIM Connect"
@@ -34066,7 +36883,16 @@
mmsport="8080"
authtype="1"
protocol="IPV4V6"
- type="default,supl,mms"
+ type="default,ia,supl,mms,xcap"
+ />
+
+ <apn carrier="TIM IMS"
+ carrier_id="1385"
+ mcc="724"
+ mnc="04"
+ apn="ims"
+ protocol="IPV6"
+ type="ims"
/>
<apn carrier="Java Session"
@@ -34076,7 +36902,7 @@
apn="java.claro.com.br"
user="claro"
password="claro"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Claro Foto"
@@ -34105,7 +36931,7 @@
mmsport="80"
authtype="1"
protocol="IPV4V6"
- roaming_protocol="IPV4"
+ roaming_protocol="IP"
type="mms"
/>
@@ -34118,8 +36944,8 @@
password="vivo"
authtype="1"
protocol="IPV4V6"
- roaming_protocol="IPV4"
- type="default,supl"
+ roaming_protocol="IP"
+ type="default,ia,supl"
/>
<apn carrier="Vivo IMS"
@@ -34128,7 +36954,7 @@
mnc="06"
apn="ims"
protocol="IPV4V6"
- roaming_protocol="IPV4"
+ roaming_protocol="IP"
type="ims"
/>
@@ -34138,7 +36964,7 @@
mnc="06"
apn="xcap.ims"
protocol="IPV4V6"
- roaming_protocol="IPV4"
+ roaming_protocol="IP"
type="xcap"
/>
@@ -34162,7 +36988,7 @@
apn="sercomtel.com.br"
user="sercomtel"
password="sercomtel"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Vivo Internet"
@@ -34174,8 +37000,8 @@
password="vivo"
authtype="1"
protocol="IPV4V6"
- roaming_protocol="IPV4"
- type="default,supl"
+ roaming_protocol="IP"
+ type="default,ia,supl"
/>
<apn carrier="Vivo MMS"
@@ -34190,7 +37016,7 @@
mmsport="80"
authtype="1"
protocol="IPV4V6"
- roaming_protocol="IPV4"
+ roaming_protocol="IP"
type="mms"
/>
@@ -34200,7 +37026,7 @@
mnc="10"
apn="ims"
protocol="IPV4V6"
- roaming_protocol="IPV4"
+ roaming_protocol="IP"
type="ims"
/>
@@ -34210,7 +37036,7 @@
mnc="10"
apn="xcap.ims"
protocol="IPV4V6"
- roaming_protocol="IPV4"
+ roaming_protocol="IP"
type="xcap"
/>
@@ -34226,7 +37052,7 @@
mmsport="80"
authtype="1"
protocol="IPV4V6"
- roaming_protocol="IPV4"
+ roaming_protocol="IP"
type="mms"
/>
@@ -34239,8 +37065,8 @@
password="vivo"
authtype="1"
protocol="IPV4V6"
- roaming_protocol="IPV4"
- type="default,supl"
+ roaming_protocol="IP"
+ type="default,ia,supl"
/>
<apn carrier="Vivo IMS"
@@ -34249,7 +37075,7 @@
mnc="11"
apn="ims"
protocol="IPV4V6"
- roaming_protocol="IPV4"
+ roaming_protocol="IP"
type="ims"
/>
@@ -34259,7 +37085,7 @@
mnc="11"
apn="xcap.ims"
protocol="IPV4V6"
- roaming_protocol="IPV4"
+ roaming_protocol="IP"
type="xcap"
/>
@@ -34269,7 +37095,7 @@
mnc='15'
apn='sercomtel.com.br'
authtype='1'
- type='default'
+ type='default,ia'
user='sercomtel'
password='sercomtel'
/>
@@ -34305,7 +37131,7 @@
mnc="16"
apn="gprs.oi.com.br"
protocol="IPV4V6"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS GPRS"
@@ -34341,9 +37167,9 @@
authtype="1"
user="arqia"
password="arqia"
- type="default"
+ type="default,ia"
protocol="IPV4V6"
- roaming_protocol="IPV4"
+ roaming_protocol="IP"
mvno_type="spn"
mvno_match_data="LIGUE"
/>
@@ -34354,7 +37180,7 @@
apn="ims"
type="ims"
protocol="IPV4V6"
- roaming_protocol="IPV4"
+ roaming_protocol="IP"
mvno_type="spn"
mvno_match_data="LIGUE"
/>
@@ -34366,7 +37192,7 @@
apn="gprs.telemigcelular.com.br"
user="celular"
password="celular"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS Telemig"
@@ -34386,7 +37212,7 @@
mcc="724"
mnc="21"
apn="internet.ligue.vc"
- type="default"
+ type="default,ia"
protocol="IPV4V6"
/>
@@ -34407,8 +37233,8 @@
password="vivo"
authtype="1"
protocol="IPV4V6"
- roaming_protocol="IPV4"
- type="default,supl"
+ roaming_protocol="IP"
+ type="default,ia,supl"
/>
<apn carrier="Vivo MMS"
@@ -34423,7 +37249,7 @@
mmsport="80"
authtype="1"
protocol="IPV4V6"
- roaming_protocol="IPV4"
+ roaming_protocol="IP"
type="mms"
/>
@@ -34433,7 +37259,7 @@
mnc="23"
apn="ims"
protocol="IPV4V6"
- roaming_protocol="IPV4"
+ roaming_protocol="IP"
type="ims"
/>
@@ -34443,7 +37269,7 @@
mnc="23"
apn="xcap.ims"
protocol="IPV4V6"
- roaming_protocol="IPV4"
+ roaming_protocol="IP"
type="xcap"
/>
@@ -34453,7 +37279,7 @@
mnc="24"
apn="gprs.oi.com.br"
authtype="1"
- type="default,dun"
+ type="default,ia,dun"
user="oi"
password="oi"
protocol="IPV4V6"
@@ -34482,7 +37308,7 @@
mnc="31"
apn="gprs.oi.com.br"
protocol="IPV4V6"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS GPRS"
@@ -34506,7 +37332,7 @@
mnc='32'
apn='ctbc.br'
authtype='1'
- type='default'
+ type='default,ia'
user='CTBC'
password='1212'
/>
@@ -34542,7 +37368,7 @@
mnc='33'
apn='ctbc.br'
authtype='1'
- type='default'
+ type='default,ia'
user='CTBC'
password='1212'
/>
@@ -34578,7 +37404,7 @@
mnc='34'
apn='ctbc.br'
authtype='1'
- type='default'
+ type='default,ia'
user='CTBC'
password='1212'
/>
@@ -34628,7 +37454,7 @@
mnc='39'
apn='wap.nextel3g.net.br'
authtype='0'
- type='default,dun'
+ type='default,ia,dun'
protocol='IPV4V6'
roaming_protocol='IPV4V6'
/>
@@ -34638,10 +37464,34 @@
mcc='724'
mnc='54'
authtype='0'
- type='default,dun'
+ type='default,ia,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"
@@ -34650,7 +37500,7 @@
user="entelpcs"
password="entelpcs"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS Entel"
@@ -34673,7 +37523,7 @@
mnc='09'
apn='wap.nextelmovil.cl'
authtype='0'
- type='default'
+ type='default,ia'
/>
<apn carrier='MMS Nextel'
@@ -34693,7 +37543,7 @@
mcc="730"
mnc="09"
apn="internet"
- type="default"
+ type="default,ia"
user=""
password=""
protocol="IPV4V6"
@@ -34709,8 +37559,8 @@
type="ims"
user=""
password=""
- protocol="IPV4"
- roaming_protocol="IPV4"
+ protocol="IP"
+ roaming_protocol="IP"
user_editable="false"
user_visible="false"
/>
@@ -34723,7 +37573,7 @@
user="entelpcs"
password="entelpcs"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS Entel"
@@ -34748,7 +37598,7 @@
user="wap"
password="wap"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Movistar MMS"
@@ -34773,7 +37623,7 @@
user="clarochile"
password="clarochile"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS Claro"
@@ -34798,7 +37648,7 @@
user="webgtd"
password="webgtd"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Internet"
@@ -34809,7 +37659,7 @@
user="vtrmovil"
password="vtrmovil"
authtype="2"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Wap"
@@ -34822,7 +37672,7 @@
user=""
password=""
authtype="0"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS"
@@ -34847,7 +37697,7 @@
user="entelpcs"
password="entelpcs"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS Entel PCS"
@@ -34869,7 +37719,7 @@
mnc='12'
apn='internet.movistar.com.co'
authtype='1'
- type='default, dun'
+ type='default,ia, dun'
user='movistar'
password='movistar'
/>
@@ -34895,7 +37745,7 @@
user="COMCELWEB"
password="COMCELWEB"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS Comcel 3GSM"
@@ -34920,7 +37770,7 @@
user=""
password=""
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="TIGO Multimedia"
@@ -34942,7 +37792,7 @@
mcc="732"
mnc="103"
apn="moviletb.net.co"
- type="default,dun"
+ type="default,ia,dun"
user="etb"
password="etb"
authtype="0"
@@ -34955,7 +37805,7 @@
mcc="732"
mnc="103"
apn="moviletb.net.co"
- type="default,dun"
+ type="default,ia,dun"
user="etb"
password="etb"
authtype="0"
@@ -34968,7 +37818,7 @@
mcc="732"
mnc="103"
apn="movilexito.net.co"
- type="default,dun"
+ type="default,ia,dun"
authtype="1"
mvno_match_data="movil exito"
mvno_type="spn"
@@ -34979,7 +37829,7 @@
mcc="732"
mnc="103"
apn="www.une.net.co"
- type="default,dun"
+ type="default,ia,dun"
user="une"
password="une"
authtype="0"
@@ -34995,7 +37845,7 @@
user=""
password=""
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="TIGO Multimedia"
@@ -35017,7 +37867,7 @@
mcc="732"
mnc="111"
apn="moviletb.net.co"
- type="default,dun"
+ type="default,ia,dun"
user="etb"
password="etb"
authtype="0"
@@ -35030,7 +37880,7 @@
mcc="732"
mnc="111"
apn="movilexito.net.co"
- type="default,dun"
+ type="default,ia,dun"
authtype="1"
mvno_match_data="movil exito"
mvno_type="spn"
@@ -35041,7 +37891,7 @@
mcc="732"
mnc="111"
apn="www.une.net.co"
- type="default,dun"
+ type="default,ia,dun"
user="une"
password="une"
authtype="0"
@@ -35057,7 +37907,7 @@
user="movistar"
password="movistar"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Movistar MMS"
@@ -35079,7 +37929,7 @@
mcc="732"
mnc="123"
apn="web.vmc.net.co"
- type="default,supl"
+ type="default,ia,supl"
authtype="1"
mvno_match_data="Virgin Mobile"
mvno_type="spn"
@@ -35091,7 +37941,7 @@
mnc="130"
apn="lte.avantel.com.co"
authtype="0"
- type="default"
+ type="default,ia"
/>
<apn carrier="ETB 4G"
@@ -35100,7 +37950,7 @@
mnc="187"
apn="internetmovil.etb.net.co"
authtype="0"
- type="default"
+ type="default,ia"
/>
<apn carrier="Internet WOM"
@@ -35108,7 +37958,7 @@
mcc="732"
mnc="360"
apn="internet.wom.co"
- type="default,supl"
+ type="default,ia,supl"
protocol="IPV4V6"
roaming_protocol="IPV4V6"
mtu="1500"
@@ -35142,7 +37992,7 @@
mcc="734"
mnc="01"
apn="internet.digitel.ve"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Venezuela:Digitel:MODEM:1"
@@ -35170,7 +38020,7 @@
mcc="734"
mnc="02"
apn="internet.digitel.ve"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Venezuela:Digitel:MODEM:2"
@@ -35198,7 +38048,7 @@
mcc="734"
mnc="03"
apn="internet.digitel.ve"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Venezuela:Digitel:MODEM:3"
@@ -35226,7 +38076,7 @@
mcc="734"
mnc="04"
apn="internet.movistar.ve"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Movistar MMS"
@@ -35247,7 +38097,7 @@
apn="wap.movistar.ve"
mmsproxy="200.35.64.73"
mmsport="9001"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MODEM"
@@ -35255,7 +38105,7 @@
mcc="734"
mnc="06"
apn="int.movilnet.com.ve"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS"
@@ -35279,7 +38129,7 @@
proxy="192.168.101.4"
port="3128"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="VIVAMMS"
@@ -35306,7 +38156,7 @@
proxy="172.27.7.10"
port="8080"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="ENTEL MMS GPRS"
@@ -35333,7 +38183,7 @@
proxy="172.25.100.8"
port="8080"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMSTIGO"
@@ -35355,7 +38205,7 @@
mcc="738"
mnc="01"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Guyana:Digicel:Modem"
@@ -35391,7 +38241,7 @@
mcc="738"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Movistar INTERNET"
@@ -35402,7 +38252,7 @@
user="movistar"
password="movistar"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Movistar MMS"
@@ -35424,7 +38274,7 @@
mcc="740"
mnc="01"
apn="internet.claro.com.ec"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS Claro"
@@ -35446,7 +38296,7 @@
mcc="740"
mnc="010"
apn="internet.claro.com.ec"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS Claro"
@@ -35468,7 +38318,7 @@
mcc="740"
mnc="02"
apn="internet3gsp.alegro.net.ec"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="CNT MMS"
@@ -35488,7 +38338,7 @@
mnc="01"
apn="vox.internet"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Paraguay:Voxx:Modem"
@@ -35525,7 +38375,7 @@
user="ctigprs"
password="ctigprs999"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS GPRS PY"
@@ -35548,7 +38398,7 @@
mnc="04"
apn="internet.tigo.py"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS Tigo"
@@ -35573,7 +38423,7 @@
user="personal"
password="personal"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Personal MMS Py"
@@ -35595,7 +38445,7 @@
mcc="746"
mnc="02"
apn="default"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier='Suriname:Digicel:Internet'
@@ -35604,7 +38454,7 @@
mnc='03'
apn='web.digicelsr.com'
authtype='1'
- type='default'
+ type='default,ia'
/>
<apn carrier='Suriname:Digicel:Mms'
@@ -35645,7 +38495,7 @@
user=""
password=""
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="mmsANCEL"
@@ -35668,7 +38518,7 @@
mnc="01"
apn="gprs.ancel"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Movistar INTERNET"
@@ -35679,7 +38529,7 @@
user="movistar"
password="movistar"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="Movistar MMS"
@@ -35704,7 +38554,7 @@
user="ctigprs"
password="ctigprs999"
authtype="1"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="MMS GPRS UY"
@@ -35727,21 +38577,21 @@
apn="ciot.vodafone.com"
user="vodafone"
password="vodafone"
- type="default"
+ type="default,ia"
/>
<apn carrier="mobiledata"
mcc="901"
mnc="37"
apn="mobiledata"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="EMnify"
mcc="901"
mnc="43"
apn="em"
- type="default,supl"
+ type="default,ia,supl"
/>
<apn carrier="BICS Internet"
@@ -35749,7 +38599,87 @@
mcc="901"
mnc="58"
apn="bicsapn"
- type="default,supl"
+ 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"
/>
</apns>
diff --git a/frameworks/Android.mk b/frameworks/Android.mk
deleted file mode 100644
index 5053e7d..0000000
--- a/frameworks/Android.mk
+++ /dev/null
@@ -1 +0,0 @@
-include $(call all-subdir-makefiles)
diff --git a/frameworks/PlatformLibrary/Android.bp b/frameworks/PlatformLibrary/Android.bp
index 7b3ec73..e3e929b 100644
--- a/frameworks/PlatformLibrary/Android.bp
+++ b/frameworks/PlatformLibrary/Android.bp
@@ -28,3 +28,19 @@ 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
deleted file mode 100644
index db4c97c..0000000
--- a/frameworks/PlatformLibrary/Android.mk
+++ /dev/null
@@ -1,50 +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.
-#
-
-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
new file mode 100644
index 0000000..4290e15
--- /dev/null
+++ b/frameworks/PlatformLibrary/api/current.txt
@@ -0,0 +1,10 @@
+// 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
new file mode 100644
index 0000000..d802177
--- /dev/null
+++ b/frameworks/PlatformLibrary/api/removed.txt
@@ -0,0 +1 @@
+// Signature format: 2.0
diff --git a/frameworks/PlatformLibrary/api/system-current.txt b/frameworks/PlatformLibrary/api/system-current.txt
new file mode 100644
index 0000000..d802177
--- /dev/null
+++ b/frameworks/PlatformLibrary/api/system-current.txt
@@ -0,0 +1 @@
+// Signature format: 2.0
diff --git a/frameworks/PlatformLibrary/api/system-removed.txt b/frameworks/PlatformLibrary/api/system-removed.txt
new file mode 100644
index 0000000..d802177
--- /dev/null
+++ b/frameworks/PlatformLibrary/api/system-removed.txt
@@ -0,0 +1 @@
+// Signature format: 2.0
diff --git a/frameworks/PlatformLibrary/api/test-current.txt b/frameworks/PlatformLibrary/api/test-current.txt
new file mode 100644
index 0000000..d802177
--- /dev/null
+++ b/frameworks/PlatformLibrary/api/test-current.txt
@@ -0,0 +1 @@
+// Signature format: 2.0
diff --git a/frameworks/PlatformLibrary/api/test-removed.txt b/frameworks/PlatformLibrary/api/test-removed.txt
new file mode 100644
index 0000000..d802177
--- /dev/null
+++ b/frameworks/PlatformLibrary/api/test-removed.txt
@@ -0,0 +1 @@
+// Signature format: 2.0
diff --git a/frameworks/PlatformLibrary/jni/Android.bp b/frameworks/PlatformLibrary/jni/Android.bp
new file mode 100644
index 0000000..116e011
--- /dev/null
+++ b/frameworks/PlatformLibrary/jni/Android.bp
@@ -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.
+//
+
+// 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
deleted file mode 100644
index 1513f70..0000000
--- a/frameworks/PlatformLibrary/jni/Android.mk
+++ /dev/null
@@ -1,50 +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 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 f0abf2f..cf6a3c6 100644
--- a/products/sample_addon.mk
+++ b/products/sample_addon.mk
@@ -4,10 +4,6 @@ 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