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
- 启动服务
java -jar leshan-server-demo.jar -ln 10.0.20.193
- 启动client
java -jar leshan-client-demo.jar -u 10.0.20.193:5683
- 通过server
8080
端口查看注册的设备信息
使用wakaama
连接到测试的公共leshan server
- 详细参考该连接,
https://github.com/eclipse/wakaama/issues/673