diff --git a/Proxmox/ThunderboltNetwork.md b/Proxmox/ThunderboltNetwork.md index 1a9ec79..9940339 100644 --- a/Proxmox/ThunderboltNetwork.md +++ b/Proxmox/ThunderboltNetwork.md @@ -113,9 +113,51 @@ Enable IPv4 forwarding. sed -i "s/\#net.ipv4.ip_forward\=1/net.ipv4.ip_forward\=1/" /etc/sysctl.conf ``` -Configure FRR. +Presetup and configuration of FRR. ```python +sed -i "s/fabricd=no/fabricd=yes/" /etc/frr/daemons +systemctl restart frr +``` +Open VTYSH CLI. +```python +vtysh +``` + +Enter config mode. +```python +configure +``` + +**Node1** Config. +```python +ip forwarding +! +interface en05 +ip router openfabric 1 +exit +! +interface en06 +ip router openfabric 1 +exit +! +interface lo +ip router openfabric 1 +openfabric passive +exit +! +router openfabric 1 +net 49.0000.0000.0001.00 +exit +! + +end +write memory +exit +``` + +```python +vtysh -c "show running-config" ``` Time for the reboot.