]> git.proxmox.com Git - mirror_frr.git/blob - NEWS
Note C99 requirement.
[mirror_frr.git] / NEWS
1 * Changes in Quagga 0.98.0
2
3 - BGP route-server support added. See the texinfo documentation.
4
5 - OSPF API initialisation is disabled by default even if compiled in. You
6 can enable it with -a/--apiserver command line switch.
7
8 - "write-config integrated" vtysh command replaced with "service
9 integrated-vtysh-config" command.
10
11 - Router id is now handled by zebra daemon and all daemons receive changes
12 from it. Router id can be overriden in daemons' configurations of course.
13 To fix common router id in zebra daemon you can either install non-127
14 address on loopback or use "router-id x.x.x.x" command.
15
16 - "secondary" keyword is removed from ip address configuration. All
17 supported OS'es have their own vision what's secondary address and
18 how to handle it.
19
20 - Zebra no longer enables forwarding by default. If you rely on zebra to
21 enable forwarding make sure to add '<ip|ip6> forwarding' statements
22 to your zebra configuration file.
23
24 - All libraries are built and used shared, on platforms where libtool
25 supports shared libraries.
26
27 - Router advertisement syntax is changed. In usual cases (if you didn't do
28 any fancy stuff) it's enough to change lines in configuration from:
29 "ipv6 nd prefix-advertisement X:X:X:X::/X 2592000 604800 autoconfig on-link"
30 to:
31 "ipv6 nd prefix X:X:X:X::/X"
32
33 All router advertisement options are documented in texi documentation.
34
35 - --enable-nssa configure switch is removed. NSSA support is stable enough.
36
37 - Daemons don't look at current directory for config file any more.
38
39 * Changes in Quagga 0.96.5
40
41 - include files are installed in $(prefix)/include/quagga. Programs
42 building against these includes should -I$(prefix)/include and e.g.
43 #include <quagga/routemap.h>
44
45 - New option --enable-exampledir puts example files in a separate
46 directory from $(sysconfdir), easing NetBSD pkgsrc hierarchy rules
47 compliance.
48
49 - New configure options --enable-configfile-mask and
50 --enable-logfile-mask to set umask values for config and log
51 values. Masks default to 0600, matching previous behavior.
52
53 - Import current CVS isisd from SourceForge, then merge it with
54 the Quagga's Framework.
55
56 * Changes in Quagga 0.96.4
57
58 - Further fixes to ospfd, some relating to the PtP revert. Interface
59 lookups should be a lot more robust now.
60
61 - Fix for a remote triggerable crash in vty layer.
62
63 - Improvements to ripd, and addition of split horizon support.
64
65 - Improved bgpd table support, now dumps at time of day intervals rather
66 than time from startup intervals. Much improved support for IPv6 table
67 dumps. show commands for views improved.
68
69 * Changes in Quagga 0.96.3
70
71 - revert the 'generic PtP' patch. Means Quagga will no longer work with
72 FreeSWAN, however, on the plus side this gets rid of a lot of niggly bugs
73 which the PtP patch introduced.
74
75 * Changes in Quagga 0.96.2
76
77 - Fix crash in ospfd
78
79 * Changes in Quagga 0.96.1
80
81 - Iron out problem with the privileges definitions
82
83 * Changes in Quagga 0.96
84
85 - Privilege support, daemons now run with the minimal privileges needed, see
86 the documentation for details.
87
88 - NSSA ABR support in ospfd.
89
90 - OSPF-API support merged in.
91
92 - 6WIND patch merged in.
93
94 * Changes in zebra-0.93
95
96 * Changes in bgpd
97
98 ** Configuration is changed to new format.
99
100 * Changes in ospfd
101
102 ** Crush bugs which reported on Zebra ML is fixed.
103
104 ** Opaque LSA and TE LSA support is added by KDD R&D Laboratories,
105 Inc.
106
107 * Chages in ospf6d
108
109 ** Many bugs are fixed.
110 \f
111 * Changes in zebra-0.92a
112
113 * Changes in bgpd
114
115 ** Fix "^$" community list bug.
116
117 ** Below command's Address Family specific configurations are added
118
119 nexthop-self
120 route-reflector-client
121 route-server-client
122 soft-reconfiguration inbound
123
124 * Changes in zebra
125
126 ** Treat kernel type routes as EGP routes.
127 \f
128 * Changes in zebra-0.92
129
130 ** Overall security is improved. Default umask is 0077.
131
132 * Changes in ripd
133
134 ** If output interface is in simple password authentication mode,
135 substruct one from rtemax.
136
137 * Changes in bgpd
138
139 ** IPv4 multicast and IPv6 unicast configuration is changed to so
140 called new config. All of AFI and SAFI specific configuration is
141 moved to "address-family" node. When you have many IPv6 only
142 configuration, you will see many "no neighbor X:X::X:X activate" line
143 in your configuration to disable IPv4 unicast NLRI exchange. In that
144 case please use "no bgp default ipv4-unicast" command to suppress the
145 output. Until zebra-0.93, old config is still left for compatibility.
146
147 Old config
148 ==========
149 router bgp 7675
150 bgp router-id 10.0.0.1
151 redistribute connected
152 network 192.168.0.0/24
153 neighbor 10.0.0.2 remote-as 7675
154 ipv6 bgp network 3ffe:506::/33
155 ipv6 bgp network 3ffe:1800:e800::/40
156 ipv6 bgp aggregate-address 3ffe:506::/32
157 ipv6 bgp redistribute connected
158 ipv6 bgp neighbor 3ffe:506:1000::2 remote-as 1
159
160 New config
161 ==========
162 router bgp 7675
163 bgp router-id 10.0.0.1
164 network 192.168.0.0/24
165 redistribute connected
166 neighbor 10.0.0.2 remote-as 7675
167 neighbor 3ffe:506:1000::2 remote-as 1
168 no neighbor 3ffe:506:1000::2 activate
169 !
170 address-family ipv6
171 network 3ffe:506::/33
172 network 3ffe:1800:e800::/40
173 aggregate-address 3ffe:506::/32
174 redistribute connected
175 neighbor 3ffe:506:1000::2 activate
176 exit-address-family
177
178 * Changes in ospfd
179
180 ** Internal interface treatment is changed. Now ospfd can handle
181 multiple IP address for an interface.
182
183 ** Redistribution of loopback interface's address works fine.
184 \f
185 * Changes in zebra-0.91
186
187 ** --enable-oldrib configure option is removed.
188
189 ** HAVE_IF_PSEUDO part is removed. Same feature is now supported by
190 default.
191
192 * Changes in ripd
193
194 ** When redistributed route is withdrawn, perform poisoned reverse.
195
196 * Changes in zebra
197
198 ** When interface's address is removed, kernel route pointing out to
199 the address is removed.
200
201 ** IPv6 RIB is now based upon new RIB code.
202
203 ** zebra can handle same connected route to one interface.
204
205 ** New command for interface address. Currently this commands are
206 only supported on GNU/Linux with netlink interface.
207
208 "ip address A.B.C.D secondary"
209 "ip address A.B.C.D label LABEL"
210
211 * Changes in bgpd
212
213 ** BGP flap dampening bugs are fixed.
214
215 ** BGP non-blocking TCP connection bug is fixed.
216
217 ** "show ip bgp summary" shows AS path and community entry number.
218
219 ** New commands have been added.
220 "show ip bgp cidr-only"
221 "show ip bgp ipv4 (unicast|multicast) cidr-only"
222 "show ip bgp A.B.C.D/M longer-prefixes"
223 "show ip bgp ipv4 (unicast|multicast) A.B.C.D/M longer-prefixes"
224 "show ipv6 bgp X:X::X:X/M longer-prefixes"
225 "show ipv6 mbgp X:X::X:X/M longer-prefixes"
226
227 ** IPv6 IBGP nexthop change is monitored.
228
229 ** Unknown transitive attribute is passed with partial flag bit on.
230
231 * Changes in ospfd
232
233 ** Fix bug of LSA MaxAge flood.
234
235 ** Fix bug of NSSA codes.
236 \f
237 * Changes in zebra-0.90
238
239 ** From this beta release, --enable-unixdomain and --enable-newrib
240 becomes default. So both options are removed from configure.in. To
241 revert old behavior please specify below option.
242
243 --enable-tcp-zebra # TCP/IP socket is used for protocol daemon and zebra.
244 --enable-oldrib # Turn on old RIB implementation.
245
246 Old RIB implementation will be removed in zebra-0.91.
247
248 ** From this beta release --enable-multipath is supported. This
249 option is only effective on GNU/Linux kernel with
250 CONFIG_IP_ADVANCED_ROUTER and CONFIG_IP_ROUTE_MULTIPATH is set.
251
252 --enable-multipath=ARG # ARG must be digit. When ARG is 0 unlimit multipath number.
253
254 ** From this release we do not include guile files.
255
256 * Changes in lib
257
258 ** newlist.[ch] is merged with linklist.[ch].
259
260 ** Now Zebra works on MacOS X public beta.
261
262 ** Access-list can have remark. "access-list WORD remark LINE" define
263 remark for specified access-list.
264
265 ** Key of key-chain is sorted by it's idetifier value.
266
267 ** prefix-list rule is slightly changed. The rule of "len <= ge-value
268 <= le-value" is changed to "len < ge-value <= le-value".
269
270 ** According to above prefix-list rule change, add automatic
271 conversion function of an old rule. ex.) 10.0.0.0/8 ge 8 -> 10.0.0.0/8
272 le 32
273
274 ** SMUX can handle SNMP trap.
275
276 ** In our event library, event thread is executed before any other
277 thread like timer, read and write event.
278
279 ** Robust method for writing configuration file and recover from
280 backing up config file.
281
282 ** Display "end" at the end of configuration.
283
284 ** Fix memory leak in vtysh_read().
285
286 ** Fix memroy leak about access-list and prefix-list name.
287
288 * Changes in zebra
289
290 ** UNIX domain socket server of zebra protocol is added.
291
292 ** Fix PointoPoint interface network bug. The destination network
293 should be installed into routing table instead of local network.
294
295 ** Metric value is reflected to kernel routing table.
296
297 ** "show ip route" display uptime of RIP,OSPF,BGP routes.
298
299 ** New RIB implementation is added.
300
301 Now we have enhanced RIB (routing information base) implementation in
302 zebra. New RIB has many new features and fixed some bugs which exist
303 in old RIB code.
304
305 *** Static route with distance value
306
307 Static route can be specified with administrative distance. The
308 distance value 255 means it is not installed into the kernel.
309 Default value of distance for static route is 1.
310
311 ip route A.B.C.D/M A.B.C.D <1-255>
312 ip route A.B.C.D/M IFNAME <1-255>
313
314 If the least distance value's route's nexthop are unreachable,
315 select the least distance value route which has reachable nexthop is
316 selected.
317
318 ip route 0.0.0.0/0 10.0.0.1
319 ip route 0.0.0.0/0 11.0.0.1 2
320
321 In this case, when 10.0.0.1 is unreachable and 11.0.0.1 is
322 reachable. The route with nexthop 11.0.0.1 will be installed into
323 forwarding table.
324
325 zebra> show ip route
326 S>* 0.0.0.0/0 [2/0] via 11.0.0.1
327 S 0.0.0.0/0 [1/0] via 10.0.0.1 inactive
328
329 If the nexthop is unreachable "inactive" is displayed. You can
330 specify any string to IFNAME. There is no need of the interface is
331 there when you configure the route.
332
333 ip route 1.1.1.1/32 ppp0
334
335 When ppp0 comes up, the route is installed properly.
336
337 *** Multiple nexthop routes for one prefix
338
339 Multiple nexthop routes can be specified for one prefix. Even the
340 kernel support only one nexthop for one prefix user can configure
341 multiple nexthop.
342
343 When you configure routes like below, prefix 10.0.0.1 has three
344 nexthop.
345
346 ip route 10.0.0.1/32 10.0.0.2
347 ip route 10.0.0.1/32 10.0.0.3
348 ip route 10.0.0.1/32 eth0
349
350 If there is no route to 10.0.0.2 and 10.0.0.3. And interface eth0
351 is reachable, then the last route is installed into the kernel.
352
353 zebra> show ip route
354 S> 10.0.0.1/32 [1/0] via 10.0.0.2 inactive
355 via 10.0.0.3 inactive
356 * is directly connected, eth0
357
358 '*' means this nexthop is installed into the kernel.
359
360 *** Multipath (more than one nexthop for one prefix) can be installed into the kernel.
361
362 When the kernel support multipath, zebra can install multipath
363 routes into the kernel. Before doing that please make it sure that
364 setting --enable-multipath=ARG to configure script. ARG must be digit
365 value. When specify 0 to ARG, there is no limitation of the number
366 of the multipath. Currently only GNU/Linux with netlink interface is
367 supported.
368
369 ip route 10.0.0.1/32 10.0.0.2
370 ip route 10.0.0.1/32 10.0.0.3
371 ip route 10.0.0.1/32 eth0
372
373 zebra> show ip route
374 S>* 10.0.0.1/32 [1/0] via 10.0.0.2
375 * via 10.0.0.3
376 is directly connected, eth0
377
378 *** Kernel message delete installed route.
379
380 After zebra install static or dynamic route into the kernel.
381
382 R>* 0.0.0.0/0 [120/3] via 10.0.0.1
383
384 If you delete this route outside zebra, old zebra does not reinstall
385 route again. Now the route is re-processed and properly reinstall the
386 static or dynamic route into the kernel.
387
388 ** GNU/Linux netlink socket handling is improved to fix race condition
389 between kernel message and user command responce.
390
391 * Changes in bgpd
392
393 ** Add show neighbor's routes command.
394
395 "show ip bgp neighbors (A.B.C.D|X:X::X:X) routes"
396 "show ip bgp ipv4 (unicast|multicast) neighbors (A.B.C.D|X:X::X:X) routes"
397 "show ipv6 bgp neighbors (A.B.C.D|X:X::X:X) routes"
398 "show ipv6 mbgp neighbors (A.B.C.D|X:X::X:X) routes"
399
400 ** BGP passive peer support problem is fixed.
401
402 ** Redistributed IGP nexthop is passed to BGP nexthop.
403
404 ** On multiaccess media, if the nexthop is reachable nexthop is passed
405 as it is.
406
407 ** Remove zebra-0.88 compatibility commands.
408
409 "match ip prefix-list WORD"
410 "match ipv6 prefix-list WORD"
411
412 Instead of above please use below commands.
413
414 "match ip address prefix-list WORD"
415 "match ipv6 address prefix-list WORD"
416
417 ** Fix bug of holdtimer is not reset when bgp cleared.
418
419 ** "show ip bgp summary" display peer establish/drop count.
420
421 ** Change "match ip next-hop" argument from IP address to access-list
422 name.
423
424 ** When "bgp enforce-first-as" is enabled, check EBGP peer's update
425 has it's AS number in the first AS number in AS sequence.
426
427 ** New route-map command "set community-delete COMMUNITY-LIST" is
428 added. Community matched the CoMMUNITY-LIST is removed from the
429 community.
430
431 ** BGP-MIB implementation is finished.
432
433 ** When BGP connection comes from unconfigured IP address, close
434 socket immediately.
435
436 ** Do not compare router ID when the routes comes from EBGP peer.
437 When originator ID is same, take shorter cluster-list route. If
438 cluster-list is same take smaller IP address neighbor's route.
439
440 ** Add "bgp bestpath as-path ignore" command. When this option is
441 set, do not concider AS path length when route selection.
442
443 ** Add "bgp bestpath compare-routerid". When this option is set,
444 compare router ID when the routes comes from EBGP peer.
445
446 ** Add "bgp deterministic-med" process.
447
448 ** BGP flap dampening feature is added.
449
450 ** When IBGP nexthop is changed, it is reflected to RIB.
451
452 ** Change "neighbor route-refresh" command to "neighbor capability
453 route-refresh".
454
455 * Changes in ripd
456
457 ** Change "match ip next-hop" argument from IP address to access-list
458 name.
459
460 ** "no ip rip (send|receive)" command accept version number argument.
461
462 ** Memory leak related classfull network generation is fixed.
463
464 ** When a route is in garbage collection process (invalid with metric
465 16) and a router receives the same route with valid metric then route
466 was not installed into zebra rib, but only into ripd rib. Moreover ,
467 it will never get into zebra rib, because ripd wrongly assumes it's
468 already there.
469
470 * Change in ospfd
471
472 ** Fix bug of refreshing default route.
473
474 ** --enable-nssa turn on undergoing NSSA feature.
475
476 ** Fix bug of Hello packet's option is not properly set when interface
477 comes up.
478
479 ** Reduce unconditional logging.
480
481 ** Add nexthop to OSPF path only when it is not there.
482
483 ** When there is no DR on network (suppose you have only one router
484 with interface priority 0). It's router LSA does not contain the link
485 information about this network.
486
487 ** When you change a priority of interface from/to 0
488 ISM_NeighborChange event should be scheduled in order to elect new
489 DR/BDR on the network.
490
491 ** When we add some LSA into retransmit list we need to check whether
492 the present old LSA in retransmit list is not more recent than the new
493 one.
494
495 ** In states Loading and Full the slave must resend its last Database
496 Description packet in response to duplicate Database Description
497 packets received from the master. For this reason the slave must wait
498 RouterDeadInterval seconds before freeing the last Database
499 Description packet. Reception of a Database Description packet from
500 the master after this interval will generate a SeqNumberMismatch
501 neighbor event. RFC2328 Section 10.8
502
503 ** Virtual link can not configured in stub area.
504
505 ** Clear a ls_upd_queue queue of the interface when interface goes
506 down.
507
508 ** "no router ospf" unregister redistribution requests from zebra.
509
510 ** New command for virtual-link configuration is added.
511
512 "area A.B.C.D virtual-link A.B.C.D"
513 "area A.B.C.D virtual-link A.B.C.D hello-interval <1-65535> retransmit-interval <3-65535> transmit-delay <1-65535> dead-interval <1-65535>"
514 "area A.B.C.D virtual-link A.B.C.D hello-interval <1-65535> retransmit-interval <3-65535> transmit-delay <1-65535> dead-interval <1-65535> authentication-key AUTH_KEY"
515 "area A.B.C.D virtual-link A.B.C.D authentication-key AUTH_KEY"
516 "area A.B.C.D virtual-link A.B.C.D hello-interval <1-65535> retransmit-interval <3-65535> transmit-delay <1-65535> dead-interval <1-65535> message-digest-key <1-255> md5 KEY"
517 "area A.B.C.D virtual-link A.B.C.D message-digest-key <1-255> md5 KEY"
518
519 ** Clear cryptographic sequence number when neighbor status is changed
520 to NSM down.
521
522 ** Make Summary LSA's origination and refreshment as same as other
523 type of LSA.
524
525 ** New OSPF pakcet read method. Now maximum packet length may be 65535
526 bytes (maximum IP packet length).
527
528 ** Checking the age of the found LSA and if the LSA is MAXAGE we
529 should call refresh instead of originate.
530
531 ** Install multipath information to zebra.
532
533 ** Fix socket descriptor leak when system call failed.
534
535 * Changes in ospf6d
536
537 ** Whole functionality has been rewritten as new code. new command
538 "show ipv6 ospf6 spf node", "show ipv6 ospf6 spf tree", "show ipv6
539 ospf6 spf table" has been added.
540
541 ** Change to do not send garbage route whose nexthop is not linklocal
542 address.
543
544 ** "redistribute ospf6" was generated in "router ospf6" in config
545 file. It is fixed.
546
547 ** LSDB sync bug is fixed.
548
549 ** Fix bug of using unavailable route.
550
551 * Changes in vtysh
552
553 ** route-map and access-list configuration is merged into one
554 configuration.
555
556 ** /usr/local/etc/Zebra.conf is integrated configuration file. "write
557 memory" in vtysh will write whole configuration to this file.
558
559 ** When -b option is specified to vtysh, vtysh read
560 /usr/local/etc/Zebra.conf file then pass the confuguration to proper
561 protocol daemon. So make all protocol daemon's configuration file
562 empty then invoke all daemon. After that vtysh -b will setup saved
563 configuration.
564
565 zebrastart.sh
566 =============
567 /usr/local/sbin/zebra -d
568 /usr/local/sbin/ripd -d
569 /usr/local/sbin/ospfd -d
570 /usr/local/sbin/bgpd -d
571 /usr/local/bin/vtysh -b
572 \f
573 * Changes in zebra-0.89
574
575 * Changes in lib
576
577 ** distribute-list can set all interface's access-list and prefix-list
578 configuration.
579
580 * Changes in ripd
581
582 ** "show ip protocols" display proper distribute-list settings and
583 distance settings.
584
585 ** When metric infinity route received withdraw the route from kernel
586 immediately it used to be wait garbage collection.
587
588 ** key-chain can be used for simple password authentication.
589
590 ** RIPv2 MIB getnext interface bug is fixed.
591
592 * Changes in vtysh
593
594 ** --with-libpam enable PAM authentication for vtysh.
595
596 ** Now vtysh read vtysh.conf. This file should be
597 ${SYSCONFDIR}/etc/vtysh.conf for security reason. Usually it is
598 /usr/local/etc/vtysh.conf.
599
600 ** "username WORD nopassword" command is added to vtysh.
601
602 * Chagees in ospfd
603
604 ** NBMA interface support is added.
605
606 ** OSPF area is sorted by area ID.
607
608 ** New implementation of OSPF refreesh.
609
610 ** OSPF-MIB read function is partly added.
611
612 * Changes in bgpd
613
614 ** When the peering is done by ebgp-multihop, nexthop is looked up
615 like IBGP routes.
616
617 ** "show ip mbgp" commands are changed to "show ip bgp ipv4
618 multicast".
619
620 ** New terminal commands are added.
621 "show ip bgp ipv4 (unicast|multicast) filter-list WORD"
622 "show ip bgp ipv4 (unicast|multicast) community"
623 "show ip bgp ipv4 (unicast|multicast) community-list WORD"
624 "show ip bgp ipv4 (unicast|multicast) community-list WORD exact-match"
625
626 ** MBGP soft-reconfiguration command is added.
627 "clear ip bgp x.x.x.x ipv4 (unicast|multicast) in"
628 "clear ip bgp x.x.x.x ipv4 (unicast|multicast) out"
629 "clear ip bgp x.x.x.x ipv4 (unicast|multicast) soft"
630 "clear ip bgp <1-65535> ipv4 (unicast|multicast) in"
631 "clear ip bgp <1-65535> ipv4 (unicast|multicast) out"
632 "clear ip bgp <1-65535> ipv4 (unicast|multicast) soft"
633 "clear ip bgp * ipv4 (unicast|multicast) in"
634 "clear ip bgp * ipv4 (unicast|multicast) out"
635 "clear ip bgp * ipv4 (unicast|multicast) soft"
636
637 ** MED related commands are added.
638 "bgp deterministic-med"
639 "bgp bestpath med confed"
640 "bgp bestpath med missing-as-worst"
641
642 ** "bgp default local-preference" command is added.
643
644 ** BGP confederation peer's routes are passed to zebra like IBGP route.
645
646 ** Community match command is added.
647 "show ip bgp community <val>"
648 "show ip bgp community <val> exact-match"
649
650 ** EBGP multihop route treatment bug is fixed. Now nexthop is
651 resolved by IGP routes.
652
653 ** Some commands are added to show routes by filter-list and community
654 value.
655 "show ip bgp ipv4 (unicast|multicast) filter-list WORD"
656 "show ip bgp ipv4 (unicast|multicast) community"
657 "show ip bgp ipv4 (unicast|multicast) community-list WORD"
658 "show ip bgp ipv4 (unicast|multicast) community-list WORD exact-match"
659
660 * Changes in zebra
661
662 ** zebra read interface's address information using getifaddrs() when
663 it is available.
664
665 ** Reflect IPv6 interface's address change to protocol daemons.
666 \f
667 * Changes in zebra-0.88
668
669 * Changes in lib
670
671 ** "exact-match" option is added to "access-list" and "ipv6
672 access-list" command. If this option is specified, the prefix and
673 prefix length is compared as exact match mode.
674
675 * Changes in zebra
676
677 ** New Zebra message ZEBRA_REDISTRIBUTE_DEFAULT_ADD and
678 ZEBRA_REDISTRIBUTE_DEFAULT_DELTE are added.
679
680 ** Default administrative distance value is changed.
681
682 Old New
683 ------------------------------------------
684 system 10 0
685 kernel 20 0
686 connected 30 0
687 static 40 1
688 rip 50 120
689 ripng 50 120
690 ospf 60 110
691 ospf6 49 110
692 bgp 70 200(iBGP) 20(eBGP)
693 ------------------------------------------
694
695 ** Distance value can be passed from protocol daemon to zebra.
696
697 ** "show ip route" shows [metric/distance] value pair.
698
699 ** Zebra Protocol is changed to support multi-path route and distance
700 value.
701
702 * Changes in ospfd
703
704 ** "default-information originate [always]" command is added.
705
706 ** "default-metric <0-16777214>" command is added.
707
708 ** "show ip ospf database" command is integrated. LS-ID and AdvRouter can
709 be specifed. The commands are
710
711 show ip ospf database TYPE LS-ID
712 show ip ospf database TYPE LS-ID ADV-ROUTER
713 show ip ospf database TYPE LS-ID self-originate
714 show ip ospf database TYPE self-originate
715
716 ** route-map support for `redistribute' command are added.
717 Supported `match' statements are
718
719 match interface
720 match ip address
721 match next-hop
722
723 Supported `set' statements are
724
725 set metric
726 set metric-type
727
728 ** Pass OSPF metric value to zebra daemon.
729
730 * Changes in ripd
731
732 ** When specified route-map does not exist, it means all deny.
733
734 ** "default-metric <1-16>" command is added.
735
736 ** "offset-list ACCESS-LIST-NAME <0-16>" and "offset-list
737 ACCESS-LIST-NAME <0-16> IFNAME" commands are added.
738
739 ** "redistribute ROUTE-TYPE metric <0-16>" command is added.
740
741 ** "default-information originate" command is added.
742
743 ** "ip split-horizon" and "no ip split-horizon" is added to interface
744 configuration.
745
746 ** "no router rip" command is added.
747
748 ** "ip rip authentication mode (md5|text)" is added to interface
749 configuration.
750
751 ** "ip rip authentication key-chain KEY-CHAIN" is added to interface
752 configuration.
753
754 ** Pass RIP metric value to zebra daemon.
755
756 ** Distance manipulation functions are added.
757
758 * Changes in bgpd
759
760 ** Fix bug of next hop treatment for MPLS-VPN route exchange.
761
762 ** BGP peer MIB is updated.
763
764 ** Aggregated route has origin IGP, atomic-aggregate and proper
765 aggregator attribute.
766
767 ** Suppressed route now installed into BGP table. It is only
768 suppressed from announcement.
769
770 ** BGP router-id is properly set after "no router bgp ASN" and "router
771 bgp ASN".
772
773 ** Add check for nexthop is accessible or not for IBGP routes.
774
775 ** Add cehck for nexthop is on connected or not for EBGP routes.
776
777 ** "dump bgp route" command is changed to "dump bgp route-mrt" for
778 generating MRT compatible dump output.
779
780 ** Soft reconfiguration inbound and outbound is supported.
781
782 ** Route refresh feature is supported.
783
784 * Changes in vtysh
785
786 ** VTY shell is now included into the distribution.
787 \f
788 * Changes in zebra-0.87
789
790 * Changes in lib
791
792 ** "show startup-config" command is added.
793
794 ** "show history" command is added.
795
796 ** Memory statistics command is changed. New command
797
798 show memory all
799 show memory lib
800 show memory rip
801 show memory ospf
802 show memory bgp
803
804 are added.
805
806 ** Filters can be removed only specify it's name. New command
807
808 no access-list NAME
809 no ip community-list NAME
810 no ip as-path access-list NAME
811 no route-map NAME
812
813 are added.
814
815 ** At any node, user can view/save user configuration.
816
817 write terminal
818 write file
819 wirte memory
820
821 are added to every node in default.
822
823 ** LCD completion is added. For example both "ip" and "ipv6" command
824 are exist, "i" then press TAB will be expanded to "ip".
825
826 * Changes in bgpd
827
828 ** "show ip bgp" family shows total number of prefixes.
829
830 ** "no bgp default ipv4-unicast" command is added.
831
832 ** Extended Communities support is added.
833
834 ** "no neighbor PEER send-community extended" command is added.
835
836 ** MPLS-VPN PE-RR support is added.
837
838 New address family vpnv4 unicast is introduced.
839
840 !
841 address-family vpnv4 unicast
842 neighobr PEER activate
843 network A.B.C.D rd RD tag TAG
844 exit-address-family
845 !
846
847 To make it route-reflector, please configure it under normal router
848 bgp ASN.
849
850 !
851 router bgp 7675
852 no bgp default ipv4-unicast
853 bgp router-id 10.0.0.100
854 bgp cluster-id 10.0.0.100
855 neighbor 10.0.0.1 remote-as 65535
856 neighbor 10.0.0.1 route-reflector-client
857 neighbor 10.0.0.2 remote-as 65535
858 neighbor 10.0.0.2 route-reflector-client
859 neighbor 10.0.0.3 remote-as 65535
860 neighbor 10.0.0.3 route-reflector-client
861 !
862 address-family vpnv4 unicast
863 neighbor 10.0.0.1 activate
864 neighbor 10.0.0.2 activate
865 neighbor 10.0.0.3 activate
866 exit-address-family
867 !
868
869 * Changes in ospfd
870
871 ** Many many bugs are fixed.
872
873 * Changes in ripd
874
875 ** Better interface up/down event handle.
876
877 * Changes in zebra
878
879 ** Better interface up/down event handle.
880 \f
881 * Changes in zebra-0.86
882
883 * Changes in lib
884
885 ** Fix bug of exec-timeout command which may cause crush.
886
887 ** Multiple same policy for "access-list", "ip prefix-list, "as-path
888 access-list", "ip community-list" is not duplicated.
889
890 ** It used to be "ip prefix-list A.B.C.D/M" match routes which mask >=
891 M. Now default behavior is exact match so it only match routes which
892 mask == M.
893
894 * Changes in bgpd
895
896 ** "match ip address prefix-list" is added to route-map.
897
898 ** A route without local preference is evaluated as 100 local preference.
899
900 ** Select smaller router-id route when other values are same.
901
902 ** Compare MED only both routes comes from same neighboring AS.
903
904 ** "bgp always-compare-med" command is added.
905
906 ** Now MED value is passed to IBGP peer.
907
908 ** When neighbor's filter is configured with non-existent access-list,
909 as-path access-list, ip prefix-list, route-map. The behavior is
910 changed from all permit to all deny.
911
912 * Changes in ospfd
913
914 ** Fix bug of external route tag byte order.
915
916 ** OSPF Neighbor deletion bug which cause crush is fixed.
917
918 ** Some route calculation bug are fixed.
919
920 ** Add sanity check with router routing table.
921
922 ** Fix bug of memory leak about linklist.
923
924 ** Fix bug of 1-WayReceived in NSM.
925
926 ** Take care of BIGENDIAN architecture.
927
928 ** Fix bug of NSM state flapping between ExStart and Exchange.
929
930 ** Fix bug of Network-LSA originated in stub network.
931
932 ** Fix bug of MS flag unset.
933
934 ** Add to schedule router_lsa origination when the interface cost
935 changes.
936
937 ** Increment LS age by configured interface transmit_delay.
938
939 ** distribute-list is reimplemented.
940
941 ** Fix bug of refresh never occurs.
942
943 ** Fix bug of summary-LSAs reorigination. Correctly copy
944 OSPF_LSA_APPROVED flag to new LSA. when summary-LSA is reoriginatd.
945
946 ** Fix bug of re-origination when a neighbor disappears.
947
948 ** Fix bug of segmentation fault with DD retransmission.
949
950 ** Fix network-LSA re-origination problem.
951
952 ** Fix problem of remaining withdrawn routes on zebra.
953
954 * Changes in ripd
955
956 ** Do not leave from multicast group when interface goes down bug is
957 fixed.
958
959 * Changes in zebra
960
961 ** Remove client structure when client dies.
962
963 ** Take care static route when interface goes up/down.
964 \f
965 * Changes in zebra-0.85
966
967 * Changes in bgpd
968
969 ** "transparent-nexthop" and "transparenet-as" commands are added.
970
971 ** Route reflector's originator-id bug is fixed.
972
973 * Changes in ospfd
974
975 ** Fix bug of OSPF LSA memory leak.
976
977 ** Fix bug of OSPF external route memory leak.
978
979 ** AS-external-LSA origination bug was fixed.
980
981 ** LS request treatment is completely rewritten. Now performance is
982 drastically improved.
983
984 * Changes in ripd
985
986 ** RIPv1 update is done by class-full manner.
987 \f
988 * Changes in zebra-0.84b
989
990 * Changes in lib
991
992 ** Fix bug of inet_pton return value handling
993
994 * Changes in bgpd
995
996 ** Fix bug of BGP-4+ link-local address nexthop check for IBGP peer.
997
998 ** Don't allocate whole buffer for displaying "show ip bgp". Now it
999 consume only one screen size memory.
1000
1001 * Changes in ripd
1002
1003 ** Fix debug output string.
1004
1005 ** Add RIP peer handling. RIP peer are shown by "show ip protocols".
1006 \f
1007 * Changes in zebra-0.84a
1008
1009 * Changes in bgpd
1010
1011 ** Fix serious bug of BGP-4+ peering under IPv6 link-local address.
1012 Due to the bug BGP-4+ peering may not be established.
1013 \f
1014 * Changes in zebra-0.84
1015
1016 * Changes in lib
1017
1018 ** IPv6 address and prefix parser is added to VTY by Toshiaki Takada
1019 <takada@zebra.org>. DEFUN string is "X:X::X:X" for IPv6 address,
1020 "X:X::X:X/M" for IPv6 prefix. You can use it like this.
1021
1022 DEFUN (func, cmd, "neighbor (A.B.C.D|X:X::X:X) remote-as <1-65535>")
1023
1024 ** VTY configuration is locked during configuration. This is for
1025 avoiding unconditional crush from two terminals modify the
1026 configuration at the same time. "who" command shows which termnal
1027 lock the configuration. VTY which has '*' character at the head of
1028 line is locking the configuration.
1029
1030 ** Old logging functions are removed. Functions like
1031 log_open,log_close,openlog are deleted. Instead of that please use
1032 zlog_* functions. zvlog_* used in ospf6d are deleted also.
1033
1034 ** "terminal monitor" command is added. "no terminal monitor" is for
1035 disabling. This command simply display logging information to the
1036 VTY.
1037
1038 ** dropline.[ch] files are deleted.
1039
1040 * Changes in bgpd
1041
1042 ** BGP neighbor configuration are sorted by it's IP address.
1043
1044 ** BGP peer configuration and actual peer is separated. This is
1045 preparation for Route Server support.
1046
1047 ** "no neighbor PEER" command is added. You can delete neighbor
1048 without specifying AS number.
1049
1050 ** "no neighbor ebgp-multihop" command is added.
1051
1052 ** "no neighbor port PORT" command is added.
1053
1054 ** To conform RFC1771, "neighbor PEER send-community" is default
1055 behavior. If you want to disable sending community attribute,
1056 please specify "no neighbor PEER send-community" to the peer.
1057
1058 ** "neighbor maximum-prefix NUMBER" command is added.
1059
1060 ** Multi-protocol extention NLRI is proceeded only when the peer is
1061 configured proper Address Family and Subsequent Address Family. If
1062 not, those NLRI are simply ignored.
1063
1064 ** Aggregate-address support is improved. Currently below commands
1065 works.
1066
1067 "aggregate-address"
1068 "aggregate-address summary-only"
1069 "no aggregate-address"
1070 "no aggregate-address summary-only"
1071
1072 "ipv6 bgp aggregate-address"
1073 "ipv6 bgp aggregate-address summary-only"
1074 "no ipv6 bgp aggregate-address"
1075 "no ipv6 bgp aggregate-address summary-only"
1076
1077 ** redistribute route-map bug is fixed.
1078
1079 ** MBGP support becomes default. "configure" option --enable-mbgp is
1080 removed.
1081
1082 ** New command "neighbor PEER timers connect <1-65535>" is added.
1083
1084 ** New command "neighbor PEER override-capability" is added.
1085
1086 ** New command "show ip bgp neighbor A.B.C.D advertised-route" is added.
1087
1088 ** New command "show ip bgp neighbor A.B.C.D routes" is added. To use
1089 this command, you have to configure neighbor with
1090 "neighbor A.B.C.D soft-reconfiguration inbound" beforehand.
1091
1092 \f
1093 * Changes in zebra-0.83
1094
1095 * bgpd
1096
1097 ** Serious bug fix about fetching global and link-local address at the
1098 same time. Due to this bug, corrupted IPv6 prefix is generated. If
1099 you uses bgpd for BGP-4+ please update to this version. The bug is
1100 introduced in zebra-0.82.
1101
1102 ** When bgpd send Notify message, don't use thread manager. It is now
1103 send to neighbor immediately.
1104 \f
1105 * Changes in zebra-0.82
1106
1107 ** Solaris 2.6 support is added by Michael Handler
1108 <handler@sub-rosa.com>.
1109
1110 ** MBGP support is added by Robert Olsson <Robert.Olsson@data.slu.se>.
1111 Please specify --enable-mbgp to configure script. This option will be
1112 removed in the future and MBGP support will be default.
1113
1114 * Changes in zebra
1115
1116 ** When interface goes down, withdraw connected routes from routing
1117 table. When interface goes up, restore the routes to the routing
1118 table.
1119
1120 ** `show interface' show interface's statistics on Linux and BSD with
1121 routing socket.
1122
1123 ** Now zebra can get MTU value on BSDI/OS.
1124
1125 * Changes in bgpd
1126
1127 ** Add capability option support based upon
1128 draft-ietf-idr-bgp4-cap-neg-04.txt.
1129
1130 ** Add `show ipv6 bgp prefix-list' command.
1131
1132 ** Check self AS appeared in received routes.
1133
1134 ** redistribute route-map support is added.
1135
1136 ** BGP packet dump feature compatible with MRT.
1137
1138 * Changes in ripd
1139
1140 ** Fix bug of `timers basic' command's argument format.
1141
1142 * Changes in ripngd
1143
1144 ** Calculate max RTE using interface's MTU value.
1145
1146 * Changes in ospfd
1147
1148 ** Some correction to LSU processing.
1149
1150 ** Add check for lsa->refresh_list.
1151
1152 * Changes in ospf6d
1153
1154 ** Many debug feature is added.
1155 \f
1156 * Changes in zebra-0.81
1157
1158 ** SNMP support is disabled in default.--enable-snmp option is added
1159 to configure script.
1160
1161 * Changes in bgpd
1162
1163 ** Fix FSM bug which introduced in zebra-0.80.
1164 \f
1165 * Changes in zebra-0.80
1166
1167 * access-list
1168
1169 New access-list name space `ipv6 access-list' is added. At the same
1170 time, `access-list' statemant only accepts IPv4 prefix. Please be
1171 careful if you use IPv6 filtering. You will need to change your
1172 configuration. For IPv6 filtering please use `ipv6 access-list'.
1173
1174 As of zebra-0.7x, user can use `access-list' for both IPv4 and IPv6
1175 filtering.
1176
1177 ! zebra-0.7x
1178 access-list DML-net permit 203.181.89.0/24
1179 access-list DML-net permit 3ffe:506::0/32
1180 access-list DML-net deny any
1181 !
1182
1183 Above configuration is not valid for zebra-08x. Please add `ipv6'
1184 before 'access-list' when you configure IPv6 filtering.
1185
1186 ! zebra-0.8x
1187 access-list DML-net permit 203.181.89.0/24
1188 access-list DML-net deny any
1189 !
1190 ipv6 access-list DML-net permit 3ffe:506::0/32
1191 ipv6 access-list DML-net deny any
1192 !
1193
1194 * prefix-list
1195
1196 And also new prefix-list name space `ipv6 prefix-list' is added. It
1197 is the same as the change of `access-list'. `ip prefix-list' now only
1198 accept IPv4 prefix. It was source of confusion that `ip prefix-list'
1199 can be used both IPv4 and IPv6 filtering. Now name space is separated
1200 to clear the meaning of the filter.
1201
1202 If you use `ip prefix-list' for IPv6 filtering, please change the
1203 stetement.
1204
1205 ! zebra-0.7x
1206 ip prefix-list 6bone-filter seq 5 permit 3ffe::/17 le 24 ge 24
1207 ip prefix-list 6bone-filter seq 10 permit 3ffe:8000::/17 le 28 ge 28
1208 ip prefix-list 6bone-filter seq 12 deny 3ffe::/16
1209 ip prefix-list 6bone-filter seq 15 permit 2000::/3 le 16 ge 16
1210 ip prefix-list 6bone-filter seq 20 permit 2001::/16 le 35 ge 35
1211 ip prefix-list 6bone-filter seq 30 deny any
1212 !
1213
1214 Now user can explicitly configure it as IPv6 prefix-list.
1215
1216 ! zebra-0.8x
1217 ipv6 prefix-list 6bone-filter seq 5 permit 3ffe::/17 le 24 ge 24
1218 ipv6 prefix-list 6bone-filter seq 10 permit 3ffe:8000::/17 le 28 ge 28
1219 ipv6 prefix-list 6bone-filter seq 12 deny 3ffe::/16
1220 ipv6 prefix-list 6bone-filter seq 15 permit 2000::/3 le 16 ge 16
1221 ipv6 prefix-list 6bone-filter seq 20 permit 2001::/16 le 35 ge 35
1222 ipv6 prefix-list 6bone-filter seq 30 deny any
1223 !
1224
1225 * RIP configuration
1226
1227 If you want to filter only default route (0.0.0.0/0) and permit other
1228 routes, it was hard to do that. Now `ip prefix-list' can be used for
1229 RIP route filtering.
1230
1231 New statement:
1232
1233 `distribute-list prefix PLIST_NAME (in|out) IFNAME'
1234
1235 is added to ripd. So you can configure on eth0 interface accept all
1236 routes other than default routes.
1237
1238 !
1239 router rip
1240 distribute-list prefix filter-default in eth0
1241 !
1242 ip prefix-list filter-default deny 0.0.0.0/0 le 0
1243 ip prefix-list filter-default permit any
1244 !
1245
1246 * RIPng configuration
1247
1248 Same change is done for ripngd. You can use `ipv6 prefix-list' for
1249 filtering.
1250
1251 !
1252 router ripng
1253 distribute-list prefix filter-default in eth0
1254 !
1255 ipv6 prefix-list filter-default deny ::/0 le 0
1256 ipv6 prefix-list filter-default permit any
1257 !
1258
1259 * BGP configuration
1260
1261 So far, Multiprotocol Extensions for BGP-4 (RFC2283) configuration is
1262 done with traditional IPv4 peering statement like blow.
1263
1264 !
1265 router bgp 7675
1266 neighbor 3ffe:506::1 remote-as 2500
1267 neighbor 3ffe:506::1 prefix-list 6bone-filter out
1268 !
1269
1270 For separating configuration IPv4 and IPv6, and for retaining Cisco
1271 configuration compatibility, now IPv6 configuration is done by IPv6
1272 specific statement. IPv6 BGP configuration is done by statement which
1273 start from `ipv6 bgp'.
1274
1275 !
1276 router bgp 7675
1277 !
1278 ipv6 bgp neighbor 3ffe:506::1 remote-as 2500
1279 ipv6 bgp neighbor 3ffe:506::1 prefix-list 6bone-filter out
1280 !
1281
1282 At the same time some IPv6 specific commands are deleted from IPv4
1283 configuration.
1284
1285 o redistribute ripng
1286 o redistribute ospf6
1287 o neighbor PEER version BGP_VERSION
1288 o neighbor PEER interface IFNAME
1289
1290 Those commands are only accepted as like below.
1291
1292 o ipv6 bgp redistribute ripng
1293 o ipv6 bgp redistribute ospf6
1294 o ipv6 bgp neighbor PEER version BGP_VERSION
1295 o ipv6 bgp neighbor PEER interface IFNAME
1296
1297 And below new commands are added.
1298
1299 o ipv6 bgp network IPV6_PREFIX
1300 o ipv6 bgp redistribute static
1301 o ipv6 bgp redistribute connected
1302 o ipv6 bgp neighbor PEER remote-as <1-65535> [passive]
1303 o ipv6 bgp neighbor PEER ebgp-multihop [TTL]
1304 o ipv6 bgp neighbor PEER description DESCRIPTION
1305 o ipv6 bgp neighbor PEER shutdown
1306 o ipv6 bgp neighbor PEER route-reflector-client
1307 o ipv6 bgp neighbor PEER update-source IFNAME
1308 o ipv6 bgp neighbor PEER next-hop-self
1309 o ipv6 bgp neighbor PEER timers holdtime <0-65535>
1310 o ipv6 bgp neighbor PEER timers keepalive <0-65535>
1311 o ipv6 bgp neighbor PEER send-community
1312 o ipv6 bgp neighbor PEER weight <0-65535>
1313 o ipv6 bgp neighbor PEER default-originate
1314 o ipv6 bgp neighbor PEER filter-list FILTER_LIST_NAME (in|out)
1315 o ipv6 bgp neighbor PEER prefix-list PREFIX_LIST_NAME (in|out)
1316 o ipv6 bgp neighbor PEER distribute-list AS_LIST_NAME (in|out)
1317 o ipv6 bgp neighbor PEER route-map ROUTE_MAP_NAME (in|out)
1318
1319 And some utility commands are introduced.
1320
1321 o clear ipv6 bgp [PEER]
1322 o show ipv6 bgp neighbors [PEER]
1323 o show ipv6 bgp summary
1324
1325 I hope these changes are easy to understand for current Zebra users...
1326
1327 * To restrict connection to VTY interface.
1328
1329 It used to be both IPv4 and IPv6 filter can be specified with one
1330 access-list. Then the access-list can be appried to VTY interface
1331 with `access-class' stetement in `line vty' node. Below is example in
1332 zebra-0.7x.
1333
1334 !
1335 access-list local-only permit 127.0.0.1/32
1336 access-list local-only permit ::1/128
1337 access-list local-only deny any
1338 !
1339 line vty
1340 access-class local-only
1341 !
1342
1343 Now IPv4 and IPv6 filter have each name space. It is not possible to
1344 specify IPv4 and IPv6 filter with one access-list. For setting IPv6
1345 access-list in `line vty', `ipv6 access-class' statement is
1346 introduced. Let me show the configuration in zebra-0.8x.
1347
1348 !
1349 access-list local-only permit 127.0.0.1/32
1350 access-list local-only deny any
1351 !
1352 ipv6 access-list local-only permit ::1/128
1353 ipv6 access-list local-only dny any
1354 !
1355 line vty
1356 access-class local-only
1357 ipv6 access-class local-only
1358 !
1359
1360 * route-map
1361
1362 New IPv6 related route-map match commands are added.
1363
1364 o match ipv6 address
1365 o match ipv6 next-hop
1366
1367 Please change your configuration if you use IP match statement for
1368 IPv6 route.
1369
1370 zebra-0.7x config
1371 =================
1372 !
1373 access-list all permit any
1374 !
1375 route-map set-nexthop permit 10
1376 match ip address all
1377 set ipv6 next-hop global 3ffe:506::1
1378 set ipv6 next-hop local fe80::cbb5:591a
1379 !
1380
1381 zebra-0.8x config
1382 =================
1383 !
1384 ipv6 access-list all permit any
1385 !
1386 route-map set-nexthop permit 10
1387 match ipv6 address all
1388 set ipv6 next-hop global 3ffe:506::1
1389 set ipv6 next-hop local fe80::cbb5:591a
1390 !
1391
1392 * zebra connection
1393
1394 Protocol daemon such as ripd, bgpd, ospfd will reconnect zebra daemon
1395 when the connection fail. Those daemons try to connect zebra every 10
1396 seconds first three trial, then the interval changed to 60 seconds.
1397 After all, if ten connections are fail, protocol daemon give up the
1398 connection to the zebra daemon.
1399
1400 * SNMP support (is not yet finished)
1401
1402 Zebra uses SMUX protocol (RFC1227) for making communication with SNMP
1403 agent. Currently lib/smux.c can be compiled only with ucd-snmp-4.0.1
1404 and http://ucd-snmp.ucdavis.edu/patches/012.patch. It can not be
1405 compiled with ucd-snmp-3.6.2.
1406
1407 After applying the patch to ucd-snmp-4.0.1, please configure it with
1408 SMUX module.
1409
1410 % configure --with-mib-modules=smux
1411
1412 After compile & install ucd-snmp-4.0.1, you will need to configure
1413 smuxpeer. I'm now using below configuration.
1414
1415 /usr/local/share/snmp/snmpd.conf
1416 ================================
1417 smuxpeer 1.3.6.1.6.3.1 test
1418
1419 Above 1.3.6.1.6.3.1 and test is temporary configuration which is hard
1420 coded in lib/smux.c. Yes, I know it is bad, I'll change it ASAP.
1421
1422 * HUP signal treatment
1423
1424 From zebra-0.80, ripd will reload it's configuration file when ripd
1425 receives HUP signal. Other daemon such as bgpd, ospfd will support
1426 HUP signal treatment soon.
1427 \f
1428 * Changes in zebra-0.79
1429
1430 * Changes in zebra
1431
1432 ** Broadcast address setting on Linux box bug is fixed.
1433
1434 ** Protocol daemon can install connected IPv6 route into the kernel.
1435
1436 ** Now zebra can handle blackhole route.
1437
1438 * Changes in ripd
1439
1440 ** Add route-map feature for RIP protocol.
1441
1442 ** In case of RIP version 2 routing table entry has IPv4 address and
1443 netmask pair which host part bit is on, ignore the entry.
1444
1445 * Changes in ripngd
1446
1447 ** Change CMSG_DATA cast from (u_char *) to (int *). (u_char *) does
1448 not work for NetBSD-currnet on SparcStation 10.
1449
1450 * Changes in ospfd
1451
1452 ** MaxAge LSA treatment is added.
1453
1454 ** ABR/ASBR functionality is added.
1455
1456 ** Virtual Link funtionality is added.
1457
1458 ** ABR behaviors IBM/Cisco/Shortcut is added.
1459
1460 * Changes in ospf6d
1461
1462 ** Enclosed KAME specific part with #ifdef #endif
1463 \f
1464 * Changes in zebra-0.78
1465
1466 * Changes in lib
1467
1468 ** SNMP support is started.
1469
1470 ** Now Zebra can work on BSD/OS 4.X.
1471
1472 ** Now Zebra can compiled on vanilla OpenBSD 2.5 but not yet working correcltly.
1473
1474 * Changes in zebra
1475
1476 ** Interface index detection using ioctl() bug is fixed.
1477
1478 ** Interface information protocol is changed. Now interface
1479 addition/deletion and interface's address addition/deletion is
1480 separated.
1481
1482 * Changes in bgpd
1483
1484 ** BGP hold timer bug is fixed.
1485
1486 ** BGP keepavlie timer becomes configurable.
1487
1488 * Changes in ripd
1489
1490 ** When making reply to rip's REQUEST message, fill in
1491 RIP_METRIC_INFINITY with network byte order using htonl ().
1492
1493 ** Pass host byte order address to IN_CLASSC and IN_CLASSB macro.
1494
1495 * Changes in ospfd
1496
1497 ** LSA flooding works.
1498
1499 ** Fix bug of DD processing.
1500
1501 ** Fix bug of originating router-LSA bug is fixed.
1502
1503 ** LSA structure is changed to support LSA aging.
1504
1505 * Changes in ospf6d
1506
1507 ** `ip6' statement in configuration is changed to `ipv6'.
1508 \f
1509 * Changes in zebra-0.77
1510
1511 * Changes in lib
1512
1513 ** SIGUSR1 reopen logging file.
1514
1515 ** route-map is extended to support multi-protocol routing
1516 information.
1517
1518 ** When compiling under GNU libc 2.1 environment don't use inet6-apps.
1519
1520 * Changes in zebra
1521
1522 ** Basic IPv6 router advertisement codes added. It is not yet usable.
1523
1524 ** Fix IPv6 route addition/deletion bug is fixed.
1525
1526 ** `show ip route A.B.C.D' works
1527
1528 * Changes in bgpd
1529
1530 ** When invalid unfeasible routes length comes, bgpd send notify then
1531 continue to process the packet. Now bgpd stop parsing invalid packet
1532 then return to main loop.
1533
1534 ** BGP-4+ withdrawn routes parse bug is fixed.
1535
1536 ** When BGP-4+ information passed to non shared network's peer, trim
1537 link-local next-hop information.
1538
1539 ** `no redistribute ROUTE_TYPE' withdraw installed routes from BGP
1540 routing information.
1541
1542 ** `show ipv6 route IPV6ADDR' command added.
1543
1544 ** BGP start timer has jitter.
1545
1546 ** Holdtimer configuration bug is fixed. Now configuration does not
1547 show unconfigured hold time value.
1548
1549 * Changes in ripngd
1550
1551 ** Now update timer (default 30 seconds) has +/- 50% jitter value.
1552
1553 ** Add timers basic command.
1554
1555 ** `network' configuration is dynamically reflected.
1556
1557 ** `timers basic <update> <timeout> <garbage>' added.
1558
1559 * Changes in ripd
1560
1561 ** Reconstruct almost codes.
1562
1563 ** `network' configuration is dynamically reflected.
1564
1565 ** RIP timers now conforms to RFC2453. So user can configure update,
1566 timeout, garbage timer.
1567
1568 ** `timers basic <update> <timeout> <garbage>' works.
1569
1570 * Changes in ospfd
1571
1572 ** Bug of originating network LSA is fixed.
1573
1574 ** `no router ospf' core dump bug is fixed.
1575
1576 * Changes in ospf6d
1577
1578 ** Redistribute route works.
1579 \f
1580 * Changes in zebra-0.76
1581
1582 * Changes in lib
1583
1584 ** configure.in Linux IPv6 detection problem is fixed.
1585
1586 ** Include SERVICES file to the distribution
1587
1588 ** Update zebra.texi to zebra-0.76.
1589 \f
1590 * Changes in zebra-0.75
1591
1592 * Changes in lib
1593
1594 ** `termnal length 0' bug is fixed.
1595
1596 * Changes in zebra
1597
1598 ** When zebra starts up, sweep all zebra installed routes. If -k or
1599 --keep_kernel option is specified to zebra dameon. This function is
1600 not performed.
1601
1602 * Changes in ripngd
1603
1604 ** Aggreagte address command supported. In router ripngd,
1605 `aggregate-address IPV6PREFIX' works.
1606
1607 * Changes in bgpd
1608
1609 ** Input route-map's bug which cause segmentation violation is fixed.
1610
1611 ** route-map method improved.
1612
1613 ** BGP-4+ nexthop detection improved.
1614
1615 ** BGP-4+ route re-selection bug is fixed.
1616
1617 ** BGP-4+ iBGP route's nexthop calculation works.
1618
1619 ** After connection Established `show ip bgp neighbor' display BGP TCP
1620 connection's source and destination address.
1621
1622 ** In case of BGP-4+ `show ip bgp neighbor' display BGP-4+ global and
1623 local nexthop which used for originated route. This address will be
1624 used when `next-hop-self'.
1625
1626 * Changes in ospfd
1627
1628 ** Fix bug of DR election.
1629
1630 ** Set IP precedence field with IPTOS_PREC_INTERNET_CONTROL.
1631
1632 ** Schedule NeighborChange event if NSM status change.
1633
1634 ** Never include a neighbor in Hello packet, when the neighbor goes
1635 down.
1636 \f
1637 * Changes in zebra-0.74
1638
1639 * Changes in lib
1640
1641 ** Now `terminal length 0' means no line output control.
1642
1643 ** `line LINES' command deleted. Instead of this please use `terminal
1644 length <0-512>'.
1645
1646 ** `terminal length <0-512>' is each vty specific configuration so it
1647 can not be configured in the configuration file. If you want to
1648 configure system wide line control, please use `service
1649 terminal-length <0-512>'. This configuration affects to the all vty
1650 interface.
1651
1652 * Changes in zebra
1653
1654 ** Installation of IPv6 route bug is fixed.
1655
1656 * Changes in bgpd
1657
1658 ** Very serious bug of bgp_stop () is fixed. When multiple route to
1659 the same destination exist, bgpd try to announce the information to
1660 stopped peer. Then add orphan write thread is added. This cause
1661 many strange behavior of bgpd.
1662
1663 ** Router-id parsing bug is fixed.
1664
1665 ** With BGP-4+ nexthop installation was done with global address but
1666 it should be link-local address. This bug is fixed now.
1667
1668 ** When incoming route-map prepend AS, old AS path remained. Now bgpd
1669 free old AS path.
1670
1671 ** `neighbor PEER weight <0-65535>' command added.
1672
1673 * Changes in ripngd
1674
1675 ** Almost codes are rewritten to conform to RFC2080.
1676
1677 * Changes in ospfd
1678
1679 ** SPF calculation timer is added. Currently it is set to 30 seconds.
1680
1681 ** SPF calculation works now.
1682
1683 ** OSPF routing table codes are added.
1684
1685 ** OSPF's internal routes installed into the kernel routing table.
1686
1687 ** Now `ospfd' works as non-area, non-external route support OSPF
1688 router.
1689
1690 ** Call of log_rotate() is removed.
1691
1692 * Changes in ospf6d
1693
1694 ** LSA data structure is changed.
1695
1696 ** Call of log_rotate() is removed.
1697 \f
1698 * Changes in zebra-0.73
1699
1700 * Changes in lib
1701
1702 ** `config terminal' is changed to `configure terminal'.
1703
1704 ** `terminal length <0-512>' command is added.
1705
1706 ** Variable length argument was specified by `...'. Now all strings
1707 started with character `.' is variable length argument.
1708
1709 * Changes in zebra
1710
1711 ** Internal route (such as iBGP, internal OSPF route) handling works
1712 correctly.
1713
1714 ** In interface node, `ipv6 address' and `no ipv6 address' works.
1715
1716 ** Interface's address remain after `no ip address' bug is fixed.
1717
1718 ** Host route such as IPv4 with /32 mask and IPv6 with /128 mask
1719 didn't set RTF_GATEWAY even it has gateway. This bug if fixed now.
1720
1721 * Changes in bgpd
1722
1723 ** `match as-path' argument is used to be specify AS PATH value itself
1724 directly (e.g. ^$). But it is changed to specify `ip as-apth
1725 access-list' name.
1726
1727 ** iBGP route handle works without getting error from the kernel.
1728
1729 ** `set aggregator as AS A.B.C.D' command is added to route-map.
1730
1731 ** `set atomic-aggregate' command is added to bgpd's routemap.
1732
1733 ** Announcement of atomic aggregate attribute and aggregator attribute
1734 works.
1735
1736 ** `update-source' bug is fixed.
1737
1738 ** When a route learned from eBGP is announced to iBGP, local
1739 preference was set to zero. But now it set to
1740 DEFAULT_LOCAL_PREF(100).
1741
1742 * Changes in ripd
1743
1744 ** RIPv1 route filter bug is fixed.
1745
1746 ** Some memory leak is fixed.
1747
1748 * Changes in ospfd
1749
1750 ** Fix bug of DR Election.
1751
1752 ** Fix bug of adjacency forming.
1753
1754 * Changes in ospf6d
1755
1756 ** Clean up logging message.
1757
1758 ** Reflect routing information to zebra daemon.
1759 \f
1760 * Changes in zebra-0.72
1761
1762 * Changes in lib
1763
1764 ** When getsockname return IPv4 mapped IPv6 address. Convert it to
1765 IPv4 address.
1766
1767 * Changes in bgpd
1768
1769 ** Change route-map's next-hop related settings.
1770
1771 set ip nexthop -> set ip next-hop
1772 set ipv6 nexthop global -> set ipv6 next-hop global
1773 set ipv6 nexthop local -> set ipv6 next-hop local
1774
1775 ** Add `next-hop-self' command.
1776
1777 * Changes in ospfd
1778
1779 ** Fix bug of multiple `network area' directive crashes.
1780 \f
1781 * Changes in zebra-0.71
1782
1783 * Changes in lib
1784
1785 ** `log syslog' command is added.
1786
1787 ** Use getaddrinfo function to bind IPv4/IPv6 server socket.
1788
1789 ** `no banner motd' will suppress motd output when user connect to VTY.
1790
1791 ** Bind `quit' command to major nodes.
1792
1793 * Changes in zebra
1794
1795 ** Point-to-point link address handling bug is fixed.
1796
1797 * Changes in bgpd
1798
1799 ** AS path validity check is added. If malformed AS path is received
1800 NOTIFY Malformed AS path is send to the peer.
1801
1802 ** Use getaddrinfo function to bind IPv4/IPv6 server socket.
1803
1804 * Changes in ripd
1805
1806 ** Connected network announcement bug is fixed.
1807
1808 ** `broadcast' command is deleted.
1809
1810 ** `network' command is added.
1811
1812 ** `neighbor' command is added.
1813
1814 ** `redistribute' command is added.
1815
1816 ** `timers basic' command is added.
1817
1818 ** `route' command is added.
1819
1820 * Changes in ripngd
1821
1822 ** Fix metric calculation bug.
1823
1824 * Changes in ospfd
1825
1826 ** Check sum bug is fixed.
1827
1828 * Chanegs in ospf6d
1829
1830 ** Routing table code is rewritten.
1831 \f
1832 * Changes in zebra-0.70
1833
1834 * Changes in zebra
1835
1836 ** Critical routing information base calculation bug check is fixed.
1837
1838 ** zebra ipv4 message is extended to support external/internal route
1839 flavor.
1840
1841 ** Now if internal route doesn't has direct connected nexthop, then
1842 nexthop is calculated by looking up IGP routing table.
1843
1844 * Changes in bgpd
1845
1846 ** `neighbor PEER update-source IFNAME' command added as ALIAS to
1847 `neighbor PEER interface IFNAME'.
1848
1849 * Changes in ospfd
1850
1851 ** DD null pointer bug is fixed.
1852 \f
1853 * Changes in zebra-0.69
1854
1855 * Changes in zebra
1856
1857 ** zebra redistirbution supports dynamic notification of the route
1858 change. If you add static route while running zebra, it will be
1859 reflected to other protocol daemon which set `redistribute static'.
1860
1861 ** If static route installation is failed due to the error. The
1862 static route is not added to the configuration and zebra routing
1863 table.
1864
1865 ** zebra sets forwarding flag to on when it starts up.
1866
1867 ** `no ip forwarding' turn off IPv4 forwarding.
1868
1869 ** `no ipv6 forwarding' turn off IPv6 forwarding.
1870
1871 ** Change `show ipforward' command to `show ip forwarding'.
1872
1873 ** Change `show ipv6forward' command to `show ipv6 forwarding'.
1874
1875 ** `ip route A.B.C.D/M INTERFACE' works. So you can set `ip route
1876 10.0.0.0/8 eth0'.
1877
1878 * Changes in bgpd
1879
1880 ** `neighbor PEER send-community' command is added. If the option is
1881 set, bgpd will send community attribute to the peer.
1882
1883 ** When a BGP route has no-export community attribute and
1884 send-community is set to the peer, the route is not announced to the
1885 peer.
1886
1887 * Changes in ripngd
1888
1889 ** When ripngd terminates, delete all installed route.
1890
1891 ** `redistribute static', `redistribute connected' works.
1892
1893 ** Change `debug ripng event' to `debug ripng events'.
1894
1895 ** Change `show debug ripng' to `show debugging ripng'.
1896
1897 ** Bug of static route deletion is fixed.
1898
1899 * Changes in ospfd
1900
1901 ** LS request and LS update can be send and received.
1902 \f
1903 * Changes in zebra-0.68
1904
1905 * Changes in lib
1906
1907 ** DEFUN() is extended to support (a|b|c) statement.
1908
1909 ** Input buffer overflow bug is fixed.
1910
1911 * Changes in bgpd
1912
1913 ** `ip community-list' is added.
1914
1915 ** set community and match community is added to route-map statement.
1916
1917 ** aggregate-address A.B.C.D/M partly works. Now it works only
1918 summary-only mode.
1919
1920 * Changes in zebra
1921
1922 ** IPv6 network address delete bug is fixed.
1923
1924 * Changes in ospfd
1925
1926 ** DR election bug fixed.
1927
1928 ** Now Database Description can be send or received.
1929
1930 ** Neighbor State Machine goes to Full state.
1931
1932 * Changes in ospf6d
1933
1934 ** router zebra related bug is fixed.
1935 \f
1936 * Changes in zebra-0.67
1937
1938 * Changes in lib
1939
1940 ** `service password-encryption' is added for encrypted password.
1941
1942 * Changes in bgpd
1943
1944 ** `set as-path prepend ASPATH' is added to route-map command.
1945
1946 ** `set weight WEIGHT' is added to route-map command.
1947
1948 ** `no set ipv6 nexthop global' and `no set ipv6 nexthop local'
1949 command is added to route-map.
1950
1951 ** `neighbor IP_ADDR version BGP_VERSION' command's BGP_VERSION
1952 argument changed.
1953
1954 Old New
1955 =====================
1956 bgp4 4
1957 bgp4+ 4+
1958 bgp4+-draft-00 4-
1959 =====================
1960
1961 If you want to peer with old draft version of BGP-4+, please configure
1962 like below:
1963
1964 router bgp ASN
1965 neighbor PEER version 4-
1966
1967 ** Some AS path isn't correctly compared during route selection. Now
1968 it is fixed.
1969
1970 * Changes in ospfd
1971
1972 ** `router zebra' is default behavior.
1973
1974 * Changes in ospf6d
1975
1976 ** `router zebra' is default behavior.
1977 \f
1978 * Changes in zebra-0.66
1979
1980 * Changes in zebra
1981
1982 ** When other daemon such as gated install routes into the kernel then
1983 zebra blocks. This is only occur with netlink socket. Now socket is
1984 set as NONBLOCKING and problem is fixed. Reported and fixed by
1985 Patrick Koppen <koppen@rhrk.uni-kl.de>
1986
1987 * Changes in bgpd
1988
1989 ** Now `router zebra' is not needed to insert BGP routes into the
1990 kernel. It is default behavior. If you don't want to install the BGP
1991 routes to the kernel, please configure like below:
1992
1993 !
1994 router zebra
1995 no redistribute bgp
1996 !
1997
1998 ** redistribute connected works.
1999
2000 ** redistribute static now filter local loopback routes and link local
2001 network.
2002
2003 * Changes in ripd
2004
2005 ** Some network check is added. Patch is done by Carlos Alberto
2006 Barcenilla <barce@frlp.utn.edu.ar>
2007
2008 * Changes in ripngd
2009
2010 ** Sometimes ripngd install wrong nexthop into the kernel. This bug
2011 is fixed now.
2012
2013 ** Now `router zebra' is not needed to insert RIPng routes into the
2014 kernel. It is default behavior. If you don't want to install the BGP
2015 routes to the kernel, please configure like below:
2016
2017 !
2018 router zebra
2019 no redistribute ripng
2020 !
2021 \f
2022 * Changes in zebra-0.65
2023
2024 * Changes in lib
2025
2026 ** `C-c' changes current node to ENABLE_NODE. Previously it doesn't.
2027
2028 ** In ENABLE_NODE, `exit' command close vty connection.
2029
2030 ** `service advanced-vty' enable advanced vty function. If this
2031 service is specified one can directly connect to ENABLE_NODE when
2032 enable password is not set.
2033
2034 ** `lines LINES' command is added by Stephen R. van den Berg
2035 <srb@cuci.nl>.
2036
2037 * Changes in zebra
2038
2039 ** Basic Linux policy based routing table support is added by Stephen
2040 R. van den Berg <srb@cuci.nl>.
2041
2042 * Changes in bgpd
2043
2044 ** route-map command is improved:
2045 `match ip next-hop': New command.
2046 `match metric': New command.
2047 `set metric': Doc fixed.
2048 `set local-preference': DEFUN added.
2049
2050 * Changes in ripd
2051
2052 ** Check of announced network is added. Now multicast address is
2053 filtered. Reported by Carlos Alberto Barcenilla
2054 <barce@frlp.utn.edu.ar>
2055
2056 ** Check of network 127 is added. Reported by Carlos Alberto
2057 Barcenilla <barce@frlp.utn.edu.ar>
2058
2059 * Changes in ripngd
2060
2061 ** Aging route bug is fixed.
2062
2063 ** `router zebra' semantics changed. ripngd automatically connect to
2064 zebra.
2065
2066 * Changes in ospfd
2067
2068 ** `no router ospf' works.
2069
2070 * Changes in ospf6d
2071
2072 ** Bug fix about network vertex.
2073 \f
2074 * Changes in zebra-0.64.1.
2075
2076 This is bug fix release.
2077
2078 * Changes in lib
2079
2080 ** Add check of sin6_scope_id in struct sockaddr_in6. For compilation
2081 on implementation which doesn't have sin6_scope_id. Reported by Wim
2082 Biemolt <Wim.Biemolt@ipv6.surfnet.nl>.
2083
2084 * Changes in zebra
2085
2086 ** Fix bug of display BGP routes as "O" instead of "B". Reported by
2087 "William F. Maton" <wmaton@enterprise.ic.gc.ca> and Dave Hartzell
2088 <hartzell@greatplains.net>.
2089
2090 * Changes in bgpd
2091
2092 ** `no network IPV6_NETWORK' statement and `no neighbor IP_ADDR timers
2093 holdtime [TIMER]' statement doesn't work. Reported by Georg Hitsch
2094 <georg@atnet.at>. Now both statement work.
2095
2096 * Changes in ospfd
2097
2098 ** Last interface is not updated by ospf_if_update(). Reported by
2099 Dave Hartzell <hartzell@greatplains.net>.
2100
2101 * Changes in ospf6d
2102
2103 ** Byte order of ifid is changed. Due to this change, this code will
2104 not work with previous version, sorry.
2105
2106 ** Fix `show ip route' route type mismatch.
2107
2108 ** Fix bug of no network IPV6_NETWORK.
2109
2110 ** Important bug fix about intra-area-prefix-lsa.
2111 \f
2112 * Changes in zebra-0.64.
2113
2114 * Changes in lib
2115
2116 ** prefix-list based filtering routine is added. Currently used in
2117 bgpd but it will be in other daemons.
2118
2119 * Changes in bgpd
2120
2121 ** `no router bgp' works. But network statement is not cleared. This
2122 should be fixed in next beta.
2123
2124 ** Route reflector related statement is added.
2125
2126 router bgp ASN
2127 bgp cluster-id a.b.c.d
2128 neighbor a.b.c.d route-reflector-client
2129
2130 is added.
2131
2132 ** Prefix list based filtering is added.
2133
2134 router bgp ASN
2135 neighbor a.b.c.d prefix-list PREFIX_LIST_NAME
2136
2137 ** Prefix list based routing display works.
2138
2139 show ip bgp prefix-list PREFIX_LIST_NAME
2140
2141 * Changes in ripd
2142
2143 ** Fix route metric check bug. Reported from Mr. Carlos Alberto
2144 Barcenilla.
2145
2146 * Changes in ospf6d
2147
2148 ** There are many changes. If you have interested in ospf6d please
2149 visit ospf6d/README file.
2150 \f
2151 * Changes in zebra-0.63 first beta package.
2152
2153 * Changes in lib
2154
2155 ** `copy running-config stgartup-config' command is added.
2156
2157 ** prefix length check bug is fixed. Thanks Marlos Barcenilla
2158 <barce@frip.utn.edu.ar>.
2159
2160 * Changes in ospfd
2161
2162 ** DR and BDR election works.
2163
2164 ** OSPF Hello simple authentication works.
2165
2166 * Changes in ospf6d
2167
2168 ** Now ospf6d can be compiled on both Linux and *BSD system.
2169 \f
2170 * Changes in zebra-19990420 snapshot
2171
2172 ** `make dist' at top directory works now.
2173
2174 * Changes in lib
2175
2176 ** VTY has now access-class to restrict remote connection.
2177 Implemented by Alex Bligh <amb@gxn.net>.
2178
2179 !
2180 line vty
2181 access-class ACCESS-LIST-NAME
2182 !
2183
2184 ** `show version' command added. Implemented by Carlos Alberto
2185 Barcenilla <barce@frlp.utn.edu.ar>
2186
2187 * Changes in zebra
2188
2189 ** `ip address' command on *BSD bug is fixed.
2190
2191 ** `no ip address' works now for IPv4 address.
2192
2193 ** Now `write terminal' display `ip address' configuration.
2194
2195 * Changes in bgpd
2196
2197 ** Redistribute static works now. Please run both zebra and bgpd.
2198 bgpd.conf should be like this:
2199
2200 !
2201 router zebra
2202 !
2203 router bgp ASN
2204 redisitribute static
2205 !
2206
2207 * Changes in guile
2208
2209 ** configure --enable-guile turns on zebra-guile build.
2210
2211 ** (router-bgp ASN) allocates real bgp structre.
2212 \f
2213 * Changes in zebra-19990416 snapshot
2214
2215 ** Set version to 0.60 for preparation of beta release.
2216
2217 ** New directory guile is added for linking with guile interpreter.
2218
2219 * Changes in zebra
2220
2221 ** On GNU/Linux Kernel 2.2.x (with netlink support), zebra detects
2222 asynchronous routing updates. *BSD support is not yet finished.
2223
2224 * Changes in bgpd
2225
2226 ** `show ip bgp regexp ASPATH_REGEX' uses CISCO like regular expression
2227 instead of RPSL like regular expression. I'm planing to provide RPSL
2228 like regular expression with `show ip bgp rpsl' or something.
2229
2230 * Changes in lib
2231
2232 ** Press '?' at variable mandatory argument, vty prints nothing. Now
2233 vty outputs description about the argument. Fixed by Alex Bligh
2234 <amb@gxn.net>
2235
2236 ** buffer.c has some ugly bugs. Due to the bug, vty interface hangs
2237 when large output date exists. This bug is fixed. Reported by Alex
2238 Bligh <amb@gxn.net>.
2239
2240 * Changes in ospfd
2241
2242 ** DR and BDR information is shown by `show ip ospf interface' command.
2243 \f
2244 * Changes in zebra-19990408 snapshot
2245
2246 * Changes in bgpd
2247
2248 ** Old BGP-4+ specification (described in old draft) treatment bug is
2249 fixed. It seems that mrtd uses this format as default. So if you
2250 have problem peering with mrtd and want to use old draft format please
2251 use version statement like this.
2252
2253 neighbor PEER_ADDRESS remote-as ASN
2254 neighbor PEER_ADDRESS version bgp4+-draft-00
2255
2256 ** When AS path is epmty (routes generated by bgpd), SEGV is occur
2257 when announce the routes to eBGP peer. Reported by
2258 kad@gibson.skif.net.
2259
2260 ** ip as-path access-list command is added.
2261
2262 ** neighbor PEER_ADDRESS filter-list AS_LIST [in|out] command is added.
2263
2264 ** neighbor PEER_ADDRESS timers holdtimer TIMER command is added.
2265
2266 * Changes in all daemons
2267
2268 ** With KAME stack, terminal interface is now bind AF_INET socket
2269 instead of AF_INET6 one.
2270 \f
2271 * Changes in zebra-19990403 snapshot
2272
2273 * Changes in bgpd
2274
2275 ** When bgpd has 'router zebra', bgpd automatically select it's router
2276 ID as most highest interface's IP Address.
2277
2278 ** When AS path is empty (in case of iBGP), it doesn't include any AS
2279 segment. This change is for announcement to gated under iBGP.
2280
2281 * Changes in ospfd
2282
2283 ** OSPF hello packet send/receive works.
2284
2285 * Changes in ospf6d
2286
2287 ** Yasuhiro Ohara's ospf6d codes is imported. It is under development
2288 and can't be compiled on any platform.
2289 \f
2290 * Changes in zebra-19990327 snapshot
2291
2292 * Changes in bgpd
2293
2294 ** When BGP-4+ connection is done by IPv6 link-local address. One
2295 have to specify interface index for the connection. So I've added
2296 interface statement to the neighbor commmand. Please specify
2297 interface name for getting interface index like below. This statement
2298 only works on GNU/Linux. I'll support BSD ASAP.
2299
2300 router bgp 7675
2301 neighbor fe80::200:f8ff:fe01:5fd3 remote-as 2500
2302 neighbor fe80::200:f8ff:fe01:5fd3 interface sit3
2303
2304 ** For disable BGP peering `shutdown' command is added.
2305
2306 router bgp 7675
2307 neighbor 10.0.0.1 shutdown
2308
2309 ** `description' command is added to neighbor statement.
2310
2311 router bgp 7675
2312 neighbor 10.0.0.1 description peering with Norway.
2313
2314 ** `show ip bgp regexp AS-REGEXP' works again.
2315
2316 show ip bgp regexp AS7675
2317
2318 will show routes which include AS7675.
2319
2320 ** When a route which is made from `network' statement is send to
2321 neighbor. Set it's nexthop to self. So 10.0.0.0/8 is announced to
2322 the peer A with source address 192.168.1.1. The routes nexthop is set
2323 to 192.168.1.1.
2324
2325 * Changes in zebra
2326
2327 ** In zebra/rtread_sysctl.c, function rtm_read() may overrun allocated
2328 buffer when the address family is not supported and the length is big
2329 (i.e link address). Reported Achim Patzner <ap@bnc.net>.
2330
2331 * Changes in ospfd
2332
2333 ** Now ospfd receive OSPF packet.
2334 \f
2335 * Changes in zebra-19990319 snapshot
2336
2337 * Changes in configuration and libraries
2338
2339 ** User can disable IPv6 feature and/or pthread feature by configure
2340 option.
2341
2342 To disable IPv6: configure --disable-ipv6
2343 To disable pthread: configure --disable-pthread
2344
2345 ** User can disable specified daemon by configure option.
2346
2347 Don't make zebra: configure --disable-zebra
2348 Don't make bgpd: configure --disable-bgpd
2349 Don't make ripd: configure --disable-ripd
2350 Don't make ripngd: configure --disable-ripngd
2351 Don't make ospfd: configure --disable-ospfd
2352 Don't make ospf6d: configure --disable-ospf6d
2353
2354 ** Sample configuration files are installed as 600 file flag.
2355 Suggested by Jeroen Ruigrok/Asmodai <asmodai@wxs.nl>.
2356
2357 ** syslog logging feature is added by Peter Galbavy
2358 <Peter.Galbavy@knowledge.com>
2359
2360 ** Inclusion of standard header files is reworked by Peter Galbavy
2361 <Peter.Galbavy@knowledge.com>
2362
2363 ** Change description from GNU/Linux 2.1.X to GNU/Linux 2.2.X
2364
2365 ** If daemon function exists in standard C library use it.
2366
2367 ** To generate configure script we upgrade autoconf to 2.13. To
2368 generate Makefile.in we upgrade automake to 1.4.
2369
2370 ** doc/texinfo.tex is added to distribution.
2371
2372 ** Update ports/pkg/DESCR description.
2373
2374 ** Update doc/zebra.texi.
2375
2376 ** logfile FILENAME statement deleted. Instead of that please use log
2377 file FILENAME.
2378
2379 * Changes in zebra
2380
2381 * Changes in bgpd
2382
2383 ** Communication between zebra and bgpd works now. So if there is
2384 `router zebra' line in bgpd.conf, selected route is installed
2385 into kernel routing table.
2386
2387 ** Delete all routes which inserted by bgpd when bgpd dies. If you
2388 want to retain routes even bgpd dies please specify [-r|--retain]
2389 option to bgpd.
2390
2391 ** BGP announcement code is reworked. Now bgpd announce selected
2392 routes to other peer.
2393
2394 ** All output bgp packet is buffered. It's written to the socket when
2395 it gets ready.
2396
2397 ** Output route-map works now. You can specify output route-map by:
2398
2399 neighbor IP_ADDR route-map ROUTE_MAP_NAME out
2400
2401 ** New route-map command added.
2402
2403 set ip nexthop IP_ADDR
2404 set ipv6 nexthop global IP_ADDR
2405
2406 ** Fix bug about unlock of the route_node structure.
2407
2408 ** BGP-4+ support is added. bgpd can listen and speak BGP-4+ packet
2409 specified in RFC2283. You can view IPv6 bgp table by: `show ipv6 bgp'.
2410
2411 ** Meny packet overflow check is added.
2412
2413 * Changes in ripd
2414
2415 * Changes in ripngd
2416
2417 * Changes in ospfd
2418
2419 ** ospfd work is started by Toshiaki Takada <takada@zebra.org>. Now
2420 several files are included in ospfd directory.
2421
2422 ** ospf6d codes are merged from Yasuhiro Ohara <yasu@sfc.wide.ad.jp>'s
2423 ospfd work. Now codes are located in ospf6d directory.
2424
2425 \f
2426 Local variables:
2427 mode: outline
2428 paragraph-separate: "[ \f]*$"
2429 end: