99

I installed Cisco AnyConnect for Ubuntu(64) 12.04, but it failed. It can be installed on Ubuntu 10.10(64).

The error log

Installing Cisco AnyConnect VPN Client ...
Extracting installation files to /tmp/vpn.teuSIr/vpninst096243274.tgz...
Unarchiving installation files to /tmp/vpn.teuSIr...
Starting the VPN agent...
/opt/cisco/vpn/bin/vpnagentd: error while loading shared libraries: libxml2.so.2: cannot open shared object file: No such file or directory

When I meet that,

locate libxml2.so.2
/usr/lib/x86_64-linux-gnu/libxml2.so.2
/usr/lib/x86_64-linux-gnu/libxml2.so.2.7.8

So I create symbol link libxml2.so.2 in /user/lib and after I do:

Installing Cisco AnyConnect VPN Client ...
Extracting installation files to /tmp/vpn.5cz4FV/vpninst001442979.tgz...
Unarchiving installation files to /tmp/vpn.5cz4FV...
Starting the VPN agent...
/opt/cisco/vpn/bin/vpnagentd: error while loading shared libraries: libxml2.so.2: wrong ELF class: ELFCLASS64

I ensure that there exist lib32 runtime lib on my device.

How can I fix this?

Tim
  • 33,500
chuck
  • 1,091

13 Answers13

157

If you don't need the "official" Cisco AnyConnect VPN software, I highly recommend installing the "network-manager-openconnect-gnome" package in the Ubuntu Repository. It uses OpenConnect which is an open source client for AnyConnect.

Anyhow, that package allows for you to configure and manager your AnyConnect VPN connections through the normal network manager.

I have been using that to connect to my work VPN for the past few months and it has been working great!

You can find the package in the Ubuntu Software Center or Synaptic by searching for "OpenConnect." If you wish to install it via the command-line, you can do so with:

sudo apt-get install network-manager-openconnect openconnect

For the GUI you can additionally install the *-gnome package using:

sudo apt-get install network-manager-openconnect-gnome

This adds an option to Network Connections. When you choose to add a connection, there'll be a new option under VPN Connections to add a "Cisco AnyConnect Compatible VPN (openconnect)". You can then connect to the VPN through the networks applet (in the system tray).

NotTheDr01ds
  • 22,082
John Vrbanac
  • 4,727
35

Use openconnect! quite easy!

  1. First run command below to active th TUN module:

    sudo /sbin/modprobe tun
    
  2. Install OpenConnect:

    sudo apt-get install openconnect
    
  3. Connect to VPN, run:

    sudo openconnect yourvpn.example.com
    

Try this link it helped me : http://ubuntuhandbook.org/index.php/2014/11/connect-cisco-anyconnect-vpn-ubuntu/

prashanth-g
  • 451
  • 4
  • 5
19
  1. Install some VPN plug-ins for Network Manager:

    sudo apt-­get install network-manager-pptp network-manager-vpnc network-manager-openvpn network-manager-openconnect-gnome
    
  2. If prompted for your password, type it, and press Enter.

  3. If you're told that a package “is already the newest version,” ignore it and continue with the next command.

  4. If asked to “continue [Y/n],” press Y, followed by Enter.

  5. Open the connections settings dialogue, go to the VPN tab and add a new connection:

  6. Select “Cisco AnyConnect”:

4

I encountered a similar issue earlier. I observed that vpnagentd does not load because of libatk1 and vpnui does not load because of libxml2. Installing the 32-bit versions of these libraries resolves the issues. You should install ia32-libs to resolve the issue using

sudo apt-get update
sudo apt-get install ia32-libs

This should resolve the issue for you on Ubuntu 64 bit versions. I have tried it on Ubuntu 11.10 and Ubuntu 12.04.

Eliah Kagan
  • 119,640
4

I just installed openconnect. Works similarly to the anyconnect command line utility.

sudo apt-get install openconnect
jumpnett
  • 6,185
3

As of Ubuntu 18.04, OpenConnect VPN client is available as an add-on to GNOME Control Center, as shown here:

enter image description here

To enable this add-on, you can search for 'openconnect' in ubuntu software center like so:

enter image description here

Then click on gnome control center and check the checkbox for 'OpenConnect VPN Client'.

dstandish
  • 131
2

Never mind, I installed OpenConnect with the instructions here. Finally, I don't have to deal with that Cisco garbage!

S.V.
  • 103
Hypercube
  • 676
1

In my casevpnagentd would not load. Installing the packages

sudo apt-get install lib32z1 lib32ncurses5

however, resolved the problem for me. The terminal promted the message to install these, when I tried to install ia32-libs, which seems to be obsolete.

Jarno
  • 296
1

Here are procedure that worked for me on Ubuntu 64 bit desktop 14.04.3

sudo apt-get install -y lib32z1 lib32ncurses5 lib32bz2-1.0 libxml2:i386 libstdc++6:i386 libgtk2.0-0:i386 libpango1.0-0:i386

Now, I can ./vpnui to launch.

1

Just in case you do want the Ciso Anyconnect client working take a look at this blog. Just disable the Firefox Iced Tea web plugin and go to your VPN site. Have Ubuntu download the VPN installer and run the shell script. In my case Cisco Anyconnect VPN client was installed and available under the Internet section and works fine.

htorque
  • 66,086
ToonP
  • 113
0

1.Download ubuntu compatible anyconnect from https://its.gmu.edu/wp-content/uploads/anyconnect-linux64-4.10.00093-predeploy-k9.tar_-1.gz

2.then follow the steps as mentioned- https://its.gmu.edu/knowledge-base/how-to-install-cisco-anyconnect-on-linux/

Hiccup
  • 101
0

openconnect-sso works well especially if the vpn provider/policy requires embedded browser login+MFA https://github.com/vlaci/openconnect-sso

without --user flag especially.

openconnect-sso -l debug --server bla -- --useragent=AnyConnect

the good part is it doesn't mess up with docker/multipass

Kokizzu
  • 518
0

I have encountered similar issue earlier. I observed that vpnagentd does not load because of libatk1 and vpnui does not load because of libxml2. Installing the 32bit versions of these libraries resolves the issues. You should install ia32-libs to resolve the issue using

sudo apt-get install ia32-libs

This should resolve the issue for you on Ubuntu 64bit versions. I have tried it on 11.10 and 12.04.

Peachy
  • 7,235
  • 10
  • 40
  • 47