Add bonding

This commit is contained in:
Denys Fedoryshchenko
2023-08-31 09:17:56 +03:00
parent 8fc13c9b91
commit 70da2d0e44
+52
View File
@@ -199,6 +199,58 @@ policy-options {
* x.x.x.x is your peer IP address and y.y.y.y is Ogero IP address.
* a.a.a.a/24 and b.b.b.b/24 are your prefixes you want to send to Ogero.
Also dont forget to set your ASN in routing-options
```
set routing-options autonomous-system 12345
```
## Bonding
Don't forget to set number of bonding interfaces
```
chassis {
aggregated-devices {
ethernet {
device-count 15;
}
}
}
```
Then bonding itself:
```
xe-0/0/6 {
description IXMANAGER-eth3;
ether-options {
802.3ad ae6;
}
}
xe-0/0/7 {
description IXMANAGER-eth4;
ether-options {
802.3ad ae6;
}
}
ae6 {
description IXMANAGER;
aggregated-ether-options {
lacp {
active;
}
}
unit 0 {
family ethernet-switching {
port-mode access;
vlan {
members [ IXMANAGER ];
}
}
}
}
```
## FBF