Update Proxmox/ThunderboltNetwork.md

This commit is contained in:
2024-06-16 20:07:39 +00:00
parent 669ce82420
commit d571239cf6

View File

@@ -9,6 +9,11 @@ Optional package to track which node can see which other one.
apt install -y lldpd apt install -y lldpd
``` ```
Mandatory packages.
```python
apt install -y frr
```
Add kernel modules. Add kernel modules.
```python ```python
# remove empty lines # remove empty lines
@@ -103,8 +108,17 @@ chmod +x /usr/local/bin/pve-en05.sh
chmod +x /usr/local/bin/pve-en06.sh chmod +x /usr/local/bin/pve-en06.sh
``` ```
Time for the first reboot. Enable IPv4 forwarding.
```python3
sed -i "s/\#net.ipv4.ip_forward\=1/net.ipv4.ip_forward\=1/" /etc/sysctl.conf
```
Configure FRR.
```python
```
Time for the reboot.
``` ```
/sbin/reboot /sbin/reboot
``` ```