LwM2M
关于lwm2m 协议介绍部分,请自行百度.
eclipse 提供了一个开源的client service 实现,包含java 以及c 的实现。分别为下面的两个git repo
https://github.com/eclipse/leshan
https://github.com/eclipse/wakaama
leshan 提供了一个在线的leshan server及其bootstrap server
https://leshan.eclipseprojects.io/
https://leshan.eclipseprojects.io/bs/
连接到LwM2M Server
目标
本地搭建server 和client
使用leshan 提供的client 连接到server 上。
download 相关的java jar包
wget https://ci.eclipse.org/leshan/job/leshan/lastSuccessfulBuild/artifact/leshan-server-demo.jar
wget https://ci.eclipse.org/leshan/job/leshan/lastSuccessfulBuild/artifact/leshan-client-demo.jar
1
2
启动服务
java -jar leshan-server-demo.jar -ln 10.0.20.193
java -jar leshan-client-demo.jar -u 10.0.20.193:5683
通过server 8080
端口查看注册的设备信息
使用wakaama 连接到测试的公共leshan server
详细参考该连接,https://github.com/eclipse/wakaama/issues/673
————————————————
版权声明:本文为CSDN博主「TuT_today」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_37210821/article/details/128089733