1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

1318 Commits

Author SHA1 Message Date
3fa5722def First option into config added. :-) 2000-06-02 15:05:41 +00:00
62924172ae Flush LSA when receive aged one. 2000-06-02 13:52:50 +00:00
3c6269b8fe Added documentation on protocols.
Protocol hooks deserve an extra chapter (to come soon).
2000-06-02 13:42:36 +00:00
e4ba0ec197 Bugfix in receiving of aged LSA. 2000-06-02 13:27:34 +00:00
9a8f20fc0f Better description of the route distribution process. 2000-06-02 12:41:25 +00:00
2eac33f774 Better LSA Aging. 2000-06-02 12:34:28 +00:00
3ce8c61000 Documentation on routing tables and route attributes. 2000-06-02 12:29:55 +00:00
566a0eede7 Removed rta_find() since nobody uses it and it's more convenient
to use ea_find() directly.
2000-06-02 12:29:24 +00:00
ece612e128 sh interface "iface" dumpped all. 2000-06-02 11:24:38 +00:00
7a5582ac00 Better dumping, if I get strange lsack. 2000-06-02 11:00:14 +00:00
3488634cba Handle "show ospf *" even if protocol is down. 2000-06-02 10:21:02 +00:00
a489f0ce8b Silly bug in sh interface. Now I test ALL interfaces. :-) 2000-06-02 09:57:22 +00:00
489f800b45 Speedup loading process. 2000-06-02 09:53:26 +00:00
75317ab8e5 Spelling fixes. 2000-06-02 09:51:26 +00:00
f8e2d916b6 Minor fixes. 2000-06-02 09:46:35 +00:00
92e8be8c89 Bugfix in lsreq receiving. 2000-06-02 09:42:24 +00:00
cd4fecb66a Made it *compile* !!! 2000-06-02 09:35:17 +00:00
64ba9f7bcc Do not try to divide by zero. 2000-06-02 08:01:12 +00:00
326e33f521 Results of complete reading of documentation. 2000-06-02 07:59:26 +00:00
c4f0f01408 Added show ospf interface.
show ospf neighbors now knows "<interface>".
2000-06-01 17:52:21 +00:00
58740ed4c5 Documentation. 2000-06-01 17:12:19 +00:00
658d272bb6 Better handling of parameterless functions. 2000-06-01 17:11:10 +00:00
7257749266 Some other reply codes allocated. 2000-06-01 16:45:10 +00:00
4ab4e9778f show ospf implemented. 2000-06-01 16:26:59 +00:00
cf318e3cd3 Removed comments about workings of the old neighbor cache which are
(1) obsolete and (2) replaced by the progdoc.
2000-06-01 16:17:29 +00:00
1f495723c3 Documented. 2000-06-01 16:16:49 +00:00
ce4aca093a FIB documentation.
I've changed the init callback type to a typedef to work around a bug
in kernel-doc I'm too lazy to hunt now.
2000-06-01 16:16:18 +00:00
a783e259d8 Cisco-like "show ospf neighbors" implemented. 2000-06-01 15:53:06 +00:00
b594ad2386 tm_format_reltime() works with both past and future timestamps. 2000-06-01 15:13:23 +00:00
c23f40b145 Use <funcsect> instead of <sect3>. 2000-06-01 15:04:25 +00:00
a9aa4c1ebb Inactive sticky neighbors have no scope. 2000-06-01 13:13:49 +00:00
23df5e4cf3 Print route tag in hexadecimal and omit it if it's zero. 2000-06-01 13:00:39 +00:00
bc00185e5a Updated to new neighbor cache. 2000-06-01 13:00:19 +00:00
491cd43b77 Updated RIP to new neighbor cache semantics. When presented with next hop
equal to a local address, just ignore the route (as it is usually just an
external route exported by us echoed by some RIP peer), when given an
invalid next hop, moan to the log.
2000-06-01 12:59:50 +00:00
4a91150175 Updated for new scope handling.
Also, provide proper address scopes in struct ifa.
2000-06-01 12:58:41 +00:00
0f32f2a65a Modified the neighbor cache to remember local addresses as well.
neighbor->scope now contains proper address scope which is zero (SCOPE_HOST)
for local addresses, higher (SCOPE_LINK, ..., SCOPE_UNIVERSE) for remote ones.
2000-06-01 12:58:04 +00:00
56ca7acd3a BGP: RFC 2842 has replaced the cap-draft. 2000-06-01 12:55:26 +00:00
df968040f6 Print tag unsigned rather then signed. 2000-06-01 12:17:08 +00:00
c52c7e7645 Calculate checksum when reflooding (after min ls_refresh). 2000-06-01 12:08:14 +00:00
5f4aee76a2 Added && and ||. 2000-06-01 08:43:29 +00:00
1877dab217 Allow
case net {
                       62.0.0.0/8+:
                       10.0.0.0/8+:
                       else: reject;
               }
2000-06-01 08:34:30 +00:00
1895e81e05 Allow matching on enums:
if !(scope ~ [ SCOPE_HOST, SCOPE_SITE ]) then {
                print "Failed in test";
                quitbird;
        }
2000-06-01 08:32:49 +00:00
42542c56c2 Cleanup. 2000-06-01 00:32:08 +00:00
d27d0efe17 Very stuping bug. (I took me 4 hours to find it!)
I just wrote "=!" instead of "!=". :-(((((((
2000-06-01 00:22:48 +00:00
2983460bc0 Both help' command and the unknown command' error message now tell
the user to press `?' if he wants help.
2000-05-31 22:39:06 +00:00
2f5e5ff9d6 Before configuration file is read, log to _both_ syslog and stderr. 2000-05-31 22:28:36 +00:00
c184d9d0bd Documentation update 2000-05-31 21:51:04 +00:00
0b1cad8162 Complain when filter does not end in accept nor reject. 2000-05-31 21:50:13 +00:00
b5958826cc Ehm, some other "down" steps. 2000-05-31 18:55:57 +00:00
3f6953a103 Some bugs in cleanup after iface down. 2000-05-31 18:45:16 +00:00