Parcourir la source

bgp: Added iBGP with vodka router

Sebastien Badia il y a 8 ans
Parent
commit
633be5d68f
2 fichiers modifiés avec 13 ajouts et 0 suppressions
  1. 7 0
      etc/local/bird/bird/bgp.conf
  2. 6 0
      etc/local/bird/bird6/bgp.conf

+ 7 - 0
etc/local/bird/bird/bgp.conf

@@ -6,6 +6,8 @@
 # iBGP (Backbone)
 # iBGP (Backbone)
 #
 #
 template bgp ibgp {
 template bgp ibgp {
+	direct;
+	gateway direct;
 	local as 20766;
 	local as 20766;
 	next hop self;
 	next hop self;
 	import where bgp_import(20766,"core",0);
 	import where bgp_import(20766,"core",0);
@@ -24,6 +26,11 @@ protocol bgp core_zoulou from ibgp {
         description "Zoulou - iBGP";
         description "Zoulou - iBGP";
 	neighbor 80.67.168.1 as 20766;
 	neighbor 80.67.168.1 as 20766;
 }
 }
+protocol bgp core_vodka from ibgp {
+        description "Vodka - iBGP";
+        neighbor 80.67.168.7 as 20766;
+}
+
 
 
 #
 #
 # Member: FDN
 # Member: FDN

+ 6 - 0
etc/local/bird/bird6/bgp.conf

@@ -6,6 +6,8 @@
 # iBGP: Backbone
 # iBGP: Backbone
 #
 #
 template bgp ibgp {
 template bgp ibgp {
+	direct;
+	gateway direct;
 	local as 20766;
 	local as 20766;
 	next hop self;
 	next hop self;
 	import where bgp_import(20766,"core",0);
 	import where bgp_import(20766,"core",0);
@@ -24,6 +26,10 @@ protocol bgp core_zoulou from ibgp {
         description "Zoulou - iBGP";
         description "Zoulou - iBGP";
 	neighbor 2001:910::1 as 20766;
 	neighbor 2001:910::1 as 20766;
 }
 }
+protocol bgp core_vodka from ibgp {
+        description "Vodka - iBGP";
+        neighbor 2001:910::7 as 20766;
+}
 
 
 
 
 #
 #