]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
NEWS and version update. v1.2.2
authorOndrej Zajicek <santiago@crfreenet.org>
Fri, 9 Apr 2010 15:42:39 +0000 (17:42 +0200)
committerOndrej Zajicek <santiago@crfreenet.org>
Fri, 9 Apr 2010 15:42:39 +0000 (17:42 +0200)
NEWS
doc/bird.conf.example
filter/test.conf
misc/bird.spec
sysdep/config.h

diff --git a/NEWS b/NEWS
index 4f9af7b9e74e742e0354518898cd741bd9fe3aa4..44f9bfab9fb3136921b5b0b9c0319d7bad889a3b 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,19 @@
+Version 1.2.2 (2010-04-10)
+  o Much better BSD kernel support (IPv6, alien routes, ...).
+  o Deep OSPF socket changes, fixes OSPFv2/v3 behavior on BSD.
+  o OSPFv2 in Linux now supports more non-stub IP prefixes
+    on one physical iface.
+  o Export of device routes to the kernel is more restricted.
+  o Routes with strange scope not allowed in BIRD routing tables.
+  o New filterable route attributes bgp_originator_id,
+    bgp_cluster_list and ospf_router_id.
+  o Restricted read-only CLI (option -r).
+  o Pattern matching for 'show protocols' command.
+  o BGP protocol details in 'show protocols all' command.
+  o Configurable syslog name (and default on IPv6 changed).
+  o Statistic counters for pipes were fixed.
+  o Many bugfixes in BGP, OSPF, filters, ...
+
 Version 1.2.1 (2010-02-11)
   o Option 'interpret communities' allows to override implicit handling
     of well-known communities.
index c7105120ce8ac08d785254693b97a2a21686d932..dc4d18b642cdd622601d9d168df1ad8c0bcec6c6 100644 (file)
 #define '1a-a1' = (30+40);
 
 # Define a route filter...
-filter test_filter {
-       if net ~ 10.0.0.0/16 then accept;
-       else reject;
-}
+#filter test_filter {
+#      if net ~ 10.0.0.0/16 then accept;
+#      else reject;
+#}
 
 #filter sink { reject; }
 #filter okay { accept; }
@@ -34,9 +34,9 @@ filter test_filter {
 # The direct protocol automatically generates device routes to
 # all network interfaces. Can exist in as many instances as you wish
 # if you want to populate multiple routing tables with device routes.
-protocol direct {
+#protocol direct {
 #      interface "-eth*", "*"; # Restrict network interfaces it works with
-}
+#}
 
 # This pseudo-protocol performs synchronization between BIRD's routing
 # tables and the kernel. If your kernel supports multiple routing tables
index 0483c3d90f985db6ebaa54f4d0ec3ef5ce774959..aca049c94d10825f176767d6b64e3a5d4ea6e6a9 100644 (file)
@@ -75,7 +75,7 @@ clist l;
        p2 = prepend( p2, 1 );
        print "Should be true: ", p2 ~ pm1, " ", p2, " ", pm1;
 
-#      l = - empty -;
+       l = - empty -;
        l = add( l, (1,2) );
        l = add( l, (2,3) );
        print "Community list (1,2) (2,3) ", l;
index 81ddaf0b04e2dc44fd9612f0ac1ce3659d512915..7140e28f2b86ad20c5b0a8e193f9ce16ad4eb138 100644 (file)
@@ -1,6 +1,6 @@
 Summary: BIRD Internet Routing Daemon
 Name: bird
-Version: 1.2.1
+Version: 1.2.2
 Release: 1
 Copyright: GPL
 Group: Networking/Daemons
index d4a6bf76a1b682152525ba49e99c47dfb21f131f..5e6f2f9f4752ddb3d4a04cf7bf600c81cbf47f87 100644 (file)
@@ -7,7 +7,7 @@
 #define _BIRD_CONFIG_H_
 
 /* BIRD version */
-#define BIRD_VERSION "1.2.1"
+#define BIRD_VERSION "1.2.2"
 
 /* Include parameters determined by configure script */
 #include "sysdep/autoconf.h"