3 年前

ios/iphone配置连接openvpn

openvpn for ios  

前言 安全性高是因为搭建需要签CA证书来实现网络传输加密 而当客户端连接openvpn的时候往往需要将ca.crt,client.crt,client.key,client.ovpn等文件放在一个文件夹,然后导入client.ovpn文件给openvpn connect客户端,才能实现vpn连接 解决 openvpn can‘t be imported by “OpenVPN Connect Op…

3 年前

svn: E120108: Error retrieving REPORT (120108): APR does not understand this error code

疑难杂症  

SVN拉取版本问题 svn: E120108: Error retrieving REPORT (120108): APR does not understand this error code 解决办法 确保客户端和服务端保持一致 实测 1.7 的客户端拉 1.8.19的服务端,偶尔会出现…

3 年前

Python requests 增加超时时间和重试次数

python  

# 导入 requests 库 import requests # 导入 requests.exceptions 库 from requests.exceptions import ( ConnectTimeout, HTTPError, ReadTimeout, Timeout, ConnectionError ) # 定义一个超时时间,单位是秒…