本文主要是介绍Mac版本FortiClient保存不了VPN和打开白屏问题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
前言
最近在重新配置公司vpn,发现之前安装的FortiClient打开白屏,以为是版本兼容的问题,随升级版本,新版本能正常打开,但是保存不了VPN配置,记录下解决过程。
实际解决的是 FortiClient VPN 7.0.12.0437 版本,无法保存新建vpn问题(应该适用于7.x 版本,安装过7.2.4版本也是无法保存)
参考链接中解决的是打开白屏问题
解决方法
- 终端输入,查看系统禁用
% launchctl print-disabled system
在执行结果有如下几项:
"com.fortinet.config" => true
"com.fortinet.fctservctl" => true
"com.fortinet.fctctl" => true
- 修改禁用
sudo launchctl enable system/com.fortinet.config
sudo launchctl enable system/com.fortinet.fctservctl
sudo launchctl enable system/com.fortinet.fctctl
修改完之后,执行查看命令,结果如下:
"com.fortinet.config" => false
"com.fortinet.fctservctl" => false
"com.fortinet.fctctl" => false
- 重启电脑
注意: 配置vpn时,vpn的连接名也有要求,遇到的是不能有冒号“:”。
参考链接
https://www.jianshu.com/p/4005ac8b166d
感谢网友的无私分享
常见连接
- Mac FortiClient安装及使用
https://handbook.fortinet.com.cn/VPN%E6%8A%80%E6%9C%AF/FortiClient_VPN/Mac_FortiClient%E5%AE%89%E8%A3%85%E5%8F%8A%E4%BD%BF%E7%94%A8.html - 查看系统兼容性
https://docs.fortinet.com/document/forticlient/7.0.12/macos-release-notes/471180/product-integration-and-support
这篇关于Mac版本FortiClient保存不了VPN和打开白屏问题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!