|
@@ -4,7 +4,7 @@
|
|
|
|
|
|
# All "connected" routes
|
|
|
protocol direct {
|
|
|
- interface "lagg0.*";
|
|
|
+ interface "lagg0.*", "ix0.*";
|
|
|
}
|
|
|
|
|
|
protocol device {
|
|
@@ -18,10 +18,12 @@ filter import_kernel {
|
|
|
bgp_community.add ((20766,9999));
|
|
|
accept;
|
|
|
}
|
|
|
- if is_within_carp() then {
|
|
|
- reject;
|
|
|
- }
|
|
|
- accept;
|
|
|
+
|
|
|
+ reject;
|
|
|
+ #if is_within_carp() then {
|
|
|
+ # reject;
|
|
|
+ #}
|
|
|
+ #accept;
|
|
|
}
|
|
|
|
|
|
filter export_kernel {
|
|
@@ -43,5 +45,5 @@ protocol kernel {
|
|
|
import filter import_kernel;
|
|
|
export filter export_kernel;
|
|
|
persist;
|
|
|
- device routes;
|
|
|
+# device routes;
|
|
|
}
|