Skip to content

Commit c5c3c3a

Browse files
StaticRoute: prefix fails to be configured by FRR
#### Why I did it Static route configuration failed #### How I did it Changed the daemon to which configs are sent. #### How to verify it admin@gold101-dut:$ sudo config route add prefix 42.0.0.0/16 nexthop 10.0.0.1 admin@gold101-dut:$ admin@gold101-dut:$ vtysh -c "show run" | grep "ip route" ip route 42.0.0.0/16 10.0.0.1 admin@gold101-dut:$ show ip route 42.0.0.0/16 Routing entry for 42.0.0.0/16 Known via "static", distance 1, metric 0, best Last update 00:06:43 ago 10.0.0.1, via Ethernet64
1 parent 9780655 commit c5c3c3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sonic-frr-mgmt-framework/frrcfgd/frrcfgd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ class BgpdClientMgr(threading.Thread):
113113
'OSPFV2_ROUTER_DISTRIBUTE_ROUTE': ['ospfd'],
114114
'OSPFV2_INTERFACE': ['ospfd'],
115115
'OSPFV2_ROUTER_PASSIVE_INTERFACE': ['ospfd'],
116-
'STATIC_ROUTE': ['staticd'],
116+
'STATIC_ROUTE': ['mgmtd'],
117117
'PIM_GLOBALS': ['pimd'],
118118
'PIM_INTERFACE': ['pimd'],
119119
'IGMP_INTERFACE': ['pimd'],

0 commit comments

Comments
 (0)