
AnyConnect is a remote access solution developed by Cisco that is well-known for portability and stability. This guide explains how to install ocserv on CentOS7, which is open-source and compatible with Cisco AnyConnect, and deploy certificate verification.
If you want to use a Let's Encrypt certificate instead of a self-signed certificate, you also need a Fully-Qualified Domain Name.
Install ocserv with yum.
Install certbot, which is used to create the Let's Encrypt server certificate. A domain name is required for certbot.
Choose "spin up a temporary Web server" to authenticate with ACME CA.
If you don't have a domain, a self-signed certificate will be issued later.
The traditional PKI is rather inconvenient to use, so you will use the easyrsa utility from the OpenVPN project. Install git on your working machine and clone the repository:
Build the CA and issue certificates. Record the PEM passphrase for safekeeping.
Keep pki/private/ca.key somewhere safe. Leaking that will render your whole infrastructure useless.
If you choose to use a self-signed server certificate, do the following:
And input your server's IP address as the common name.
This will sign a certificate for the server. Transfer pki/issued/server.crt and pki/ca.crt to /etc/ssl/certs and pki/private/server.key to /etc/ssl/private on your server.
Next we will create client certificates. Do the following:
Choose a name for the client and fill it into the common name field. Remember the passphrase!
Next, you will export the certificate in pkcs12 format for usage on mobile platforms. Do:
Choose an export password which you will be prompted to enter when importing the certificate on the phone. Transfer pki/private/client_01.p12 to your phone and import it.
Edit ocserv.conf to fill in the certificate information.
Locate server-cert section and fill in the following:
Note that if you're using a self-signed certificate, remember to remove the passphrase first by openssl rsa -in server.key -out server-new.key so that ocserv can use the private key.
Locate auth section. Enable this line:
And comment out all other auth lines.
Uncomment this line:
Locate ipv6-network and fill in your server's ipv6 block to define the lease block that the server uses to assign IP addresses.
Set DNS servers.
Enable compatibility with Cisco clients.
Open the ports you set in tcp-port and udp-port and enable masquerade for both ipv4 and ipv6 in firewalld.
Start the server.
The server has been successfully configured. Create a connection in your client and connect. If things go wrong, use this command to debug:
Also, IPv6 should work on the client-side if your client software supports ipv6 even if your client's network doesn't provide you with an address. Go to this site to test.
0 Comments
Be the first to comment and share your perspective with the community.