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