Skip to content

Instantly share code, notes, and snippets.

@philshafer
Created September 21, 2015 19:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save philshafer/32e8b9cd2868e010603b to your computer and use it in GitHub Desktop.
Save philshafer/32e8b9cd2868e010603b to your computer and use it in GitHub Desktop.
Early config group documentation
The apply-groups statement can be given at any level of the
configuration hierarchy, listing group names in priority
order. Groups listed in nested apply-groups statements take priority
over groups in outer statements:
apply-groups [ eight nine ten ];
protocols {
apply-groups seven;
bgp {
apply-groups [ five six ];
group some-bgp-group {
apply-groups four;
neighbor 10.0.0.1 {
apply-groups [ one two three ];
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment