Open nskalis opened 1 year ago
" gnmi_capabilities -notls -insecure " == This tells gnmic_capabilities to do a non-TLS connection and at the same time, to do a non-verified TLS connection. I think you should use only --notls.
gnmi_target, without TLS support: go run gnmi_target --target_address lalala -notls --target_addr 127.0.0.1:9336
gnmi_capabilities without TLS support go run gnmi_capabilities --target_name lalala -notls --target_addr 127.0.0.1:9336
gnmic call to Capabilities without TLS support gnmic -a 127.0.0.1:9336 --insecure capabilities
Hi, and thank you for making the
gnxi
utilities available.The binaries have been built and installed without any errors using golang
go1.17.13
. But,I am failing to contact a router using
gnmi_capabilities
(orgnmi_get
). The error message is as follows:while there is connectivity:
Using another grpc client, it succeeds as well:
Do you have perhaps any idea what might be going wrong here?