⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 news

📁 大名鼎鼎的路由器源码。程序分ZEBRA、OSPFRIP等3个包。程序框架采用一个路由协议一个进程的方式
💻
📖 第 1 页 / 共 5 页
字号:
bgp4              4bgp4+             4+bgp4+-draft-00    4-=====================If you want to peer with old draft version of BGP-4+, please configurelike below:router bgp ASN neighbor PEER version 4-** Some AS path isn't correctly compared during route selection.  Nowit is fixed.* Changes in ospfd** `router zebra' is default behavior.* Changes in ospf6d** `router zebra' is default behavior.* Changes in zebra-0.66* Changes in zebra** When other daemon such as gated install routes into the kernel thenzebra blocks.  This is only occur with netlink socket.  Now socket isset as NONBLOCKING and problem is fixed.  Reported and fixed byPatrick Koppen <koppen@rhrk.uni-kl.de>* Changes in bgpd** Now `router zebra' is not needed to insert BGP routes into thekernel.  It is default behavior.  If you don't want to install the BGProutes to the kernel, please configure like below:!router zebra no redistribute bgp!** redistribute connected works.** redistribute static now filter local loopback routes and link localnetwork.* Changes in ripd** Some network check is added.  Patch is done by Carlos AlbertoBarcenilla <barce@frlp.utn.edu.ar>* Changes in ripngd** Sometimes ripngd install wrong nexthop into the kernel.  This bugis fixed now.** Now `router zebra' is not needed to insert RIPng routes into thekernel.  It is default behavior. If you don't want to install the BGProutes to the kernel, please configure like below:!router zebra no redistribute ripng!* Changes in zebra-0.65* Changes in lib** `C-c' changes current node to ENABLE_NODE.  Previously it doesn't.** In ENABLE_NODE, `exit' command close vty connection.** `service advanced-vty' enable advanced vty function.  If thisservice is specified one can directly connect to ENABLE_NODE whenenable password is not set.** `lines LINES' command is added by Stephen R. van den Berg<srb@cuci.nl>.* Changes in zebra** Basic Linux policy based routing table support is added by StephenR. van den Berg <srb@cuci.nl>.* Changes in bgpd** route-map command is improved:  `match ip next-hop': New command.  `match metric': New command.  `set metric': Doc fixed.  `set local-preference': DEFUN added.* Changes in ripd** Check of announced network is added.  Now multicast address isfiltered.  Reported by Carlos Alberto Barcenilla<barce@frlp.utn.edu.ar>** Check of network 127 is added.  Reported by Carlos AlbertoBarcenilla <barce@frlp.utn.edu.ar>* Changes in ripngd** Aging route bug is fixed.** `router zebra' semantics changed.  ripngd automatically connect tozebra.* Changes in ospfd** `no router ospf' works.* Changes in ospf6d** Bug fix about network vertex.* Changes in zebra-0.64.1.This is bug fix release.* Changes in lib** Add check of sin6_scope_id in struct sockaddr_in6.  For compilationon implementation which doesn't have sin6_scope_id.  Reported by WimBiemolt <Wim.Biemolt@ipv6.surfnet.nl>.* Changes in zebra** Fix bug of display BGP routes as "O" instead of "B".  Reported by"William F. Maton" <wmaton@enterprise.ic.gc.ca> and Dave Hartzell<hartzell@greatplains.net>.* Changes in bgpd** `no network IPV6_NETWORK' statement and `no neighbor IP_ADDR timersholdtime [TIMER]' statement doesn't work. Reported by Georg Hitsch<georg@atnet.at>.  Now both statement work.* Changes in ospfd** Last interface is not updated by ospf_if_update().  Reported byDave Hartzell <hartzell@greatplains.net>.* Changes in ospf6d** Byte order of ifid is changed.  Due to this change, this code willnot work with previous version, sorry.** Fix `show ip route' route type mismatch.** Fix bug of no network IPV6_NETWORK.** Important bug fix about intra-area-prefix-lsa.* Changes in zebra-0.64.* Changes in lib** prefix-list based filtering routine is added.  Currently used inbgpd but it will be in other daemons.* Changes in bgpd** `no router bgp' works.  But network statement is not cleared.  Thisshould be fixed in next beta.** Route reflector related statement is added.  router bgp ASN    bgp cluster-id a.b.c.d    neighbor a.b.c.d route-reflector-client  is added.** Prefix list based filtering is added.  router bgp ASN    neighbor a.b.c.d prefix-list PREFIX_LIST_NAME** Prefix list based routing display works.  show ip bgp prefix-list PREFIX_LIST_NAME* Changes in ripd** Fix route metric check bug.  Reported from Mr. Carlos AlbertoBarcenilla.* Changes in ospf6d** There are many changes.  If you have interested in ospf6d pleasevisit ospf6d/README file.* Changes in zebra-0.63 first beta package.* Changes in lib** `copy running-config stgartup-config' command is added.** prefix length check bug is fixed.  Thanks Marlos Barcenilla<barce@frip.utn.edu.ar>.* Changes in ospfd** DR and BDR election works.** OSPF Hello simple authentication works.* Changes in ospf6d** Now ospf6d can be compiled on both Linux and *BSD system.* Changes in zebra-19990420 snapshot** `make dist' at top directory works now.* Changes in lib** VTY has now access-class to restrict remote connection.Implemented by Alex Bligh <amb@gxn.net>.!line vty  access-class ACCESS-LIST-NAME!** `show version' command added.  Implemented by Carlos AlbertoBarcenilla <barce@frlp.utn.edu.ar>* Changes in zebra** `ip address' command on *BSD bug is fixed.** `no ip address' works now for IPv4 address.** Now `write terminal' display `ip address' configuration.* Changes in bgpd** Redistribute static works now.  Please run both zebra and bgpd.bgpd.conf should be like this:!router zebra!router bgp ASN  redisitribute static!* Changes in guile** configure --enable-guile turns on zebra-guile build.** (router-bgp ASN) allocates real bgp structre.* Changes in zebra-19990416 snapshot** Set version to 0.60 for preparation of beta release.** New directory guile is added for linking with guile interpreter.* Changes in zebra** On GNU/Linux Kernel 2.2.x (with netlink support), zebra detectsasynchronous routing updates.  *BSD support is not yet finished.* Changes in bgpd** `show ip bgp regexp ASPATH_REGEX' uses CISCO like regular expression instead of RPSL like regular expression.  I'm planing to provide RPSLlike regular expression with `show ip bgp rpsl' or something.* Changes in lib** Press '?' at variable mandatory argument, vty prints nothing.  Nowvty outputs description about the argument.  Fixed by Alex Bligh<amb@gxn.net>** buffer.c has some ugly bugs.  Due to the bug, vty interface hangswhen large output date exists.  This bug is fixed. Reported by AlexBligh <amb@gxn.net>.* Changes in ospfd** DR and BDR information is shown by `show ip ospf interface' command.* Changes in zebra-19990408 snapshot* Changes in bgpd** Old BGP-4+ specification (described in old draft) treatment bug isfixed.  It seems that mrtd uses this format as default.  So if youhave problem peering with mrtd and want to use old draft format pleaseuse version statement like this.neighbor PEER_ADDRESS remote-as ASNneighbor PEER_ADDRESS version bgp4+-draft-00** When AS path is epmty (routes generated by bgpd), SEGV is occurwhen announce the routes to eBGP peer.  Reported bykad@gibson.skif.net.** ip as-path access-list command is added.** neighbor PEER_ADDRESS filter-list AS_LIST [in|out] command is added.** neighbor PEER_ADDRESS timers holdtimer TIMER command is added.* Changes in all daemons** With KAME stack, terminal interface is now bind AF_INET socketinstead of AF_INET6 one.* Changes in zebra-19990403 snapshot* Changes in bgpd** When bgpd has 'router zebra', bgpd automatically select it's routerID as most highest interface's IP Address.** When AS path is empty (in case of iBGP), it doesn't include any ASsegment.  This change is for announcement to gated under iBGP.* Changes in ospfd** OSPF hello packet send/receive works.* Changes in ospf6d** Yasuhiro Ohara's ospf6d codes is imported.  It is under developmentand can't be compiled on any platform.* Changes in zebra-19990327 snapshot* Changes in bgpd** When BGP-4+ connection is done by IPv6 link-local address.  Onehave to specify interface index for the connection.  So I've addedinterface statement to the neighbor commmand.  Please specifyinterface name for getting interface index like below.  This statementonly works on GNU/Linux.  I'll support BSD ASAP.router bgp 7675 neighbor fe80::200:f8ff:fe01:5fd3 remote-as 2500 neighbor fe80::200:f8ff:fe01:5fd3 interface sit3** For disable BGP peering `shutdown' command is added.router bgp 7675 neighbor 10.0.0.1 shutdown** `description' command is added to neighbor statement.router bgp 7675 neighbor 10.0.0.1 description peering with Norway.** `show ip bgp regexp AS-REGEXP' works again.show ip bgp regexp AS7675will show routes which include AS7675.** When a route which is made from `network' statement is send toneighbor.  Set it's nexthop to self.  So 10.0.0.0/8 is announced tothe peer A with source address 192.168.1.1.  The routes nexthop is setto 192.168.1.1.* Changes in zebra** In zebra/rtread_sysctl.c, function rtm_read() may overrun allocatedbuffer when the address family is not supported and the length is big(i.e link address).  Reported Achim Patzner <ap@bnc.net>.* Changes in ospfd** Now ospfd receive OSPF packet.* Changes in zebra-19990319 snapshot* Changes in configuration and libraries** User can disable IPv6 feature and/or pthread feature by configure   option.  To disable IPv6:    configure --disable-ipv6  To disable pthread: configure --disable-pthread** User can disable specified daemon by configure option.  Don't make zebra:  configure --disable-zebra  Don't make bgpd:   configure --disable-bgpd  Don't make ripd:   configure --disable-ripd  Don't make ripngd: configure --disable-ripngd  Don't make ospfd:  configure --disable-ospfd  Don't make ospf6d: configure --disable-ospf6d** Sample configuration files are installed as 600 file flag.   Suggested by Jeroen Ruigrok/Asmodai <asmodai@wxs.nl>.** syslog logging feature is added by Peter Galbavy   <Peter.Galbavy@knowledge.com>** Inclusion of standard header files is reworked by Peter Galbavy   <Peter.Galbavy@knowledge.com>** Change description from GNU/Linux 2.1.X to GNU/Linux 2.2.X** If daemon function exists in standard C library use it.** To generate configure script we upgrade autoconf to 2.13.  Togenerate Makefile.in we upgrade automake to 1.4.** doc/texinfo.tex is added to distribution.** Update ports/pkg/DESCR description.** Update doc/zebra.texi.** logfile FILENAME statement deleted.  Instead of that please use logfile FILENAME.* Changes in zebra* Changes in bgpd** Communication between zebra and bgpd works now.  So if there is   `router zebra' line in bgpd.conf, selected route is installed   into kernel routing table.** Delete all routes which inserted by bgpd when bgpd dies.  If youwant to retain routes even bgpd dies please specify [-r|--retain]option to bgpd.** BGP announcement code is reworked.  Now bgpd announce selected   routes to other peer.** All output bgp packet is buffered.  It's written to the socket when   it gets ready.** Output route-map works now.  You can specify output route-map by:   neighbor IP_ADDR route-map ROUTE_MAP_NAME out** New route-map command added.   set ip nexthop IP_ADDR   set ipv6 nexthop global IP_ADDR** Fix bug about unlock of the route_node structure.** BGP-4+ support is added.  bgpd can listen and speak BGP-4+ packetspecified in RFC2283. You can view IPv6 bgp table by: `show ipv6 bgp'.** Meny packet overflow check is added.* Changes in ripd* Changes in ripngd* Changes in ospfd** ospfd work is started by Toshiaki Takada <takada@zebra.org>.  Nowseveral files are included in ospfd directory.** ospf6d codes are merged from Yasuhiro Ohara <yasu@sfc.wide.ad.jp>'sospfd work.  Now codes are located in ospf6d directory.Local variables:mode: outlineparagraph-separate: "[ 	]*$"end:

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -