[BACK]Return to anoncvs.html CVS log [TXT][DIR] Up to [local] / www

Diff for /www/anoncvs.html between version 1.492 and 1.493

version 1.492, 2019/05/22 01:42:20 version 1.493, 2019/05/27 22:55:19
Line 1 
Line 1 
 <!-- DO NOT EDIT ANONCVS.HTML MANUALLY - IT IS GENERATED FROM TEMPLATES!  <!-- DO NOT EDIT ANONCVS.HTML MANUALLY - IT IS GENERATED FROM TEMPLATES!
      See comments in www/build/mirrors.dat for details -->       See comments in www/build/mirrors.dat for details -->
   
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">  <!doctype html>
 <html>  <html lang=en>
 <head>  <meta charset=utf-8>
   
 <title>OpenBSD Anonymous CVS</title>  <title>OpenBSD Anonymous CVS</title>
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">  
 <meta name="description" content="How to get OpenBSD updates via Internet using Anonymous CVS">  <meta name="description" content="How to get OpenBSD updates via Internet using Anonymous CVS">
 <meta name="copyright" content="This document copyright 1996-2018 by OpenBSD.">  
 <meta name="viewport" content="width=device-width, initial-scale=1">  <meta name="viewport" content="width=device-width, initial-scale=1">
 <link rel="stylesheet" type="text/css" href="openbsd.css">  <link rel="stylesheet" type="text/css" href="openbsd.css">
 <link rel="canonical" href="https://www.openbsd.org/anoncvs.html">  <link rel="canonical" href="https://www.openbsd.org/anoncvs.html">
 </head>  
   
 <h2 id=OpenBSD>  <h2 id=OpenBSD>
 <a href="index.html">  <a href="index.html">
 <i>Open</i><b>BSD</b></a>  <i>Open</i><b>BSD</b></a>
 Anonymous CVS  Anonymous CVS
 </h2>  </h2>
   
 <hr>  <hr>
 <p>  
   
   <p>
 Anonymous CVS is a method of keeping your local copy of the OpenBSD source  Anonymous CVS is a method of keeping your local copy of the OpenBSD source
 tree up to date with respect to changes made to current OpenBSD sources.  tree up to date with respect to changes made to current OpenBSD sources.
 In addition to following the bleeding edge of development, it is  In addition to following the bleeding edge of development, it is
Line 47 
Line 46 
   
 <h3 id="CVS">What is CVS?</h3>  <h3 id="CVS">What is CVS?</h3>
   
   <p>
 <a href="https://savannah.nongnu.org/projects/cvs">CVS</a> is the  <a href="https://savannah.nongnu.org/projects/cvs">CVS</a> is the
 source code control system used to manage the OpenBSD source tree.  source code control system used to manage the OpenBSD source tree.
 It implements a central repository for all officially released source code  It implements a central repository for all officially released source code
 and changes, while permitting developers to maintain local copies of the  and changes, while permitting developers to maintain local copies of the
 source code with their working changes.  source code with their working changes.
   
   <p>
 There are two levels of source tree access:  There are two levels of source tree access:
   
 <ul>  <ul>
Line 62 
Line 63 
   
 <h3 id="starting">Pre-loading the source tree</h3>  <h3 id="starting">Pre-loading the source tree</h3>
   
   <p>
 While you can download the entire source tree from an AnonCVS server, you can  While you can download the entire source tree from an AnonCVS server, you can
 save time and bandwidth by pre-loading your tree with the source tarballs.  save time and bandwidth by pre-loading your tree with the source tarballs.
 This is particularly true if you are running  This is particularly true if you are running
Line 72 
Line 74 
 The source files for download from the <a href="ftp.html">mirrors</a> are  The source files for download from the <a href="ftp.html">mirrors</a> are
 separated into two files to reduce the download time for those wishing to  separated into two files to reduce the download time for those wishing to
 work with only one part of the tree.  work with only one part of the tree.
 The kernel sources are in <tt>sys.tar.gz</tt> and the userland sources  The kernel sources are in <code>sys.tar.gz</code> and the userland sources
 are in <tt>src.tar.gz</tt>.  are in <code>src.tar.gz</code>.
   
 <p>  <p>
 The following commands assume you have followed  The following commands assume you have followed
Line 92 
Line 94 
   
 <h3 id="using">Using CVS to get and update your source trees</h3>  <h3 id="using">Using CVS to get and update your source trees</h3>
   
   <p>
 <a href="https://man.openbsd.org/cvs">cvs(1)</a> was designed to be a simple way  <a href="https://man.openbsd.org/cvs">cvs(1)</a> was designed to be a simple way
 to retrieve and update your sources.  to retrieve and update your sources.
 You must first decide whether you want to track -current or a  You must first decide whether you want to track -current or a
Line 105 
Line 108 
 <p>  <p>
 Choose the Anonymous CVS server you are going to use from the  Choose the Anonymous CVS server you are going to use from the
 <a href="#CVSROOT">list of servers</a> below, then you can start using cvs.  <a href="#CVSROOT">list of servers</a> below, then you can start using cvs.
 If you begin with <tt>src.tar.gz</tt> and <tt>sys.tar.gz</tt> as mentioned  If you begin with <code>src.tar.gz</code> and <code>sys.tar.gz</code> as mentioned
 above, you can skip the initial <tt>checkout</tt> and proceed to updating.  above, you can skip the initial <kbd>checkout</kbd> and proceed to updating.
   
   
 <p>  <p>
 <b>Warning:</b>  <b>Warning:</b>
 When using cvs, you should take care that your current directory is either the  When using cvs, you should take care that your current directory is either the
 root of the tree you are referencing or in a separate place such as  root of the tree you are referencing or in a separate place such as
 <tt>/tmp</tt>.  <code>/tmp</code>.
 Some commands, such as <tt>cvs checkout</tt>, can create an arbitrary sub-tree  Some commands, such as <kbd>cvs checkout</kbd>, can create an arbitrary sub-tree
 in the current directory, and a subsequent update will recursively flesh out  in the current directory, and a subsequent update will recursively flesh out
 this sub-tree.  this sub-tree.
   
 <h4 id="getting">Getting an initial tree</h4>  <h4 id="getting">Getting an initial tree</h4>
   
 The following commands assume that your user is member of the <tt>wsrc</tt>  <p>
   The following commands assume that your user is member of the <code>wsrc</code>
 group:  group:
   
 <p>  <p>
Line 131 
Line 134 
 $ <b>cvs -qd anoncvs@anoncvs.ca.openbsd.org:/cvs checkout -P src</b>  $ <b>cvs -qd anoncvs@anoncvs.ca.openbsd.org:/cvs checkout -P src</b>
 </pre>  </pre>
   
   <p>
 If you are following the 6.5 -stable branch:  If you are following the 6.5 -stable branch:
   
 <pre class="cmdbox">  <pre class="cmdbox">
Line 139 
Line 143 
 </pre>  </pre>
 <!-- DO NOT EDIT ANONCVS.HTML MANUALLY - IT IS GENERATED FROM TEMPLATES! -->  <!-- DO NOT EDIT ANONCVS.HTML MANUALLY - IT IS GENERATED FROM TEMPLATES! -->
   
   <p>
 Anonymous CVS uses passwordless SSH as a transport.  Anonymous CVS uses passwordless SSH as a transport.
 If this is the first time you have connected to an anoncvs server,  If this is the first time you have connected to an anoncvs server,
 you will be asked to confirm the SSH fingerprint to ensure that you  you will be asked to confirm the SSH fingerprint to ensure that you
Line 151 
Line 156 
 Are you sure you want to continue connecting (yes/no)?  Are you sure you want to continue connecting (yes/no)?
 </pre>  </pre>
   
   <p>
 In most cases, the list below includes the fingerprints for the server,  In most cases, the list below includes the fingerprints for the server,
 so you can compare it against the displayed fingerprint as additional  so you can compare it against the displayed fingerprint as additional
 verification that you are connecting to the correct server.  verification that you are connecting to the correct server.
Line 163 
Line 169 
   
 <h4 id="updating">Updating an existing tree</h4>  <h4 id="updating">Updating an existing tree</h4>
   
   <p>
 If you are following -current:  If you are following -current:
   
 <pre class="cmdbox">  <pre class="cmdbox">
Line 170 
Line 177 
 $ <b>cvs -q up -Pd -A</b>  $ <b>cvs -q up -Pd -A</b>
 </pre>  </pre>
   
   <p>
 If you are following the 6.5 -stable branch:  If you are following the 6.5 -stable branch:
   
 <pre class="cmdbox">  <pre class="cmdbox">
Line 177 
Line 185 
 $ <b>cvs -q up -Pd -rOPENBSD_6_5</b>  $ <b>cvs -q up -Pd -rOPENBSD_6_5</b>
 </pre>  </pre>
   
 Every time you run this, cvs(1) synchronizes your <tt>/usr/src</tt> tree.  <p>
   Every time you run this, cvs(1) synchronizes your <code>/usr/src</code> tree.
 It does not destroy any of your local changes; rather it attempts to merge  It does not destroy any of your local changes; rather it attempts to merge
 changes in.  changes in.
   
 <h4>Changing the server</h4>  <h4>Changing the server</h4>
   
   <p>
 If you are updating a source tree that you initially fetched  If you are updating a source tree that you initially fetched
 from a different server, or from a tar file, you <b>must</b>  from a different server, or from a tar file, you <b>must</b>
 add the <em>-d [cvsroot]</em> option to cvs.  add the <em>-d [cvsroot]</em> option to cvs.
Line 194 
Line 204 
   
 <h4>Getting the ports and xenocara trees</h4>  <h4>Getting the ports and xenocara trees</h4>
   
 Make sure your user is member of the <tt>wsrc</tt> group and that  <p>
 <tt>/usr/ports</tt> is group writable by <tt>wsrc</tt>.  Make sure your user is member of the <code>wsrc</code> group and that
 Replace <tt>ports</tt> with <tt>xenocara</tt> throughout to get or update a  <code>/usr/ports</code> is group writable by <code>wsrc</code>.
   Replace <kbd>ports</kbd> with <kbd>xenocara</kbd> throughout to get or update a
 xenocara tree.  xenocara tree.
   
 <ul><li>  <ul><li>
Line 209 
Line 220 
 $ <b>cvs -qd anoncvs@anoncvs.ca.openbsd.org:/cvs checkout -P ports</b>  $ <b>cvs -qd anoncvs@anoncvs.ca.openbsd.org:/cvs checkout -P ports</b>
 </pre>  </pre>
   
   <p>
 If you are following the 6.5 -stable branch:  If you are following the 6.5 -stable branch:
   
 <pre class="cmdbox">  <pre class="cmdbox">
Line 226 
Line 238 
 $ <b>cvs -q up -Pd -A</b>  $ <b>cvs -q up -Pd -A</b>
 </pre>  </pre>
   
   <p>
 If you are following the 6.5 -stable branch:  If you are following the 6.5 -stable branch:
   
 <pre class="cmdbox">  <pre class="cmdbox">
Line 237 
Line 250 
   
 <h4>Creating a diff</h4>  <h4>Creating a diff</h4>
   
 To make a diff of a locally patched module (here <tt>cd.c</tt>) to include with  <p>
   To make a diff of a locally patched module (here <code>cd.c</code>) to include with
 a bug report:  a bug report:
   
 <pre class="cmdbox">  <pre class="cmdbox">
Line 247 
Line 261 
   
 <h3 id="EXAMPLE">Example usage for cvs(1)</h3>  <h3 id="EXAMPLE">Example usage for cvs(1)</h3>
   
   <p>
 A sample use of an anoncvs server would be:  A sample use of an anoncvs server would be:
   
 <pre class="cmdbox">  <pre class="cmdbox">
Line 269 
Line 284 
 Protocols: ssh.<br>  Protocols: ssh.<br>
 Updated hourly.<br>  Updated hourly.<br>
 SSH fingerprints:<br>  SSH fingerprints:<br>
 (RSA) <tt>SHA256:pPcBY4E33vwreETbz5KJUIzZpWWzaZPhrpnLaFa7WuQ</tt>, <tt>MD5:19:4c:e2:a8:9e:42:b2:91:f3:d5:04:cf:b5:61:5e:ea</tt><br>  (RSA) <code>SHA256:pPcBY4E33vwreETbz5KJUIzZpWWzaZPhrpnLaFa7WuQ</code>, <code>MD5:19:4c:e2:a8:9e:42:b2:91:f3:d5:04:cf:b5:61:5e:ea</code><br>
 (DSA) <tt>SHA256:3rmKP03KsE0j1dLc91828CCJWUL58+PxBUmIlF7sPDs</tt>, <tt>MD5:80:ff:d2:46:70:51:7d:09:a5:71:83:bb:89:98:44:b1</tt><br>  (DSA) <code>SHA256:3rmKP03KsE0j1dLc91828CCJWUL58+PxBUmIlF7sPDs</code>, <code>MD5:80:ff:d2:46:70:51:7d:09:a5:71:83:bb:89:98:44:b1</code><br>
 (ECDSA) <tt>SHA256:kg2Zaqpd8ZuluPzlpFS9rEw0KR1UmxD9jSG6+2tr28A</tt>, <tt>MD5:fa:57:1c:55:7c:aa:d0:bc:4c:e2:05:3d:9b:bb:83:2d</tt><br>  (ECDSA) <code>SHA256:kg2Zaqpd8ZuluPzlpFS9rEw0KR1UmxD9jSG6+2tr28A</code>, <code>MD5:fa:57:1c:55:7c:aa:d0:bc:4c:e2:05:3d:9b:bb:83:2d</code><br>
 <p>  <p>
 <li><strong>CVSROOT=anoncvs@anoncvs1.ca.openbsd.org:/cvs</strong><br>  <li><strong>CVSROOT=anoncvs@anoncvs1.ca.openbsd.org:/cvs</strong><br>
 Host also known as <strong>anoncvs.ca.openbsd.org, openbsd.sunsite.ualberta.ca</strong>.<br>  Host also known as <strong>anoncvs.ca.openbsd.org, openbsd.sunsite.ualberta.ca</strong>.<br>
Line 279 
Line 294 
 Maintained by <a href="mailto:beck@openbsd.org">Bob Beck</a>.<br>  Maintained by <a href="mailto:beck@openbsd.org">Bob Beck</a>.<br>
 Protocols: ssh.<br>  Protocols: ssh.<br>
 SSH fingerprints:<br>  SSH fingerprints:<br>
 (RSA) <tt>SHA256:10SgQKcgCw02RSqBZGa8eGUR0ab+YkuhqFENhOoK1L4</tt>, <tt>MD5:cf:97:03:7b:0a:32:3b:d7:e2:31:05:39:9f:9d:03:dc</tt><br>  (RSA) <code>SHA256:10SgQKcgCw02RSqBZGa8eGUR0ab+YkuhqFENhOoK1L4</code>, <code>MD5:cf:97:03:7b:0a:32:3b:d7:e2:31:05:39:9f:9d:03:dc</code><br>
 (DSA) <tt>SHA256:OGA64Wd24z/INmc1lSD3wSitAumYaL9vyQa89nJrrh0</tt>, <tt>MD5:89:9c:4f:78:cf:7a:ee:99:82:7c:0b:7e:0b:a3:49:c8</tt><br>  (DSA) <code>SHA256:OGA64Wd24z/INmc1lSD3wSitAumYaL9vyQa89nJrrh0</code>, <code>MD5:89:9c:4f:78:cf:7a:ee:99:82:7c:0b:7e:0b:a3:49:c8</code><br>
 (ECDSA) <tt>SHA256:hVx+UscX/3uhv2nxPgp2zC/omvDIBSkv6iISCn19yqQ</tt>, <tt>MD5:28:58:44:09:8e:01:c2:79:33:03:39:7a:e7:6a:bd:a4</tt><br>  (ECDSA) <code>SHA256:hVx+UscX/3uhv2nxPgp2zC/omvDIBSkv6iISCn19yqQ</code>, <code>MD5:28:58:44:09:8e:01:c2:79:33:03:39:7a:e7:6a:bd:a4</code><br>
 (ED25519) <tt>SHA256:WDEcVZFXagh0OXHlHVhcct6VjFjFqaNZwAhM3GnVA/c</tt>, <tt>MD5:3c:a9:4d:1e:4c:55:9d:6d:03:06:26:8f:21:ce:65:a6</tt><br>  (ED25519) <code>SHA256:WDEcVZFXagh0OXHlHVhcct6VjFjFqaNZwAhM3GnVA/c</code>, <code>MD5:3c:a9:4d:1e:4c:55:9d:6d:03:06:26:8f:21:ce:65:a6</code><br>
 <p>  <p>
 <li><strong>CVSROOT=anoncvs@anoncvs2.ca.openbsd.org:/cvs</strong><br>  <li><strong>CVSROOT=anoncvs@anoncvs2.ca.openbsd.org:/cvs</strong><br>
 Location: Alberta, Canada.<br>  Location: Alberta, Canada.<br>
 Maintained by <a href="mailto:beck@openbsd.org">Bob Beck</a>.<br>  Maintained by <a href="mailto:beck@openbsd.org">Bob Beck</a>.<br>
 Protocols: ssh.<br>  Protocols: ssh.<br>
 SSH fingerprints:<br>  SSH fingerprints:<br>
 (RSA) <tt>SHA256:VfzLrOeqzIfWiNdJ0SpHvk3JU4a+VpNzwjxzZ7lWaNY</tt>, <tt>MD5:b8:2e:c6:86:de:23:66:05:cd:bf:45:0a:02:44:d0:df</tt><br>  (RSA) <code>SHA256:VfzLrOeqzIfWiNdJ0SpHvk3JU4a+VpNzwjxzZ7lWaNY</code>, <code>MD5:b8:2e:c6:86:de:23:66:05:cd:bf:45:0a:02:44:d0:df</code><br>
 (DSA) <tt>SHA256:ULyS+tDif5/dxMtzOsr1JFph3FSkeqSjVnRq1q7PHFU</tt>, <tt>MD5:7a:41:fc:ba:87:d7:f8:ba:98:af:c5:16:a0:d6:ff:49</tt><br>  (DSA) <code>SHA256:ULyS+tDif5/dxMtzOsr1JFph3FSkeqSjVnRq1q7PHFU</code>, <code>MD5:7a:41:fc:ba:87:d7:f8:ba:98:af:c5:16:a0:d6:ff:49</code><br>
 (ECDSA) <tt>SHA256:IQrHoNZPHmhnR1R3qMURVH3e83f95IZXdkNjFZCnKfw</tt>, <tt>MD5:72:b8:63:ac:91:1f:2b:f6:b2:7a:e5:20:2b:25:3f:ae</tt><br>  (ECDSA) <code>SHA256:IQrHoNZPHmhnR1R3qMURVH3e83f95IZXdkNjFZCnKfw</code>, <code>MD5:72:b8:63:ac:91:1f:2b:f6:b2:7a:e5:20:2b:25:3f:ae</code><br>
 (ED25519) <tt>SHA256:7grIp6jKgas/PLrVqaSwLh60k626+iaGw/BBFSfr7ck</tt>, <tt>MD5:64:a5:bb:29:7a:8b:97:fa:49:40:87:f2:7f:74:8c:0f</tt><br>  (ED25519) <code>SHA256:7grIp6jKgas/PLrVqaSwLh60k626+iaGw/BBFSfr7ck</code>, <code>MD5:64:a5:bb:29:7a:8b:97:fa:49:40:87:f2:7f:74:8c:0f</code><br>
 <p>  <p>
 <li><strong>CVSROOT=anoncvs@anoncvs.comstyle.com:/cvs</strong><br>  <li><strong>CVSROOT=anoncvs@anoncvs.comstyle.com:/cvs</strong><br>
 Location: Toronto, Canada.<br>  Location: Toronto, Canada.<br>
Line 300 
Line 315 
 Protocols: ssh, ssh port 2022.<br>  Protocols: ssh, ssh port 2022.<br>
 Updated hourly.<br>  Updated hourly.<br>
 SSH fingerprints:<br>  SSH fingerprints:<br>
 (RSA) <tt>SHA256:vYSNKOoCHReBzmdJy3SiULg7YyEZVoib3X3jGJShezA</tt>, <tt>MD5:43:30:9a:c6:c4:19:80:ad:7d:58:3e:7a:a0:39:57:53</tt><br>  (RSA) <code>SHA256:vYSNKOoCHReBzmdJy3SiULg7YyEZVoib3X3jGJShezA</code>, <code>MD5:43:30:9a:c6:c4:19:80:ad:7d:58:3e:7a:a0:39:57:53</code><br>
 (DSA) <tt>SHA256:e5aEzE3eGY5QLU1TXuFc+iD+hdRr46rM5dtBN9oH83Y</tt>, <tt>MD5:66:a1:f9:47:26:d9:15:3c:62:2b:b5:e8:0d:89:4a:6f</tt><br>  (DSA) <code>SHA256:e5aEzE3eGY5QLU1TXuFc+iD+hdRr46rM5dtBN9oH83Y</code>, <code>MD5:66:a1:f9:47:26:d9:15:3c:62:2b:b5:e8:0d:89:4a:6f</code><br>
 (ECDSA) <tt>SHA256:W2WEQDka4xicJzeQY0Nm0iCv3h2xZLzfp+TT1UvtBTw</tt>, <tt>MD5:62:28:13:ea:cd:ba:68:e6:e9:82:94:ac:10:7f:80:d5</tt><br>  (ECDSA) <code>SHA256:W2WEQDka4xicJzeQY0Nm0iCv3h2xZLzfp+TT1UvtBTw</code>, <code>MD5:62:28:13:ea:cd:ba:68:e6:e9:82:94:ac:10:7f:80:d5</code><br>
 (ED25519) <tt>SHA256:cqNaOU0KSmJ/S7jrV4UbZ6WkkyXWZ07rhWK8yrRZUV0</tt>, <tt>MD5:65:34:d5:69:47:38:58:01:47:5d:bd:09:9d:69:be:6b</tt><br>  (ED25519) <code>SHA256:cqNaOU0KSmJ/S7jrV4UbZ6WkkyXWZ07rhWK8yrRZUV0</code>, <code>MD5:65:34:d5:69:47:38:58:01:47:5d:bd:09:9d:69:be:6b</code><br>
 <p>  <p>
 <li><strong>CVSROOT=anoncvs@obsdacvs.cs.toronto.edu:/cvs</strong><br>  <li><strong>CVSROOT=anoncvs@obsdacvs.cs.toronto.edu:/cvs</strong><br>
 Location: University of Toronto, Toronto, ON, Canada.<br>  Location: University of Toronto, Toronto, ON, Canada.<br>
Line 311 
Line 326 
 Protocols: ssh.<br>  Protocols: ssh.<br>
 Updated every 2 hours.<br>  Updated every 2 hours.<br>
 SSH fingerprints:<br>  SSH fingerprints:<br>
 (RSA) <tt>SHA256:BosSX+gUL/17cUdppQlmXht1S5GGHrHNrL6+U3hyG+o</tt>, <tt>MD5:bc:59:dc:6f:52:c9:80:2d:63:96:cd:34:e2:5a:fc:fd</tt><br>  (RSA) <code>SHA256:BosSX+gUL/17cUdppQlmXht1S5GGHrHNrL6+U3hyG+o</code>, <code>MD5:bc:59:dc:6f:52:c9:80:2d:63:96:cd:34:e2:5a:fc:fd</code><br>
 (DSA) <tt>SHA256:/wH3qgWOjC1iXh8PxWFl3Mv+IdgXHoPdLmFxJ0vAGgo</tt>, <tt>MD5:46:df:59:8c:e9:e3:5d:2c:1d:e3:d8:9f:61:8a:3c:ab</tt><br>  (DSA) <code>SHA256:/wH3qgWOjC1iXh8PxWFl3Mv+IdgXHoPdLmFxJ0vAGgo</code>, <code>MD5:46:df:59:8c:e9:e3:5d:2c:1d:e3:d8:9f:61:8a:3c:ab</code><br>
 (ECDSA) <tt>SHA256:4I5R4/tGayGG0KDEsj6CY1eCqt2sbcYtA3nqnhUaD04</tt>, <tt>MD5:9b:39:30:30:63:01:fa:ec:66:4f:63:3d:9a:7e:76:38</tt><br>  (ECDSA) <code>SHA256:4I5R4/tGayGG0KDEsj6CY1eCqt2sbcYtA3nqnhUaD04</code>, <code>MD5:9b:39:30:30:63:01:fa:ec:66:4f:63:3d:9a:7e:76:38</code><br>
 (ED25519) <tt>SHA256:AqblfWV4KT2ptlpV3mq3gb4jNPzgYtjDvlBBcaeohxQ</tt>, <tt>MD5:e2:38:fc:a8:a0:17:ad:7b:03:8a:49:b7:94:40:a0:d5</tt><br>  (ED25519) <code>SHA256:AqblfWV4KT2ptlpV3mq3gb4jNPzgYtjDvlBBcaeohxQ</code>, <code>MD5:e2:38:fc:a8:a0:17:ad:7b:03:8a:49:b7:94:40:a0:d5</code><br>
 <p>  <p>
 <li><strong>CVSROOT=anoncvs@anoncvs.fr.openbsd.org:/cvs</strong><br>  <li><strong>CVSROOT=anoncvs@anoncvs.fr.openbsd.org:/cvs</strong><br>
 Location: Paris, France.<br>  Location: Paris, France.<br>
Line 322 
Line 337 
 Protocols: ssh.<br>  Protocols: ssh.<br>
 Updated every 2 hours from anoncvs1.ca.openbsd.org.<br>  Updated every 2 hours from anoncvs1.ca.openbsd.org.<br>
 SSH fingerprints:<br>  SSH fingerprints:<br>
 (RSA) <tt>SHA256:d3o82eY/kIfUfmhVpwFu7Do1I7+Wol/tvWmm6Ye9HZ4</tt>, <tt>MD5:af:53:c8:ea:98:20:a2:81:e1:e3:c9:cb:06:d3:56:d7</tt><br>  (RSA) <code>SHA256:d3o82eY/kIfUfmhVpwFu7Do1I7+Wol/tvWmm6Ye9HZ4</code>, <code>MD5:af:53:c8:ea:98:20:a2:81:e1:e3:c9:cb:06:d3:56:d7</code><br>
 (DSA) <tt>SHA256:8/EzaCXcEyuWAS2sOu5KNrozmDS2Xm60E4kd0lUwedg</tt>, <tt>MD5:5e:3a:78:5f:ef:0a:53:b4:b9:2c:91:84:4f:3e:52:dd</tt><br>  (DSA) <code>SHA256:8/EzaCXcEyuWAS2sOu5KNrozmDS2Xm60E4kd0lUwedg</code>, <code>MD5:5e:3a:78:5f:ef:0a:53:b4:b9:2c:91:84:4f:3e:52:dd</code><br>
 (ECDSA) <tt>SHA256:WXN4m8NHd4vcTqxmzLMMVenSh6gp8060nv39JIiCSss</tt>, <tt>MD5:61:e1:2b:97:a4:65:4d:70:cd:23:3b:83:04:f1:2e:87</tt><br>  (ECDSA) <code>SHA256:WXN4m8NHd4vcTqxmzLMMVenSh6gp8060nv39JIiCSss</code>, <code>MD5:61:e1:2b:97:a4:65:4d:70:cd:23:3b:83:04:f1:2e:87</code><br>
 (ED25519) <tt>SHA256:STeC5WGChnZjIi5Rb+XTAQSbKXQJ+B9wxhaacYNff7k</tt>, <tt>MD5:10:80:7f:b7:76:03:7a:51:10:23:fb:1e:05:5b:93:74</tt><br>  (ED25519) <code>SHA256:STeC5WGChnZjIi5Rb+XTAQSbKXQJ+B9wxhaacYNff7k</code>, <code>MD5:10:80:7f:b7:76:03:7a:51:10:23:fb:1e:05:5b:93:74</code><br>
 <p>  <p>
 <li><strong>CVSROOT=anoncvs@files.venture37.com:/cvs</strong><br>  <li><strong>CVSROOT=anoncvs@files.venture37.com:/cvs</strong><br>
 Location: Paris, France.<br>  Location: Paris, France.<br>
Line 333 
Line 348 
 Protocols: ssh, ssh port 2022.<br>  Protocols: ssh, ssh port 2022.<br>
 Updated every 2 hours from anoncvs.spacehopper.org.<br>  Updated every 2 hours from anoncvs.spacehopper.org.<br>
 SSH fingerprints:<br>  SSH fingerprints:<br>
 (RSA) <tt>SHA256:3pG6tZMZkMSeCUrDUdp1qQ9dC5I0A+Pj1A0cXkLVoP4</tt>, <tt>MD5:b9:ff:83:1f:f4:d0:3c:20:55:3a:24:6c:5e:22:ed:ad</tt><br>  (RSA) <code>SHA256:3pG6tZMZkMSeCUrDUdp1qQ9dC5I0A+Pj1A0cXkLVoP4</code>, <code>MD5:b9:ff:83:1f:f4:d0:3c:20:55:3a:24:6c:5e:22:ed:ad</code><br>
 (DSA) <tt>SHA256:dIQIvW8zh0ZtLtLp9CiMkocAtvJ6umfd1Sw10/v96Jc</tt>, <tt>MD5:02:ae:f4:0f:fb:28:10:9d:58:8c:af:73:69:ec:0b:13</tt><br>  (DSA) <code>SHA256:dIQIvW8zh0ZtLtLp9CiMkocAtvJ6umfd1Sw10/v96Jc</code>, <code>MD5:02:ae:f4:0f:fb:28:10:9d:58:8c:af:73:69:ec:0b:13</code><br>
 (ECDSA) <tt>SHA256:2InpK4FJMYTnOPgvSbQtyEIcbTNtZKsPsaa3fBBxUhY</tt>, <tt>MD5:f4:8e:83:ce:fd:a7:8d:7c:07:39:74:83:8e:6a:7c:1e</tt><br>  (ECDSA) <code>SHA256:2InpK4FJMYTnOPgvSbQtyEIcbTNtZKsPsaa3fBBxUhY</code>, <code>MD5:f4:8e:83:ce:fd:a7:8d:7c:07:39:74:83:8e:6a:7c:1e</code><br>
 (ED25519) <tt>SHA256:IL+TcuRUBiaI+EkdjLDoLkwqOEZdt8bccgVINDRMHlM</tt>, <tt>MD5:91:42:2d:be:73:62:74:48:f3:15:70:42:f2:bd:d5:93</tt><br>  (ED25519) <code>SHA256:IL+TcuRUBiaI+EkdjLDoLkwqOEZdt8bccgVINDRMHlM</code>, <code>MD5:91:42:2d:be:73:62:74:48:f3:15:70:42:f2:bd:d5:93</code><br>
 <p>  <p>
 <li><strong>CVSROOT=anoncvs@mirror.osn.de:/cvs</strong><br>  <li><strong>CVSROOT=anoncvs@mirror.osn.de:/cvs</strong><br>
 Location: N&uuml;rnberg, Germany.<br>  Location: N&uuml;rnberg, Germany.<br>
Line 344 
Line 359 
 Protocols: ssh.<br>  Protocols: ssh.<br>
 Updated every 3 hours.<br>  Updated every 3 hours.<br>
 SSH fingerprints:<br>  SSH fingerprints:<br>
 (RSA) <tt>SHA256:fQGY+UhLdbB3oDI4frFtSKF2BjQIkSY0lnSA6lVv8+o</tt>, <tt>MD5:f2:73:d2:f6:e3:01:ef:ca:3b:e7:6c:80:b6:bd:bb:84</tt><br>  (RSA) <code>SHA256:fQGY+UhLdbB3oDI4frFtSKF2BjQIkSY0lnSA6lVv8+o</code>, <code>MD5:f2:73:d2:f6:e3:01:ef:ca:3b:e7:6c:80:b6:bd:bb:84</code><br>
 (DSA) <tt>SHA256:1IELSVD8Tf5HYyZNGJAKyyKd6BmihpwG5wGE96W+rV0</tt>, <tt>MD5:fb:33:05:62:96:20:cf:88:7e:10:cb:8d:91:72:57:32</tt><br>  (DSA) <code>SHA256:1IELSVD8Tf5HYyZNGJAKyyKd6BmihpwG5wGE96W+rV0</code>, <code>MD5:fb:33:05:62:96:20:cf:88:7e:10:cb:8d:91:72:57:32</code><br>
 (ECDSA) <tt>SHA256:plj+1CPTaKi0AIId/aDMCGgZZnkxc1ow+ffBNMvYW4A</tt>, <tt>MD5:57:60:16:f7:99:b8:72:3e:27:d4:13:a2:5f:4f:72:ff</tt><br>  (ECDSA) <code>SHA256:plj+1CPTaKi0AIId/aDMCGgZZnkxc1ow+ffBNMvYW4A</code>, <code>MD5:57:60:16:f7:99:b8:72:3e:27:d4:13:a2:5f:4f:72:ff</code><br>
 (ED25519) <tt>SHA256:np+DK8xlo9A4YnYXO/22GBV8iyuL13r3g5I0/N1Mf8g</tt>, <tt>MD5:c2:a5:11:3a:5c:31:b0:3a:85:27:01:9b:a8:30:e4:e7</tt><br>  (ED25519) <code>SHA256:np+DK8xlo9A4YnYXO/22GBV8iyuL13r3g5I0/N1Mf8g</code>, <code>MD5:c2:a5:11:3a:5c:31:b0:3a:85:27:01:9b:a8:30:e4:e7</code><br>
 <p>  <p>
 <li><strong>CVSROOT=anoncvs@ftp.hostserver.de:/cvs</strong><br>  <li><strong>CVSROOT=anoncvs@ftp.hostserver.de:/cvs</strong><br>
 Location: Frankfurt, Germany.<br>  Location: Frankfurt, Germany.<br>
Line 355 
Line 370 
 Protocols: ssh.<br>  Protocols: ssh.<br>
 Updated hourly from anoncvs1.ca.openbsd.org.<br>  Updated hourly from anoncvs1.ca.openbsd.org.<br>
 SSH fingerprints:<br>  SSH fingerprints:<br>
 (RSA) <tt>SHA256:XrjDaKqJ6J02iSQ/eoiqII0LxJX9D/41eeC6pSQAJXs</tt>, <tt>MD5:ab:02:37:76:d9:f8:5b:3a:10:54:dc:8b:47:ef:c0:73</tt><br>  (RSA) <code>SHA256:XrjDaKqJ6J02iSQ/eoiqII0LxJX9D/41eeC6pSQAJXs</code>, <code>MD5:ab:02:37:76:d9:f8:5b:3a:10:54:dc:8b:47:ef:c0:73</code><br>
 (DSA) <tt>SHA256:GYBYarN5A31LlnSRmxoy7f8upzkTZN8x/MPsB3wElLk</tt>, <tt>MD5:d1:0f:17:ee:06:f3:a4:ed:79:a2:eb:83:40:1b:7b:63</tt><br>  (DSA) <code>SHA256:GYBYarN5A31LlnSRmxoy7f8upzkTZN8x/MPsB3wElLk</code>, <code>MD5:d1:0f:17:ee:06:f3:a4:ed:79:a2:eb:83:40:1b:7b:63</code><br>
 (ECDSA) <tt>SHA256:v6G11hMFfS2+zPh44hhZcpUqDEppyvGQe0vzmrtIHA8</tt>, <tt>MD5:fc:6d:06:54:ba:ed:7e:c2:d6:69:fb:c7:95:58:7b:c4</tt><br>  (ECDSA) <code>SHA256:v6G11hMFfS2+zPh44hhZcpUqDEppyvGQe0vzmrtIHA8</code>, <code>MD5:fc:6d:06:54:ba:ed:7e:c2:d6:69:fb:c7:95:58:7b:c4</code><br>
 (ED25519) <tt>SHA256:KeG1InAfAnQKqpCewmXw/Egb+4UZZuIMGdlYVG+uxNg</tt>, <tt>MD5:1d:16:e2:2a:f2:85:28:b6:33:43:cb:de:c5:ad:fb:e9</tt><br>  (ED25519) <code>SHA256:KeG1InAfAnQKqpCewmXw/Egb+4UZZuIMGdlYVG+uxNg</code>, <code>MD5:1d:16:e2:2a:f2:85:28:b6:33:43:cb:de:c5:ad:fb:e9</code><br>
 <p>  <p>
 <li><strong>CVSROOT=anoncvs@anoncvs.jp.openbsd.org:/cvs</strong><br>  <li><strong>CVSROOT=anoncvs@anoncvs.jp.openbsd.org:/cvs</strong><br>
 Host also known as <strong>kankoromochi.econ.nagasaki-u.ac.jp</strong>.<br>  Host also known as <strong>kankoromochi.econ.nagasaki-u.ac.jp</strong>.<br>
Line 367 
Line 382 
 Protocols: ssh, pserver.<br>  Protocols: ssh, pserver.<br>
 Updated every 3 hours.<br>  Updated every 3 hours.<br>
 SSH fingerprints:<br>  SSH fingerprints:<br>
 (RSA) <tt>MD5:80:6d:6b:9e:2b:5e:a3:fa:cc:bb:f7:fe:46:9f:ce:be</tt><br>  (RSA) <code>MD5:80:6d:6b:9e:2b:5e:a3:fa:cc:bb:f7:fe:46:9f:ce:be</code><br>
 (DSA) <tt>MD5:f3:8e:b4:d0:00:26:f1:1b:5b:98:50:ad:d4:94:23:98</tt><br>  (DSA) <code>MD5:f3:8e:b4:d0:00:26:f1:1b:5b:98:50:ad:d4:94:23:98</code><br>
 (ECDSA) <tt>MD5:dc:8b:b9:2f:4d:20:73:62:a9:3b:f8:ce:09:10:dc:b8</tt><br>  (ECDSA) <code>MD5:dc:8b:b9:2f:4d:20:73:62:a9:3b:f8:ce:09:10:dc:b8</code><br>
 (ED25519) <tt>MD5:af:b8:2d:3c:0a:a0:89:15:cb:8f:c0:ad:e7:95:08:df</tt><br>  (ED25519) <code>MD5:af:b8:2d:3c:0a:a0:89:15:cb:8f:c0:ad:e7:95:08:df</code><br>
 <p>  <p>
 <li><strong>CVSROOT=anoncvs@mirror.litnet.lt:/cvs</strong><br>  <li><strong>CVSROOT=anoncvs@mirror.litnet.lt:/cvs</strong><br>
 Location: Kaunas, Lithuania.<br>  Location: Kaunas, Lithuania.<br>
Line 378 
Line 393 
 Protocols: ssh.<br>  Protocols: ssh.<br>
 Updated every 2 hours from anoncvs.eu.openbsd.org.<br>  Updated every 2 hours from anoncvs.eu.openbsd.org.<br>
 SSH fingerprints:<br>  SSH fingerprints:<br>
 (RSA) <tt>SHA256:RmbGnT7IGLvVd9tm5mAx7rz6VntYlwqW6qyT2QuritY</tt>, <tt>MD5:6f:bb:06:80:80:f3:90:1f:bf:c4:f8:d3:b1:46:40:8c</tt><br>  (RSA) <code>SHA256:RmbGnT7IGLvVd9tm5mAx7rz6VntYlwqW6qyT2QuritY</code>, <code>MD5:6f:bb:06:80:80:f3:90:1f:bf:c4:f8:d3:b1:46:40:8c</code><br>
 (DSA) <tt>SHA256:vjqwcohyvLttulWTBWNw42XUOdrr+ogV/iTgpWOFzOU</tt>, <tt>MD5:86:a9:b4:85:26:79:c8:34:12:db:02:15:7e:45:79:bd</tt><br>  (DSA) <code>SHA256:vjqwcohyvLttulWTBWNw42XUOdrr+ogV/iTgpWOFzOU</code>, <code>MD5:86:a9:b4:85:26:79:c8:34:12:db:02:15:7e:45:79:bd</code><br>
 (ECDSA) <tt>SHA256:hj1btBB8gqLdm3EumX3T3LaUZkY9fm1RFvw9DVS2oi8</tt>, <tt>MD5:37:36:56:d9:8a:4a:b2:4a:e7:0e:10:bf:83:5d:e1:84</tt><br>  (ECDSA) <code>SHA256:hj1btBB8gqLdm3EumX3T3LaUZkY9fm1RFvw9DVS2oi8</code>, <code>MD5:37:36:56:d9:8a:4a:b2:4a:e7:0e:10:bf:83:5d:e1:84</code><br>
 (ED25519) <tt>SHA256:EnczVm1Q8+lE+Zmue3jAPh/pA6BJhEDwL+HNMfedpXI</tt>, <tt>MD5:01:d5:99:5b:ee:04:9d:a6:09:61:02:80:19:6a:13:7b</tt><br>  (ED25519) <code>SHA256:EnczVm1Q8+lE+Zmue3jAPh/pA6BJhEDwL+HNMfedpXI</code>, <code>MD5:01:d5:99:5b:ee:04:9d:a6:09:61:02:80:19:6a:13:7b</code><br>
 <p>  <p>
 <li><strong>CVSROOT=anoncvs@anoncvs.obsd.si:/cvs</strong><br>  <li><strong>CVSROOT=anoncvs@anoncvs.obsd.si:/cvs</strong><br>
 Location: Ljubljana, Slovenia.<br>  Location: Ljubljana, Slovenia.<br>
Line 389 
Line 404 
 Protocols: ssh.<br>  Protocols: ssh.<br>
 Updated every 2 hours from anoncvs.spacehopper.org.<br>  Updated every 2 hours from anoncvs.spacehopper.org.<br>
 SSH fingerprints:<br>  SSH fingerprints:<br>
 (RSA) <tt>MD5:5b:98:6c:06:a4:1f:83:da:03:aa:ef:e4:f5:f0:99:76</tt><br>  (RSA) <code>MD5:5b:98:6c:06:a4:1f:83:da:03:aa:ef:e4:f5:f0:99:76</code><br>
 (DSA) <tt>MD5:2d:57:e2:9c:fd:9d:09:1c:5e:ff:3f:5d:59:78:93:cc</tt><br>  (DSA) <code>MD5:2d:57:e2:9c:fd:9d:09:1c:5e:ff:3f:5d:59:78:93:cc</code><br>
 (ECDSA) <tt>MD5:3f:50:bd:1e:e5:8a:3d:a4:16:22:1c:2d:cf:8b:22:ed</tt><br>  (ECDSA) <code>MD5:3f:50:bd:1e:e5:8a:3d:a4:16:22:1c:2d:cf:8b:22:ed</code><br>
 <p>  <p>
 <li><strong>CVSROOT=anoncvs@anoncvs.eu.openbsd.org:/cvs</strong><br>  <li><strong>CVSROOT=anoncvs@anoncvs.eu.openbsd.org:/cvs</strong><br>
 Location: Stockholm University, Stockholm, Sweden.<br>  Location: Stockholm University, Stockholm, Sweden.<br>
Line 399 
Line 414 
 Protocols: ssh.<br>  Protocols: ssh.<br>
 Updated every 2 hours.<br>  Updated every 2 hours.<br>
 SSH fingerprints:<br>  SSH fingerprints:<br>
 (RSA) <tt>SHA256:4gXNO1FcLP8Swdm759TMDI/73hCCO5kQr3vqi9o/r64</tt>, <tt>MD5:98:e6:80:5d:95:bb:e2:15:5e:19:4d:a3:e4:d0:bc:2c</tt><br>  (RSA) <code>SHA256:4gXNO1FcLP8Swdm759TMDI/73hCCO5kQr3vqi9o/r64</code>, <code>MD5:98:e6:80:5d:95:bb:e2:15:5e:19:4d:a3:e4:d0:bc:2c</code><br>
 (DSA) <tt>SHA256:blisb6OUx83i2AEo44Y9eoAVRgRHsLtiWeZF05rsmHM</tt>, <tt>MD5:55:cd:a7:a9:e3:bc:a5:5c:81:5e:98:c0:60:a2:67:52</tt><br>  (DSA) <code>SHA256:blisb6OUx83i2AEo44Y9eoAVRgRHsLtiWeZF05rsmHM</code>, <code>MD5:55:cd:a7:a9:e3:bc:a5:5c:81:5e:98:c0:60:a2:67:52</code><br>
 (ECDSA) <tt>SHA256:uz1m+x471U/+3dGsDgvYI/o+pmobQhuILMcr/fZcr6E</tt>, <tt>MD5:a4:c1:8f:64:55:87:35:d6:82:8b:ba:cb:48:3f:be:96</tt><br>  (ECDSA) <code>SHA256:uz1m+x471U/+3dGsDgvYI/o+pmobQhuILMcr/fZcr6E</code>, <code>MD5:a4:c1:8f:64:55:87:35:d6:82:8b:ba:cb:48:3f:be:96</code><br>
 (ED25519) <tt>SHA256:txtWp19E25H1oSarwXzYTDDr46jsVeolIprB02OOfM8</tt>, <tt>MD5:05:f8:b4:39:ae:5b:55:1d:a9:9c:d4:82:2b:ec:fb:2f</tt><br>  (ED25519) <code>SHA256:txtWp19E25H1oSarwXzYTDDr46jsVeolIprB02OOfM8</code>, <code>MD5:05:f8:b4:39:ae:5b:55:1d:a9:9c:d4:82:2b:ec:fb:2f</code><br>
 <p>  <p>
 <li><strong>CVSROOT=anoncvs@anoncvs.spacehopper.org:/cvs</strong><br>  <li><strong>CVSROOT=anoncvs@anoncvs.spacehopper.org:/cvs</strong><br>
 Location: Plymouth, United Kingdom.<br>  Location: Plymouth, United Kingdom.<br>
Line 410 
Line 425 
 Protocols: ssh, ssh port 2022, ssh port 443.<br>  Protocols: ssh, ssh port 2022, ssh port 443.<br>
 Updated hourly from anoncvs.ca.openbsd.org.<br>  Updated hourly from anoncvs.ca.openbsd.org.<br>
 SSH fingerprints:<br>  SSH fingerprints:<br>
 (RSA) <tt>SHA256:orTIOu6IKP7Ndz317tyCaz8LJnJWz4jmzSuG+FK7jwM</tt>, <tt>MD5:e2:19:16:3f:a3:2e:eb:94:14:cd:5c:92:9a:6c:9a:8f</tt><br>  (RSA) <code>SHA256:orTIOu6IKP7Ndz317tyCaz8LJnJWz4jmzSuG+FK7jwM</code>, <code>MD5:e2:19:16:3f:a3:2e:eb:94:14:cd:5c:92:9a:6c:9a:8f</code><br>
 (DSA) <tt>SHA256:0t4AQyR4Ci5hICZwPQ+l4b5l9evisj+wtry70ZWivZM</tt>, <tt>MD5:ff:47:13:22:83:d1:6e:df:a0:f0:4f:18:31:cb:f2:28</tt><br>  (DSA) <code>SHA256:0t4AQyR4Ci5hICZwPQ+l4b5l9evisj+wtry70ZWivZM</code>, <code>MD5:ff:47:13:22:83:d1:6e:df:a0:f0:4f:18:31:cb:f2:28</code><br>
 (ECDSA) <tt>SHA256:p+VCx2KynGtiFFaaiF010SIQu6gJgmJb//yokW2sGBE</tt>, <tt>MD5:a5:b0:2a:65:ff:9a:0b:ef:7d:6f:d2:95:2e:a7:c9:2c</tt><br>  (ECDSA) <code>SHA256:p+VCx2KynGtiFFaaiF010SIQu6gJgmJb//yokW2sGBE</code>, <code>MD5:a5:b0:2a:65:ff:9a:0b:ef:7d:6f:d2:95:2e:a7:c9:2c</code><br>
 (ED25519) <tt>SHA256:oaJ7VEyjt2EHMeixzKn9zJGiV5YlWHIUls070tKdBzI</tt>, <tt>MD5:65:ff:bc:e5:c0:a3:e2:17:fa:da:83:ce:de:29:fd:8b</tt><br>  (ED25519) <code>SHA256:oaJ7VEyjt2EHMeixzKn9zJGiV5YlWHIUls070tKdBzI</code>, <code>MD5:65:ff:bc:e5:c0:a3:e2:17:fa:da:83:ce:de:29:fd:8b</code><br>
 <p>  <p>
 <li><strong>CVSROOT=anoncvs@mirror.planetunix.net:/cvs</strong><br>  <li><strong>CVSROOT=anoncvs@mirror.planetunix.net:/cvs</strong><br>
 Location: Chicago, IL, USA.<br>  Location: Chicago, IL, USA.<br>
Line 421 
Line 436 
 Protocols: ssh, ssh port 2022, pserver.<br>  Protocols: ssh, ssh port 2022, pserver.<br>
 Updated every 3 hours from anoncvs3.usa.openbsd.org.<br>  Updated every 3 hours from anoncvs3.usa.openbsd.org.<br>
 SSH fingerprints:<br>  SSH fingerprints:<br>
 (RSA) <tt>MD5:8f:42:bd:b0:a2:94:df:6b:af:1e:96:03:ea:68:03:d9</tt><br>  (RSA) <code>MD5:8f:42:bd:b0:a2:94:df:6b:af:1e:96:03:ea:68:03:d9</code><br>
 (DSA) <tt>MD5:26:51:e8:b3:38:88:dc:a8:2a:98:59:86:ab:40:bb:a4</tt><br>  (DSA) <code>MD5:26:51:e8:b3:38:88:dc:a8:2a:98:59:86:ab:40:bb:a4</code><br>
 <p>  <p>
 <li><strong>CVSROOT=anoncvs@anoncvs4.usa.openbsd.org:/cvs</strong><br>  <li><strong>CVSROOT=anoncvs@anoncvs4.usa.openbsd.org:/cvs</strong><br>
 Location: New York Internet, New York, NY, USA.<br>  Location: New York Internet, New York, NY, USA.<br>
Line 430 
Line 445 
 Protocols: ssh, ssh port 2022.<br>  Protocols: ssh, ssh port 2022.<br>
 Updated hourly.<br>  Updated hourly.<br>
 SSH fingerprints:<br>  SSH fingerprints:<br>
 (RSA) <tt>SHA256:RT7vVXrvmKgZ7VkrVZ0lgugDFCBPVT6iSwMh+m1vZTA</tt>, <tt>MD5:b9:8a:36:b5:ce:1f:b0:81:01:ef:5c:4b:85:1d:a3:c6</tt><br>  (RSA) <code>SHA256:RT7vVXrvmKgZ7VkrVZ0lgugDFCBPVT6iSwMh+m1vZTA</code>, <code>MD5:b9:8a:36:b5:ce:1f:b0:81:01:ef:5c:4b:85:1d:a3:c6</code><br>
 (DSA) <tt>SHA256:b6otnjswIwZwcMsic6cEFKBwUcwzu0mJNLRE3CrIr/Y</tt>, <tt>MD5:c1:2a:c4:35:0d:6b:45:54:14:4f:07:8a:f0:f0:74:7c </tt><br>  (DSA) <code>SHA256:b6otnjswIwZwcMsic6cEFKBwUcwzu0mJNLRE3CrIr/Y</code>, <code>MD5:c1:2a:c4:35:0d:6b:45:54:14:4f:07:8a:f0:f0:74:7c </code><br>
 (ECDSA) <tt>SHA256:JreaFNTlm2Uhlk3iaMs4Rweq27KPSVYUgj9sZUsOxCc</tt>, <tt>MD5:0a:a7:86:11:96:c2:49:37:7f:d2:41:86:e2:f3:84:92</tt><br>  (ECDSA) <code>SHA256:JreaFNTlm2Uhlk3iaMs4Rweq27KPSVYUgj9sZUsOxCc</code>, <code>MD5:0a:a7:86:11:96:c2:49:37:7f:d2:41:86:e2:f3:84:92</code><br>
 (ED25519) <tt>SHA256:iLsNcXOnluavlGUV+O4JE7TNppEwIMvsjZ7m1VVObiM</tt>, <tt>MD5:8e:bd:d0:fc:71:16:5e:d2:ff:4b:02:90:aa:0b:f0:f7</tt><br>  (ED25519) <code>SHA256:iLsNcXOnluavlGUV+O4JE7TNppEwIMvsjZ7m1VVObiM</code>, <code>MD5:8e:bd:d0:fc:71:16:5e:d2:ff:4b:02:90:aa:0b:f0:f7</code><br>
 <p>  <p>
 <li><strong>CVSROOT=anoncvs@anoncvs2.usa.openbsd.org:/cvs</strong><br>  <li><strong>CVSROOT=anoncvs@anoncvs2.usa.openbsd.org:/cvs</strong><br>
 Host also known as <strong>anoncvs3.usa.openbsd.org, ftp3.usa.openbsd.org, ftp5.usa.openbsd.org, openbsd.se.rit.edu</strong>.<br>  Host also known as <strong>anoncvs3.usa.openbsd.org, ftp3.usa.openbsd.org, ftp5.usa.openbsd.org, openbsd.se.rit.edu</strong>.<br>
Line 442 
Line 457 
 Protocols: ssh, ssh port 2022.<br>  Protocols: ssh, ssh port 2022.<br>
 Updated hourly.<br>  Updated hourly.<br>
 SSH fingerprints:<br>  SSH fingerprints:<br>
 (RSA) <tt>SHA256:O/qRkEam5QXBxAcHA8qEEHXp9D2Ad1RMS43crbP+PDE</tt>, <tt>MD5:91:12:49:07:80:ff:aa:79:49:bd:df:6d:df:d8:53:e4</tt><br>  (RSA) <code>SHA256:O/qRkEam5QXBxAcHA8qEEHXp9D2Ad1RMS43crbP+PDE</code>, <code>MD5:91:12:49:07:80:ff:aa:79:49:bd:df:6d:df:d8:53:e4</code><br>
 (DSA) <tt>SHA256:+sNBHW4fy9/cb0CJLGAe/wBkmwXI7C/vU81rdFVs3mE</tt>, <tt>MD5:ca:4f:76:39:65:92:e2:67:c4:12:41:66:22:d6:d5:0d</tt><br>  (DSA) <code>SHA256:+sNBHW4fy9/cb0CJLGAe/wBkmwXI7C/vU81rdFVs3mE</code>, <code>MD5:ca:4f:76:39:65:92:e2:67:c4:12:41:66:22:d6:d5:0d</code><br>
 (ECDSA) <tt>SHA256:Bt9zXfPRYnP8DDBEXhH0SwCs3fU8EX/UA1Q5ypzkRdg</tt>, <tt>MD5:6d:9c:fc:d9:d3:c0:52:69:0e:23:f9:f2:44:02:a8:5f</tt><br>  (ECDSA) <code>SHA256:Bt9zXfPRYnP8DDBEXhH0SwCs3fU8EX/UA1Q5ypzkRdg</code>, <code>MD5:6d:9c:fc:d9:d3:c0:52:69:0e:23:f9:f2:44:02:a8:5f</code><br>
 (ED25519) <tt>SHA256:c+jgUzXaKxwtbQUy+dfpC340p4bVzFYDNIDxW3dUO3A</tt>, <tt>MD5:7d:f1:ca:80:80:99:41:c9:c6:5f:48:0d:76:f9:f3:c9</tt><br>  (ED25519) <code>SHA256:c+jgUzXaKxwtbQUy+dfpC340p4bVzFYDNIDxW3dUO3A</code>, <code>MD5:7d:f1:ca:80:80:99:41:c9:c6:5f:48:0d:76:f9:f3:c9</code><br>
 <p>  <p>
 <li><strong>CVSROOT=anoncvs@anoncvs1.usa.openbsd.org:/cvs</strong><br>  <li><strong>CVSROOT=anoncvs@anoncvs1.usa.openbsd.org:/cvs</strong><br>
 Host also known as <strong>anoncvs.usa.openbsd.org</strong>.<br>  Host also known as <strong>anoncvs.usa.openbsd.org</strong>.<br>
Line 454 
Line 469 
 Protocols: ssh, pserver.<br>  Protocols: ssh, pserver.<br>
 Updated hourly.<br>  Updated hourly.<br>
 SSH fingerprints:<br>  SSH fingerprints:<br>
 (RSA) <tt>SHA256:PFKE28DFbJLmqoLkq9xfBuiYl9GN2LABsvUpzNk+LlE</tt>, <tt>MD5:49:67:9a:46:62:8a:3f:4e:b3:63:ca:d6:41:29:2a:2f</tt><br>  (RSA) <code>SHA256:PFKE28DFbJLmqoLkq9xfBuiYl9GN2LABsvUpzNk+LlE</code>, <code>MD5:49:67:9a:46:62:8a:3f:4e:b3:63:ca:d6:41:29:2a:2f</code><br>
 (DSA) <tt>SHA256:KgFHf4YO6nVgCxEEPzgT/jT7QEqSWr56HC2P/PkOKa0</tt>, <tt>MD5:a7:75:49:77:f3:47:d1:3c:5e:65:84:84:3b:03:f1:33</tt><br>  (DSA) <code>SHA256:KgFHf4YO6nVgCxEEPzgT/jT7QEqSWr56HC2P/PkOKa0</code>, <code>MD5:a7:75:49:77:f3:47:d1:3c:5e:65:84:84:3b:03:f1:33</code><br>
 (ECDSA) <tt>SHA256:Ofstc7xq/W+73vBMUpb3A4ZqLNhKI3u2FdzbOkJpOHI</tt>, <tt>MD5:d3:b2:b5:68:87:3b:f6:93:21:fd:28:ea:cc:b6:e1:13</tt><br>  (ECDSA) <code>SHA256:Ofstc7xq/W+73vBMUpb3A4ZqLNhKI3u2FdzbOkJpOHI</code>, <code>MD5:d3:b2:b5:68:87:3b:f6:93:21:fd:28:ea:cc:b6:e1:13</code><br>
 (ED25519) <tt>SHA256:IYHq/zKqYnd2wy71Br6X8Q1Jk0XGjOJA4PU6CAr6pDo</tt>, <tt>MD5:0d:83:33:eb:8a:ee:f9:b0:5f:77:a8:0e:48:65:ba:e1</tt><br>  (ED25519) <code>SHA256:IYHq/zKqYnd2wy71Br6X8Q1Jk0XGjOJA4PU6CAr6pDo</code>, <code>MD5:0d:83:33:eb:8a:ee:f9:b0:5f:77:a8:0e:48:65:ba:e1</code><br>
 <p>  <p>
 <li><strong>CVSROOT=anoncvs@anoncvs.obsd.esc7.net:/cvs</strong><br>  <li><strong>CVSROOT=anoncvs@anoncvs.obsd.esc7.net:/cvs</strong><br>
 Location: Dallas, TX, USA.<br>  Location: Dallas, TX, USA.<br>
Line 465 
Line 480 
 Protocols: ssh.<br>  Protocols: ssh.<br>
 Updated every 2 hours from anoncvs1.usa.openbsd.org.<br>  Updated every 2 hours from anoncvs1.usa.openbsd.org.<br>
 SSH fingerprints:<br>  SSH fingerprints:<br>
 (RSA) <tt>MD5:2a:c8:01:6f:5c:fe:78:75:84:29:c3:11:0f:65:05:07</tt><br>  (RSA) <code>MD5:2a:c8:01:6f:5c:fe:78:75:84:29:c3:11:0f:65:05:07</code><br>
 (DSA) <tt>MD5:0e:ce:de:c4:7d:a0:d1:71:0a:af:cf:ee:34:43:bc:23</tt><br>  (DSA) <code>MD5:0e:ce:de:c4:7d:a0:d1:71:0a:af:cf:ee:34:43:bc:23</code><br>
 (ECDSA) <tt>MD5:68:f1:e8:11:94:5c:5e:15:d0:ee:54:1f:ee:57:33:4a</tt><br>  (ECDSA) <code>MD5:68:f1:e8:11:94:5c:5e:15:d0:ee:54:1f:ee:57:33:4a</code><br>
 (ED25519) <tt>MD5:ca:ea:e7:77:84:1d:64:3d:5e:9f:25:a6:60:4c:53:52</tt><br>  (ED25519) <code>MD5:ca:ea:e7:77:84:1d:64:3d:5e:9f:25:a6:60:4c:53:52</code><br>
 <p>  <p>
   
 </ul>  </ul>
   
   <p>
 If your server is listed on here with inaccurate or unknown information, please  If your server is listed on here with inaccurate or unknown information, please
 contact <a href="mailto:beck@openbsd.org"><tt>beck@openbsd.org</tt></a>.  contact <a href="mailto:beck@openbsd.org"><code>beck@openbsd.org</code></a>.
   
 <p>  <p>
 You may want to use  You may want to use
Line 487 
Line 503 
 If local policy prevents outgoing connections to ssh's default port of 22,  If local policy prevents outgoing connections to ssh's default port of 22,
 some servers permit connections on an alternative port (typically 2022).  some servers permit connections on an alternative port (typically 2022).
 These are noted in the list above.  These are noted in the list above.
 To use a different port, reconfigure your ssh client by adding a <tt>Host</tt>  To use a different port, reconfigure your ssh client by adding a <code>Host</code>
 entry to <tt>$HOME/.ssh/config</tt>, e.g.:  entry to <code>$HOME/.ssh/config</code>, e.g.:
 <pre class="cmdbox">  <pre class="cmdbox">
 Host anoncvs.ca.openbsd.org  Host anoncvs.ca.openbsd.org
     Port 2022      Port 2022
Line 496 
Line 512 
   
 <h3 id="MIRROR">Setting up an anoncvs mirror</h3>  <h3 id="MIRROR">Setting up an anoncvs mirror</h3>
   
   <p>
 Anoncvs mirrors currently require about 6GB of disk (and it will grow!), and use  Anoncvs mirrors currently require about 6GB of disk (and it will grow!), and use
 up to 64MB of swap per anoncvs user (assuming the user does a large operation;  up to 64MB of swap per anoncvs user (assuming the user does a large operation;
 while smaller operations use fewer resources, anoncvs still makes much more of  while smaller operations use fewer resources, anoncvs still makes much more of
Line 507 
Line 524 
   
 <h3 id="NOTES">Final notes</h3>  <h3 id="NOTES">Final notes</h3>
   
   <p>
 After upgrading your source tree, you should read the comments at the top of  After upgrading your source tree, you should read the comments at the top of
 <tt>/usr/src/Makefile</tt> before attempting a build.  <code>/usr/src/Makefile</code> before attempting a build.
 Also, you should build a new kernel <b>before</b> doing a <tt>make build</tt>  Also, you should build a new kernel <strong>before</strong> doing a <kbd>make build</kbd>
 if possible.  if possible.
 In some cases it may be necessary to rebuild and install the <tt>config</tt>  In some cases it may be necessary to rebuild and install the <code>config</code>
 utility before you can build the kernel.  utility before you can build the kernel.
 If <tt>config GENERIC</tt> fails this is probably the case.  If <kbd>config GENERIC</kbd> fails this is probably the case.
   
 <p>  <p>
 It is important to note that upgrading from a release to the current tree  It is important to note that upgrading from a release to the current tree
Line 521 
Line 539 
 that are often not obvious.  that are often not obvious.
 Therefore, it is suggested that you first install the latest snapshot before  Therefore, it is suggested that you first install the latest snapshot before
 attempting a tree build from source.  attempting a tree build from source.
   
 </body>  
 </html>  

Legend:
Removed from v.1.492  
changed lines
  Added in v.1.493