Age | Commit message (Collapse) | Author | |
---|---|---|---|
2000-05-25 | Add section about routing tables. | Pavel Machek | |
2000-05-25 | Add section about utility functions in filters | Pavel Machek | |
2000-05-25 | Description of types needed for BGP. | Pavel Machek | |
2000-05-25 | SGML correctness fix. | Pavel Machek | |
2000-05-25 | Some more documentation, plus minor fixes. | Pavel Machek | |
2000-05-19 | More updates. | Pavel Machek | |
2000-05-19 | Improve docs of log statment, improve markup. | Pavel Machek | |
2000-05-19 | Descriptive lists rendered better in TeX. | Pavel Machek | |
2000-05-19 | Some spellchecking, and use right tags for right things. | Pavel Machek | |
2000-05-16 | More additions to documentation and spellchecking. | Pavel Machek | |
2000-05-12 | Documentation fixes suggested by mj | Pavel Machek | |
2000-05-11 | Critical files from linuxdoc1 distribution checked in. | Pavel Machek | |
2000-05-11 | Use <m> instead of <i> in bird.sgml, fix url references. | Pavel Machek | |
2000-05-11 | Don't include Rules: they are not needed and break stand-alone make of ↵ | Pavel Machek | |
documentation. | |||
2000-05-09 | New example config. | Martin Mares | |
2000-05-07 | Implemented `show route <...> stats'. | Martin Mares | |
2000-05-07 | Added commands `show route protocol <p>' and `show route import <p>' which | Martin Mares | |
show the routing table as exported to the protocol given resp. as returned from its import control hook. To get handling of filtered extended attributes right (even in the old `show route where <filter>' command), the get_route_info hook gets an attribute list and all protocol specific rte attributes are contained there as temporary ones. Updated RIP to do that. Added ea_append() which joins two ea_list's. | |||
2000-05-05 | Connected the `doc' subtree to global makefiles. | Martin Mares | |
All documentation is built in obj/doc (resp. doc/ if you do a stand-alone build). Use `make docs' to make the whole documentation or `make userdocs' resp. `make progdocs' for user manual resp. developer's guide. | |||
2000-05-05 | First attempt at documenting configuration. | Pavel Machek | |
2000-05-04 | Display examples more nicely | Pavel Machek | |
2000-04-30 | Moved documentation to top of file, where it belongs. | Pavel Machek | |
2000-04-28 | Include proto/rip/rip.c in documentation system. | Pavel Machek | |
2000-04-28 | Documentation-generating tool taken from linux-2.3.99-pre6, and | Pavel Machek | |
makefile to actually use it. | |||
2000-04-17 | Few bugs removed from sgml, makefile added. | Pavel Machek | |
2000-04-17 | Bird.html will now be autogenerated. | Pavel Machek | |
2000-04-17 | First version of sgml documentation | Pavel Machek | |
2000-04-01 | Changed initialization of protocol list -- now we call proto_build() instead | Martin Mares | |
of calling the protocols manually. Implemented printing of dynamic attributes in `show route all'. Each protocol can now register its own attribute class (protocol->attr_class, set to EAP_xxx) and also a callback for naming and formatting of attributes. The callback can return one of the following results: GA_UNKNOWN Attribute not recognized. GA_NAME Attribute name recognized and put to the buffer, generic code should format the value. GA_FULL Both attribute name and value put to the buffer. Please update protocols generating dynamic attributes to provide the attr_class and formatting hook. | |||
2000-03-12 | Made `show status' show uptime and time of last reconfiguration. | Martin Mares | |
2000-03-07 | Added configuration of default protocol debugging flags. | Martin Mares | |
2000-01-26 | Updated docs about filters, and added fixme. | Pavel Machek | |
2000-01-19 | Split off general commands to cmds.c. | Martin Mares | |
Added `show symbols' command which dumps whole symbol table together with symbol types etc. | |||
2000-01-17 | Reworked proto lists -- each proto is now in two lists: the global one | Martin Mares | |
(proto_list) and per-type one (original lists). A lot of things simplified. Implemented `disable', `enable' and `restart' CLI commands. | |||
2000-01-16 | Converted shutdown to a kind of reconfiguration, it's no more handled | Martin Mares | |
as a exception in protocol state machines. Introduced a `shutdown' CLI command. Killed few reconfiguration bugs. | |||
2000-01-16 | First attempt on dynamic reconfiguration. There are still lots of bugs | Martin Mares | |
and problems to solve, but the hardest part works. | |||
1999-12-20 | Few more entries for bird documentation | Pavel Machek | |
1999-12-18 | This is first version of documentation. Be sure to take a close look | Pavel Machek | |
at it, and it would be very nice if you wrote at least introductions to your chapters... | |||
1999-12-08 | Put rip options into config file. | Pavel Machek | |
1999-12-06 | Logging is now configurable. You can define multiple log outputs (to both | Martin Mares | |
files and syslog) and assign lists of message categories to each of them. | |||
1999-12-03 | Implemented `show static'. It's a relatively good example of how to write | Martin Mares | |
show commands for other protocols. | |||
1999-12-01 | Added dumping of routing tables (`show route'). This includes filtering. | Martin Mares | |
1999-11-30 | Remember protocol instance in proto_config and use that for | Martin Mares | |
`show protocols <name>'. | |||
1999-11-30 | `show interfaces' and `show protocols' works. | Martin Mares | |
1999-11-25 | Added few basic commands: show status, show interfaces [summary], | Martin Mares | |
show protocols (incomplete). | |||
1999-11-10 | Added project status report for KSVI. | Martin Mares | |
1999-10-31 | Started a list of CLI reply codes. | Martin Mares | |
1999-08-03 | Implemented a Table-to-Table protocol a.k.a The Pipe. | Martin Mares | |
1999-08-03 | Kernel route syncer supports multiple tables. | Martin Mares | |
The changes are just too extensive for lazy me to list them there, but see the comment at the top of sysdep/unix/krt.c. The code got a bit more ifdeffy than I'd like, though. Also fixed a bunch of FIXME's and added a couple of others. :) | |||
1999-05-17 | From now we support multiple tables. The master_table variable is | Martin Mares | |
definitely gone. Both rte_update() and rte_discard() have an additional argument telling which table should they modify. Also, rte_update() no longer walks the whole protocol list -- each table has a list of all protocols connected to this table and having the rt_notify hook set. Each protocol can also freely decide (by calling proto_add_announce_hook) to connect to any other table, but it will be probably used only by the table-to-table protocol. The default debugging dumps now include all routing tables and also all their connections. | |||
1999-04-19 | Updated filters: they now actually see IP/pxlen of net being filtered, | Pavel Machek | |
gateway, and who told us, so they can do usefull jobs from now on. | |||
1999-04-05 | Changed syntax of attaching filters to protocols to hopefully the final | Martin Mares | |
version: EXPORT <filter-spec> for outbound routes (i.e., those announced by BIRD to the rest of the world). IMPORT <filter-spec> for inbound routes (i.e., those imported by BIRD from the rest of the world). where <filter-spec> is one of: ALL pass all routes NONE drop all routes FILTER <name> use named filter FILTER { <filter> } use explicitly defined filter For all protocols, the default is IMPORT ALL, EXPORT NONE. This includes the kernel protocol, so that you need to add EXPORT ALL to get the previous configuration of kernel syncer (as usually, see doc/bird.conf.example for a bird.conf example :)). |