<feed xmlns='http://www.w3.org/2005/Atom'>
<title>tteras/quagga/doc, branch zrm.patch</title>
<subtitle>tteras' quagga tree
</subtitle>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/user/tteras/quagga/'/>
<entry>
<title>[doc] Expand/cross-ref MD5 commands, tweak anchors to avoid added spacing</title>
<updated>2006-07-28T04:42:39+00:00</updated>
<author>
<name>Paul Jakma</name>
<email>paul.jakma@sun.com</email>
</author>
<published>2006-07-28T04:42:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/user/tteras/quagga/commit/?id=c3eab60e7753ed34d30c978f9d4034562bf1df55'/>
<id>c3eab60e7753ed34d30c978f9d4034562bf1df55</id>
<content type='text'>
2006-07-28 Paul Jakma &lt;paul.jakma@sun.com&gt;

	* main.texi: link-detect works on Solaris too.
	* ospfd.texi: Twiddle around with anchors a bit more.
	  Clarify how setting MD5 auth by area and by interface interact,
	  and add cross-references, as well as to the required
	  command for setting key material.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2006-07-28 Paul Jakma &lt;paul.jakma@sun.com&gt;

	* main.texi: link-detect works on Solaris too.
	* ospfd.texi: Twiddle around with anchors a bit more.
	  Clarify how setting MD5 auth by area and by interface interact,
	  and add cross-references, as well as to the required
	  command for setting key material.
</pre>
</div>
</content>
</entry>
<entry>
<title>[doc] minor tweaks, refine ospf redist,passive-inter, and abr-type help</title>
<updated>2006-07-27T23:30:16+00:00</updated>
<author>
<name>Paul Jakma</name>
<email>paul.jakma@sun.com</email>
</author>
<published>2006-07-27T23:30:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/user/tteras/quagga/commit/?id=f912cb4fb0cbf92bf97ea6830c74306551963b2b'/>
<id>f912cb4fb0cbf92bf97ea6830c74306551963b2b</id>
<content type='text'>
2006-07-27 Paul Jakma &lt;paul.jakma@sun.com&gt;

	* quagga.texi: Remove unused index definitions
	  Add an Index node - for the concept index.
	* routeserver.texi: Set exampleindex to 0, so the example configs
	  with long IPv6 addresses stand better chance of fitting.
	* overview.texi: 'Supported RFC' -&gt; 'Supported RFCs'
	  Remove paragraph indentation - texinfo does that.
	  Revise the supported OS list slightly.
	  Remove the IPv6 stack list, seems very dated and irrelevant.
	  Revise the 'How to get Quagga' section.
	* ospfd.texi: minor tweaks: add some anchors, fix some minor
	  format issues.
	  Revise the help for 'abr-type'.
	  Note that text authentication is unwise, recc'd MD5.
	  Add some extra text for redistribute and passive-interface,
	  about how latter can substitute for redist connected.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2006-07-27 Paul Jakma &lt;paul.jakma@sun.com&gt;

	* quagga.texi: Remove unused index definitions
	  Add an Index node - for the concept index.
	* routeserver.texi: Set exampleindex to 0, so the example configs
	  with long IPv6 addresses stand better chance of fitting.
	* overview.texi: 'Supported RFC' -&gt; 'Supported RFCs'
	  Remove paragraph indentation - texinfo does that.
	  Revise the supported OS list slightly.
	  Remove the IPv6 stack list, seems very dated and irrelevant.
	  Revise the 'How to get Quagga' section.
	* ospfd.texi: minor tweaks: add some anchors, fix some minor
	  format issues.
	  Revise the help for 'abr-type'.
	  Note that text authentication is unwise, recc'd MD5.
	  Add some extra text for redistribute and passive-interface,
	  about how latter can substitute for redist connected.
</pre>
</div>
</content>
</entry>
<entry>
<title>[vtysh] Never skip authentication, and add support for multiple -c commands</title>
<updated>2006-07-27T18:01:41+00:00</updated>
<author>
<name>Andrew J. Schorr</name>
<email>ajschorr@alumni.princeton.edu</email>
</author>
<published>2006-07-27T18:01:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/user/tteras/quagga/commit/?id=f366ad31ae6bf7e2fb7271cf8eab6dee4af3baf9'/>
<id>f366ad31ae6bf7e2fb7271cf8eab6dee4af3baf9</id>
<content type='text'>
2006-07-27 Andrew J. Schorr &lt;ajschorr@alumni.princeton.edu&gt;

	* vtysh.1: Document new options -d and -E, and note that now multiple
	  -c options may be supplied, with embedded linefeed now supported.
	  In BUGS section, remove warning about vtysh causing a daemon
	  to freeze, since this has been fixed.
	* vtysh_main.c: (usage) Add new -d and -E options.  And note that
	  -c can be used multiple times, possibly with embedded linefeeds.
	  (longopts) Add new -d and -E options.
	  (main) Add new -d and -E options, and create a linked list to
	  support multiple -c options.  Do not call vtysh_connect_all until
	  after vtysh_read_config(config_default) and vtysh_auth have
	  succeeded.  This prevents the vtysh.conf file from configuring
	  any daemons, and it ensures that authentication has been passed
	  before we send any commands to any daemons.  Call vtysh_connect_all
	  with any daemon name supplied with -d.  If it is unable to connect
	  to any daemons, issue an error message and exit immediately.
	  When used in -c mode, call vtysh_execute("enable") before
	  executing the commands in order to match interactive behavior.
	  And detect embedded linefeed chars in -c commands and break them up
	  appropriately.
	* vtysh.h: (vtysh_connect_all) Fix proto to reflect new
	  daemon_name argument, and that it now returns an integer -- the
	  number of daemons to which we were able to connect.
	* vtysh.c: (vtysh_connect_all) Add a new daemon_name argument.
	  If supplied, connect only to that daemon.  And return
	  the number of daemons to which we were able to connect.
	  (vtysh_prompt): Performance enhancement -- make struct utsname
	  static so we call uname to get the hostname only once.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2006-07-27 Andrew J. Schorr &lt;ajschorr@alumni.princeton.edu&gt;

	* vtysh.1: Document new options -d and -E, and note that now multiple
	  -c options may be supplied, with embedded linefeed now supported.
	  In BUGS section, remove warning about vtysh causing a daemon
	  to freeze, since this has been fixed.
	* vtysh_main.c: (usage) Add new -d and -E options.  And note that
	  -c can be used multiple times, possibly with embedded linefeeds.
	  (longopts) Add new -d and -E options.
	  (main) Add new -d and -E options, and create a linked list to
	  support multiple -c options.  Do not call vtysh_connect_all until
	  after vtysh_read_config(config_default) and vtysh_auth have
	  succeeded.  This prevents the vtysh.conf file from configuring
	  any daemons, and it ensures that authentication has been passed
	  before we send any commands to any daemons.  Call vtysh_connect_all
	  with any daemon name supplied with -d.  If it is unable to connect
	  to any daemons, issue an error message and exit immediately.
	  When used in -c mode, call vtysh_execute("enable") before
	  executing the commands in order to match interactive behavior.
	  And detect embedded linefeed chars in -c commands and break them up
	  appropriately.
	* vtysh.h: (vtysh_connect_all) Fix proto to reflect new
	  daemon_name argument, and that it now returns an integer -- the
	  number of daemons to which we were able to connect.
	* vtysh.c: (vtysh_connect_all) Add a new daemon_name argument.
	  If supplied, connect only to that daemon.  And return
	  the number of daemons to which we were able to connect.
	  (vtysh_prompt): Performance enhancement -- make struct utsname
	  static so we call uname to get the hostname only once.
</pre>
</div>
</content>
</entry>
<entry>
<title>[doc] remove the auto-generated quagga.info file from CVS</title>
<updated>2006-07-04T14:41:08+00:00</updated>
<author>
<name>Paul Jakma</name>
<email>paul.jakma@sun.com</email>
</author>
<published>2006-07-04T14:41:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/user/tteras/quagga/commit/?id=5c1960687024a4ab16d33b58be8c410a935c583b'/>
<id>5c1960687024a4ab16d33b58be8c410a935c583b</id>
<content type='text'>
2006-07-04 Paul Jakma &lt;paul.jakma@sun.com&gt;

	* quagga.info: remove auto-generated file. It will still be
	  present in dist tarballs, so shouldn't affect anyone but
	  direct users of CVS. Required texinfo version should be
	  widely available.
	* .cvsignore: ignore quagga.info
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2006-07-04 Paul Jakma &lt;paul.jakma@sun.com&gt;

	* quagga.info: remove auto-generated file. It will still be
	  present in dist tarballs, so shouldn't affect anyone but
	  direct users of CVS. Required texinfo version should be
	  widely available.
	* .cvsignore: ignore quagga.info
</pre>
</div>
</content>
</entry>
<entry>
<title>[ospfd] Implement new ospf router subcommand "log-adjacency-changes [detail]"</title>
<updated>2006-06-29T20:20:52+00:00</updated>
<author>
<name>Andrew J. Schorr</name>
<email>ajschorr@alumni.princeton.edu</email>
</author>
<published>2006-06-29T20:20:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/user/tteras/quagga/commit/?id=d7e60dd7a9f0213aaa82d256a78ab74887946e53'/>
<id>d7e60dd7a9f0213aaa82d256a78ab74887946e53</id>
<content type='text'>
2006-06-28 Erik Muller &lt;erikm@internap.com&gt;

	* ospfd.h: Define 2 new struct ospf config flags:
	  OSPF_LOG_ADJACENCY_CHANGES and OSPF_LOG_ADJACENCY_DETAIL
	* ospf_nsm.c (nsm_change_state): Log adjacency changes if
	  requested.
	* ospf_vty.c (ospf_log_adjacency_changes): New command function
	  to implement ospf subcommand "log-adjacency-changes [detail]".
	  (no_ospf_log_adjacency_changes) Turn off log-adjacency-changes.
	  (show_ip_ospf) Show whether adjacency changes are logged.
	  (ospf_config_write) Add "log-adjacency-changes [detail]" to config.
	  (ospf_vty_init) Add ospf_log_adjacency_changes and
	  no_ospf_log_adjacency_changes.
	* ospfd.texi: Document new ospf router subcommand
	  "log-adjacency-changes [detail]".
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2006-06-28 Erik Muller &lt;erikm@internap.com&gt;

	* ospfd.h: Define 2 new struct ospf config flags:
	  OSPF_LOG_ADJACENCY_CHANGES and OSPF_LOG_ADJACENCY_DETAIL
	* ospf_nsm.c (nsm_change_state): Log adjacency changes if
	  requested.
	* ospf_vty.c (ospf_log_adjacency_changes): New command function
	  to implement ospf subcommand "log-adjacency-changes [detail]".
	  (no_ospf_log_adjacency_changes) Turn off log-adjacency-changes.
	  (show_ip_ospf) Show whether adjacency changes are logged.
	  (ospf_config_write) Add "log-adjacency-changes [detail]" to config.
	  (ospf_vty_init) Add ospf_log_adjacency_changes and
	  no_ospf_log_adjacency_changes.
	* ospfd.texi: Document new ospf router subcommand
	  "log-adjacency-changes [detail]".
</pre>
</div>
</content>
</entry>
<entry>
<title>[doc] OSPF MD5 keyid documentation, fix texinfo warnings in bgpd.texi</title>
<updated>2006-06-26T12:55:58+00:00</updated>
<author>
<name>Paul Jakma</name>
<email>paul.jakma@sun.com</email>
</author>
<published>2006-06-26T12:55:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/user/tteras/quagga/commit/?id=466c96562c6e39596dc441c30420b335f83f01ea'/>
<id>466c96562c6e39596dc441c30420b335f83f01ea</id>
<content type='text'>
2006-06-26 Paul Jakma &lt;paul.jakma@sun.com&gt;

	* ospfd.texi: Document that MD5 keyid is part of the protocol.
	* bgpd.texi: shut texinfo warnings up by replacing brackets in
	  variable with angle brackets.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2006-06-26 Paul Jakma &lt;paul.jakma@sun.com&gt;

	* ospfd.texi: Document that MD5 keyid is part of the protocol.
	* bgpd.texi: shut texinfo warnings up by replacing brackets in
	  variable with angle brackets.
</pre>
</div>
</content>
</entry>
<entry>
<title>[doc] document neighbor ..... update-source</title>
<updated>2006-05-23T22:20:34+00:00</updated>
<author>
<name>Paul Jakma</name>
<email>paul.jakma@sun.com</email>
</author>
<published>2006-05-23T22:20:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/user/tteras/quagga/commit/?id=825cd49ead7a9222f93b37f65030f5ff325cd4ab'/>
<id>825cd49ead7a9222f93b37f65030f5ff325cd4ab</id>
<content type='text'>
2006-05-23 Paul Jakma &lt;paul.jakma@sun.com&gt;

	* bgpd.texi: Document the update-source command.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2006-05-23 Paul Jakma &lt;paul.jakma@sun.com&gt;

	* bgpd.texi: Document the update-source command.
</pre>
</div>
</content>
</entry>
<entry>
<title>[doc] Update auto-generated quagga.info</title>
<updated>2006-05-10T19:53:58+00:00</updated>
<author>
<name>Paul Jakma</name>
<email>paul.jakma@sun.com</email>
</author>
<published>2006-05-10T19:53:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/user/tteras/quagga/commit/?id=f371b1fb2bd0c615d44653d56a26df8f7245481d'/>
<id>f371b1fb2bd0c615d44653d56a26df8f7245481d</id>
<content type='text'>
2006-05-10 Paul Jakma &lt;paul.jakma@sun.com&gt;

	* quagga.info: update auto-built file.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2006-05-10 Paul Jakma &lt;paul.jakma@sun.com&gt;

	* quagga.info: update auto-built file.
</pre>
</div>
</content>
</entry>
<entry>
<title>[doc] bug #245, remove reference to non-existent log_mode argument</title>
<updated>2006-05-08T14:40:39+00:00</updated>
<author>
<name>Paul Jakma</name>
<email>paul.jakma@sun.com</email>
</author>
<published>2006-05-08T14:40:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/user/tteras/quagga/commit/?id=e3c5ffe169a999892e09f7e440466b622a510445'/>
<id>e3c5ffe169a999892e09f7e440466b622a510445</id>
<content type='text'>
2006-05-08 Paul Jakma &lt;paul.jakma@sun.com&gt;

	* main.texi: --log_mode does not exist, remove, bug #245.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2006-05-08 Paul Jakma &lt;paul.jakma@sun.com&gt;

	* main.texi: --log_mode does not exist, remove, bug #245.
</pre>
</div>
</content>
</entry>
<entry>
<title>[docs] Update ripd docs on version and authentication, see bugs #261,#262</title>
<updated>2006-05-04T07:37:37+00:00</updated>
<author>
<name>Paul Jakma</name>
<email>paul.jakma@sun.com</email>
</author>
<published>2006-05-04T07:37:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/user/tteras/quagga/commit/?id=5f03f141eced8bad4971fcc6ec7d7a538c227d8c'/>
<id>5f03f141eced8bad4971fcc6ec7d7a538c227d8c</id>
<content type='text'>
2006-05-04 Paul Jakma &lt;paul.jakma@sun.com&gt;

	* ripd.texi: Add Version Control as a distinct section.
	  Expand Version Control section with overview text,
	  touching on insecurity of RIPv1 and referencing
	  authentication section, cleanup text of various version
	  commands.
	  RIP Authentication: Add overview text, refer to RIPv1 version
	  control, which is required to completely secure RIP.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2006-05-04 Paul Jakma &lt;paul.jakma@sun.com&gt;

	* ripd.texi: Add Version Control as a distinct section.
	  Expand Version Control section with overview text,
	  touching on insecurity of RIPv1 and referencing
	  authentication section, cleanup text of various version
	  commands.
	  RIP Authentication: Add overview text, refer to RIPv1 version
	  control, which is required to completely secure RIP.
</pre>
</div>
</content>
</entry>
</feed>
