他の UEM ソリューションで iCloud プライベートリレーを制限する

Jamf Security Cloud ポータル設定ガイド

Solution
Application
Jamf Connect
Content Type
テクニカル資料
Utilities & Services
ft:locale
ja-JP

サードパーティの UEM または MDM ソリューションを使用してデバイスを管理している場合は、そのソリューションを使用して影響を受けるデバイスにプロファイルを配布できます。これにより、iCloud プライベートリレーが無効になります。

以下のコードを使用して、構成プロファイルを作成できます。コードをファイルにコピーし、UEM または MDM ソリューションに必要な UUID 値をアップデートします。次に、ファイルを .mobileconfig フォーマットで保存し、UEM または MDM ソリューションにアップロードして、関連するデバイスに配布します。
Note:

macOS デバイスの場合、構成プロファイルを配布した後、iCloud プライベートリレーの無効化を完了するためにデバイスの再起動が必要になる場合があります。

<?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>
                <key>PayloadDisplayName</key>
                <string>Restrictions</string>
                <key>PayloadIdentifier</key>
                <string>com.apple.applicationaccess.88CAB354-2E2F-4C93-B7FB-E5C6939CC7AA</string>
                <key>PayloadType</key>
                <string>com.apple.applicationaccess</string>
                <key>PayloadUUID</key>
                <string>3AC76E86-02F5-4AC3-BFBD-554494CC3067</string>
                <key>PayloadVersion</key>
                <integer>1</integer>
                <key>allowCloudPrivateRelay</key>
                <false />
            </dict>
        </array>
        <key>PayloadDescription</key>
        <string>Disables the iCloud Private Relay feature.</string>
        <key>PayloadDisplayName</key>
        <string>Disable iCloud Private Relay</string>
        <key>PayloadIdentifier</key>
        <string>D823C0A6-BC69-43F9-A211-0A7CC90C5825</string>
        <key>PayloadOrganization</key>
        <string>Company Name</string>
        <key>PayloadScope</key>
        <string>System</string>
        <key>PayloadType</key>
        <string>Configuration</string>
        <key>PayloadUUID</key>
        <string>488044F2-609B-4AF3-85CC-CED3111DAB6F</string>
        <key>PayloadVersion</key>
        <integer>1</integer>
    </dict>
</plist>

デバイスの AppleiCloud プライベートリレーは無効になります。