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

Annotation of www/anoncvs.html, Revision 1.396

1.320     sthen       1: <!-- DO NOT EDIT ANONCVS.HTML MANUALLY - IT IS GENERATED FROM TEMPLATES!
                      2:      See comments in www/build/mirrors.dat for details -->
1.246     steven      3:
1.180     jufi        4: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
1.1       deraadt     5: <html>
                      6: <head>
1.93      deraadt     7: <title>OpenBSD AnonCVS</title>
1.135     naddy       8: <link rev="made" href="mailto:www@openbsd.org">
1.93      deraadt     9: <meta name="resource-type" content="document">
1.249     nick       10: <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
1.93      deraadt    11: <meta name="description" content="How to get OpenBSD updates via Internet using Anonymous CVS">
                     12: <meta name="keywords" content="openbsd,anoncvs,updates">
                     13: <meta name="distribution" content="global">
1.394     sthen      14: <meta name="copyright" content="This document copyright 1996-2014 by OpenBSD.">
1.1       deraadt    15: </head>
                     16:
1.226     nick       17: <body bgcolor="#ffffff" text="#000000">
1.1       deraadt    18:
1.249     nick       19: <a href="index.html"><img alt="[OpenBSD]" height="30" width="141" src="images/smalltitle.gif" border="0"></a>
1.93      deraadt    20: <p>
1.135     naddy      21: <h2><font color="#e00000">Anonymous CVS</font></h2>
1.14      downsj     22:
1.135     naddy      23: <hr>
                     24:
1.249     nick       25: <h3>Table Of Contents</h3>
1.135     naddy      26:
                     27: <ul>
1.249     nick       28: <li><a href="#anoncvs">What is Anonymous CVS?</a>
                     29: <li><a href="#CVS">What is CVS?</a>
1.370     rpe        30: <li><a href="#CRYPTO">Getting Crypto Sources Through cvs(1)</a>
1.249     nick       31: <li><a href="#starting">Getting Started Using Anonymous CVS</a>
                     32: <li><a href="#using">Using CVS to Get and Update your Source Tree</a>
1.370     rpe        33: <li><a href="#EXAMPLE">Example usages for cvs(1)</a>
1.249     nick       34: <li><a href="#CVSROOT">Available Anonymous CVS Servers</a>
                     35: <li><a href="#MIRROR">Setting up an anoncvs mirror</a>
1.370     rpe        36: <li><a href="#NOTES">Final notes</a>
1.100     ericj      37: </ul>
1.135     naddy      38:
1.100     ericj      39: <hr>
                     40:
1.249     nick       41: <h3><a name="anoncvs"><font color="#0000e0">What is Anonymous CVS?</font></a></h3>
1.99      ericj      42:
1.15      grr        43: <p>
1.249     nick       44: Anonymous CVS is a method of keeping your local copy of the OpenBSD source
                     45: tree up to date with respect to changes made to current OpenBSD sources.
                     46: In addition to following the bleeding edge of development, it is
                     47: also possible to track the patches for errata of a release.
1.99      ericj      48:
1.14      downsj     49: <p>
1.249     nick       50: The major advantage of Anonymous CVS over other source code update
                     51: techniques is that it works directly against a central source code
                     52: repository or mirror.  This means that you have the full set of CVS
                     53: commands available to control merging and updating your changes with
                     54: other source changes and for performing diffs, change histories
                     55: and other queries against the central repository.
1.99      ericj      56:
1.36      deraadt    57: <p>
1.282     nick       58: The OpenBSD Project currently has four active and two historic
                     59: source repositories:
1.99      ericj      60:
                     61: <ul>
1.249     nick       62:   <li><b>src</b> - Houses all source code for the OpenBSD Operating System.
1.329     steven     63:   <li><b>ports</b> - Houses the <a href="faq/ports/index.html">OpenBSD Ports</a>.
1.249     nick       64:   <li><b>www</b> - Houses all OpenBSD web pages. (Including this one).
1.280     steven     65:   <li><b>xenocara</b> - Houses OpenBSD's active X.org v7 source tree.
1.282     nick       66:   <li><b>X11</b> and <b>XF4</b> - Houses OpenBSD's adaptation of the
                     67:       <a href="http://www.XFree86.org/">XFree86-3</a> and XFree86-4
                     68:       source trees.
                     69:       These are here just for historical purposes, most users will have
                     70:       no reason to use this tree, it is no longer being used.
1.99      ericj      71: </ul>
                     72:
1.100     ericj      73: <p>
1.249     nick       74: To summarize, the real strength of using Anonymous CVS is that it is
                     75: a "tolerant" source code control system - it <strong>respects</strong>
                     76: changes that you have made to your local sources and makes <strong>
                     77: "best efforts"</strong> to update your entire source tree, rather than
                     78: leaving you a list of arcane problems that have to be resolved before
                     79: continuing.
                     80:
                     81: <h3><a name="CVS"><font color="#0000e0">What is CVS?</font></a></h3>
                     82:
                     83: <p>
1.260     nick       84: <a href="http://ximbiot.com/cvs/">CVS</a> is the source code control
1.249     nick       85: system used to <a href="why-cvs.html">manage the OpenBSD source
                     86: tree.</a>
                     87: It implements a central repository for all officially released source code
                     88: and changes, while permitting developers to maintain local copies of the
                     89: source code with their working changes.
1.226     nick       90:
1.249     nick       91: There are two levels of source tree access:
1.226     nick       92: <ul>
1.249     nick       93: <li><b>Read-write access for developers:</b>
                     94: Developers who need to commit changes to the source tree must have an
                     95: account on the OpenBSD machines.
                     96: Getting this access will be a natural result of working on the sources
                     97: with other OpenBSD developers.
                     98: If someone does some good work and shows they can work with the team,
                     99: they will get an account.
                    100:
                    101: <li><b>Read-only access for everyone:</b>
                    102: Anyone can access the read-only CVS repositories.
                    103: These copies of the read-write CVS repository are mirrored often.
1.226     nick      104: </ul>
1.99      ericj     105:
1.15      grr       106: <p>
1.249     nick      107: The major strength of CVS is that it has the ability to perform intelligent
                    108: merges of changes to the central repository with changes that you make to
                    109: your local copy.  This means that if you make a change to a module and
                    110: perform an update, your changes are not "blown away", rather CVS makes
                    111: best efforts to merge the changes made to the central sources with changes
                    112: you've made to your local copy.
                    113:
                    114: <p>
                    115: In the event that the changes can't be completely merged, CVS provides a
                    116: "soft fallback", providing you with annotated changes to your
                    117: local copy, preserving an unmodified copy of your version and continuing
                    118: to update any other source modules you requested.
                    119:
1.370     rpe       120: <h3><a name="CRYPTO"><font color="#0000e0">Getting crypto sources through
                    121: cvs(1)</font></a></h3>
                    122:
                    123: <p>
                    124: <strong>IMPORTANT NOTE:</strong>
                    125: There are a few issues relating to cryptographic software that everyone
                    126: should be aware of:
                    127: <ul>
                    128: <li>The OpenBSD sources are from Canada.
                    129: As
                    130:        <a href="http://www.efc.ca/pages/doc/crypto-export.html">
                    131:        researched by a Canadian individual</a>
                    132: and as
                    133:        <a href="http://axion.physics.ubc.ca/ECL.html">
                    134:        described in the Export Control list of Canada</a>
                    135: it is legal to export crypto software from Canada to the world.
                    136: <p>
                    137: <li>However, if you are outside the USA or Canada, you should not
                    138: fetch the cryptographic sections of the OpenBSD sources from an
                    139: anoncvs server located in the USA.
                    140: Because of US Dept. of Commerce policy, crypto software may only
                    141: be exported to Canada from the USA.
                    142: </ul>
                    143:
1.249     nick      144: <h3><a name="starting"><font color="#0000e0">Getting Started Using Anonymous
                    145: CVS</font></a></h3>
                    146:
                    147: While you can download the entire source tree from an AnonCVS server,
                    148: you can often save a lot of time and bandwidth by "preloading" your
                    149: source tree with the source files from either the OpenBSD CD or from an
                    150: FTP server.
                    151: This is particularly true if you are running
                    152: <a href="stable.html"><i>-stable</i></a>, as relatively few files change
                    153: between the <i>-release</i> and <i>-stable</i>.
1.100     ericj     154:
1.22      niklas    155: <p>
1.249     nick      156: To extract the source tree from the CD to <i>/usr/src</i> (assuming the CD is
                    157: mounted on /mnt):
1.22      niklas    158: <pre>
1.280     steven    159:     # <b>cd /usr/src</b>
                    160:     # <b>tar xzf /mnt/src.tar.gz</b>
1.282     nick      161:     # <b>cd /usr</b>
1.280     steven    162:     # <b>tar xzf /mnt/xenocara.tar.gz</b>
1.226     nick      163:     # <b>tar xzf /mnt/ports.tar.gz</b>
1.22      niklas    164: </pre>
1.224     nick      165:
1.249     nick      166: The source files for download from the FTP servers are separated into two
                    167: files to minimize the time required to download for those wishing to work
                    168: with only one part of the tree.  The two files are <tt>sys.tar.gz</tt>,
                    169: which contains the files used to create the kernel, and <tt>src.tar.gz</tt>
                    170: which contains all the other "userland" utilities.
                    171: In general, however, you will usually want both of them installed.
1.280     steven    172: Assuming the downloaded files, <tt>src.tar.gz</tt>,
                    173: <tt>sys.tar.gz</tt> and <tt>xenocara.tar.gz</tt> are in <tt>/usr</tt>:
1.224     nick      174:
1.22      niklas    175: <pre>
1.224     nick      176:     # <b>cd /usr/src</b>
                    177:     # <b>tar xzf ../sys.tar.gz</b>
1.225     nick      178:     # <b>tar xzf ../src.tar.gz</b>
1.282     nick      179:     # <b>cd /usr</b>
1.284     steven    180:     # <b>tar xzf xenocara.tar.gz</b>
1.226     nick      181:     # <b>tar xzf ports.tar.gz</b>
1.22      niklas    182: </pre>
1.100     ericj     183:
                    184: <p>
1.249     nick      185: Not all people will wish to unpack all the file sets, but as the system
                    186: must be kept in sync, you will generally need to set up all trees.
1.226     nick      187:
                    188: <p>
1.249     nick      189: You can also just use cvs(1) to "<b>checkout</b>" the source repository
                    190: for you. This is discussed in the <a href="#using">next section</a>.
1.100     ericj     191:
                    192: <p>
1.249     nick      193: After this, <tt>/usr/src</tt> will be a nice checkout area where all
                    194: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=cvs&amp;sektion=1&amp;format=html">
                    195: cvs(1)</a> commands will work properly.
1.100     ericj     196:
1.370     rpe       197: <h3><a name="using"><font color="#0000e0">Using CVS to Get and Update your
                    198: Source Tree</font></a></h3>
1.100     ericj     199:
                    200: <p>
1.249     nick      201: CVS was designed to be a simple way to retrieve and update your sources.
                    202: You must first decide whether you want to track <i>-current</i> or a
                    203: <a href="stable.html">patch branch</a>.
                    204: The current tree has all of the up to the minute changes,
                    205: whereas a patch branch contains a formal release plus the patches
                    206: from the <a href="errata.html">errata</a> and lesser issues already applied.
                    207: For more information on these "flavors" of OpenBSD, see
                    208: <a href="faq/faq5.html#Flavors">here</a>.
                    209:
                    210: <p>Once you have decided which tree to follow, you must choose which Anonymous
                    211: CVS server you are going to use.  A list of these servers is
                    212: <a href="#CVSROOT">below</a>.
                    213:
                    214: <p>
                    215: Once you have chosen which <a href="#CVSROOT">Anonymous CVS Server</a> you will
                    216: use, you can start using cvs. For those of you
                    217: who have CDs you can start with the CVS checkout that is on the CD by using
                    218: the method <a href="#starting">above</a> to get the sources onto your system.
                    219: If you don't have a CD handy, use the method below to checkout the sources.
1.100     ericj     220:
1.370     rpe       221: <p>
                    222: <ul><li>First, start out by `get'-ing an initial tree:
                    223:
                    224: <p> (If you are following <i>current</i>):
1.135     naddy     225: <pre>
1.370     rpe       226:        # <strong>cd /usr</strong>
                    227:        # <strong>cvs -qd anoncvs@anoncvs.ca.openbsd.org:/cvs get -P src</strong>
1.135     naddy     228: </pre>
1.99      ericj     229:
1.388     sthen     230: <p> (If you are following the patch branch for 5.4):
1.370     rpe       231: <pre>
                    232:        # <strong>cd /usr</strong>
1.388     sthen     233:        # <strong>cvs -qd anoncvs@anoncvs.ca.openbsd.org:/cvs get -rOPENBSD_5_4 -P src</strong>
1.370     rpe       234: </pre>
1.394     sthen     235: <!-- DO NOT EDIT ANONCVS.HTML MANUALLY - IT IS GENERATED FROM TEMPLATES! -->
1.370     rpe       236:
1.394     sthen     237: Anonymous CVS uses passwordless SSH as a transport.
                    238: If this is the first time you have connected to an anoncvs server,
                    239: you will be asked to confirm the SSH fingerprint to ensure that you
                    240: are connecting to the expected server:
                    241:
                    242: <pre>
                    243:        $ <strong>cvs -d anoncvs@anoncvs.spacehopper.org:/OpenBSD get src
                    244:        The authenticity of host 'anoncvs.spacehopper.org (2001:470:1f09:9a9::b5d)' can't be established.
                    245:        ED25519 key fingerprint is 65:ff:bc:e5:c0:a3:e2:17:fa:da:83:ce:de:29:fd:8b.
                    246:        Are you sure you want to continue connecting (yes/no)?</strong>
                    247: </pre>
                    248:
                    249: In most cases, the list below includes the fingerprints for the server,
                    250: so you can compare it against the displayed fingerprint as additional
                    251: verification that you are connecting to the correct server.
                    252: Confirm this, and the fingerprint will then be saved as usual.
                    253:
                    254: <pre>
                    255:        <strong>Are you sure you want to continue connecting (yes/no)? yes
                    256:        Warning: Permanently added 'anoncvs.spacehopper.org' (ED25519) to the list of known hosts.</strong>
                    257:        ...
                    258: </pre>
1.370     rpe       259:
                    260: <li> Anytime afterwards, to `update' this tree:
                    261: <p> (If you are following <i>current</i>):
                    262: <pre>
                    263:        # <strong>cd /usr/src</strong>
                    264:        # <strong>cvs -q up -Pd</strong>
                    265: </pre>
                    266:
1.388     sthen     267: <p> (If you are following the patch branch for 5.4):
1.370     rpe       268: <pre>
                    269:        # <strong>cd /usr/src</strong>
1.388     sthen     270:        # <strong>cvs -q up -rOPENBSD_5_4 -Pd</strong>
1.370     rpe       271: </pre>
                    272:
                    273: Every time you ran this it would synchronize your /usr/src tree.
                    274: It would not destroy any of your local changes, rather it would attempt
                    275: to merge changes in.
                    276:
1.1       deraadt   277: <p>
1.370     rpe       278: <li> NOTE:
                    279: If you are updating a source tree that you initially fetched
                    280: from a different server, or from a CD, you <strong>must</strong>
1.394     sthen     281: add the <em>-d [cvsroot]</em> option to cvs.
1.370     rpe       282: <pre>
                    283:        # <strong>cd /usr/src</strong>
                    284:        # <strong>cvs -d anoncvs@anoncvs.ca.openbsd.org:/cvs -q up -Pd</strong>
                    285: </pre>
                    286: </ul>
1.1       deraadt   287:
1.370     rpe       288: <p>
                    289: To <a name="ports">use</a> <a href="faq/ports/index.html">ports</a>,
                    290: it is similar to src:
                    291: <ul><li>
                    292: <p> (If you are following <i>current</i>):
                    293: <pre>
                    294:        # <strong>cd /usr</strong>
                    295:        # <strong>cvs -qd anoncvs@anoncvs.ca.openbsd.org:/cvs get -P ports</strong>
                    296: </pre>
1.388     sthen     297: <p> (If you are following the patch branch for 5.4):
1.135     naddy     298: <pre>
1.370     rpe       299:        # <strong>cd /usr</strong>
1.388     sthen     300:        # <strong>cvs -qd anoncvs@anoncvs.ca.openbsd.org:/cvs get -rOPENBSD_5_4 -P ports</strong>
1.135     naddy     301: </pre>
1.370     rpe       302: <li> Anytime afterwards, to `update' this tree:
                    303: <p> (If you are following <i>current</i>):
                    304: <pre>
                    305:        # <strong>cd /usr/ports</strong>
                    306:        # <strong>cvs -q up -Pd</strong>
                    307: </pre>
1.388     sthen     308: <p> (If you are following the patch branch for 5.4):
1.370     rpe       309: <pre>
                    310:        # <strong>cd /usr/ports</strong>
1.388     sthen     311:        # <strong>cvs -q up -rOPENBSD_5_4 -Pd</strong>
1.370     rpe       312: </pre>
                    313: </ul>
                    314:
                    315: In the above example, <i>-q</i> is optional, only intended to minimize
                    316: cvs's output.
                    317: For those who like to see screenfulls of output, it can be omitted.
                    318:
                    319: <p>
                    320: To make a diff of a locally patched module (here <i>cd.c</i>) to include with
                    321: a bug report:
                    322: <pre>
                    323:        # <strong>cd /usr</strong>
                    324:        # <strong>cvs diff -u src/sys/scsi/cd.c &gt; /tmp/patch</strong>
                    325: </pre>
                    326:
1.1       deraadt   327: <p>
1.370     rpe       328: The <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=cvs&amp;sektion=1&amp;format=html">
                    329: cvs(1) man page</a>
                    330: (included with the CVS sources) has much more
                    331: information about how CVS can be used.
                    332:
                    333: <p>
                    334: <strong>Warning:</strong>
                    335: When using cvs you should take care that your current directory is either
                    336: the root of the tree you are referencing or in a separate place such as /tmp.
                    337: Some commands such as "get" can create an arbitrary sub-tree in the current
                    338: directory, and a subsequent update will recursively flesh out this sub-tree.
                    339:
                    340: <p>
                    341: The anoncvs service gives fledgling developers a chance to learn CVS
                    342: operation and get thoroughly involved in the development process
                    343: before getting "commit" access -- as a result of showing useful
                    344: skills and high quality results they will naturally later be given
                    345: developer access.
                    346: As well, people providing patches can create their "diff"s relative
                    347: to the CVS tree, which will ease integration.
                    348:
                    349: <h3><a name="EXAMPLE"><font color="#0000e0">Example usages for cvs(1)</font>
                    350: </a></h3>
1.100     ericj     351:
1.370     rpe       352: <p>
                    353: A sample use of an anoncvs server would be:
                    354: <pre>
                    355: $ <strong>cd /tmp</strong>
                    356: $ <strong>cvs -d anoncvs@anoncvs.ca.openbsd.org:/cvs get src/sys/arch/sparc</strong>
                    357:     [copies the files from the repository to your machine]
                    358: $ <strong>cd src/sys/arch/sparc</strong>
                    359: $ <strong>cvs log locore.s</strong>
                    360:     [shows the commit log for the chosen file]
                    361: $ <strong>cvs diff -bc -r1.1 -r1.5 locore.s</strong>
                    362:     [shows the changes between revisions 1.1 and rev 1.5]
                    363: </pre>
1.100     ericj     364:
1.249     nick      365: <h3><a name="CVSROOT"><font color="#0000e0">Available Anonymous CVS Servers
1.155     jsyn      366: </font></a></h3>
1.1       deraadt   367:
                    368: <p>
                    369: <ul>
1.339     sthen     370: <li><strong>CVSROOT=anoncvs@anoncvs.openbsd.org.ar:/cvs</strong><br>
                    371: Location: Buenos Aires, Argentina.<br>
1.371     gonzalo   372: Maintained by <a href="mailto:gonzalo@openbsd.org">Gonzalo Lionel Rodriguez</a>.<br>
1.339     sthen     373: Protocols: ssh.<br>
1.371     gonzalo   374: Updated every 2 hours from anoncvs.spacehopper.org.<br>
1.395     sthen     375: SSH fingerprints:<br>
                    376: (RSA) 2048 70:87:64:84:65:9e:45:4e:25:fa:c4:52:71:af:78:28<br>
                    377: (DSA) 1024 d5:b3:21:45:71:27:9b:60:0a:34:21:75:9e:fb:c6:08<br>
                    378: (ECDSA) 256 2d:3c:fb:18:f7:a6:a5:63:f3:af:db:b1:78:76:cd:21<br>
1.339     sthen     379: <p>
1.373     dlg       380: <li><strong>CVSROOT=anoncvs@anoncvs.au.openbsd.org:/cvs</strong><br>
                    381: Location: Brisbane, Australia.<br>
                    382: Maintained by <a href="mailto:dlg@openbsd.org">David Gwynne</a>.<br>
                    383: Protocols: ssh.<br>
                    384: Updated hourly.<br>
                    385: SSH fingerprints:<br>
                    386: (RSA) 2048 19:4c:e2:a8:9e:42:b2:91:f3:d5:04:cf:b5:61:5e:ea<br>
                    387: (DSA) 1024 80:ff:d2:46:70:51:7d:09:a5:71:83:bb:89:98:44:b1<br>
                    388: (ECDSA) 256 fa:57:1c:55:7c:aa:d0:bc:4c:e2:05:3d:9b:bb:83:2d<br>
                    389: <p>
1.322     sthen     390: <li><strong>CVSROOT=anoncvs@ftp5.eu.openbsd.org:/cvs</strong><br>
                    391: Host also known as <strong>anga.funkfeuer.at</strong>.<br>
1.271     martin    392: Location: Vienna, Austria.<br>
1.386     martin    393: Maintained by <a href="mailto:martin@catai.org">Martin Reindl</a>.<br>
                    394: Protocols: ssh.<br>
                    395: Updated hourly.<br>
1.273     martin    396: SSH fingerprints:<br>
                    397: (RSA) 2048 e4:a7:3a:ab:e1:a7:c8:eb:5c:f4:ff:38:95:6f:81:f2<br>
                    398: (DSA) 2048 66:03:a3:bc:46:85:f3:6c:4b:6b:e3:d4:f5:5f:a6:c4<br>
1.386     martin    399: (ECDSA) 256 47:07:69:c4:6c:1f:09:ed:f5:2c:02:af:a0:e9:67:85<br>
1.393     sthen     400: (ED25519) 256 32:0b:33:5f:81:77:5c:3b:0c:f6:85:fe:f0:7c:10:ea<br>
1.271     martin    401: <p>
1.246     steven    402: <li><strong>CVSROOT=anoncvs@anoncvs1.ca.openbsd.org:/cvs</strong><br>
1.249     nick      403: Host also known as <strong>anoncvs.ca.openbsd.org, openbsd.sunsite.ualberta.ca</strong>.<br>
1.328     sthen     404: Location: Alberta, Canada.<br>
1.249     nick      405: Maintained by <a href="mailto:beck@ualberta.ca">Bob Beck</a>.<br>
1.295     beck      406: Protocols: ssh, ssh port 2022.<br>
1.249     nick      407: Updated every 2 hours.<br>
1.246     steven    408: <p>
1.374     sthen     409: <li><strong>CVSROOT=anoncvs@anoncvs.estpak.ee:/OpenBSD</strong><br>
                    410: Location: Elion, Tallinn, Estonia.<br>
                    411: Maintained by <a href="mailto:rix@estpak.ee">Rivo Nurges</a>.<br>
                    412: Protocols: ssh.<br>
1.387     nick      413: Updated every 2 hours.<br>
1.374     sthen     414: SSH fingerprints:<br>
                    415: (RSA) 1024 e1:12:fb:6b:e5:c0:6a:b3:f8:ca:b1:4c:20:fb:5e:07<br>
                    416: (DSA) 1024 bb:5c:44:f4:d9:12:3b:22:08:a9:12:c5:0c:e7:db:49<br>
1.392     sthen     417: (ECDSA) 256 d7:46:c9:1e:43:e8:23:7b:4c:cb:5c:75:21:77:f9:bd<br>
                    418: (ED25519) 256 a7:f6:ff:1a:31:cb:11:0c:84:d5:6b:28:b7:05:c6:7c<br>
1.374     sthen     419: <p>
1.328     sthen     420: <li><strong>CVSROOT=anoncvs@anoncvs.fr.openbsd.org:/cvs</strong><br>
                    421: Location: Paris, France.<br>
                    422: Maintained by <a href="mailto:landry@openbsd.org">Landry Breuil</a>.<br>
                    423: Protocols: ssh.<br>
                    424: Updated every 2 hours from anoncvs1.ca.openbsd.org.<br>
                    425: SSH fingerprints:<br>
                    426: (RSA) 2048 89:2e:84:9e:0c:f9:8d:21:41:0e:c5:80:41:27:14:c1<br>
                    427: (DSA) 1024 7f:fb:68:2f:0f:c8:63:6c:0f:32:2c:03:d4:cd:0c:47<br>
1.347     landry    428: (ECDSA) 256 6f:a8:a5:93:d7:68:55:91:15:42:b0:5d:38:62:b9:c3<br>
1.396   ! sthen     429: (ED25519) 256 7f:7f:f7:2c:c3:22:20:8e:21:e3:10:a5:66:67:7d:36<br>
1.328     sthen     430: <p>
1.381     sthen     431: <li><strong>CVSROOT=anoncvs@openbsd.cs.fau.de:/cvs</strong><br>
                    432: Host also known as <strong>openbsd.informatik.uni-erlangen.de</strong>.<br>
                    433: Location: University of Erlangen-Nuremberg, Erlangen, Germany.<br>
                    434: Maintained by <a href="mailto:simon@blarzwurst.de">Simon Kuhnle</a>.<br>
                    435: Protocols: ssh, ssh port 2022.<br>
                    436: Updated every 2 hours from anoncvs.spacehopper.org.<br>
                    437: SSH fingerprints:<br>
                    438: (RSA) 2048 d0:f2:0c:a3:bf:28:ba:18:50:5f:04:dc:13:ed:63:42<br>
                    439: (DSA) 1024 9f:a1:78:0b:d4:76:68:bf:3e:83:d0:41:c8:1e:33:8b<br>
                    440: (ECDSA) 256 f0:d1:64:e6:6b:2f:9e:1e:85:aa:75:e3:a0:52:d3:5a<br>
                    441: <p>
1.246     steven    442: <li><strong>CVSROOT=anoncvs@mirror.osn.de:/cvs</strong><br>
1.249     nick      443: Location: N&uuml;rnberg, Germany.<br>
                    444: Maintained by <a href="mailto:aw@osn.de">Armin Wolfermann</a>.<br>
                    445: Protocols: ssh.<br>
1.307     sthen     446: Updated every 3 hours.<br>
1.215     david     447: SSH fingerprints:<br>
1.246     steven    448: (RSA) 1024 f2:73:d2:f6:e3:01:ef:ca:3b:e7:6c:80:b6:bd:bb:84<br>
                    449: (DSA) 1024 fb:33:05:62:96:20:cf:88:7e:10:cb:8d:91:72:57:32<br>
                    450: <p>
                    451: <li><strong>CVSROOT=anoncvs@anoncvs.jp.openbsd.org:/cvs</strong><br>
1.249     nick      452: Host also known as <strong>kankoromochi.econ.nagasaki-u.ac.jp</strong>.<br>
                    453: Location: Nagasaki University, Faculty of Economics, Nagasaki, Japan.<br>
                    454: Protocols: ssh, pserver.<br>
                    455: Updated every 3 hours.<br>
1.176     miod      456: <p>
1.267     grunk     457: <li><strong>CVSROOT=anoncvs@anoncvs.obsd.si:/cvs</strong><br>
                    458: Location: Ljubljana, Slovenia.<br>
                    459: Maintained by <a href="mailto:mitja@kerberos.si">Mitja Muzenic</a>.<br>
                    460: Protocols: ssh.<br>
1.377     sthen     461: Updated every 2 hours from anoncvs.spacehopper.org.<br>
1.376     sthen     462: SSH fingerprints:<br>
                    463: (RSA) 2048 5b:98:6c:06:a4:1f:83:da:03:aa:ef:e4:f5:f0:99:76<br>
                    464: (DSA) 1024 2d:57:e2:9c:fd:9d:09:1c:5e:ff:3f:5d:59:78:93:cc<br>
                    465: (ECDSA) 256 3f:50:bd:1e:e5:8a:3d:a4:16:22:1c:2d:cf:8b:22:ed<br>
1.267     grunk     466: <p>
1.328     sthen     467: <li><strong>CVSROOT=anoncvs@anoncvs.eu.openbsd.org:/cvs</strong><br>
                    468: Location: Stockholm University, Stockholm, Sweden.<br>
1.369     sthen     469: Maintained by <a href="mailto:jj@openbsd.org, ftp@it.su.se">Janne Johansson</a>.<br>
1.328     sthen     470: Protocols: ssh.<br>
                    471: Updated every 2 hours.<br>
                    472: SSH fingerprints:<br>
                    473: (RSA) 2048 98:e6:80:5d:95:bb:e2:15:5e:19:4d:a3:e4:d0:bc:2c<br>
1.345     jj        474: (DSA) 1024 55:cd:a7:a9:e3:bc:a5:5c:81:5e:98:c0:60:a2:67:52<br>
1.383     jj        475: (ECDSA) 256 a4:c1:8f:64:55:87:35:d6:82:8b:ba:cb:48:3f:be:96<br>
1.343     sthen     476: <p>
1.328     sthen     477: <li><strong>CVSROOT=anoncvs@anoncvs.spacehopper.org:/cvs</strong><br>
                    478: Location: London, United Kingdom.<br>
                    479: Maintained by <a href="mailto:sthen@openbsd.org">Stuart Henderson</a>.<br>
1.354     sthen     480: Protocols: ssh, ssh port 2022, ssh port 443.<br>
1.328     sthen     481: Updated hourly from anoncvs.ca.openbsd.org.<br>
                    482: SSH fingerprints:<br>
                    483: (RSA) 2048 e2:19:16:3f:a3:2e:eb:94:14:cd:5c:92:9a:6c:9a:8f<br>
                    484: (DSA) 1024 ff:47:13:22:83:d1:6e:df:a0:f0:4f:18:31:cb:f2:28<br>
1.330     sthen     485: (ECDSA) 256 a5:b0:2a:65:ff:9a:0b:ef:7d:6f:d2:95:2e:a7:c9:2c<br>
1.389     sthen     486: (ED25519) 256 65:ff:bc:e5:c0:a3:e2:17:fa:da:83:ce:de:29:fd:8b<br>
1.328     sthen     487: <p>
                    488: <li><strong>CVSROOT=anoncvs@anoncvs1.usa.openbsd.org:/cvs</strong><br>
                    489: Host also known as <strong>anoncvs.usa.openbsd.org, anoncvs4.usa.openbsd.org</strong>.<br>
1.364     sthen     490: Location: Internet Systems Consortium, Redwood City, CA, USA.<br>
1.328     sthen     491: Maintained by <a href="mailto:millert@openbsd.org">Todd C. Miller</a>.<br>
                    492: Protocols: rsh, ssh, ssh port 2022, pserver.<br>
                    493: Updated every 2 hours.<br>
                    494: SSH fingerprints:<br>
                    495: (RSA) 1024 49:67:9a:46:62:8a:3f:4e:b3:63:ca:d6:41:29:2a:2f<br>
                    496: (DSA) 1024 a7:75:49:77:f3:47:d1:3c:5e:65:84:84:3b:03:f1:33<br>
1.356     millert   497: (ECDSA) 256 d3:b2:b5:68:87:3b:f6:93:21:fd:28:ea:cc:b6:e1:13<br>
1.328     sthen     498: <p>
                    499: <li><strong>CVSROOT=anoncvs@anoncvs3.usa.openbsd.org:/cvs</strong><br>
                    500: Location: National Center for Atmospheric Research, Boulder, CO, USA.<br>
                    501: Maintained by <a href="mailto:millert@openbsd.org">Todd C. Miller</a>.<br>
                    502: Protocols: rsh, ssh, ssh port 2022, pserver.<br>
                    503: Updated every 2 hours.<br>
                    504: SSH fingerprints:<br>
                    505: (RSA) 2048 49:6f:4a:be:02:63:0d:c0:54:b0:57:f0:48:7f:ce:16<br>
                    506: (DSA) 1024 f9:ab:fc:60:a3:15:8f:9c:47:24:9e:92:15:78:0d:f3<br>
1.356     millert   507: (ECDSA) 256 99:4f:c8:23:6a:bf:75:1c:de:c9:11:bf:a4:fe:0a:51<br>
1.328     sthen     508: <p>
1.254     steven    509: <li><strong>CVSROOT=anoncvs@mirror.planetunix.net:/cvs</strong><br>
1.313     sthen     510: Location: Chicago, IL, USA.<br>
1.254     steven    511: Maintained by <a href="mailto:brian@planetunix.net">Brian Brombacher</a>.<br>
                    512: Protocols: ssh, ssh port 2022, pserver.<br>
1.305     jcs       513: Updated every 3 hours from anoncvs3.usa.openbsd.org.<br>
1.254     steven    514: SSH fingerprints:<br>
                    515: (RSA) 2048 8f:42:bd:b0:a2:94:df:6b:af:1e:96:03:ea:68:03:d9<br>
                    516: (DSA) 1024 26:51:e8:b3:38:88:dc:a8:2a:98:59:86:ab:40:bb:a4<br>
1.387     nick      517: <p>
1.246     steven    518:
1.73      deraadt   519: </ul>
1.84      beck      520:
1.73      deraadt   521: <p>
1.249     nick      522: <em>Note:</em> If your server is listed on here with inaccurate or
                    523: unknown information, please contact
                    524: <a href="mailto:beck@openbsd.org"><tt>beck@openbsd.org</tt></a>
1.104     ericj     525:
1.80      beck      526: <p>
1.249     nick      527: You may want to use
1.135     naddy     528: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=traceroute&amp;sektion=8&amp;format=html">traceroute(8)</a>
1.249     nick      529: to find out which server is nearest you.
                    530: Problems with a server should be reported to the <b>maintainer</b> of the
                    531: server in question.
1.104     ericj     532:
1.159     jcs       533: <p>
1.249     nick      534: If local policy prevents outgoing connections to ssh's default port of 22,
1.370     rpe       535: some servers permit connections on an alternative port (typically 2022).
                    536: These are noted in the list above.
                    537: To use a different port, reconfigure your ssh client by adding a "Host"
                    538: entry to <strong>$HOME/.ssh/config</strong>, e.g.:
1.135     naddy     539: <pre>
1.370     rpe       540:        Host anoncvs.ca.openbsd.org
                    541:            Port 2022
1.135     naddy     542: </pre>
1.1       deraadt   543:
1.249     nick      544: <h3><a name="MIRROR"><font color="#0000e0">Setting up an anoncvs mirror
1.155     jsyn      545: </font></a></h3>
1.105     ericj     546:
1.107     millert   547: <p>
1.249     nick      548: If you wish to setup a new anoncvs mirror site and make it available to
                    549: the general public, please contact the anoncvs
                    550: <a href="mailto:sup@openbsd.org">maintainer</a>.
1.336     johan     551: Anoncvs mirrors currently require about 5GB of disk (and it will grow!),
1.318     sthen     552: and use up to 32MB of swap
1.249     nick      553: per anoncvs user (assuming the user does a large operation; while smaller
                    554: operations use fewer resources, anoncvs still makes much more of an
1.360     lum       555: impact than ftp).  Such anoncvs machines should have excellent
1.249     nick      556: network connectivity for the area they are expected to serve.  A
                    557: <a href="anoncvs.shar">document</a>
                    558: which describes the setup of anoncvs servers is available.
                    559:
1.387     nick      560: <h3><a name="NOTES"><font color="#0000e0">Final notes</font></a></h3>
1.249     nick      561: After upgrading your source tree, you should read the comments
                    562: at the top of <kbd>/usr/src/Makefile</kbd> before attempting
                    563: a build.  Also, you should build a new kernel <strong>before</strong>
                    564: doing a <kbd>make build</kbd> if possible.  In some cases it may be
                    565: necessary to rebuild and install the <kbd>config</kbd> utility before
                    566: you can build the kernel.  If <kbd>config GENERIC</kbd> fails this
                    567: is probably the case.
                    568: <p>
                    569: It is important to note that upgrading from a release to the current tree
                    570: by rebuilding the sources can be rather difficult due to dependencies
                    571: that are often not obvious.  Therefore, it is suggested that you first
                    572: install the latest snapshot before attempting a tree build from source.
1.1       deraadt   573:
                    574: <hr>
1.249     nick      575: <a href="index.html"><img height="24" width="24" src="back.gif" border="0"
                    576: alt="OpenBSD"></a>
1.135     naddy     577: <a href="mailto:www@openbsd.org">www@openbsd.org</a>
1.388     sthen     578: <br><small>$OpenBSD: anoncvs.html.end,v 1.23 2013/08/29 11:25:31 nick Exp $
1.155     jsyn      579: </small>
1.1       deraadt   580:
                    581: </body>
                    582: </html>