시스코 애니 커넥트 클라이언트 설치 구성 및 기본 주소 수정 기술

시스코는 시스코 애니 커넥트 VPN 클라이언트는 현재 윈도우, 안드로이드, 아이폰 OS, OS X, 우분투, 웹 OS 운영 체제 및 다른 클라이언트를 출시했다. 애니 커넥트의 주요 역할은 안전하게 모든 장치에 대한 작업에 직원을 촉진하는 것입니다.

시스코 애니 커넥트 클라이언트 설치 구성 및 기본 주소 수정 기술

업데이트 내역

2019년 5월 24일 - 초안

- 원래 읽기  https://wsgzao.github.io/post/cisco-anyconnect/을

추가 읽기

시스코 애니 커넥트 시큐어 모빌리티 클라이언트


시스코 애니 커넥트 프로필

그것은 소개가 필요없는

시스코 애니 커넥트 구성

  1. 맥 OS 시스템에만 설치 VPN 구성 요소를 설치하고, 다른 기능은 설치할 필요가 없습니다
  2. 맥 OS 및 윈도우 선택 취소하는 것이 좋습니다Block Connections to untrusted servers

 

시스코 애니 커넥트는 기본 링크 주소를 수정

변경 로컬 정책 매개 변수를 수동으로

1 단계는  클라이언트 설치의 애니 커넥트 로컬 정책 파일 (AnyConnectLocalPolicy.xml)의 사본을 검색합니다.

표 1. 운영 체제 및 애니 커넥트 로컬 정책 파일 설치 경로 운영 체제

|Operating System	|Installation Path												|
---|---|---
|Windows			|C:\ProgramData\Cisco\Cisco AnyConnect Secure Mobility Client	|
|Linux				|/opt/cisco/anyconnect											|
|macOS				|/opt/cisco/anyconnect											|

Step 2 Edit the parameter settings. You can either edit the AnyConnectLocalPolicy file manually, or use the VPN Local Policy editor, which is distributed with the AnyConnect Profile Editor installer.

Step 3 Save the file as AnyConnectLocalPolicy.xml and deploy the file to remote computers using a corporate software deployment system.

Step 4 Reboot the remote computers so that the changes to the local policy file take effect.

https://www.cisco.com/c/en/us/td/docs/security/vpn_client/anyconnect/anyconnect40/administration/guide/b_AnyConnect_Administrator_Guide_4-0/anyconnect-profile-editor.html

macOS

注意修改中文备注

vim /opt/cisco/anyconnect/profile/Profile.xml

<?xml version="1.0" encoding="UTF-8"?>
<AnyConnectProfile xmlns="http://schemas.xmlsoap.org/encoding/"> 
<ServerList> 
     <HostEntry>
          <User> 用户名称 </User>
          <HostName> 自定义显示名称 </HostName>
          <HostAddress> 服务器地址 </HostAddress>
     </HostEntry>
     <HostEntry>
          <User> 用户名称 </User>
          <HostName> 自定义显示名称 </HostName>
          <HostAddress> 服务器地址 </HostAddress>
     </HostEntry>
</ServerList>
</AnyConnectProfile>

Windows

注意修改中文备注

C:\Users\你的用户名\AppData\Local\Cisco\Cisco AnyConnect Secure Mobility Client 目录下的 preferences.xml 文件

比如

C:\Users\wangao\AppData\Local\Cisco\Cisco AnyConnect Secure Mobility Client

<?xml version="1.0" encoding="UTF-8"?>
<AnyConnectPreferences>
<DefaultUser> 默认用户名 </DefaultUser>
<DefaultSecondUser/>
<ClientCertificateThumbprint/>
<ServerCertificateThumbprint/>
<DefaultHostName> 默认 VPN 地址 </DefaultHostName>
<DefaultHostAddress/>
<DefaultGroup> 默认组 </DefaultGroup>
<ProxyHost/>
<ProxyPort/>
<SDITokenType/>
<ControllablePreferences>
<EnableAutomaticServerSelection>false</EnableAutomaticServerSelection>
<LocalLanAccess>false</LocalLanAccess>
<BlockUntrustedServers>false</BlockUntrustedServers>
</ControllablePreferences>
</AnyConnectPreferences>
发布了31 篇原创文章 · 获赞 8 · 访问量 8844

추천

출처blog.csdn.net/tony_vip/article/details/104224647