- 帖子
- 113
- 积分
- 127
- 技术
- 1
- 捐助
- 0
- 注册时间
- 2016-1-3
|
[其他] curl命令绑定host访问网页提示"不匹配目标主机名"如何解决?
本帖最后由 pcl_test 于 2016-1-5 18:19 编辑
打算使用curl命令做一个批处理,主要验证IP可以防问那些网站!
例如:在hosts文件修改IP为31.13.82.36是可以正常防问www.facebook.com
但当使用curl命令验证时会出现各种错误提示!
例如:curl -H "Host:www.facebook.com" https://31.13.82.36
错误提示为:curl: (51) SSL: certificate subject name '*.facebook.com' does not match target host name '31.13.82.36'
使用禁用证书校验命令
curl -H -k "Host:www.facebook.com" "https://31.13.82.36:443"
错误提示为:curl: (6) Could not resolve host: Host
curl: (51) SSL: certificate subject name '*.facebook.com' does not match target host name '31.13.82.36'
请问还有无有其方法实现,验证IP可以防问那些网站! |
|