Software Secure Access
Activity Manage

Managed iOS Configure Cellular and Wifi Domains Procedure

Last updated: Aug 07, 2025

Procedure

  1. Open the iOS configuration profile in your preferred code editor. Your profile may already have wifiDomains and celluarDomains keys as shown. If not, add them.

    For example:

    <key>anonymizationLevel</key>
    <integer>1</integer>
    <key>disabled</key>
    <false/>
      <key>cellularDomains</key>
      <array> 
        <string>sendtocellularconnection.com</string> 
      </array>
      <key>wifiDomains</key>
      <array>
        <string>sendoverwifi.com</string>
    </array> 
      <key>internalDomains</key>
    

  2. Configure the wifiDomains or cellularDomains keys as desired using the example provided. Each domain is encapsulated by a string tags. Some configuration profiles may require the addition of these keys. Keys should be added immediately preceding the internalDomains key.

    For example:

    <dict> 
     <key>anonymizationLevel</key> 
     <integer>1</integer> 
     <key>disabled</key> 
     <false/> 
     <key>cellularDomains</key> 
     <array> 
       <string>sendtocellularconnection.com</string> 
     </array> 
     <key>wifiDomains</key> 
     <array> 
       <string>sendoverwifi.com</string> 
      </array> 
    <key>internalDomains</key>