<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>synchronet &#8211; Virtually Fun</title>
	<atom:link href="https://virtuallyfun.com/category/synchronet/feed/" rel="self" type="application/rss+xml" />
	<link>https://virtuallyfun.com</link>
	<description>Fun with Virtualization</description>
	<lastBuildDate>Mon, 01 Jun 2026 11:23:13 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>
	<item>
		<title>what is more fringe than a telnet bbs?</title>
		<link>https://virtuallyfun.com/2014/06/21/what-is-more-fringe-than-a-telnet-bbs/</link>
					<comments>https://virtuallyfun.com/2014/06/21/what-is-more-fringe-than-a-telnet-bbs/#respond</comments>
		
		<dc:creator><![CDATA[neozeed]]></dc:creator>
		<pubDate>Sat, 21 Jun 2014 04:59:50 +0000</pubDate>
				<category><![CDATA[DECnet]]></category>
		<category><![CDATA[HECnet]]></category>
		<category><![CDATA[microsoft windows]]></category>
		<category><![CDATA[synchronet]]></category>
		<category><![CDATA[telnet]]></category>
		<category><![CDATA[virtual networking]]></category>
		<guid isPermaLink="false">https://virtuallyfun.com/?p=4307</guid>

					<description><![CDATA[A bbs over decnet! I found a simple c server and client program that was ported to decnet.  And it was easy enough to follow I thought I&#8217;d try something fun.  So I took Synchronet 3.00c and started to identify &#8230; <a href="https://virtuallyfun.com/2014/06/21/what-is-more-fringe-than-a-telnet-bbs/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<div class="wp-block-image">
<figure class="aligncenter"><a href="https://virtuallyfun.com/wp-content/uploads/2014/06/synchronet-over-decnet.png"><img decoding="async" src="https://virtuallyfun.com/wp-content/uploads/2014/06/synchronet-over-decnet.png" alt="Synchronet over decnet " class="wp-image-4308"/></a><figcaption class="wp-element-caption">Synchronet over decnet</figcaption></figure>
</div>


<p class="wp-block-paragraph">A bbs over decnet!</p>



<p class="wp-block-paragraph">I found <a href="http://vouters.dyndns.org/tima/Windows-TCP-Decnet-programming-example.html"><del>a simple c server and client program</del></a> that was ported to decnet.  And it was easy enough to follow I thought I&#8217;d try something fun.  So I took <a href="ftp://vert.synchro.net/Synchronet_Archive/ssrc300c.zip">Synchronet 3.00c</a> and started to identify the winsock tcpip portions and then slowly alter them to either stubs or being more decnet friendly.</p>



<p class="wp-block-paragraph">Surprisingly this wasn&#8217;t so hard.</p>



<p class="wp-block-paragraph">The hard part is that decnet doesn&#8217;t have a telnet like protocol,  and I don&#8217;t have enough patience to try <a href="http://manpages.ubuntu.com/manpages/precise/man8/ctermd.8.html">to reverse how ctermd works</a>, so with a lot of searching I found a semi <a href="https://web.archive.org/web/19990508184718/http://www.musc.edu/~brannanp/telnet/">simple telnet client</a> and mostly got it running on decnet.   Right now I have issues resolving address, so it is hardcoded.</p>



<p class="wp-block-paragraph">I have to admit it was pretty cool to see the first connection, even though it aborted when it couldn&#8217;t figure out my ip address.   I made some more changes, and it worked!!</p>



<p class="wp-block-paragraph">The next step was to fire up gns3 and build a simple 2 area decnet network and see if a NT box from area one could connect to a bbs in area two.  And with a few false starts I finally got a working multi area network (decnet isn&#8217;t like tcpip!!) <a href="http://www.cisco.com/c/en/us/td/docs/ios/decnet/configuration/guide/15-mt/dec_15_mt_book/configuring_decnet.pdf">This document</a> on cisco&#8217;s site was invaluable.</p>


<div class="wp-block-image">
<figure class="aligncenter"><a href="https://virtuallyfun.com/wp-content/uploads/2014/06/decnet-gns3-network.png"><img decoding="async" src="https://virtuallyfun.com/wp-content/uploads/2014/06/decnet-gns3-network.png" alt="Simple GNS DECnet network" class="wp-image-4317"/></a><figcaption class="wp-element-caption">Simple GNS DECnet network</figcaption></figure>
</div>


<p class="wp-block-paragraph">As you can see this is pretty simple.  I wanted two serial connections so I could run DECnet on one serial connection, and TCP/IP on the other.  This way I could shut down the TCP/IP connection to ensure my conversation was 100% over DECnet.</p>



<p class="wp-block-paragraph">R1:</p>



<p class="wp-block-paragraph">decnet routing iv-prime 1.1<br>
decnet node-type area<br>
!<br>
interface FastEthernet0/0<br>
ip address 192.168.0.1 255.255.255.0<br>
duplex auto<br>
speed auto<br>
decnet cost 20<br>
!<br>
interface Serial1/0<br>
no ip address<br>
decnet cost 20<br>
serial restart-delay 0<br>
!<br>
interface Serial1/1<br>
ip address 10.5.0.1 255.255.255.252<br>
serial restart-delay 0<br>
!<br>
router rip<br>
network 10.0.0.0<br>
network 192.168.0.0</p>



<p class="wp-block-paragraph">And R2:</p>



<p class="wp-block-paragraph">decnet routing iv-prime 2.1<br>
decnet node-type area<br>
!<br>
interface FastEthernet0/0<br>
ip address 192.168.2.1 255.255.255.0<br>
duplex auto<br>
speed auto<br>
decnet cost 10<br>
!<br>
interface FastEthernet0/1<br>
ip address dhcp<br>
duplex auto<br>
speed auto<br>
!<br>
interface Serial1/0<br>
no ip address<br>
decnet cost 10<br>
serial restart-delay 0<br>
!<br>
interface Serial1/1<br>
ip address 10.5.0.2 255.255.255.252<br>
serial restart-delay 0<br>
!<br>
router rip<br>
redistribute static<br>
network 10.0.0.0<br>
network 192.168.2.0</p>



<p class="wp-block-paragraph">As you can see the configuration is pretty simple.  I went with RIP because it&#8217;s a small network, and I only need a few routes.  EIRP, OSPF and friends are just pure overkill.  And recall VMNet8 is the NAT interface provided by <a href="https://my.vmware.com/web/vmware/free#desktop_end_user_computing/vmware_player/6_0|PLAYER-602">VMWare Player</a>.</p>



<p class="wp-block-paragraph">Checking output from the routers, shows that DECnet is routing, and that I can ping both of my test NT boxes:</p>



<p class="wp-block-paragraph">R1#show decnet route<br>
Area Cost Hops Next Hop to Node Expires Prio<br>
*1 0 0 (Local) -&gt; 1.1<br>
*2 20 1 Serial1/0 -&gt; 2.1 44 64 A+<br>
Node Cost Hops Next Hop to Node Expires Prio<br>
*(Area) 0 0 (Local) -&gt; 1.1<br>
*1.1 0 0 (Local) -&gt; 1.1<br>
*1.3 20 1 FastEthernet0/0 -&gt; 1.3 65<br>
R1#ping decnet 1.3</p>



<p class="wp-block-paragraph">Type escape sequence to abort.<br>
Sending 5, 100-byte DECnet echos to atg 0 area.node 1.3, timeout is 5 seconds:<br>
!!!!!<br>
Success rate is 100 percent (5/5), round-trip min/avg/max = 4/7/12 ms<br>
R1#ping decnet 2.5</p>



<p class="wp-block-paragraph">Type escape sequence to abort.<br>
Sending 5, 100-byte DECnet echos to atg 0 area.node 2.5, timeout is 5 seconds:<br>
!!!!!<br>
Success rate is 100 percent (5/5), round-trip min/avg/max = 12/34/60 ms<br>
R1#</p>



<p class="wp-block-paragraph">Everything is looking good! I fired up my DECnet telnet and success!!</p>


<div class="wp-block-image">
<figure class="aligncenter"><a href="https://virtuallyfun.com/wp-content/uploads/2014/06/synchronet-over-decnet-2.png"><img decoding="async" src="https://virtuallyfun.com/wp-content/uploads/2014/06/synchronet-over-decnet-2.png" alt="Success!" class="wp-image-4318"/></a><figcaption class="wp-element-caption">Success!</figcaption></figure>
</div>


<p class="wp-block-paragraph">Anyone crazy enough to want it can find the <a href="https://sourceforge.net/projects/hecnetnt/files/Binary/Decnet-synchronet/">BBS on sourceforge</a>, along with the <a href="https://sourceforge.net/projects/hecnetnt/files/Binary/Decnet-telnet/">telnet client</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://virtuallyfun.com/2014/06/21/what-is-more-fringe-than-a-telnet-bbs/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Another OS/2 Synchronet BBS</title>
		<link>https://virtuallyfun.com/2011/09/25/another-os2-synchronet-bbs/</link>
					<comments>https://virtuallyfun.com/2011/09/25/another-os2-synchronet-bbs/#comments</comments>
		
		<dc:creator><![CDATA[neozeed]]></dc:creator>
		<pubDate>Sun, 25 Sep 2011 20:24:06 +0000</pubDate>
				<category><![CDATA[bbs]]></category>
		<category><![CDATA[modems]]></category>
		<category><![CDATA[OS/2]]></category>
		<category><![CDATA[OS/2 2.0]]></category>
		<category><![CDATA[QEMU]]></category>
		<category><![CDATA[synchronet]]></category>
		<category><![CDATA[syncterm]]></category>
		<guid isPermaLink="false">https://virtuallyfun.com/?p=1452</guid>

					<description><![CDATA[It&#8217;s always cool to see them pop up in the wild. Â So here is the quick writeup onÂ gabucino.beÂ going over some of the trials of setting up bbs.gabucino.be .. And apparently he&#8217;s had far better luck getting the modems to operate &#8230; <a href="https://virtuallyfun.com/2011/09/25/another-os2-synchronet-bbs/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p><a href="telnet://bbs.gabucino.be"><img fetchpriority="high" decoding="async" class="alignleft size-medium wp-image-1453" title="gabbs" src="https://virtuallyfun.com/wp-content/uploads/2011/09/gabbs-300x200.png" alt="" width="300" height="200" /></a>It&#8217;s always cool to see them pop up in the wild. Â So here is the quick writeup onÂ <a href="http://www.gabucino.be/files/syncgood.html">gabucino.be</a>Â going over some of the trials of setting up bbs.gabucino.be ..</p>
<p>And apparently he&#8217;s had far better luck getting the modems to operate well more like modems. Â So no cheating as I did by using passive mode FTP to transfer QWK packets in &amp; out of the system. Â Its all very cool, and of course powered by <a href="https://virtuallyfun.com/?p=534">OS/2</a> on <a href="https://virtuallyfun.com/?p=1098">Qemu</a> so that makes me happy!</p>
<p>There isn&#8217;t a flash/java based page, so I&#8217;d recommend using <a href="https://virtuallyfun.com/?p=75">syncterm</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://virtuallyfun.com/2011/09/25/another-os2-synchronet-bbs/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Domain Poker</title>
		<link>https://virtuallyfun.com/2011/06/05/domain-poker/</link>
					<comments>https://virtuallyfun.com/2011/06/05/domain-poker/#respond</comments>
		
		<dc:creator><![CDATA[neozeed]]></dc:creator>
		<pubDate>Sun, 05 Jun 2011 23:56:04 +0000</pubDate>
				<category><![CDATA[bbs]]></category>
		<category><![CDATA[synchronet]]></category>
		<guid isPermaLink="false">https://virtuallyfun.com/?p=893</guid>

					<description><![CDATA[No really this isn&#8217;t some cheezy ad for &#8216;internet poker&#8217;. Â Wait, well maybe it is. Â Anyways I was on my Synchronet with a friend when we tried &#8216;Domain Poker&#8217;, and the version that shipped with Synchronet for DOS-OS/2 is the &#8230; <a href="https://virtuallyfun.com/2011/06/05/domain-poker/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>No really this isn&#8217;t some cheezy ad for &#8216;internet poker&#8217;. Â Wait, well maybe it is. Â Anyways I was on <a href="http://bbs.superglobalmegacorp.com/">my Synchronet</a> with a friend when we tried &#8216;Domain Poker&#8217;, and the version that shipped with <a href="http://www.synchro.net/">Synchronet</a> for <a href="http://vpsland.superglobalmegacorp.com/install/bbs/synchronet/sbbs230b.zip">DOS-OS/2</a> is the trial version. Â And it&#8217;s old. Â So while googling for an updated version I came across <a href="http://vpsland.superglobalmegacorp.com/install/bbs/synchronet/dpok2k.zip">dpok2k.zip</a></p>
<blockquote><p>Happy Y2K and beyond!<br />
In support of the renewed interest in Synchronet BBS Software and it&#8217;s expectedtelnet capabilities some of you have been asking for registered versions of theold Domain Entertainment doors. Â Instead, I&#8217;ve gone ahead and recompiled thesome of the doors (the games) so that they don&#8217;t require any registration.<br />
Be aware that Domain Entertainment no longer makes, sells, or supports BBSdoors so use these at your own risk. Â Domain Entertainment assumes no liabilityfor errors or omissions in these files or damages resulting from the use ofthem.<br />
You may freely distribute this software so long as it is distributed in it&#8217;soriginal form with all accompanying files.</p></blockquote>
<p>Wow that&#8217;s pretty cool!</p>
<p>So I&#8217;ve loaded it up on my BBS, and I&#8217;ve also updated the &#8216;<a href="http://vpsland.superglobalmegacorp.com/jdosbox/minisync.html">bubble</a>&#8216; BBS.</p>
<p>Although I don&#8217;t know poker for crap, any time I&#8217;ve won it&#8217;s with &#8216;neutral computers&#8217; that don&#8217;t cheat. lol</p>
]]></content:encoded>
					
					<wfw:commentRss>https://virtuallyfun.com/2011/06/05/domain-poker/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>fTelnet .. another web based telnet application</title>
		<link>https://virtuallyfun.com/2011/05/30/ftelnet-another-web-based-telnet-application/</link>
					<comments>https://virtuallyfun.com/2011/05/30/ftelnet-another-web-based-telnet-application/#comments</comments>
		
		<dc:creator><![CDATA[neozeed]]></dc:creator>
		<pubDate>Mon, 30 May 2011 16:07:20 +0000</pubDate>
				<category><![CDATA[bbs]]></category>
		<category><![CDATA[synchronet]]></category>
		<guid isPermaLink="false">https://virtuallyfun.com/?p=794</guid>

					<description><![CDATA[While browsing around for some hints on how to configure LORD (Legend of the Red Dragon) on Synchronet, I stumbled upon fTelnet. The one interesting feature that fTelnet has is Ymodem-G support in the browser. Â Sadly for the life of &#8230; <a href="https://virtuallyfun.com/2011/05/30/ftelnet-another-web-based-telnet-application/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>While browsing around for some hints on how to configure <a href="http://lord.lordlegacy.com/">LORD</a> (<a href="http://en.wikipedia.org/wiki/Legend_of_the_Red_Dragon">Legend of the Red Dragon</a>) on <a href="http://www.synchro.net/">Synchronet</a>, I stumbled upon <a href="http://www.ftelnet.ca/">fTelnet</a>.</p>
<p>The one interesting feature that fTelnet has is Ymodem-G support in the browser. Â Sadly for the life of me I can&#8217;t figure out how to get it to work&#8230;</p>
<p><a href="http://bbs.superglobalmegacorp.com/"><img decoding="async" class="aligncenter size-full wp-image-795" title="ftelnet" src="https://virtuallyfun.com/wp-content/uploads/2011/05/ftelnet.png" alt="" width="782" height="463" /></a>So for now if you want to try it, it&#8217;s available <a href="http://bbs.superglobalmegacorp.com/">here</a> on my test system&#8230;</p>
<p>I&#8217;ll have to detail the whole OS/2 on Qemu &amp; SynchronetÂ experienceÂ later.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://virtuallyfun.com/2011/05/30/ftelnet-another-web-based-telnet-application/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Some updates..</title>
		<link>https://virtuallyfun.com/2009/12/01/some-updates/</link>
					<comments>https://virtuallyfun.com/2009/12/01/some-updates/#respond</comments>
		
		<dc:creator><![CDATA[neozeed]]></dc:creator>
		<pubDate>Wed, 02 Dec 2009 03:40:00 +0000</pubDate>
				<category><![CDATA[bbs]]></category>
		<category><![CDATA[QEMU]]></category>
		<category><![CDATA[random updates]]></category>
		<category><![CDATA[synchronet]]></category>
		<category><![CDATA[Visual C++]]></category>
		<guid isPermaLink="false">https://virtuallyfun.com/?p=181</guid>

					<description><![CDATA[I had a request for the qemu 0.90 binaries to run NeXTSTEP&#8230; I don&#8217;t own Vaxenrule.com anymore so for now I&#8217;ll put them here: http://dl.dropbox.com/u/1694005/qemu090%20for%20nextstep.zip Sorry for the bitrot stuff&#8230; 😐 At least I&#8217;m still here. Also while working on &#8230; <a href="https://virtuallyfun.com/2009/12/01/some-updates/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>I had a request for the qemu 0.90 binaries to run NeXTSTEP&#8230; I don&#8217;t own Vaxenrule.com anymore so for now I&#8217;ll put them here:</p>
<p><a href="http://vpsland.superglobalmegacorp.com/install/qemu/qemu090%20for%20nextstep.zip">http://dl.dropbox.com/u/1694005/qemu090%20for%20nextstep.zip<br />
</a><br />
Sorry for the bitrot stuff&#8230; <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f610.png" alt="😐" class="wp-smiley" style="height: 1em; max-height: 1em;" /> At least I&#8217;m still here.</p>
<p>Also while working on <a href="https://sourceforge.net/projects/tradewarsc/">Tradewars C</a> today, I came across this great package called <a href="http://www.wpusa.dynip.com/files2/FDIST/DDSDOORS/ODOORS62.ZIP">OpenDoors</a>. Even better is that it&#8217;s under the LGPL. The only &#8220;downside&#8221; is that OpenDoors requires Visual C++ 6.0 or higher to build, because of the toolbar.. Also I&#8217;m not sure if going from VC 1.0 to 9.0 didn&#8217;t flake some stuff out as well&#8230; I&#8217;m not 100% sure about it, but the trading part of the game feels.. weird.</p>
<p>The examples are pretty straight forward, and it took a few hours on &amp; off for me to convert the standalone tradewars into a door program. I like the feel of it so much I may try to see about converting SIMH to run with it.. Maybe even dumbfrotz.</p>
<p><div id="attachment_3468" style="width: 650px" class="wp-caption aligncenter"><a href="https://virtuallyfun.com/wp-content/uploads/2009/12/OpenDoors-trade-wars.jpg"><img decoding="async" aria-describedby="caption-attachment-3468" class="size-full wp-image-3468" src="https://virtuallyfun.com/wp-content/uploads/2009/12/OpenDoors-trade-wars.jpg" alt="OpenDoors trade wars" width="640" height="397" /></a><p id="caption-attachment-3468" class="wp-caption-text">OpenDoors trade wars</p></div></p>
<p>Above is a picture of what the console looks like.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://virtuallyfun.com/2009/12/01/some-updates/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Synchronet / Synchterm BBS fun!</title>
		<link>https://virtuallyfun.com/2008/10/16/synchronet-synchterm-bbs-fun/</link>
					<comments>https://virtuallyfun.com/2008/10/16/synchronet-synchterm-bbs-fun/#comments</comments>
		
		<dc:creator><![CDATA[neozeed]]></dc:creator>
		<pubDate>Fri, 17 Oct 2008 03:19:00 +0000</pubDate>
				<category><![CDATA[bbs]]></category>
		<category><![CDATA[synchronet]]></category>
		<category><![CDATA[syncterm]]></category>
		<guid isPermaLink="false">https://virtuallyfun.com/?p=75</guid>

					<description><![CDATA[&#160; Well the last while I have &#8216;rediscovered&#8217; the fun of BBS&#8217;ing. There is a resurgence of popularity of the Synchronet BBS software. The cool thing about it is the ease to setup the QWK messages (it just uses ftp!) &#8230; <a href="https://virtuallyfun.com/2008/10/16/synchronet-synchterm-bbs-fun/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>&nbsp;</p>
<div><a href="https://virtuallyfun.com/wp-content/uploads/2008/10/synchronet-banner.jpg"><img loading="lazy" decoding="async" class="alignleft size-medium wp-image-1498" title="synchronet banner" src="https://virtuallyfun.com/wp-content/uploads/2008/10/synchronet-banner-300x199.jpg" alt="" width="300" height="199" /></a></div>
<div>Well the last while I have &#8216;rediscovered&#8217; the fun of <span id="SPELLING_ERROR_0" class="blsp-spelling-error">BBS&#8217;ing</span>. There is a resurgence of popularity of the <a href="http://www.synchro.net/"><span id="SPELLING_ERROR_1" class="blsp-spelling-error">Synchronet</span> BBS</a> software. The cool thing about it is the ease to setup the <span id="SPELLING_ERROR_2" class="blsp-spelling-error">QWK</span> messages (it just uses ftp!) and within 30 minutes of downloading and installing I had myself a node <span id="SPELLING_ERROR_3" class="blsp-spelling-error">VERT&#8217;s</span> <span id="SPELLING_ERROR_4" class="blsp-spelling-error">quicknet</span>!</div>
<p>You too can download your very own BBS software <a href="http://www.synchro.net/download.html">here</a>.</p>
<p>There is even a GREAT terminal emulator suitably named <a href="http://syncterm.bbsdev.net/"><span id="SPELLING_ERROR_5" class="blsp-spelling-error">Syncterm</span></a> that completes the <span id="SPELLING_ERROR_6" class="blsp-spelling-error">experence</span>. It supports <span id="SPELLING_ERROR_7" class="blsp-spelling-error">rsh</span>, telnet, ssh, x/y/z modem and cool ANSI graphics!</p>
<div>Another exciting aspect of the whole thing is that you can easily link up USENET servers with this BBS software&#8230; And of course it provides some involved web server <span id="SPELLING_ERROR_8" class="blsp-spelling-error">wirtten</span> in javascript.</div>
<div>The source to the whole thing is <span id="SPELLING_ERROR_9" class="blsp-spelling-error">GPL&#8217;d</span> so there is some hope that this will allow <span id="SPELLING_ERROR_10" class="blsp-spelling-error">BBS&#8217;s</span> to continue out there for some time.</div>
<div>Oh yeah and I did get a <span id="SPELLING_ERROR_11" class="blsp-spelling-error">VPS</span> so I do plan on hosting some of the old files from <span id="SPELLING_ERROR_12" class="blsp-spelling-error">vaxenrule</span>.com .. In <span id="SPELLING_ERROR_13" class="blsp-spelling-error">ther</span> interim though you can connect to the &#8216;underground&#8217; BBS @ 75.127.119.16 &#8230; You could telnet in with any old telnet client, but I&#8217;d suggest <span id="SPELLING_ERROR_14" class="blsp-spelling-error">Syncterm</span>!</div>
<div>&#8212;-</div>
<div>Update that address has long since passed it is now <a href="http://bbs.superglobalmegacorp.com">bbs.superglobalmegacorp.com</a> &#8230;!</div>
]]></content:encoded>
					
					<wfw:commentRss>https://virtuallyfun.com/2008/10/16/synchronet-synchterm-bbs-fun/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
