Hi. I am looking for an IPv6 capable CVSUP mirror. I found a discussion from one year ago where it was stated that CVSUP was not IPv6-capable. Does anyone know if this has changed? Sam -- Samuel Tardieu -- sam@rfc1149.net -- http://www.rfc1149.net/sam
sam> Does anyone know if this has changed? I believe, and unfortunately, it doesn't changed; still cvsup(1) doesn't speak IPv6. However, there's on-going activity (read: it is *not* matured), cvsync. It supports both IPv4 and IPv6, is written in C++, and has a similar feature of cvsup(1); you can mirror CVS repository by network. If you've interested, install it from ports/net/cvsync. Do you want to access a cvsync server on IPv6 network? free to try cvsync.jp.FreeBSD.org (now alpha test driving, it may sometimes down.) -- - Makoto `MAR' Matsushita
On Tue, Jun 24, 2003 at 09:47:31AM +0200, Samuel Tardieu wrote:> Hi. > > I am looking for an IPv6 capable CVSUP mirror. I found a discussion > from one year ago where it was stated that CVSUP was not IPv6-capable. > > Does anyone know if this has changed?AFAIK it has not. Someone would need to teach modula-3 about ipv6. It still might be possible to access a cvsup server using a 6-to-4 gateway, but I don't know of anyone who's tried. Kris -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 187 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-stable/attachments/20030624/c1797ae6/attachment.bin
On Tue, 24 Jun 2003, Hiroki Sato wrote:> Samuel Tardieu <sam@rfc1149.net> wrote > sam> Let me know if you want access to a dual stack v4/v6 FreeBSD machine > sam> in Europe so that you can put another test server. > JFYI, you can find a list of public cvsync servers and information about > mailing list concerning use of cvsync from http://www.allbsd.org/cvsync/.Hmm, the new cvsup4 seems like a prime "cvsync" candidate: http://www.isc.org/ISC/news/pr-06132003.html (Thanks, ISC.) -mrh -- From: "Spam Catcher" <spam-catcher@adept.org> To: spam-catcher@adept.org Do NOT send email to the address listed above or you will be added to a blacklist!
Hi! I just installed a new disc in FreeBSD 4.8, and updated my fstab with the following extra info /dev/ad2s1b none swap sw 0 0 /dev/ad2s1e /mnt/space ufs rw 2 2 During the boot i get the following: ad0: 58644MB <IC35L060AVVA07-0> [119150/16/63] at ata0-master UDMA100 ad2: 38166MB <ST340016A> [77545/16/63] at ata1-master UDMA100 Mounting root from ufs:/dev/ad0s1a ad2s1e: UDMA ICRC error reading fsbn 2097247 of 16-31 (ad2s1 bn 2097247; cn 130 tn 139 sn 40) retrying ad2s1e: UDMA ICRC error reading fsbn 2097247 of 16-31 (ad2s1 bn 2097247; cn 130 tn 139 sn 40) retrying ad2s1e: UDMA ICRC error reading fsbn 2097247 of 16-31 (ad2s1 bn 2097247; cn 130 tn 139 sn 40) retrying ad2s1e: UDMA ICRC error reading fsbn 2097247 of 16-31 (ad2s1 bn 2097247; cn 130 tn 139 sn 40) falling back to PIO mode Now what does this mean? I also wonder why it says that it found ad2 as UDMA100 since it is actually an UDMA33 disk? Best regards, Michael
On Tue, Jun 24, 2003 at 02:45:53AM -0700, Kris Kennaway wrote:> AFAIK it has not. Someone would need to teach modula-3 about ipv6. > > It still might be possible to access a cvsup server using a 6-to-4 > gateway, but I don't know of anyone who's tried.I've just made cvsup.ie.freebsd.org available over IPv6 by doing port forwarding. This means that if you can convince your cvsup client to do IPv6 (using port forwarding from 127.0.0.1?) then you should be able to connect to it using IPv6. I've included an example of how to use it below, usint the nc6 port. David. % fgrep host src-supfile *default host=127.0.0.1 % tail -1 /etc/inetd.conf cvsup stream tcp nowait nobody /usr/local/bin/nc6 nc6 cvsup.ie.freebsd.org 5999 % head -1 /etc/hosts.allow cvsup: all EXCEPT 127.0.0.1 : deny % cvsup src-supfile [and we're off...]