From 70da2d0e44e441da2a01a8922f8851d987384ddc Mon Sep 17 00:00:00 2001 From: Denys Fedoryshchenko Date: Thu, 31 Aug 2023 09:17:56 +0300 Subject: [PATCH] Add bonding --- Juniper.md | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/Juniper.md b/Juniper.md index 15e5cf3..8011e47 100644 --- a/Juniper.md +++ b/Juniper.md @@ -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