mirror of
https://github.com/bgp/bgpq4
synced 2025-02-28 08:53:11 +00:00
rollback 0.1.32-rc2 (2015-07-01).
This commit is contained in:
5
CHANGES
5
CHANGES
@@ -1,3 +1,8 @@
|
||||
0.1.33 (2016-08-28)
|
||||
- rollback 0.1.32-rc2 (2015-07-01) change: by default all IRRD sources
|
||||
are allowed by default. Documentation updated to mark radb,ripe,apnic
|
||||
as 'recommended', not as 'preset default'.
|
||||
|
||||
untagged yet (2016-05-10)
|
||||
- fix: was not able to build on Solaris. Thanks to Mansoor Ali Khan.
|
||||
- feature: IOS XR mode now supports as-paths (ios-regexs). Thanks
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*-
|
||||
* Copyright (c) 2007-2015 Alexandre Snarskii <snar@snar.spb.ru>
|
||||
* Copyright (c) 2007-2016 Alexandre Snarskii <snar@snar.spb.ru>
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
||||
@@ -119,7 +119,7 @@ Generate sequence numbers in IOS-style prefix-lists.
|
||||
|
||||
#### -S `sources`
|
||||
|
||||
Use specified sources only (default: RADB,RIPE,APNIC).
|
||||
Use specified sources only (recommended: RADB,RIPE,APNIC).
|
||||
|
||||
#### -T
|
||||
|
||||
|
||||
4
bgpq3.8
4
bgpq3.8
@@ -1,4 +1,4 @@
|
||||
.\" Copyright (c) 2007-2015 Alexandre Snarskii
|
||||
.\" Copyright (c) 2007-2016 Alexandre Snarskii
|
||||
.\" All rights reserved.
|
||||
.\"
|
||||
.\" Redistribution and use in source and binary forms, with or without
|
||||
@@ -96,7 +96,7 @@ allow more specific routes up to specified masklen too.
|
||||
.It Fl s
|
||||
generate sequence numbers in IOS-style prefix-lists.
|
||||
.It Fl S Ar sources
|
||||
use specified sources only (default: RADB,RIPE,APNIC).
|
||||
use specified sources only (recommended: RADB,RIPE,APNIC).
|
||||
.It Fl T
|
||||
disable pipelining.
|
||||
.It Fl W Ar len
|
||||
|
||||
4
bgpq3.c
4
bgpq3.c
@@ -59,14 +59,14 @@ usage(int ecode)
|
||||
printf(" -r len : allow more specific routes from masklen specified\n");
|
||||
printf(" -R len : allow more specific routes up to specified masklen\n");
|
||||
printf(" -s : generate sequence numbers in prefix-lists (IOS only)\n");
|
||||
printf(" -S sources: use only specified sources (default:"
|
||||
printf(" -S sources: use only specified sources (recommended:"
|
||||
" RADB,RIPE,APNIC)\n");
|
||||
printf(" -T : disable pipelining (experimental, faster mode)\n");
|
||||
printf(" -W len : specify max-entries on as-path line (use 0 for "
|
||||
"infinity)\n");
|
||||
printf(" -X : generate config for IOS XR (Cisco IOS by default)\n");
|
||||
printf("\n" PACKAGE_NAME " version: " PACKAGE_VERSION "\n");
|
||||
printf("Copyright(c) Alexandre Snarskii <snar@snar.spb.ru> 2007-2015\n\n");
|
||||
printf("Copyright(c) Alexandre Snarskii <snar@snar.spb.ru> 2007-2016\n\n");
|
||||
exit(ecode);
|
||||
};
|
||||
|
||||
|
||||
@@ -46,7 +46,7 @@ bgpq_expander_init(struct bgpq_expander* b, int af)
|
||||
if(!b->tree) goto fixups;
|
||||
|
||||
b->family=af;
|
||||
b->sources="ripe,radb,apnic";
|
||||
b->sources="";
|
||||
b->name="NN";
|
||||
b->aswidth=8;
|
||||
b->asn32s[0]=malloc(8192);
|
||||
|
||||
Reference in New Issue
Block a user