MQTT协议接入 - X.509证书认证
MQTT协议接入 - X.509证书认证
基本流程
1.
2.
3.
4.
限制说明
制作设备CA根证书详细流程(自签用于调试测试)
1.
2.
3.
4.
openssl genrsa -out lightRootCA.key 2048
5.
openssl req -x509 -new -nodes -key lightRootCA.key -sha256 -days 1024 -out lightRootCA.pem
系统提示您输入如下信息,所有参数可以自定义。 Country Name (2 letter code) [AU]:国家,如CN。 State or Province Name (full name) []: 省份,如GD。 Locality Name (for example, city) []:城市,如SZ。 Organization Name (for example, company) []:组织,如Das。 Organizational Unit Name (for example, section) []:组织单位,如IoT。 Common Name (e.g. server FQDN or YOUR name) []: 名称(不为空!可以填入根证书相关信息),如das light。 Email Address []:邮箱地址,如1234567@163.com。
上传验证证书详细流程
1.
openssl genrsa -out verificationCert.key 2048
2.
openssl req -new -key verificationCert.key -out verificationCert.csr
系统提示您输入如下信息,Common Name填写为验证证书的验证码,其他参数自定义。 Country Name (2 letter code) [AU]:国家,如CN。 State or Province Name (full name) []: 省份,如GD。 Locality Name (for example, city) []:城市,如SZ。 Organization Name (for example, company) []:组织,如Das。 Organizational Unit Name (for example, section) []:组织单位,如IoT。 Common Name (e.g. server FQDN or YOUR name) []:验证证书的验证码必填!!!在对应的设备CA根证书的详情页面获取 Email Address []:邮箱地址,如1234567@163.com。 Password[]:密码,如1234321。 Optional Company Name[]:公司名称,如Das。
3.
openssl x509 -req -in verificationCert.csr -CA lightRootCA.pem -CAkey lightRootCA.key -CAcreateserial -out verificationCert.pem -days 500 -sha256
4.
5.
制作用于设备连接的CA证书详细流程
1.
2.
openssl genrsa -out deviceCert.key 2048
3.
openssl req -new -key deviceCert.key -out deviceCert.csr
系统提示您输入如下信息,所有参数可以自定义 Country Name (2 letter code) [AU]:国家,如CN。 State or Province Name (full name) []: 省份,如GD。 Locality Name (for example, city) []:城市,如SZ。 Organization Name (for example, company) []:组织,如Das。 Organizational Unit Name (for example, section) []:组织单位,如IoT。 Common Name (e.g. server FQDN or YOUR name) []: 名称,如zhangsan。 Email Address []:邮箱地址,如1234567@163.com。 Password[]:密码,如1234321。 Optional Company Name[]:公司名称,如Das。
4.
openssl x509 -req -in deviceCert.csr -CA lightRootCA.pem -CAkey lightRootCA.key -CAcreateserial -out deviceCert.pem -days 500 -sha256
使用证书连接服务器
变量名 | 说明 |
---|---|
mqttClientId | 格式为deviceId&productId, 例如:device1&product1 |
mqttUsername | 任意非空字符串 |
mqttPassword | 任意非空字符串 |
修改于 2023-12-15 01:15:20