Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

New TELNET TI-99/4A BBS's

78 views
Skip to first unread message

Beery

unread,
Mar 21, 2021, 11:15:13 PM3/21/21
to
There are two BBS's that have went online supporting the TI-99/4A and Geneve
9640 that are running the AFTERHOURS BBS software with the TIPI. They can be
accessed through a Telnet client.

They are:

Mytbox99.ddns.net port 61643
TheKeep.net port 9918

There is also two other BBS's available Telnet including:

Fusionbbs.ddns.net port 9640
Heatwave.ddns.net port 9640

The 9640News BBS is not accessible thanks to AT&T blocking all customers from
inbound connections on their WIFI cellular network.

Beery

--Beery Miller -- 9640 News BBS -- 9640news.ddns.net:9640 --

Dennis Boone

unread,
Mar 22, 2021, 11:38:19 AM3/22/21
to
> The 9640News BBS is not accessible thanks to AT&T blocking all customers
> from inbound connections on their WIFI cellular network.

You know the cheapest cloud guest you can find would let you tunnel that
stuff into your local network, right?

De

Bill.T...@tkp.thekeep.net

unread,
Mar 22, 2021, 11:47:37 AM3/22/21
to
Also there is still The Hidden Reef BBS that runs on a TI-99/4A but is
only accessable via modem normally, but if you telnet to thekeep.net:23
and create an account you can use my dialout to dial it.. /go dialout
and then D1 to dial the reef..

The direct modem number for the reef is 718-448-9402

Dumas Walker

unread,
Mar 23, 2021, 2:15:07 AM3/23/21
to
> The 9640News BBS is not accessible thanks to AT&T blocking all customers from
> bound connections on their WIFI cellular network.

I will have to check some of those boards out when I get a chance. How
much longer are you stuck with AT&T?

Mike


* SLMR 2.1a * Governments absorb 100x their weight in excess liberties.

Beery

unread,
Mar 26, 2021, 11:15:24 PM3/26/21
to
I am stuck with AT&T until late summer. My only other option is to go back to
AT&T DSL.

Beery

unread,
Mar 26, 2021, 11:15:24 PM3/26/21
to
I have heard there is a way to tunnel in, but I have not seen a description
with enough detail I could follow to configure to permit it.

DB> > The 9640News BBS is not accessible thanks to AT&T blocking all customer
DB> > from inbound connections on their WIFI cellular network.
DB>
DB> You know the cheapest cloud guest you can find would let you tunnel that
DB> stuff into your local network, right?

Bill.T...@tkp.thekeep.net

unread,
Mar 27, 2021, 12:39:06 PM3/27/21
to
BE>I have heard there is a way to tunnel in, but I have not seen a description
BE>with enough detail I could follow to configure to permit it.

BE> DB> > The 9640News BBS is not accessible thanks to AT&T blocking all custo
BE> DB> > from inbound connections on their WIFI cellular network.
BE> DB>
BE> DB> You know the cheapest cloud guest you can find would let you tunnel tha
BE> DB> stuff into your local network, right?

google vpn tunnel vm

aquire a vm on the internet somewhere with a public ip
set up a vpn from that server to your home network machine with a
private lan
port forward on the vm to the private lan ip address
profit

Scott Alfter

unread,
Mar 30, 2021, 3:18:42 PM3/30/21
to
In article <12145...@f109.n4.z21.fsxnet>,
Beery <Be...@f109.n4.z21.fsxnet> wrote:
>I have heard there is a way to tunnel in, but I have not seen a description
>with enough detail I could follow to configure to permit it.

Perhaps an SSH reverse tunnel would work. Let's say you have a host of some
sort (perhaps a VPS, or maybe even a webhost) at invalid.tld. The host you
want to make accessible opens an SSH connection to invalid.tld and keeps it
open:

ssh -NR 12345:localhost:23 invalid.tld

This will tunnel port 12345 on invalid.tld to port 23 on your firewalled
system. People then telnet to invalid.tld:12345 to connect.

Sometimes the connection might be dropped for inactivity. Restarting it
with an infinite loop in a shell script will minimize downtime.

_/_
/ v \ Scott Alfter (remove the obvious to send mail)
(IIGS( https://alfter.us/ Top-posting!
\_^_/ >What's the most annoying thing on Usenet?

Dennis Boone

unread,
Mar 30, 2021, 6:47:39 PM3/30/21
to
> Perhaps an SSH reverse tunnel would work.

There's a tool called autossh that might help automate establishing
and maintaining a tunnel setup using ssh.

De

Beery

unread,
Mar 31, 2021, 6:15:12 PM3/31/21
to
SA> Perhaps an SSH reverse tunnel would work. Let's say you have a host of
SA> somesort (perhaps a VPS, or maybe even a webhost) at invalid.tld. The
SA> host youwant to make accessible opens an SSH connection to invalid.tld
SA> and keeps itopen:
SA>
SA> ssh -NR 12345:localhost:23 invalid.tld

What I have is a program called Mystic BBS running on Windows 10 I need to
reach from the outside.

Beery

Dennis Boone

unread,
Apr 1, 2021, 5:25:42 PM4/1/21
to
> What I have is a program called Mystic BBS running on Windows 10 I need to
> reach from the outside.

So you still get a tiny vm on one of the hosting services - AWS, Digital
Ocean, etc. Make sure you can ssh into it from home. Arrange for a
hostname for this vm that you can publish for your BBS. Imagine this
is bbs.beery.net.

Then you do one of two things:

1. Use an SSH client on the Windows 10 machine to set up the connection
described in previous messages, although you may do it with mouse clicky
gui behaviors instead of a command line. It sets up a tunnel from the
Windows machine to the vm, and arranges for connections to a port on the
vm to be tunneled through to a specified port on the windows machine.
Specifics vary depending on what SSH client you select.

2. Use a razzpi or similar inside your local network, and use a
modified ssh command there which establishes the tunnel, and connects to
the bbs telnet port on the Windows machine across the room (instead of
to a port on the same machine) when a connection comes in. If the IP
address of the Windows machine is 192.168.1.3 and the bbs listens on
port 23, then the command is going to look something like:

ssh -NR23:192.168.1.3:23 user...@bbs.beery.net

You'll either need to create keys so the ssh can happen automatically
(recommended), or type the password each time the tunnel needs to be
started up.

If you've done the keys, you can also use autossh to _keep_ the tunnel
up in the face of occasional network flakies.

client -> vm [tunnel -> win-or-razzpi] -> bbs port

Because you set this tunnel up _outbound_, it doesn't get blocked. And
the vm doesn't have [much] blocking at the cloud host datacenter.

De

Dumas Walker

unread,
Apr 1, 2021, 7:15:00 PM4/1/21
to
> SA> Perhaps an SSH reverse tunnel would work. Let's say you have a host of
> SA> somesort (perhaps a VPS, or maybe even a webhost) at invalid.tld. The
> SA> host youwant to make accessible opens an SSH connection to invalid.tld
> SA> and keeps itopen:
> SA>
> SA> ssh -NR 12345:localhost:23 invalid.tld

> What I have is a program called Mystic BBS running on Windows 10 I need to
> rea
> from the outside.

I think that is what he was suggesting this for. Your end creates the SSH
connection (outbound) that others connect to in order to get in. That way,
instead of trying to access one of your (blocked) ports, they are accessing
the system from the other "end of the tunnel" that you opened, which should
be outside of the AT&T port blockade.

Mike


* SLMR 2.1a * SysOp: Gofer in charge of bolts, wires & electricity

Beery

unread,
Apr 7, 2021, 11:15:16 PM4/7/21
to
Thanks for the reply and the details. I will try and investigate this weekend
your info to the vm providers.
0 new messages