Compare commits

...

5 Commits

136 changed files with 604 additions and 190 deletions

View File

@ -17,4 +17,5 @@ protocol kernel kernel6 {
include "core/static.conf"; include "core/static.conf";
include "core/bfd.conf"; include "core/bfd.conf";
include "core/ospf.conf"; include "core/ospf.conf";
# include "core/babel.conf";
include "manual.conf"; include "manual.conf";

View File

@ -0,0 +1,13 @@
protocol babel {
interface "e0", "e1" {
type wired;
extended next hop on;
rtt cost 1000;
rtt min 5ms;
rtt max 30ms;
authentication mac permissive;
password "IPng loves bird";
};
ipv6 { import all; export all; };
ipv4 { import all; export all; };
}

View File

@ -1,21 +1,17 @@
protocol ospf v2 ospf4 { protocol ospf v2 ospf4 {
ipv4 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv4 { export where net ~ [ 192.168.10.0/24+, 0.0.0.0/0 ]; import where net ~ [ 192.168.10.0/24+, 0.0.0.0/0 ]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }
protocol ospf v3 ospf6 { protocol ospf v3 ospf6 {
ipv6 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv6 { export where net ~ [ 2001:678:d78:200::/60+, ::/0 ]; import where net ~ [ 2001:678:d78:200::/60+, ::/0]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }

View File

@ -1,15 +1,11 @@
protocol static static4 { protocol static static4 {
ipv4 { export all; }; ipv4 { export all; };
# route 192.0.2.0/24 via 10.0.0.1;
route 192.168.10.0/24 unreachable; route 192.168.10.0/24 unreachable;
# route 192.0.2.0/24 via 10.0.0.1;
route 0.0.0.0/0 via 192.168.10.4;
} }
protocol static static6 { protocol static static6 {
ipv6 { export all; }; ipv6 { export all; };
# route 2001:db8:cafe::/48 via 2001:db8::1;;
route 2001:678:d78:200::/60 unreachable; route 2001:678:d78:200::/60 unreachable;
# route 2001:db8:cafe::/48 via 2001:db8::1;
route ::/0 via 2001:678:d78:201::ffff;
} }

View File

@ -4,6 +4,7 @@ exec /etc/vpp/config/loopback.vpp
exec /etc/vpp/config/interface.vpp exec /etc/vpp/config/interface.vpp
exec /etc/vpp/config/lcp.vpp exec /etc/vpp/config/lcp.vpp
exec /etc/vpp/config/mpls.vpp exec /etc/vpp/config/mpls.vpp
exec /etc/vpp/config/sflow.vpp
comment { exec /etc/vpp/config/flowprobe.vpp } comment { exec /etc/vpp/config/flowprobe.vpp }

View File

@ -0,0 +1,8 @@
sflow header-bytes 128
sflow sampling-rate 100
sflow polling-interval 10
sflow enable GigabitEthernet10/0/0
sflow enable GigabitEthernet10/0/1
sflow enable GigabitEthernet10/0/2
sflow enable GigabitEthernet10/0/3

View File

@ -17,4 +17,5 @@ protocol kernel kernel6 {
include "core/static.conf"; include "core/static.conf";
include "core/bfd.conf"; include "core/bfd.conf";
include "core/ospf.conf"; include "core/ospf.conf";
# include "core/babel.conf";
include "manual.conf"; include "manual.conf";

View File

@ -0,0 +1,13 @@
protocol babel {
interface "e0", "e1" {
type wired;
extended next hop on;
rtt cost 1000;
rtt min 5ms;
rtt max 30ms;
authentication mac permissive;
password "IPng loves bird";
};
ipv6 { import all; export all; };
ipv4 { import all; export all; };
}

View File

@ -1,21 +1,17 @@
protocol ospf v2 ospf4 { protocol ospf v2 ospf4 {
ipv4 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv4 { export where net ~ [ 192.168.10.0/24+, 0.0.0.0/0 ]; import where net ~ [ 192.168.10.0/24+, 0.0.0.0/0 ]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }
protocol ospf v3 ospf6 { protocol ospf v3 ospf6 {
ipv6 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv6 { export where net ~ [ 2001:678:d78:200::/60+, ::/0 ]; import where net ~ [ 2001:678:d78:200::/60+, ::/0]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }

View File

@ -1,13 +1,11 @@
protocol static static4 { protocol static static4 {
ipv4 { export all; }; ipv4 { export all; };
# route 192.0.2.0/24 via 10.0.0.1;
route 192.168.10.0/24 unreachable; route 192.168.10.0/24 unreachable;
# route 192.0.2.0/24 via 10.0.0.1;
} }
protocol static static6 { protocol static static6 {
ipv6 { export all; }; ipv6 { export all; };
# route 2001:db8:cafe::/48 via 2001:db8::1;;
route 2001:678:d78:200::/60 unreachable; route 2001:678:d78:200::/60 unreachable;
# route 2001:db8:cafe::/48 via 2001:db8::1;
} }

View File

@ -4,6 +4,7 @@ exec /etc/vpp/config/loopback.vpp
exec /etc/vpp/config/interface.vpp exec /etc/vpp/config/interface.vpp
exec /etc/vpp/config/lcp.vpp exec /etc/vpp/config/lcp.vpp
exec /etc/vpp/config/mpls.vpp exec /etc/vpp/config/mpls.vpp
exec /etc/vpp/config/sflow.vpp
comment { exec /etc/vpp/config/flowprobe.vpp } comment { exec /etc/vpp/config/flowprobe.vpp }

View File

@ -0,0 +1,8 @@
sflow header-bytes 128
sflow sampling-rate 100
sflow polling-interval 10
sflow enable GigabitEthernet10/0/0
sflow enable GigabitEthernet10/0/1
sflow enable GigabitEthernet10/0/2
sflow enable GigabitEthernet10/0/3

View File

@ -17,4 +17,5 @@ protocol kernel kernel6 {
include "core/static.conf"; include "core/static.conf";
include "core/bfd.conf"; include "core/bfd.conf";
include "core/ospf.conf"; include "core/ospf.conf";
# include "core/babel.conf";
include "manual.conf"; include "manual.conf";

View File

@ -0,0 +1,13 @@
protocol babel {
interface "e0", "e1" {
type wired;
extended next hop on;
rtt cost 1000;
rtt min 5ms;
rtt max 30ms;
authentication mac permissive;
password "IPng loves bird";
};
ipv6 { import all; export all; };
ipv4 { import all; export all; };
}

View File

@ -1,21 +1,17 @@
protocol ospf v2 ospf4 { protocol ospf v2 ospf4 {
ipv4 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv4 { export where net ~ [ 192.168.10.0/24+, 0.0.0.0/0 ]; import where net ~ [ 192.168.10.0/24+, 0.0.0.0/0 ]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }
protocol ospf v3 ospf6 { protocol ospf v3 ospf6 {
ipv6 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv6 { export where net ~ [ 2001:678:d78:200::/60+, ::/0 ]; import where net ~ [ 2001:678:d78:200::/60+, ::/0]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }

View File

@ -1,13 +1,11 @@
protocol static static4 { protocol static static4 {
ipv4 { export all; }; ipv4 { export all; };
# route 192.0.2.0/24 via 10.0.0.1;
route 192.168.10.0/24 unreachable; route 192.168.10.0/24 unreachable;
# route 192.0.2.0/24 via 10.0.0.1;
} }
protocol static static6 { protocol static static6 {
ipv6 { export all; }; ipv6 { export all; };
# route 2001:db8:cafe::/48 via 2001:db8::1;;
route 2001:678:d78:200::/60 unreachable; route 2001:678:d78:200::/60 unreachable;
# route 2001:db8:cafe::/48 via 2001:db8::1;
} }

View File

@ -4,6 +4,7 @@ exec /etc/vpp/config/loopback.vpp
exec /etc/vpp/config/interface.vpp exec /etc/vpp/config/interface.vpp
exec /etc/vpp/config/lcp.vpp exec /etc/vpp/config/lcp.vpp
exec /etc/vpp/config/mpls.vpp exec /etc/vpp/config/mpls.vpp
exec /etc/vpp/config/sflow.vpp
comment { exec /etc/vpp/config/flowprobe.vpp } comment { exec /etc/vpp/config/flowprobe.vpp }

View File

@ -0,0 +1,8 @@
sflow header-bytes 128
sflow sampling-rate 100
sflow polling-interval 10
sflow enable GigabitEthernet10/0/0
sflow enable GigabitEthernet10/0/1
sflow enable GigabitEthernet10/0/2
sflow enable GigabitEthernet10/0/3

View File

@ -17,4 +17,5 @@ protocol kernel kernel6 {
include "core/static.conf"; include "core/static.conf";
include "core/bfd.conf"; include "core/bfd.conf";
include "core/ospf.conf"; include "core/ospf.conf";
# include "core/babel.conf";
include "manual.conf"; include "manual.conf";

View File

@ -0,0 +1,13 @@
protocol babel {
interface "e0", "e1" {
type wired;
extended next hop on;
rtt cost 1000;
rtt min 5ms;
rtt max 30ms;
authentication mac permissive;
password "IPng loves bird";
};
ipv6 { import all; export all; };
ipv4 { import all; export all; };
}

View File

@ -1,21 +1,17 @@
protocol ospf v2 ospf4 { protocol ospf v2 ospf4 {
ipv4 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv4 { export where net ~ [ 192.168.10.0/24+, 0.0.0.0/0 ]; import where net ~ [ 192.168.10.0/24+, 0.0.0.0/0 ]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }
protocol ospf v3 ospf6 { protocol ospf v3 ospf6 {
ipv6 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv6 { export where net ~ [ 2001:678:d78:200::/60+, ::/0 ]; import where net ~ [ 2001:678:d78:200::/60+, ::/0]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }

View File

@ -1,13 +1,11 @@
protocol static static4 { protocol static static4 {
ipv4 { export all; }; ipv4 { export all; };
# route 192.0.2.0/24 via 10.0.0.1;
route 192.168.10.0/24 unreachable; route 192.168.10.0/24 unreachable;
# route 192.0.2.0/24 via 10.0.0.1;
} }
protocol static static6 { protocol static static6 {
ipv6 { export all; }; ipv6 { export all; };
# route 2001:db8:cafe::/48 via 2001:db8::1;;
route 2001:678:d78:200::/60 unreachable; route 2001:678:d78:200::/60 unreachable;
# route 2001:db8:cafe::/48 via 2001:db8::1;
} }

View File

@ -4,6 +4,7 @@ exec /etc/vpp/config/loopback.vpp
exec /etc/vpp/config/interface.vpp exec /etc/vpp/config/interface.vpp
exec /etc/vpp/config/lcp.vpp exec /etc/vpp/config/lcp.vpp
exec /etc/vpp/config/mpls.vpp exec /etc/vpp/config/mpls.vpp
exec /etc/vpp/config/sflow.vpp
comment { exec /etc/vpp/config/flowprobe.vpp } comment { exec /etc/vpp/config/flowprobe.vpp }

View File

@ -0,0 +1,8 @@
sflow header-bytes 128
sflow sampling-rate 100
sflow polling-interval 10
sflow enable GigabitEthernet10/0/0
sflow enable GigabitEthernet10/0/1
sflow enable GigabitEthernet10/0/2
sflow enable GigabitEthernet10/0/3

View File

@ -17,4 +17,5 @@ protocol kernel kernel6 {
include "core/static.conf"; include "core/static.conf";
include "core/bfd.conf"; include "core/bfd.conf";
include "core/ospf.conf"; include "core/ospf.conf";
# include "core/babel.conf";
include "manual.conf"; include "manual.conf";

View File

@ -0,0 +1,13 @@
protocol babel {
interface "e0", "e1" {
type wired;
extended next hop on;
rtt cost 1000;
rtt min 5ms;
rtt max 30ms;
authentication mac permissive;
password "IPng loves bird";
};
ipv6 { import all; export all; };
ipv4 { import all; export all; };
}

View File

@ -1,21 +1,17 @@
protocol ospf v2 ospf4 { protocol ospf v2 ospf4 {
ipv4 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv4 { export where net ~ [ 192.168.11.0/24+, 0.0.0.0/0 ]; import where net ~ [ 192.168.11.0/24+, 0.0.0.0/0 ]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }
protocol ospf v3 ospf6 { protocol ospf v3 ospf6 {
ipv6 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv6 { export where net ~ [ 2001:678:d78:210::/60+, ::/0 ]; import where net ~ [ 2001:678:d78:210::/60+, ::/0]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }

View File

@ -1,15 +1,11 @@
protocol static static4 { protocol static static4 {
ipv4 { export all; }; ipv4 { export all; };
# route 192.0.2.0/24 via 10.0.0.1;
route 192.168.11.0/24 unreachable; route 192.168.11.0/24 unreachable;
# route 192.0.2.0/24 via 10.0.0.1;
route 0.0.0.0/0 via 192.168.11.4;
} }
protocol static static6 { protocol static static6 {
ipv6 { export all; }; ipv6 { export all; };
# route 2001:db8:cafe::/48 via 2001:db8::1;;
route 2001:678:d78:210::/60 unreachable; route 2001:678:d78:210::/60 unreachable;
# route 2001:db8:cafe::/48 via 2001:db8::1;
route ::/0 via 2001:678:d78:211::ffff;
} }

View File

@ -4,6 +4,7 @@ exec /etc/vpp/config/loopback.vpp
exec /etc/vpp/config/interface.vpp exec /etc/vpp/config/interface.vpp
exec /etc/vpp/config/lcp.vpp exec /etc/vpp/config/lcp.vpp
exec /etc/vpp/config/mpls.vpp exec /etc/vpp/config/mpls.vpp
exec /etc/vpp/config/sflow.vpp
comment { exec /etc/vpp/config/flowprobe.vpp } comment { exec /etc/vpp/config/flowprobe.vpp }

View File

@ -0,0 +1,8 @@
sflow header-bytes 128
sflow sampling-rate 100
sflow polling-interval 10
sflow enable GigabitEthernet10/0/0
sflow enable GigabitEthernet10/0/1
sflow enable GigabitEthernet10/0/2
sflow enable GigabitEthernet10/0/3

View File

@ -17,4 +17,5 @@ protocol kernel kernel6 {
include "core/static.conf"; include "core/static.conf";
include "core/bfd.conf"; include "core/bfd.conf";
include "core/ospf.conf"; include "core/ospf.conf";
# include "core/babel.conf";
include "manual.conf"; include "manual.conf";

View File

@ -0,0 +1,13 @@
protocol babel {
interface "e0", "e1" {
type wired;
extended next hop on;
rtt cost 1000;
rtt min 5ms;
rtt max 30ms;
authentication mac permissive;
password "IPng loves bird";
};
ipv6 { import all; export all; };
ipv4 { import all; export all; };
}

View File

@ -1,21 +1,17 @@
protocol ospf v2 ospf4 { protocol ospf v2 ospf4 {
ipv4 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv4 { export where net ~ [ 192.168.11.0/24+, 0.0.0.0/0 ]; import where net ~ [ 192.168.11.0/24+, 0.0.0.0/0 ]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }
protocol ospf v3 ospf6 { protocol ospf v3 ospf6 {
ipv6 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv6 { export where net ~ [ 2001:678:d78:210::/60+, ::/0 ]; import where net ~ [ 2001:678:d78:210::/60+, ::/0]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }

View File

@ -1,13 +1,11 @@
protocol static static4 { protocol static static4 {
ipv4 { export all; }; ipv4 { export all; };
# route 192.0.2.0/24 via 10.0.0.1;
route 192.168.11.0/24 unreachable; route 192.168.11.0/24 unreachable;
# route 192.0.2.0/24 via 10.0.0.1;
} }
protocol static static6 { protocol static static6 {
ipv6 { export all; }; ipv6 { export all; };
# route 2001:db8:cafe::/48 via 2001:db8::1;;
route 2001:678:d78:210::/60 unreachable; route 2001:678:d78:210::/60 unreachable;
# route 2001:db8:cafe::/48 via 2001:db8::1;
} }

View File

@ -4,6 +4,7 @@ exec /etc/vpp/config/loopback.vpp
exec /etc/vpp/config/interface.vpp exec /etc/vpp/config/interface.vpp
exec /etc/vpp/config/lcp.vpp exec /etc/vpp/config/lcp.vpp
exec /etc/vpp/config/mpls.vpp exec /etc/vpp/config/mpls.vpp
exec /etc/vpp/config/sflow.vpp
comment { exec /etc/vpp/config/flowprobe.vpp } comment { exec /etc/vpp/config/flowprobe.vpp }

View File

@ -0,0 +1,8 @@
sflow header-bytes 128
sflow sampling-rate 100
sflow polling-interval 10
sflow enable GigabitEthernet10/0/0
sflow enable GigabitEthernet10/0/1
sflow enable GigabitEthernet10/0/2
sflow enable GigabitEthernet10/0/3

View File

@ -17,4 +17,5 @@ protocol kernel kernel6 {
include "core/static.conf"; include "core/static.conf";
include "core/bfd.conf"; include "core/bfd.conf";
include "core/ospf.conf"; include "core/ospf.conf";
# include "core/babel.conf";
include "manual.conf"; include "manual.conf";

View File

@ -0,0 +1,13 @@
protocol babel {
interface "e0", "e1" {
type wired;
extended next hop on;
rtt cost 1000;
rtt min 5ms;
rtt max 30ms;
authentication mac permissive;
password "IPng loves bird";
};
ipv6 { import all; export all; };
ipv4 { import all; export all; };
}

View File

@ -1,21 +1,17 @@
protocol ospf v2 ospf4 { protocol ospf v2 ospf4 {
ipv4 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv4 { export where net ~ [ 192.168.11.0/24+, 0.0.0.0/0 ]; import where net ~ [ 192.168.11.0/24+, 0.0.0.0/0 ]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }
protocol ospf v3 ospf6 { protocol ospf v3 ospf6 {
ipv6 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv6 { export where net ~ [ 2001:678:d78:210::/60+, ::/0 ]; import where net ~ [ 2001:678:d78:210::/60+, ::/0]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }

View File

@ -1,13 +1,11 @@
protocol static static4 { protocol static static4 {
ipv4 { export all; }; ipv4 { export all; };
# route 192.0.2.0/24 via 10.0.0.1;
route 192.168.11.0/24 unreachable; route 192.168.11.0/24 unreachable;
# route 192.0.2.0/24 via 10.0.0.1;
} }
protocol static static6 { protocol static static6 {
ipv6 { export all; }; ipv6 { export all; };
# route 2001:db8:cafe::/48 via 2001:db8::1;;
route 2001:678:d78:210::/60 unreachable; route 2001:678:d78:210::/60 unreachable;
# route 2001:db8:cafe::/48 via 2001:db8::1;
} }

View File

@ -4,6 +4,7 @@ exec /etc/vpp/config/loopback.vpp
exec /etc/vpp/config/interface.vpp exec /etc/vpp/config/interface.vpp
exec /etc/vpp/config/lcp.vpp exec /etc/vpp/config/lcp.vpp
exec /etc/vpp/config/mpls.vpp exec /etc/vpp/config/mpls.vpp
exec /etc/vpp/config/sflow.vpp
comment { exec /etc/vpp/config/flowprobe.vpp } comment { exec /etc/vpp/config/flowprobe.vpp }

View File

@ -0,0 +1,8 @@
sflow header-bytes 128
sflow sampling-rate 100
sflow polling-interval 10
sflow enable GigabitEthernet10/0/0
sflow enable GigabitEthernet10/0/1
sflow enable GigabitEthernet10/0/2
sflow enable GigabitEthernet10/0/3

View File

@ -17,4 +17,5 @@ protocol kernel kernel6 {
include "core/static.conf"; include "core/static.conf";
include "core/bfd.conf"; include "core/bfd.conf";
include "core/ospf.conf"; include "core/ospf.conf";
# include "core/babel.conf";
include "manual.conf"; include "manual.conf";

View File

@ -0,0 +1,13 @@
protocol babel {
interface "e0", "e1" {
type wired;
extended next hop on;
rtt cost 1000;
rtt min 5ms;
rtt max 30ms;
authentication mac permissive;
password "IPng loves bird";
};
ipv6 { import all; export all; };
ipv4 { import all; export all; };
}

View File

@ -1,21 +1,17 @@
protocol ospf v2 ospf4 { protocol ospf v2 ospf4 {
ipv4 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv4 { export where net ~ [ 192.168.11.0/24+, 0.0.0.0/0 ]; import where net ~ [ 192.168.11.0/24+, 0.0.0.0/0 ]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }
protocol ospf v3 ospf6 { protocol ospf v3 ospf6 {
ipv6 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv6 { export where net ~ [ 2001:678:d78:210::/60+, ::/0 ]; import where net ~ [ 2001:678:d78:210::/60+, ::/0]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }

View File

@ -1,13 +1,11 @@
protocol static static4 { protocol static static4 {
ipv4 { export all; }; ipv4 { export all; };
# route 192.0.2.0/24 via 10.0.0.1;
route 192.168.11.0/24 unreachable; route 192.168.11.0/24 unreachable;
# route 192.0.2.0/24 via 10.0.0.1;
} }
protocol static static6 { protocol static static6 {
ipv6 { export all; }; ipv6 { export all; };
# route 2001:db8:cafe::/48 via 2001:db8::1;;
route 2001:678:d78:210::/60 unreachable; route 2001:678:d78:210::/60 unreachable;
# route 2001:db8:cafe::/48 via 2001:db8::1;
} }

View File

@ -4,6 +4,7 @@ exec /etc/vpp/config/loopback.vpp
exec /etc/vpp/config/interface.vpp exec /etc/vpp/config/interface.vpp
exec /etc/vpp/config/lcp.vpp exec /etc/vpp/config/lcp.vpp
exec /etc/vpp/config/mpls.vpp exec /etc/vpp/config/mpls.vpp
exec /etc/vpp/config/sflow.vpp
comment { exec /etc/vpp/config/flowprobe.vpp } comment { exec /etc/vpp/config/flowprobe.vpp }

View File

@ -0,0 +1,8 @@
sflow header-bytes 128
sflow sampling-rate 100
sflow polling-interval 10
sflow enable GigabitEthernet10/0/0
sflow enable GigabitEthernet10/0/1
sflow enable GigabitEthernet10/0/2
sflow enable GigabitEthernet10/0/3

View File

@ -17,4 +17,5 @@ protocol kernel kernel6 {
include "core/static.conf"; include "core/static.conf";
include "core/bfd.conf"; include "core/bfd.conf";
include "core/ospf.conf"; include "core/ospf.conf";
# include "core/babel.conf";
include "manual.conf"; include "manual.conf";

View File

@ -0,0 +1,13 @@
protocol babel {
interface "e0", "e1" {
type wired;
extended next hop on;
rtt cost 1000;
rtt min 5ms;
rtt max 30ms;
authentication mac permissive;
password "IPng loves bird";
};
ipv6 { import all; export all; };
ipv4 { import all; export all; };
}

View File

@ -1,21 +1,17 @@
protocol ospf v2 ospf4 { protocol ospf v2 ospf4 {
ipv4 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv4 { export where net ~ [ 192.168.12.0/24+, 0.0.0.0/0 ]; import where net ~ [ 192.168.12.0/24+, 0.0.0.0/0 ]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }
protocol ospf v3 ospf6 { protocol ospf v3 ospf6 {
ipv6 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv6 { export where net ~ [ 2001:678:d78:220::/60+, ::/0 ]; import where net ~ [ 2001:678:d78:220::/60+, ::/0]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }

View File

@ -1,15 +1,11 @@
protocol static static4 { protocol static static4 {
ipv4 { export all; }; ipv4 { export all; };
# route 192.0.2.0/24 via 10.0.0.1;
route 192.168.12.0/24 unreachable; route 192.168.12.0/24 unreachable;
# route 192.0.2.0/24 via 10.0.0.1;
route 0.0.0.0/0 via 192.168.12.4;
} }
protocol static static6 { protocol static static6 {
ipv6 { export all; }; ipv6 { export all; };
# route 2001:db8:cafe::/48 via 2001:db8::1;;
route 2001:678:d78:220::/60 unreachable; route 2001:678:d78:220::/60 unreachable;
# route 2001:db8:cafe::/48 via 2001:db8::1;
route ::/0 via 2001:678:d78:221::ffff;
} }

View File

@ -4,6 +4,7 @@ exec /etc/vpp/config/loopback.vpp
exec /etc/vpp/config/interface.vpp exec /etc/vpp/config/interface.vpp
exec /etc/vpp/config/lcp.vpp exec /etc/vpp/config/lcp.vpp
exec /etc/vpp/config/mpls.vpp exec /etc/vpp/config/mpls.vpp
exec /etc/vpp/config/sflow.vpp
comment { exec /etc/vpp/config/flowprobe.vpp } comment { exec /etc/vpp/config/flowprobe.vpp }

View File

@ -0,0 +1,8 @@
sflow header-bytes 128
sflow sampling-rate 100
sflow polling-interval 10
sflow enable GigabitEthernet10/0/0
sflow enable GigabitEthernet10/0/1
sflow enable GigabitEthernet10/0/2
sflow enable GigabitEthernet10/0/3

View File

@ -17,4 +17,5 @@ protocol kernel kernel6 {
include "core/static.conf"; include "core/static.conf";
include "core/bfd.conf"; include "core/bfd.conf";
include "core/ospf.conf"; include "core/ospf.conf";
# include "core/babel.conf";
include "manual.conf"; include "manual.conf";

View File

@ -0,0 +1,13 @@
protocol babel {
interface "e0", "e1" {
type wired;
extended next hop on;
rtt cost 1000;
rtt min 5ms;
rtt max 30ms;
authentication mac permissive;
password "IPng loves bird";
};
ipv6 { import all; export all; };
ipv4 { import all; export all; };
}

View File

@ -1,21 +1,17 @@
protocol ospf v2 ospf4 { protocol ospf v2 ospf4 {
ipv4 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv4 { export where net ~ [ 192.168.12.0/24+, 0.0.0.0/0 ]; import where net ~ [ 192.168.12.0/24+, 0.0.0.0/0 ]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }
protocol ospf v3 ospf6 { protocol ospf v3 ospf6 {
ipv6 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv6 { export where net ~ [ 2001:678:d78:220::/60+, ::/0 ]; import where net ~ [ 2001:678:d78:220::/60+, ::/0]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }

View File

@ -1,13 +1,11 @@
protocol static static4 { protocol static static4 {
ipv4 { export all; }; ipv4 { export all; };
# route 192.0.2.0/24 via 10.0.0.1;
route 192.168.12.0/24 unreachable; route 192.168.12.0/24 unreachable;
# route 192.0.2.0/24 via 10.0.0.1;
} }
protocol static static6 { protocol static static6 {
ipv6 { export all; }; ipv6 { export all; };
# route 2001:db8:cafe::/48 via 2001:db8::1;;
route 2001:678:d78:220::/60 unreachable; route 2001:678:d78:220::/60 unreachable;
# route 2001:db8:cafe::/48 via 2001:db8::1;
} }

View File

@ -4,6 +4,7 @@ exec /etc/vpp/config/loopback.vpp
exec /etc/vpp/config/interface.vpp exec /etc/vpp/config/interface.vpp
exec /etc/vpp/config/lcp.vpp exec /etc/vpp/config/lcp.vpp
exec /etc/vpp/config/mpls.vpp exec /etc/vpp/config/mpls.vpp
exec /etc/vpp/config/sflow.vpp
comment { exec /etc/vpp/config/flowprobe.vpp } comment { exec /etc/vpp/config/flowprobe.vpp }

View File

@ -0,0 +1,8 @@
sflow header-bytes 128
sflow sampling-rate 100
sflow polling-interval 10
sflow enable GigabitEthernet10/0/0
sflow enable GigabitEthernet10/0/1
sflow enable GigabitEthernet10/0/2
sflow enable GigabitEthernet10/0/3

View File

@ -17,4 +17,5 @@ protocol kernel kernel6 {
include "core/static.conf"; include "core/static.conf";
include "core/bfd.conf"; include "core/bfd.conf";
include "core/ospf.conf"; include "core/ospf.conf";
# include "core/babel.conf";
include "manual.conf"; include "manual.conf";

View File

@ -0,0 +1,13 @@
protocol babel {
interface "e0", "e1" {
type wired;
extended next hop on;
rtt cost 1000;
rtt min 5ms;
rtt max 30ms;
authentication mac permissive;
password "IPng loves bird";
};
ipv6 { import all; export all; };
ipv4 { import all; export all; };
}

View File

@ -1,21 +1,17 @@
protocol ospf v2 ospf4 { protocol ospf v2 ospf4 {
ipv4 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv4 { export where net ~ [ 192.168.12.0/24+, 0.0.0.0/0 ]; import where net ~ [ 192.168.12.0/24+, 0.0.0.0/0 ]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }
protocol ospf v3 ospf6 { protocol ospf v3 ospf6 {
ipv6 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv6 { export where net ~ [ 2001:678:d78:220::/60+, ::/0 ]; import where net ~ [ 2001:678:d78:220::/60+, ::/0]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }

View File

@ -1,13 +1,11 @@
protocol static static4 { protocol static static4 {
ipv4 { export all; }; ipv4 { export all; };
# route 192.0.2.0/24 via 10.0.0.1;
route 192.168.12.0/24 unreachable; route 192.168.12.0/24 unreachable;
# route 192.0.2.0/24 via 10.0.0.1;
} }
protocol static static6 { protocol static static6 {
ipv6 { export all; }; ipv6 { export all; };
# route 2001:db8:cafe::/48 via 2001:db8::1;;
route 2001:678:d78:220::/60 unreachable; route 2001:678:d78:220::/60 unreachable;
# route 2001:db8:cafe::/48 via 2001:db8::1;
} }

View File

@ -4,6 +4,7 @@ exec /etc/vpp/config/loopback.vpp
exec /etc/vpp/config/interface.vpp exec /etc/vpp/config/interface.vpp
exec /etc/vpp/config/lcp.vpp exec /etc/vpp/config/lcp.vpp
exec /etc/vpp/config/mpls.vpp exec /etc/vpp/config/mpls.vpp
exec /etc/vpp/config/sflow.vpp
comment { exec /etc/vpp/config/flowprobe.vpp } comment { exec /etc/vpp/config/flowprobe.vpp }

View File

@ -0,0 +1,8 @@
sflow header-bytes 128
sflow sampling-rate 100
sflow polling-interval 10
sflow enable GigabitEthernet10/0/0
sflow enable GigabitEthernet10/0/1
sflow enable GigabitEthernet10/0/2
sflow enable GigabitEthernet10/0/3

View File

@ -17,4 +17,5 @@ protocol kernel kernel6 {
include "core/static.conf"; include "core/static.conf";
include "core/bfd.conf"; include "core/bfd.conf";
include "core/ospf.conf"; include "core/ospf.conf";
# include "core/babel.conf";
include "manual.conf"; include "manual.conf";

View File

@ -0,0 +1,13 @@
protocol babel {
interface "e0", "e1" {
type wired;
extended next hop on;
rtt cost 1000;
rtt min 5ms;
rtt max 30ms;
authentication mac permissive;
password "IPng loves bird";
};
ipv6 { import all; export all; };
ipv4 { import all; export all; };
}

View File

@ -1,21 +1,17 @@
protocol ospf v2 ospf4 { protocol ospf v2 ospf4 {
ipv4 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv4 { export where net ~ [ 192.168.12.0/24+, 0.0.0.0/0 ]; import where net ~ [ 192.168.12.0/24+, 0.0.0.0/0 ]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }
protocol ospf v3 ospf6 { protocol ospf v3 ospf6 {
ipv6 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv6 { export where net ~ [ 2001:678:d78:220::/60+, ::/0 ]; import where net ~ [ 2001:678:d78:220::/60+, ::/0]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }

View File

@ -1,13 +1,11 @@
protocol static static4 { protocol static static4 {
ipv4 { export all; }; ipv4 { export all; };
# route 192.0.2.0/24 via 10.0.0.1;
route 192.168.12.0/24 unreachable; route 192.168.12.0/24 unreachable;
# route 192.0.2.0/24 via 10.0.0.1;
} }
protocol static static6 { protocol static static6 {
ipv6 { export all; }; ipv6 { export all; };
# route 2001:db8:cafe::/48 via 2001:db8::1;;
route 2001:678:d78:220::/60 unreachable; route 2001:678:d78:220::/60 unreachable;
# route 2001:db8:cafe::/48 via 2001:db8::1;
} }

View File

@ -4,6 +4,7 @@ exec /etc/vpp/config/loopback.vpp
exec /etc/vpp/config/interface.vpp exec /etc/vpp/config/interface.vpp
exec /etc/vpp/config/lcp.vpp exec /etc/vpp/config/lcp.vpp
exec /etc/vpp/config/mpls.vpp exec /etc/vpp/config/mpls.vpp
exec /etc/vpp/config/sflow.vpp
comment { exec /etc/vpp/config/flowprobe.vpp } comment { exec /etc/vpp/config/flowprobe.vpp }

View File

@ -0,0 +1,8 @@
sflow header-bytes 128
sflow sampling-rate 100
sflow polling-interval 10
sflow enable GigabitEthernet10/0/0
sflow enable GigabitEthernet10/0/1
sflow enable GigabitEthernet10/0/2
sflow enable GigabitEthernet10/0/3

View File

@ -17,4 +17,5 @@ protocol kernel kernel6 {
include "core/static.conf"; include "core/static.conf";
include "core/bfd.conf"; include "core/bfd.conf";
include "core/ospf.conf"; include "core/ospf.conf";
# include "core/babel.conf";
include "manual.conf"; include "manual.conf";

View File

@ -0,0 +1,13 @@
protocol babel {
interface "e0", "e1" {
type wired;
extended next hop on;
rtt cost 1000;
rtt min 5ms;
rtt max 30ms;
authentication mac permissive;
password "IPng loves bird";
};
ipv6 { import all; export all; };
ipv4 { import all; export all; };
}

View File

@ -1,21 +1,17 @@
protocol ospf v2 ospf4 { protocol ospf v2 ospf4 {
ipv4 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv4 { export where net ~ [ 192.168.13.0/24+, 0.0.0.0/0 ]; import where net ~ [ 192.168.13.0/24+, 0.0.0.0/0 ]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }
protocol ospf v3 ospf6 { protocol ospf v3 ospf6 {
ipv6 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv6 { export where net ~ [ 2001:678:d78:230::/60+, ::/0 ]; import where net ~ [ 2001:678:d78:230::/60+, ::/0]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }

View File

@ -1,15 +1,11 @@
protocol static static4 { protocol static static4 {
ipv4 { export all; }; ipv4 { export all; };
# route 192.0.2.0/24 via 10.0.0.1;
route 192.168.13.0/24 unreachable; route 192.168.13.0/24 unreachable;
# route 192.0.2.0/24 via 10.0.0.1;
route 0.0.0.0/0 via 192.168.13.4;
} }
protocol static static6 { protocol static static6 {
ipv6 { export all; }; ipv6 { export all; };
# route 2001:db8:cafe::/48 via 2001:db8::1;;
route 2001:678:d78:230::/60 unreachable; route 2001:678:d78:230::/60 unreachable;
# route 2001:db8:cafe::/48 via 2001:db8::1;
route ::/0 via 2001:678:d78:231::ffff;
} }

View File

@ -4,6 +4,7 @@ exec /etc/vpp/config/loopback.vpp
exec /etc/vpp/config/interface.vpp exec /etc/vpp/config/interface.vpp
exec /etc/vpp/config/lcp.vpp exec /etc/vpp/config/lcp.vpp
exec /etc/vpp/config/mpls.vpp exec /etc/vpp/config/mpls.vpp
exec /etc/vpp/config/sflow.vpp
comment { exec /etc/vpp/config/flowprobe.vpp } comment { exec /etc/vpp/config/flowprobe.vpp }

View File

@ -0,0 +1,8 @@
sflow header-bytes 128
sflow sampling-rate 100
sflow polling-interval 10
sflow enable GigabitEthernet10/0/0
sflow enable GigabitEthernet10/0/1
sflow enable GigabitEthernet10/0/2
sflow enable GigabitEthernet10/0/3

View File

@ -17,4 +17,5 @@ protocol kernel kernel6 {
include "core/static.conf"; include "core/static.conf";
include "core/bfd.conf"; include "core/bfd.conf";
include "core/ospf.conf"; include "core/ospf.conf";
# include "core/babel.conf";
include "manual.conf"; include "manual.conf";

View File

@ -0,0 +1,13 @@
protocol babel {
interface "e0", "e1" {
type wired;
extended next hop on;
rtt cost 1000;
rtt min 5ms;
rtt max 30ms;
authentication mac permissive;
password "IPng loves bird";
};
ipv6 { import all; export all; };
ipv4 { import all; export all; };
}

View File

@ -1,21 +1,17 @@
protocol ospf v2 ospf4 { protocol ospf v2 ospf4 {
ipv4 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv4 { export where net ~ [ 192.168.13.0/24+, 0.0.0.0/0 ]; import where net ~ [ 192.168.13.0/24+, 0.0.0.0/0 ]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }
protocol ospf v3 ospf6 { protocol ospf v3 ospf6 {
ipv6 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv6 { export where net ~ [ 2001:678:d78:230::/60+, ::/0 ]; import where net ~ [ 2001:678:d78:230::/60+, ::/0]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }

View File

@ -1,13 +1,11 @@
protocol static static4 { protocol static static4 {
ipv4 { export all; }; ipv4 { export all; };
# route 192.0.2.0/24 via 10.0.0.1;
route 192.168.13.0/24 unreachable; route 192.168.13.0/24 unreachable;
# route 192.0.2.0/24 via 10.0.0.1;
} }
protocol static static6 { protocol static static6 {
ipv6 { export all; }; ipv6 { export all; };
# route 2001:db8:cafe::/48 via 2001:db8::1;;
route 2001:678:d78:230::/60 unreachable; route 2001:678:d78:230::/60 unreachable;
# route 2001:db8:cafe::/48 via 2001:db8::1;
} }

View File

@ -4,6 +4,7 @@ exec /etc/vpp/config/loopback.vpp
exec /etc/vpp/config/interface.vpp exec /etc/vpp/config/interface.vpp
exec /etc/vpp/config/lcp.vpp exec /etc/vpp/config/lcp.vpp
exec /etc/vpp/config/mpls.vpp exec /etc/vpp/config/mpls.vpp
exec /etc/vpp/config/sflow.vpp
comment { exec /etc/vpp/config/flowprobe.vpp } comment { exec /etc/vpp/config/flowprobe.vpp }

View File

@ -0,0 +1,8 @@
sflow header-bytes 128
sflow sampling-rate 100
sflow polling-interval 10
sflow enable GigabitEthernet10/0/0
sflow enable GigabitEthernet10/0/1
sflow enable GigabitEthernet10/0/2
sflow enable GigabitEthernet10/0/3

View File

@ -17,4 +17,5 @@ protocol kernel kernel6 {
include "core/static.conf"; include "core/static.conf";
include "core/bfd.conf"; include "core/bfd.conf";
include "core/ospf.conf"; include "core/ospf.conf";
# include "core/babel.conf";
include "manual.conf"; include "manual.conf";

View File

@ -0,0 +1,13 @@
protocol babel {
interface "e0", "e1" {
type wired;
extended next hop on;
rtt cost 1000;
rtt min 5ms;
rtt max 30ms;
authentication mac permissive;
password "IPng loves bird";
};
ipv6 { import all; export all; };
ipv4 { import all; export all; };
}

View File

@ -1,21 +1,17 @@
protocol ospf v2 ospf4 { protocol ospf v2 ospf4 {
ipv4 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv4 { export where net ~ [ 192.168.13.0/24+, 0.0.0.0/0 ]; import where net ~ [ 192.168.13.0/24+, 0.0.0.0/0 ]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }
protocol ospf v3 ospf6 { protocol ospf v3 ospf6 {
ipv6 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv6 { export where net ~ [ 2001:678:d78:230::/60+, ::/0 ]; import where net ~ [ 2001:678:d78:230::/60+, ::/0]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }

View File

@ -1,13 +1,11 @@
protocol static static4 { protocol static static4 {
ipv4 { export all; }; ipv4 { export all; };
# route 192.0.2.0/24 via 10.0.0.1;
route 192.168.13.0/24 unreachable; route 192.168.13.0/24 unreachable;
# route 192.0.2.0/24 via 10.0.0.1;
} }
protocol static static6 { protocol static static6 {
ipv6 { export all; }; ipv6 { export all; };
# route 2001:db8:cafe::/48 via 2001:db8::1;;
route 2001:678:d78:230::/60 unreachable; route 2001:678:d78:230::/60 unreachable;
# route 2001:db8:cafe::/48 via 2001:db8::1;
} }

View File

@ -4,6 +4,7 @@ exec /etc/vpp/config/loopback.vpp
exec /etc/vpp/config/interface.vpp exec /etc/vpp/config/interface.vpp
exec /etc/vpp/config/lcp.vpp exec /etc/vpp/config/lcp.vpp
exec /etc/vpp/config/mpls.vpp exec /etc/vpp/config/mpls.vpp
exec /etc/vpp/config/sflow.vpp
comment { exec /etc/vpp/config/flowprobe.vpp } comment { exec /etc/vpp/config/flowprobe.vpp }

View File

@ -0,0 +1,8 @@
sflow header-bytes 128
sflow sampling-rate 100
sflow polling-interval 10
sflow enable GigabitEthernet10/0/0
sflow enable GigabitEthernet10/0/1
sflow enable GigabitEthernet10/0/2
sflow enable GigabitEthernet10/0/3

View File

@ -17,4 +17,5 @@ protocol kernel kernel6 {
include "core/static.conf"; include "core/static.conf";
include "core/bfd.conf"; include "core/bfd.conf";
include "core/ospf.conf"; include "core/ospf.conf";
# include "core/babel.conf";
include "manual.conf"; include "manual.conf";

View File

@ -0,0 +1,13 @@
protocol babel {
interface "e0", "e1" {
type wired;
extended next hop on;
rtt cost 1000;
rtt min 5ms;
rtt max 30ms;
authentication mac permissive;
password "IPng loves bird";
};
ipv6 { import all; export all; };
ipv4 { import all; export all; };
}

View File

@ -1,21 +1,17 @@
protocol ospf v2 ospf4 { protocol ospf v2 ospf4 {
ipv4 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv4 { export where net ~ [ 192.168.13.0/24+, 0.0.0.0/0 ]; import where net ~ [ 192.168.13.0/24+, 0.0.0.0/0 ]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }
protocol ospf v3 ospf6 { protocol ospf v3 ospf6 {
ipv6 { export where (source = RTS_DEVICE || source = RTS_STATIC); import all; }; ipv6 { export where net ~ [ 2001:678:d78:230::/60+, ::/0 ]; import where net ~ [ 2001:678:d78:230::/60+, ::/0]; };
area 0 { area 0 {
interface "loop0" { stub yes; }; interface "loop0" { stub yes; };
interface "e0" { type pointopoint; cost 5; bfd off; }; interface "e0" { type pointopoint; cost 5; bfd off; };
interface "e1" { type pointopoint; cost 5; bfd off; }; interface "e1" { type pointopoint; cost 5; bfd off; };
interface "e2" { type pointopoint; cost 5; bfd off; };
interface "e3" { type pointopoint; cost 5; bfd off; };
}; };
} }

View File

@ -1,13 +1,11 @@
protocol static static4 { protocol static static4 {
ipv4 { export all; }; ipv4 { export all; };
# route 192.0.2.0/24 via 10.0.0.1;
route 192.168.13.0/24 unreachable; route 192.168.13.0/24 unreachable;
# route 192.0.2.0/24 via 10.0.0.1;
} }
protocol static static6 { protocol static static6 {
ipv6 { export all; }; ipv6 { export all; };
# route 2001:db8:cafe::/48 via 2001:db8::1;;
route 2001:678:d78:230::/60 unreachable; route 2001:678:d78:230::/60 unreachable;
# route 2001:db8:cafe::/48 via 2001:db8::1;
} }

View File

@ -4,6 +4,7 @@ exec /etc/vpp/config/loopback.vpp
exec /etc/vpp/config/interface.vpp exec /etc/vpp/config/interface.vpp
exec /etc/vpp/config/lcp.vpp exec /etc/vpp/config/lcp.vpp
exec /etc/vpp/config/mpls.vpp exec /etc/vpp/config/mpls.vpp
exec /etc/vpp/config/sflow.vpp
comment { exec /etc/vpp/config/flowprobe.vpp } comment { exec /etc/vpp/config/flowprobe.vpp }

View File

@ -0,0 +1,8 @@
sflow header-bytes 128
sflow sampling-rate 100
sflow polling-interval 10
sflow enable GigabitEthernet10/0/0
sflow enable GigabitEthernet10/0/1
sflow enable GigabitEthernet10/0/2
sflow enable GigabitEthernet10/0/3

View File

@ -4,6 +4,7 @@ exec /etc/vpp/config/loopback.vpp
exec /etc/vpp/config/interface.vpp exec /etc/vpp/config/interface.vpp
exec /etc/vpp/config/lcp.vpp exec /etc/vpp/config/lcp.vpp
exec /etc/vpp/config/mpls.vpp exec /etc/vpp/config/mpls.vpp
exec /etc/vpp/config/sflow.vpp
comment { exec /etc/vpp/config/flowprobe.vpp } comment { exec /etc/vpp/config/flowprobe.vpp }

View File

@ -0,0 +1,8 @@
sflow header-bytes 128
sflow sampling-rate 100
sflow polling-interval 10
sflow enable GigabitEthernet10/0/0
sflow enable GigabitEthernet10/0/1
sflow enable GigabitEthernet10/0/2
sflow enable GigabitEthernet10/0/3

View File

@ -4,6 +4,7 @@ exec /etc/vpp/config/loopback.vpp
exec /etc/vpp/config/interface.vpp exec /etc/vpp/config/interface.vpp
exec /etc/vpp/config/lcp.vpp exec /etc/vpp/config/lcp.vpp
exec /etc/vpp/config/mpls.vpp exec /etc/vpp/config/mpls.vpp
exec /etc/vpp/config/sflow.vpp
comment { exec /etc/vpp/config/flowprobe.vpp } comment { exec /etc/vpp/config/flowprobe.vpp }

View File

@ -0,0 +1,8 @@
sflow header-bytes 128
sflow sampling-rate 100
sflow polling-interval 10
sflow enable GigabitEthernet10/0/0
sflow enable GigabitEthernet10/0/1
sflow enable GigabitEthernet10/0/2
sflow enable GigabitEthernet10/0/3

Some files were not shown because too many files have changed in this diff Show More