changed the value of PEER_NEXT_HOP in neighbors.py. There is a conflict between PEER_NEXT_HOP in neighbors.py and NEXT_HOP in api/base.py. As a result of the conflict, the correct validator for PEER_NEXT_HOP is not used when neighbir_add is executed.
Signed-off-by: Hiroshi Yokoi <[email protected]> --- ryu/services/protocols/bgp/rtconf/neighbors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ryu/services/protocols/bgp/rtconf/neighbors.py b/ryu/services/protocols/bgp/rtconf/neighbors.py index f3c72a0..0ca6f68 100644 --- a/ryu/services/protocols/bgp/rtconf/neighbors.py +++ b/ryu/services/protocols/bgp/rtconf/neighbors.py @@ -73,7 +73,7 @@ ENABLED = 'enabled' CHANGES = 'changes' LOCAL_ADDRESS = 'local_address' LOCAL_PORT = 'local_port' -PEER_NEXT_HOP = 'next_hop' +PEER_NEXT_HOP = 'peer_next_hop' PASSWORD = 'password' IN_FILTER = 'in_filter' OUT_FILTER = 'out_filter' -- 1.8.5.2 (Apple Git-48) ------------------------------------------------------------------------------ Infragistics Professional Build stunning WinForms apps today! Reboot your WinForms applications with our WinForms controls. Build a bridge from your legacy apps to the future. http://pubads.g.doubleclick.net/gampad/clk?id=153845071&iu=/4140/ostg.clktrk _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
