From d99445c4890591ca76322d124f22e81581fc4f6e Mon Sep 17 00:00:00 2001 From: Joachim Wiberg Date: Sun, 25 Jun 2023 12:06:17 +0200 Subject: [PATCH] Fix Frr Hybrid Mode example and link to doc/container.md Signed-off-by: Joachim Wiberg --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 035992b7..271b1ac1 100644 --- a/README.md +++ b/README.md @@ -71,11 +71,11 @@ directory: `/cfg/start.d`. For example, the following starts OSPF: ```sh root@infix:~$ mkdir /cfg/start.d root@infix:~$ cd /cfg/start.d +root@infix:~$ cp -a /etc/frr . root@infix:/cfg/start.d$ cat <10-enable-ospf.sh #!/bin/sh # Use vtysh to modify the OSPF configuration -rm /etc/frr/frr.conf -ln -s /cfg/frr/frr.conf /etc/frr/ +mount --bind /cfg/frr /etc/frr initctl enable zebra initctl enable ospfd initctl enable bfdd @@ -104,6 +104,8 @@ root@infix:/cfg/start.d$ chmod +x 20-enable-container.sh Reboot to activate the changes. To activate the changes without rebooting, run the script and call `initctl reload`. +For more information, see [Containers in Infix](doc/container.md). + Hardware --------