aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2024-03-29 09:25:44 -0700
committerDenis Kenzior <denkenz@gmail.com>2024-04-03 11:01:20 -0500
commit5072741ab979f37b88828b8e28f6e87f8e87c4ba (patch)
treed80ee45ebc370c30ddce056839696622532f2552
parentbf76c826774f91c5ca966359f98ef0ac701a4008 (diff)
downloadofono-5072741ab979f37b88828b8e28f6e87f8e87c4ba.tar.gz
data: Add tags for AT&T and T-Mobile contexts
AT&T uses several APNs, one for lte/4g devices, one for 5G capable devices and one for M2M. Use the newly introduced tags field to tag them appropriately. Similarly, for T-mobile, add "iot" tag to the iot specific APN configuration.
-rw-r--r--data/provision.json18
1 files changed, 12 insertions, 6 deletions
diff --git a/data/provision.json b/data/provision.json
index cef6e34e1..434bfd8d8 100644
--- a/data/provision.json
+++ b/data/provision.json
@@ -14169,7 +14169,8 @@
"mms"
],
"mmsc": "http://mmsc.mobile.att.net",
- "mmsproxy": "proxy.mobile.att.net:80"
+ "mmsproxy": "proxy.mobile.att.net:80",
+ "tags": "lte"
},
{
"name": "ENHANCEDPHONE",
@@ -14179,7 +14180,8 @@
"mms"
],
"mmsc": "http://mmsc.mobile.att.net",
- "mmsproxy": "proxy.mobile.att.net:80"
+ "mmsproxy": "proxy.mobile.att.net:80",
+ "tags": "5g"
},
{
"name": "AT&T M2M",
@@ -14187,7 +14189,8 @@
"type": [
"internet",
"ia"
- ]
+ ],
+ "tags": "m2m"
}
]
},
@@ -14216,8 +14219,10 @@
"name": "T-Mobile LTE",
"apn": "fast.t-mobile.com",
"type": [
- "internet"
- ]
+ "internet",
+ "ia"
+ ],
+ "tags": "lte,5g"
},
{
"name": "IoT",
@@ -14225,7 +14230,8 @@
"type": [
"internet",
"ia"
- ]
+ ],
+ "tags": "iot"
}
]
},