Last active
February 17, 2026 22:14
-
-
Save ergosteur/e130a9cd2d3b054266962f9c4c03656e to your computer and use it in GitHub Desktop.
iOS mobileconfig file for forcing IPv4 on Fizz Mobility cellular data APN to resolve VPN connectivity issues - https://knowledgebase.paloaltonetworks.com/KCSArticleDetail?id=kA1Ki000000fxlXKAQ&lang=en_US
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>PayloadContent</key> | |
| <array> | |
| <dict> | |
| <!-- Configures the initial network connection APN --> | |
| <key>AttachAPN</key> | |
| <dict> | |
| <key>Name</key> | |
| <string>mobile.videotron</string> | |
| <!-- Use IPv4 only (value 1) --> | |
| <key>AllowedProtocolMask</key> | |
| <integer>1</integer> | |
| </dict> | |
| <!-- Overrides specific settings for Data and Hotspot APNs --> | |
| <key>APNs</key> | |
| <array> | |
| <!-- Primary Fizz/Videotron Data settings --> | |
| <dict> | |
| <key>Name</key> | |
| <string>mobile.videotron</string> | |
| <!-- Ensure IPv4 is used for data and roaming --> | |
| <key>AllowedProtocolMask</key> | |
| <integer>1</integer> | |
| <key>AllowedProtocolMaskInRoaming</key> | |
| <integer>1</integer> | |
| <key>AllowedProtocolMaskInDomesticRoaming</key> | |
| <integer>1</integer> | |
| </dict> | |
| </array> | |
| <key>PayloadDescription</key> | |
| <string>Configures Fizz Mobile Data and Hotspot (Strict IPv4)</string> | |
| <key>PayloadDisplayName</key> | |
| <string>Fizz Mobile APN (IPv4)</string> | |
| <key>PayloadIdentifier</key> | |
| <string>com.fizz.apn.config</string> | |
| <key>PayloadType</key> | |
| <string>com.apple.cellular</string> | |
| <key>PayloadUUID</key> | |
| <string>8f2e91bb-a4bf-4725-8ee3-f122f122f122</string> | |
| <key>PayloadVersion</key> | |
| <integer>1</integer> | |
| </dict> | |
| </array> | |
| <key>PayloadDisplayName</key> | |
| <string>Fizz Mobile Settings (IPv4 Only)</string> | |
| <key>PayloadIdentifier</key> | |
| <string>com.fizz.profile</string> | |
| <!-- Allows the user to remove this profile --> | |
| <key>PayloadRemovalDisallowed</key> | |
| <false/> | |
| <key>PayloadType</key> | |
| <string>Configuration</string> | |
| <key>PayloadUUID</key> | |
| <string>2d08e545-7b7a-47f4-95f0-f122da7af122</string> | |
| <key>PayloadVersion</key> | |
| <integer>1</integer> | |
| </dict> | |
| </plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment