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