Skip to content

Instantly share code, notes, and snippets.

@skorpy2009
Created November 28, 2016 15:29
Show Gist options
  • Save skorpy2009/e88491bc8298223f4db89a0f2b1378c3 to your computer and use it in GitHub Desktop.
Save skorpy2009/e88491bc8298223f4db89a0f2b1378c3 to your computer and use it in GitHub Desktop.
template bgp RRClient {
local as OWNAS;
rr client;
rr cluster id 1.0.0.1;
add paths on;
import all;
export filter { # Probs accepting all woudl just be fine...
if net ~ [2000::/3+] then {
accept;
}
if net ~ [::/0+] then {
accept;
}
reject;
};
multihop;
interpret communities off;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment