-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to modify FRRouting configuration file settings? #129
Comments
Hello, FRRouting's vtysh command line is using unix sockets under ipmininet/ipmininet/router/config/zebra.py Lines 41 to 44 in 72cefde
I am unfamiliar with vtysh configuration and cannot advise you on the best way to configure it to accommodate a different location and names In any case, you can still connect to the daemons without the tool by using |
Thanks for your help! I will try using telnet first. |
Using vtysh to configure an integrated configuration (frr.conf) is convenient. How to enable it? |
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.
The text was updated successfully, but these errors were encountered: