Skip to content

Commit

Permalink
statd: Add 'admin-status' to yanger
Browse files Browse the repository at this point in the history
The interface operational data was missing the 'admin-status' parameter,
which indicates whether an interface is administratively enabled or
disabled. To resolve this, the 'admin-status' was added to the yanger

Fixes #700
  • Loading branch information
axkar committed Oct 16, 2024
1 parent 7de94b9 commit 3f0b85a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/statd/python/yanger/yanger.py
Original file line number Diff line number Diff line change
Expand Up @@ -664,6 +664,15 @@ def add_ip_link(ifname, iface_in, iface_out):
if 'link' in iface_in and not iface_is_dsa(iface_in):
insert(iface_out, "infix-interfaces:vlan", "lower-layer-if", iface_in['link'])

if 'flags' in iface_in:
admin_xlate = {
"UP": "up",
"DOWN": "down"
}

admin_status = admin_xlate.get("UP" if "UP" in iface_in['flags'] else "DOWN", "testing")
iface_out['admin-status'] = admin_status

if 'operstate' in iface_in:
xlate = {
"DOWN": "down",
Expand Down

0 comments on commit 3f0b85a

Please sign in to comment.