20

What is the default location of Cisco VPN client profiles? I need those .pcf files since my old Cisco VPN client doesn't work after upgrading to Mac OS X Leopard (version 10.5), and I don't remember my VPN settings.

dmitry747
  • 363
  • 2
  • 3
  • 6

4 Answers4

64

If, like me, you arrived here looking for the Cisco AnyConnect profile location, I found my config information at

/opt/cisco/anyconnect

I wanted this to be a comment on the accepted answer, but I bumped into the rep limit. If a mod wants to move this to the comments of the accepted answer, be my guest!

2

Open a terminal and search for it (go ahead to the next line if the previous one doesn't find anything):

find ./Library -name '*.pcf'
find . -name '*.pcf'
find / -name '*.pcf'

If you don't find anything, check the Library folder inside your home directory. I think the Cisco client might import the settings and store it in some other format (or at least in another file) inside the Library or Library/Preferences folder.

jon
  • 86
  • 2
0

Path in Mac: /opt/cisco/secureclient/bin/vpn

Sample command for connecting in terminal

$ cat ~/cisco_vpn.pvt | /opt/cisco/secureclient/bin/vpn -s connect <VPN_URL>

$ cat ~/cisco_vpn.pvt <user_name> <Password> y

-1

If I remember it right, they should be located in /etc/CiscoSystemsVPNClient/Profiles/ (you can open this folder from Finder´s Go To -> Go to Folder menu)

Asmus
  • 2,147