diff options
author | Thomas Szteliga <ts@websafe.pl> | 2015-08-11 13:25:01 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-08-11 23:25:30 +0700 |
commit | 1223c4f3e7b57977a47c350868293d93ae3c3fba (patch) | |
tree | 052d1dbc153ae444c88c84e7421e66bc8d5edffd /network/aggregate/slack-desc | |
parent | edc246d09fc9a14b324cab5a99b630a08fa9b5ee (diff) | |
download | slackbuilds-1223c4f3e7b57977a47c350868293d93ae3c3fba.tar.gz slackbuilds-1223c4f3e7b57977a47c350868293d93ae3c3fba.tar.xz |
network/aggregate: Added (optimise a list of route prefixes).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/aggregate/slack-desc')
-rw-r--r-- | network/aggregate/slack-desc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/network/aggregate/slack-desc b/network/aggregate/slack-desc new file mode 100644 index 00000000000..6d9a3acb263 --- /dev/null +++ b/network/aggregate/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +aggregate: aggregate (optimise a list of route prefixes) +aggregate: +aggregate: Takes a list of prefixes in conventional format on stdin, and +aggregate: performs two optimisations to attempt to reduce the length of the +aggregate: prefix list. The first optimisation is to remove any supplied +aggregate: prefixes which are superfluous because they are already included in +aggregate: another supplied prefix. For example, 203.97.2.0/24 would be removed +aggregate: if 203.97.0.0/17 was also supplied. The second optimisation +aggregate: identifies adjacent prefixes that can be combined under a single, +aggregate: shorter-length prefix. For example, 203.97.2.0/24 and 203.97.3.0/24 +aggregate: can be combined into the single prefix 203.97.2.0/23. |