-
If the common name is empty for the certificate, pygnmi fails due to [this line](https://github.com/akarneliuk/pygnmi/blob/e6b21f8278faaa4bbdb8bbea6c620330a4a093e0/pygnmi/client.py#L146).
```
>>> …
-
gNMI spec section 3.5 says telemetry updates should be encoded as (path, scalar value) pairs.
> When aggregation is not permitted by the client or the schema each update message MUST contain a (key…
-
The gnmi_ext.proto file mentions the following for msg attribute:
"The binary-marshalled protobuf extension payload."
As there are quite a few methods to serialize a message e.g SerializeToString o…
-
The gnmi-collector churns when there exist multiple tunnel targets.
It keeps flapping the tunnel targets (clients).
Scenario:
1 tunnel server : using https://github.com/openconfig/gnmi/tree/maste…
-
Do you support mTLS and do you have any working examples using both client and server certs? I've tried various combinations of this without success.
with gNMIclient(target=host, username='admin', …
-
HI,
Could someone add an option to pass variable representing docker network (IP) assigned to bridge (ipv4-gw) in topology YAML file to make it possible to use in startup-config (to pass it as a va…
-
In our long-running process, we are using gnmic as a library. We are connecting to Arista EOS and we've noticed that connections are never closed:
```shell
sh-4.2# netstat -no |grep 6030
tcp6 …
-
If you use the Subscribe() function on a gNMI client to request a subscription from an onos-config instance the request will block. You have to wrap it in a goroutine to be able to get back any events…
-
Hi all,
I think I might be seeing one issue when the gNMI server responds with EOF on Sub ONCE, client sees this as failed test.
```
=== RUN TestInterface/ifname/Get_Interface_Config
inter…
-
Hi Carl,
We are implementing the tunnel client/server and we are able to get the client/server session establishment and we have started with writing the C++ wrappers for the tunnel client/server. …