Posted on 02-27-2019 11:16 PM
Hello,
I upgraded the cisco anyconnect from 4.6 to 4.7 from self-service . However , I was able to see only one region precisely " America" in anyconnect dropdown list. The other regions were not present even though xml file has been placed in /opt/cisco/anyconnect/profile/ location. Can anyone help me out the issue?
Posted on 02-28-2019 01:33 AM
Hi, I'm currently using this script to deploy the profile. Important! Don't forget to reboot the machine after the update.
I hope this is helpful.
#!/bin/bash
OUTPUT_FILE="/opt/cisco/anyconnect/profile/Profile.xml"
echo "<?xml version="1.0" encoding="UTF-8"?>
<AnyConnectProfile xmlns="http://schemas.xmlsoap.org/encoding/">
<ServerList>
<HostEntry>
<HostName>VPN EU</HostName>
<HostAddress>vpna.company.com</HostAddress>
</HostEntry>
<HostEntry>
<HostName>VPN US</HostName>
<HostAddress>vpnb.company.com</HostAddress>
</HostEntry>
<HostEntry>
<HostName>VPN HQ</HostName>
<HostAddress>vpnc.company.com</HostAddress>
</HostEntry>
<HostEntry>
<HostName>VPN APAC</HostName>
<HostAddress>vpnd.company.com</HostAddress>
</HostEntry>
</ServerList>
</AnyConnectProfile>" > "$OUTPUT_FILE"
Posted on 02-28-2019 01:44 AM
Hello @funQ ,
I rebooted the machine and have used the same xml template script which you shared. But still no progress of populating regions for connecting. Although how can only one region is visible?