DeepOps的macOS小笔记-macOS安装openvpn

因为公司远程办公需要使用到vpn,手头上只有一台mac,需要安装一下openvpn。

#如果没有安装brew,在安装一下homebrew 选择aliyun的源速度比较快
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)" 

使用brew 直接安装
brew install openvpn

#启动openvpn
sudo openvpn --config /openvpn-2.5.0/config/你的.ovpn

下面是我没有尝试成功的一个方案:

1、下载openvpn,我2021.1.7下的是 openvpn-2.5.0.zip 因为我喜欢zip

2、解压后得到,openvpn-2.5.0

3、进入openvpn-2.5.0文件夹,打README文件,根据上面操作即可

	tar -zxf openvpn-<version>.tar.gz
	cd openvpn-<version>
	./configure
	make
	make install

4、执行 ./configure 出现错误

checking additionally if OpenSSL is available and version >= 1.0.2... configure: error: OpenSSL version too old

看样子是我的openssl 版本过旧

执行下面语句安装或者更新一下openssl

#安装opensslbrew install openssl
#更新opensslbrew upgrade openssl

重新安装了openssl还是不行,到此以失败告终,然后我是用了brew安装了openvpn然后就成功了。

Leave a Comment

Your email address will not be published.