Update Proxmox/ThunderboltNetwork.md

This commit is contained in:
2024-06-16 20:18:07 +00:00
parent 9099703733
commit d9a6dbe09e

View File

@@ -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.