Ziti identies are failing after upgrade of edge tunneler

I suspect a bug is making identities inactive (locally disabled). Let's assess the status of the identities you've added to the tunneler's identity dir.

First, please install the latest stable release: 1.2.2 and proceed with troubleshooting if the problem persists.

# report the running status of all identities
ziti-edge-tunnel tunnel_status | jq '.Data.Identities[]|{Identifier: .Identifier, Active: .Active}'
# report the saved status of all identities
jq '.Identities[]|{Identifier: .Identifier, Active: .Active}' /var/lib/ziti/config.json

If necessary, enable an identity's identifier that is shown as Active: false.

# set an identifier "Active: true"
ziti-edge-tunnel on_off_identity --identity /opt/openziti/etc/identities/machine1.json --onoff true
1 Like