用于更改 DNS 设置的 iOS 配置文件
<p><p>是否可以<em>仅</em>使用配置文件更改 iOS 设备上的 DNS 设置?</p>
<p>如果不是,我猜 MDM 是一种可能的解决方法。如何实现?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>在 MDM 配置文件中检查以下内容:
IPSec > OnDemandRules > </p>
<p><code>
<key>OnDemandRules</key>
<数组>
<字典>
<key> Action </key>
<string>评估连接</string>
<key> Action 参数</key>
<数组>
<字典>
<key>域操作</key>
<string>ConnectIfNeeded</string>
<key>域</key>
<数组>
<string>example1.com</string>
<string>example2.com</string>
<string>example3.com</string>
</array>
<key>必需的DNS服务器</key>
<数组>
<string>mydns.com</string>
</array>
</dict>
</array>
</dict>
</array>
</code></p>
<p>限制是 DNS 请求将仅针对列出的域执行。总比没有好。</p>
<p>更新:
我刚刚发现使用:</p>
<pre><code> <key>Domains</key>
<array>
<string>.</string>
</array>
</code></pre>
<p>将通配符过滤器。因此,您将获得来自设备的所有 DNS 请求,无论它是什么域。</p></p>
<p style="font-size: 20px;">关于用于更改 DNS 设置的 iOS 配置文件,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/19968042/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/19968042/
</a>
</p>
页:
[1]