-
Notifications
You must be signed in to change notification settings - Fork 51
Description
Hello I am new to ipmininet. I want to know how to use VTY shell to view the configuration of each router in a simple topology. I tried the example file static_routing.py. Whenever I access the CLI of any router and use vtysh, it always shows the configuration file of the router with the highest number. I would like to know how to change this so that each router corresponds to its own configuration file and can display and perform routing operations.
r1.addDaemon(STATIC, static_routes=[StaticRoute("2042:2b::/64", "2042:12::2"), StaticRoute("10.62.0.0/24", "10.12.0.2")]) r2.addDaemon(STATIC, static_routes=[StaticRoute("2042:1a::/64", "2042:12::1"), StaticRoute("10.51.0.0/24", "10.12.0.1")])
The image below shows that I have opened the terminal for router r1 and used vtysh, but it is displaying the routing information for r2.
