AppConfig Settings for Pulse Secure VPN?

dstranathan
Valued Contributor II

I recently noticed that Pulse Secure is part of the AppConfig community (https://appconfig.org/members/)

I'd like to auto-provision my iOS devices (and Macs?) with my company’s Pulse Secure VPN settings (i.e.; our SSL VPN URL, etc.).

Has anyone configured AppConfig data for Pulse Secure? Even an example snippet would be greatly appreciated. I have located this generator (https://appconfig.jamfresearch.com) but dont have the developer's metadata yet. I'm opening a ticket with Pulse Secure, but havent hear back yet.

4 REPLIES 4

page_229
New Contributor II

https://kb.pulsesecure.net/articles/Pulse_Secure_Article/KB29830

HangerS
New Contributor II

iOS config should look something like this.

e87a7b9a9f994c0f898efe408f9a2469

And macOS i configured thru a script and Default.jnprpreconfig.txt Something like this:

#!/bin/sh
cd /Users/Shared
curl -o Default.jnprpreconfig.txt https://yourserver/Default.jnprpreconfig.txt
sleep 1
/Applications/Pulse Secure.app/Contents/Plugins/JamUI/jamCommand -importFile /Users/Shared/Default.jnprpreconfig.txt
sleep 1
rm /Users/Shared/Default.jnprpreconfig.txt
exit 0

jmahlman
Valued Contributor

Hey, did you ever get a response back from the dev? Making a config profile and adding that with the app does work, but it's not instantaneous, it takes time for the config profile to drop after the app is installed (at least for me it does).

KMerendaTFMC
New Contributor III

The iOS profile screenshot from @HangerS worked perfectly for me in Jamf Pro 10.7.1 - thanks!