edgedevice.yaml
文件接入设备前,您需要对edgedevice.yaml
文件进行编辑。对于不同的协议,protocolSettings
可根据协议进行进一步配置,详细配置请前往Shifu API参考。
... connection: Ethernet address: 0.0.0.0:11112 protocol: HTTP protocolSettings: OPCUASetting: ...
connection
:表示设备的网络连接方式。address
:表示设备的网络地址。protocol
:表示与设备进行交互的通信协议。protocolSettings
:表示对协议进行的下一步设置,对于不同的协议需要引入不同的Setting。修改完上述文件后即可创建deviceshifu,此时 deviceshifu 会尝试通过您所设置的配置与您的设备进行连接。
如果您通过命令kubectl get pods -n deviceshifu
发现deviceshifu状态出现Error
或者CrashLoopBackOff
,这意味着连接异常。
您也可以通过命令kubectl logs <NAME> -n deviceshifu
打印错误信息。
connection: Ethernet address: opc.tcp://192.168.0.111:4840/freeopcua/server protocol: OPCUA protocolSettings: OPCUASetting: SecurityMode: None ConnectionTimeoutInMilliseconds: 5000 AuthenticationMode: UserName Username: user1 Password: pwd1
通过如上配置,将address
设置成您的 OPC UA设备 的地址,protocol
设置成OPC UA
,protocolSetting
加入OPCUASetting
,并配置SecurityMode
(信息安全模式)、ConnectionTimeoutInMilliseconds
(连接超时时间)、AuthenticationMode
(认证默认)以及账号密码等。
修改完上述配置之后,创建***deviceshifu***即可接入OPC UA设备。
本文由边无际授权发布