First, download the AT&T Global Network Client from ftp://ftp.attglobal.net/pub/custom/ibm_linux/.
If you try to install this using
rpm -ivh agnclient-1.0-2.0.1.3003.i386 |
you will get an error similar to:
failed to install file:
agnclient-1.0-2.0.1.3003.i386 requires libcrypto.so.4
agnclient-1.0-2.0.1.3003.i386 requires libssl.so.4
To solve this error, create a symbolic link for the missing modules by executing commands similar to this as root:
ln -s /usr/lib/libssl.so /usr/lib/libssl.so.4 ln -s /usr/lib/libcrypto.so /usr/lib/libcrypto.so.4 |
Proceed with the installation:
rpm -ivh --nodeps agnclient-compat-1.0-3.oc2.i386.rpm agnclient-1.0-2.0.1.3003.i386.rpm |
If you try to run it at this point, you will get this error:
The AT&T Global Network Client daemon (agnclientd) is not running. It must be running to create a VPN connection. Please restart your computer or manually restart the daemon.
To solve this, execute the following command as root or just restart your computer:
/etc/init.d/agnclientd start |
Note: This instruction also works for Fedora 14, and 15.

Sobrang techy ng blog. D:
I found a fedora build that worked on my Fedora 16 x64 install. You have to be on an IBM network to get to the link.
ftp://pokgsa.ibm.com/projects/o/openclient/att/agnclient/fedora/
I had the same issue folks; I had to link the required libs manually with ldd: ldd /opt/agns/bin/NetVPNx
This peice of craps uses libs differently than what is informed on the rpm, but a rappidly ln work and we’re done.
[...] trying to install AT&T client on RHEL derivatives, I came across this post on how to install the dialer. What a life saver! Thank you [...]