Created
June 5, 2020 19:26
-
-
Save asavt92/e76a3a3ed5c97fdb0ad2eb5bb890e109 to your computer and use it in GitHub Desktop.
Cisco Anyconnect Установка и Настройка сертификата
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Тестировалось на fedora | |
1. устанавливаем https://computingforgeeks.com/install-cisco-anyconnect-on-ubuntu-debian-fedora/ | |
2. Настройка сертификата | |
Имеется клиенский серт с ключом client.pfx | |
openssl pkcs12 -in client.pfx -out certificate.pem -nokeys | |
openssl pkcs12 -in client.pfx -out certificate.key -nocerts | |
sudo mkdir -p /opt/.cisco/certificates/client/private | |
sudo mv certificate.pem /opt/.cisco/certificates/client/ | |
sudo mv certificate.key /opt/.cisco/certificates/client/private/ | |
3. Запуск | |
opt/cisco/anyconnect/bin/vpn | |
connect <сервер> | |
либо через UI (можно выбрать профиль, расположение профилей /opt/cisco/anyconnect/profile/) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment