Using AT&T Network Client VPN with Ubuntu 64bit
(This post is probably of most interest to my IBM colleagues - however, since the AT&T Network Client is also available for other organisations, I’ve posted this here in case it’s of use to other folks.)
I recently installed Ubuntu 64bit (amd64) on my Lenovo Thinkpad T61. Unfortunately, the Network Client is not available in a 32bit edition. So I had to perform a few tweaks to get it to work. Here’s the steps I took:
- Install the ia32-libs package and all it’s dependencies:
sudo apt-get install ia32-libs
- Install the AT&T client itself (IBM colleagues can obtain this from the OCDC website):
sudo dpkg -i --force-architecture agnclient_1.0~2.0.1.3000-3_i386.deb
- Add some symlinks:
sudo ln -s /usr/lib32/libssl.so.0.9.8 /usr/lib32/libssl.so.4
sudo ln -s /usr/lib32/libcrypto.so.0.9.8 /usr/lib32/libcrypto.so.4
- You should now be able to start the Network Client from the Internet section of the Gnome menu, or from /opt/agns/bin/agnclient. Click Connect and enter your details as normal.
Comments