aboutsummaryrefslogtreecommitdiffstats
path: root/samples/openconfig-local-routing/add_route_with_nhop.xml
diff options
context:
space:
mode:
Diffstat (limited to 'samples/openconfig-local-routing/add_route_with_nhop.xml')
-rw-r--r--samples/openconfig-local-routing/add_route_with_nhop.xml20
1 files changed, 20 insertions, 0 deletions
diff --git a/samples/openconfig-local-routing/add_route_with_nhop.xml b/samples/openconfig-local-routing/add_route_with_nhop.xml
new file mode 100644
index 0000000..8089c4d
--- /dev/null
+++ b/samples/openconfig-local-routing/add_route_with_nhop.xml
@@ -0,0 +1,20 @@
+<!-- XML for edit-config RPC to set a route with prefix and next-hop -->
+<local-routes xmlns="http://openconfig.net/yang/local-routing">
+ <static-routes>
+ <static>
+ <prefix>10.0.0.2/24</prefix>
+ <config>
+ <prefix>10.0.0.2/24</prefix>
+ </config>
+ <next-hops>
+ <next-hop>
+ <index>0</index>
+ <config>
+ <index>0</index>
+ <next-hop>10.0.0.1</next-hop>
+ </config>
+ </next-hop>
+ </next-hops>
+ </static>
+ </static-routes>
+</local-routes>