Software Secure Access
Activity Manage

Install Umbrella Profile

This is necessary unless the profile is already bundled with the installation package, see Package Customization.

After installation, copy the Umbrella profile to the correct folder on the local machine to register and activate the Umbrella module. This method is useful for endpoint management software that can push the files to the endpoint. The profile must be placed in the following location:

/opt/cisco/secureclient/umbrella/OrgInfo.json

Instead of copying the umbrella profile, you can create it with a script. This is useful if your endpoint management tools support post-install scripts.

The following example shows how to create the OrgInfo.json file using a bash script. Replace ORG_ID, FINGERPRINT, and USER_ID values with the ones from your profile.

# !/bin/bash

orginfo_file="/opt/cisco/secureclient/umbrella/OrgInfo.json"  
data="{\\n  
    "organizationId" : "ORG_ID",\\n  
    "fingerprint" : "FINGERPRINT",\\n  
    "userId" : "USER_ID"\\n  
}"  
if ! test -f $orginfo_file; then  
	echo -e $data > $orginfo_file  
fi


 
The Meraki Systems Manager (SM) Deployment guide explains how to deploy the Umbrella profile using scripts.