« [公告] IPCN 提供的 proxy list 代理列表 更新 | Main | apache 的性能优化 »
July 8, 2005
curl 的 ssl 处理 --cacert ipcn_ca.cer
版权声明:可以任意转载,转载时请务必以超链接形式标明文章原始出处和作者信息及本声明。 https://windtear.net/archives/2005/07/08/000711.html http://windtear.net/archives/2005/07/08/000711.html 用curl做ssl的外挂的话 --cacert必不可少 其实也就是其他的不变 增加一个 cacert 参数 --cacert ipcn_ca.cer -D cookie -d username= -d passwd= https:// >/dev/null 2>&1 if [ $RETZERO -eq 0 ]; then echo "login successfully" else echo -e "\E[31mERROR\E[0mlogin failed $RETZERO" fi 加上参数判断的话 if [ $# -lt 1 ]; then echo "usage: $0 IP " exit else IP=$1 fi -b cookie --cacert ipcn_ca.cer -d ip= 2>/dev/null |
Posted by windtear at July 8, 2005 6:53 PM