Replies: 2 comments 4 replies
-
Could you show |
Beta Was this translation helpful? Give feedback.
3 replies
-
I'm totally confused now about what problem we are solving here. You mixed a couple more issues into one, and I'm lost here. Can we start with a single one first? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm doing a project with FRR running on Mininet containers while I got stuck with how to initialize FRR on those virtual containers. With the FRR offcial documents, I wrote frr.conf file as follows:
frr defaults datacenter
hostname h1-zebra
password this
enable password this
!
interface lo
no shutdown
!
interface h1_1-eth0
ip address 10.1.0.1/24
!
ip route 0.0.0.0/0 10.1.0.254
!
It simply defines the IP address of interfaces of the host h1_1 and adds the default route.
I saved this file path as /etc/frr/frr.conf, and uses h1_1 to run the command '/usr/lib/frr/frrinit.sh start' to invoke the FRR reading this conf file. However, I checked with commands "ip route" and "ifconfig" on h1_1, I found the expected interfaces ip addresses and route were not set.
Could anyone tell me if it is there anything wrong with the syntax of frr.conf file or the invoking process of FRR?
Beta Was this translation helpful? Give feedback.
All reactions