常见问题记录

Shell curl 命令报错:(60) SSL certificate problem: self signed certificate

curl 需要加上 -k,wget 需要加上 --no-check-certificate

curl -v -k https://amm907.com
wget --no-check-certificate https://amm907.com

Shell curl 命令报错: (35) error:1425F102:SSL routines:ssl_choose_client_version:unsupported protocol

OPENSSL_CONF=./openssl_allow_tls1.0.cnf curl -v https://amm907.com

vi openssl_allow_tls1.0.cnf
openssl_conf = openssl_init

[openssl_init]
ssl_conf = ssl_sect

[ssl_sect]
system_default = system_default_sect

[system_default_sect]
CipherString = DEFAULT@SECLEVEL=1

KALI.VMware 迷之断网,右上角显示设备未托管

ifconfig -a 看到网卡还在,只是罢工了。


修改配置,加入这两行,重启。

vi /etc/network/interfaces
auto eth0
iface eth0 inet dhcp
# 重启
systemctl restart networking