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

Annotation of www/anoncvs.html, Revision 1.402

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