Unable to populate the all the regions in cisco anyconnect 4.7

RShankarnarayan
New Contributor

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?

2 REPLIES 2

funQ
New Contributor

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"

RShankarnarayan
New Contributor

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?