Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

People are always available for work in the past tense.


dovenet / Synchronet Discussion / Re: kermit protocol in syncterm

SubjectAuthor
* kermit protocol in synctermChristian Sacks
+* kermit protocol in synctermRyan Fantus
|`- kermit protocol in synctermChristian Sacks
`* kermit protocol in synctermMRO
 +* kermit protocol in synctermChristian Sacks
 |+* kermit protocol in synctermMRO
 ||`- kermit protocol in synctermRyan Fantus
 |+- kermit protocol in synctermDigital Man
 |+- kermit protocol in synctermRyan Fantus
 |`* kermit protocol in synctermNightfox
 | +* kermit protocol in synctermMRO
 | |`- kermit protocol in synctermDavid Goodwin
 | `* kermit protocol in synctermPhigan
 |  `- kermit protocol in synctermMRO
 `* kermit protocol in synctermThe Lizard Master
  `- kermit protocol in synctermMRO

1
kermit protocol in syncterm

<64DE2959.50260.sync@vert.synchro.net>

  copy mid

https://www.rocksolidbbs.com/dovenet/article-flat.php?id=1333&group=DOVE-Net.Synchronet_Discussion#1333

  copy link   Newsgroups: DOVE-Net.Synchronet_Discussion
From: christian.sacks@VERT (Christian Sacks)
To: Ryan Fantus
Subject: kermit protocol in syncterm
Message-ID: <64DE2959.50260.sync@vert.synchro.net>
Date: Thu, 17 Aug 2023 14:43:50 +0100
X-Comment-To: Ryan Fantus
Path: rocksolidbbs.com!not-for-mail
Newsgroups: DOVE-Net.Synchronet_Discussion
X-FTN-AREA: SYNCHRONET
X-FTN-PID: Synchronet 3.19c-Linux master/77e624dd0 Nov 13 2022 GCC 10.2.1
X-FTN-TID: Mystic BBS 1.12 A48
X-FTN-MSGID: 2:250/5 e8242293
X-FTN-CHRS: CP437 2
X-FTN-SEEN-BY: 25/0 21 103/705 124/5016 134/100 138/146 153/135 143 149 757
X-FTN-PATH: 250/5 1 712/1321 153/7715 757 280/464
WhenImported: 20230817070617-0700 c1e0
WhenExported: 20230817081441-0700 c1e0
ExportedFrom: VERT sync 50260
Content-Type: text/plain; charset=IBM437
Content-Transfer-Encoding: 8bit
 by: Christian Sacks - Thu, 17 Aug 2023 13:43 UTC

On 17 Aug 2023, Ryan Fantus said the following...
RF> Any chance you can share how you got it working? And is it in Windows or
RF> linux?

It was in Linux, and I posted how to do this in the MYSTIC message base, but here's a TLDR;

Install gkermit from the usual repo, for ubuntu/debian `sudo apt install gkermit

Create a wrapper script called /mystic/kermit_batch.sh, the contents of which should be;

#!/usr/bin/env bash
FILELIST="$1"
FILES=$(cat $FILELIST|tr '\n' ' ')
if [[ "$(basename $FILELIST)" == "file.lst" ]]; then
for FILE in $FILES; do
echo "Sending file: $FILE"
/usr/bin/gkermit -d /tmp/kermit-send.log -Xis $FILE
done
else
echo "Sending file: $FILELIST"
/usr/bin/gkermit -d /tmp/kermit-send.log -Xis $FILELIST
fi
rm $FILELIST

Finally in the Mystic configuration ediror, goto "Editors -> Protocol Editor"
Create a new protocol called "Kermit" or whatever you want...

╔═════════════════════ Protocol Editor: Kermit ══════════════════════╗
║ ║
║ Active │ Yes ║
║ OS │ All ║
║ Batch │ Yes ║
║ Hot Key │ K ║
║ Description │ Kermit ║
║ Send Command │ /mystic/kermit_batch.sh %3 ║
║ Recv Command │ /usr/bin/gkermit -d /tmp/kermit-recv.log -Xir ║
║ ║
╚════════════════════════════════════════════════════════════════════╝

That's about the nuts and bolts of it.

Hope it helps =)

.... There are two types of people; those who finish what they start and

--- Mystic BBS v1.12 A48 2022/07/15 (Linux/64)
* Origin: thE qUAntUm wOrmhOlE, rAmsgAtE, uK. bbs.erb.pw (2:250/5)
■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net

Re: kermit protocol in syncterm

<64DE5376.50261.sync@vert.synchro.net>

  copy mid

https://www.rocksolidbbs.com/dovenet/article-flat.php?id=1334&group=DOVE-Net.Synchronet_Discussion#1334

  copy link   Newsgroups: DOVE-Net.Synchronet_Discussion
From: ryan.fantus@VERT (Ryan Fantus)
To: Christian Sacks
Subject: Re: kermit protocol in syncterm
Message-ID: <64DE5376.50261.sync@vert.synchro.net>
Date: Thu, 17 Aug 2023 09:38:10 -0700
X-Comment-To: Christian Sacks
Path: rocksolidbbs.com!not-for-mail
Newsgroups: DOVE-Net.Synchronet_Discussion
In-Reply-To: <64DE2959.50260.sync@vert.synchro.net>
References: <64DE2959.50260.sync@vert.synchro.net>
X-FTN-AREA: SYNCHRONET
X-FTN-PID: Synchronet 3.19c-Linux master/77e624dd0 Nov 13 2022 GCC 10.2.1
X-FTN-TID: Mystic BBS 1.12 A49
X-FTN-MSGID: 1:218/820 e0a9cb4a
X-FTN-REPLY: 2:250/5 e8242293
X-FTN-CHRS: CP437 2
X-FTN-SEEN-BY: 218/700 820 229/426 103/17 705 102/401 103/1 218/215 840 301/1
X-FTN-PATH: 218/820 700
WhenImported: 20230817100558-0700 c1e0
WhenExported: 20230817141439-0700 c1e0
ExportedFrom: VERT sync 50261
Content-Type: text/plain; charset=IBM437
Content-Transfer-Encoding: 8bit
 by: Ryan Fantus - Thu, 17 Aug 2023 16:38 UTC

CS> That's about the nuts and bolts of it.

Thanks for the writeup!

--- Mystic BBS v1.12 A49 2023/02/26 (Linux/64)
* Origin: m O N T E R E Y b B S . c O M (1:218/820)
■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net

Re: kermit protocol in syncterm

<64DE6649.50263.sync@vert.synchro.net>

  copy mid

https://www.rocksolidbbs.com/dovenet/article-flat.php?id=1336&group=DOVE-Net.Synchronet_Discussion#1336

  copy link   Newsgroups: DOVE-Net.Synchronet_Discussion
From: christian.sacks@VERT (Christian Sacks)
To: Ryan Fantus
Subject: Re: kermit protocol in syncterm
Message-ID: <64DE6649.50263.sync@vert.synchro.net>
Date: Thu, 17 Aug 2023 19:17:02 +0100
X-Comment-To: Ryan Fantus
Path: rocksolidbbs.com!not-for-mail
Newsgroups: DOVE-Net.Synchronet_Discussion
In-Reply-To: <64DE5376.50261.sync@vert.synchro.net>
References: <64DE5376.50261.sync@vert.synchro.net>
X-FTN-AREA: SYNCHRONET
X-FTN-PID: Synchronet 3.19c-Linux master/77e624dd0 Nov 13 2022 GCC 10.2.1
X-FTN-TID: Mystic BBS 1.12 A48
X-FTN-MSGID: 2:250/5 6dcf6345
X-FTN-REPLY: 1:218/820 e0a9cb4a
X-FTN-CHRS: CP437 2
X-FTN-SEEN-BY: 1/120 18/0 25/0 21 103/705 116/116 123/0 10 25 180 200 525 755
X-FTN-PATH: 250/5 1 3634/12 154/10 280/464
WhenImported: 20230817112617-0700 c1e0
WhenExported: 20230817141439-0700 c1e0
ExportedFrom: VERT sync 50263
Content-Type: text/plain; charset=IBM437
Content-Transfer-Encoding: 8bit
 by: Christian Sacks - Thu, 17 Aug 2023 18:17 UTC

On 17 Aug 2023, Ryan Fantus said the following...
RF> Thanks for the writeup!

You're very welcome, and I hope that it will help some people.
Always happy to try and help where I can.

.... There will be a rain dance Friday night, weather permitting!

--- Mystic BBS v1.12 A48 2022/07/15 (Linux/64)
* Origin: thE qUAntUm wOrmhOlE, rAmsgAtE, uK. bbs.erb.pw (2:250/5)
■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net

kermit protocol in syncterm

<64DEA8A9.9233.sync@bbses.info>

  copy mid

https://www.rocksolidbbs.com/dovenet/article-flat.php?id=1341&group=DOVE-Net.Synchronet_Discussion#1341

  copy link   Newsgroups: DOVE-Net.Synchronet_Discussion
From: mro@VERT/BBSESINF (MRO)
To: Christian Sacks
Subject: kermit protocol in syncterm
Message-ID: <64DEA8A9.9233.sync@bbses.info>
Date: Thu, 17 Aug 2023 18:09:29 -0500
X-Comment-To: Christian Sacks
Path: rocksolidbbs.com!not-for-mail
Organization: bbses.info
Newsgroups: DOVE-Net.Synchronet_Discussion
In-Reply-To: <64DE2959.50260.sync@vert.synchro.net>
References: <64DE2959.50260.sync@vert.synchro.net>
X-FTN-PID: Synchronet 3.19b-Win32 master/a2a9dc027 Jan 2 2022 MSC 1928
X-FTN-MSGID: 50268.sync@1:103/705 2944a4fe
X-FTN-REPLY: 2:250/5 e8242293
X-FTN-CHRS: CP437 2
WhenImported: 20230817161754-0700 c1e0
WhenExported: 20230817201441-0700 c1e0
ExportedFrom: VERT sync 50268
WhenImported: 20230817180929-0500 c168
WhenExported: 20230817181752-0500 c168
ExportedFrom: BBSESINF sync 9233
Content-Type: text/plain; charset=IBM437
Content-Transfer-Encoding: 8bit
 by: MRO - Thu, 17 Aug 2023 23:09 UTC

Re: kermit protocol in syncterm
By: Christian Sacks to Ryan Fantus on Thu Aug 17 2023 02:43 pm

> On 17 Aug 2023, Ryan Fantus said the following...
>
> RF> Any chance you can share how you got it working? And is it in Windows
> RF> or linux?
>
> It was in Linux, and I posted how to do this in the MYSTIC message base, but
> here's a TLDR;
>
> Install gkermit from the usual repo, for ubuntu/debian `sudo apt install
> gkermit
>
> Create a wrapper script called /mystic/kermit_batch.sh, the contents of

I havent used kermit since 1998 or something. I'm pretty sure it had problems with error correction and the speed wasn't great.

did you try ymodem G ilke dm suggested? you might be happier with it.
---
■ Synchronet ■ ::: BBSES.info - free BBS services :::

Re: kermit protocol in syncterm

<64DEBFB8.50270.sync@vert.synchro.net>

  copy mid

https://www.rocksolidbbs.com/dovenet/article-flat.php?id=1343&group=DOVE-Net.Synchronet_Discussion#1343

  copy link   Newsgroups: DOVE-Net.Synchronet_Discussion
From: christian.sacks@VERT (Christian Sacks)
To: MRO
Subject: Re: kermit protocol in syncterm
Message-ID: <64DEBFB8.50270.sync@vert.synchro.net>
Date: Fri, 18 Aug 2023 01:38:24 +0100
X-Comment-To: MRO
Path: rocksolidbbs.com!not-for-mail
Newsgroups: DOVE-Net.Synchronet_Discussion
In-Reply-To: <64DEA8A9.9233.sync@bbses.info>
References: <64DEA8A9.9233.sync@bbses.info>
X-FTN-AREA: SYNCHRONET
X-FTN-PID: Synchronet 3.19c-Linux master/77e624dd0 Nov 13 2022 GCC 10.2.1
X-FTN-TID: Mystic BBS 1.12 A48
X-FTN-MSGID: 2:250/5 37623ff8
X-FTN-REPLY: 50268.sync@1:103/705 2944a4fe
X-FTN-CHRS: CP437 2
X-FTN-SEEN-BY: 1/120 18/0 25/0 21 103/705 116/116 123/0 10 25 180 200 525 755
X-FTN-PATH: 250/5 1 3634/12 154/10 280/464
WhenImported: 20230817174752-0700 c1e0
WhenExported: 20230817201441-0700 c1e0
ExportedFrom: VERT sync 50270
Content-Type: text/plain; charset=IBM437
Content-Transfer-Encoding: 8bit
 by: Christian Sacks - Fri, 18 Aug 2023 00:38 UTC

On 17 Aug 2023, MRO said the following...
MR> I havent used kermit since 1998 or something. I'm pretty sure it had
MR> problems with error correction and the speed wasn't great.

Kermit is about 6 times faster than Zmodem for me =)
It's working flawlessly, and I just wish every BBS now had Kermit.

MR> did you try ymodem G ilke dm suggested? you might be happier with it.

I did try Ymodem, and it's about the same speed as Zmodem.

.... Do vegetarians eat animal crackers?

--- Mystic BBS v1.12 A48 2022/07/15 (Linux/64)
* Origin: thE qUAntUm wOrmhOlE, rAmsgAtE, uK. bbs.erb.pw (2:250/5)
■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net

Re: kermit protocol in syncterm

<64DEE697.9237.sync@bbses.info>

  copy mid

https://www.rocksolidbbs.com/dovenet/article-flat.php?id=1346&group=DOVE-Net.Synchronet_Discussion#1346

  copy link   Newsgroups: DOVE-Net.Synchronet_Discussion
From: mro@VERT/BBSESINF (MRO)
To: Christian Sacks
Subject: Re: kermit protocol in syncterm
Message-ID: <64DEE697.9237.sync@bbses.info>
Date: Thu, 17 Aug 2023 22:33:43 -0500
X-Comment-To: Christian Sacks
Path: rocksolidbbs.com!not-for-mail
Organization: bbses.info
Newsgroups: DOVE-Net.Synchronet_Discussion
In-Reply-To: <64DEBFB8.50270.sync@vert.synchro.net>
References: <64DEBFB8.50270.sync@vert.synchro.net>
X-FTN-PID: Synchronet 3.19b-Win32 master/a2a9dc027 Jan 2 2022 MSC 1928
X-FTN-MSGID: 50273.sync@1:103/705 2944e450
X-FTN-REPLY: 2:250/5 37623ff8
X-FTN-CHRS: CP437 2
WhenImported: 20230817204759-0700 c1e0
WhenExported: 20230818021437-0700 c1e0
ExportedFrom: VERT sync 50273
WhenImported: 20230817223343-0500 c168
WhenExported: 20230817224757-0500 c168
ExportedFrom: BBSESINF sync 9237
Content-Type: text/plain; charset=IBM437
Content-Transfer-Encoding: 8bit
 by: MRO - Fri, 18 Aug 2023 03:33 UTC

Re: Re: kermit protocol in syncterm
By: Christian Sacks to MRO on Fri Aug 18 2023 01:38 am

>
> Kermit is about 6 times faster than Zmodem for me =)
> It's working flawlessly, and I just wish every BBS now had Kermit.
>

well that's a bit older and zmodem kind of won the races on protocols in the bbs scene back in the day.

>
> I did try Ymodem, and it's about the same speed as Zmodem.
>

ymodem or ymodem-g? just go with ymodem-g.
also i recommend just making a script to make your files available on the web temporarily. make a fake protocol that has the user batch download it, then copy it on the web and give them the temporarly url. i did that before and
it was pretty easy.

you could also play around with ntp, i used that back in the day.
https://github.com/M-griffin/NTP
---
■ Synchronet ■ ::: BBSES.info - free BBS services :::

Re: kermit protocol in syncterm

<64DF0951.50275.sync@vert.synchro.net>

  copy mid

https://www.rocksolidbbs.com/dovenet/article-flat.php?id=1348&group=DOVE-Net.Synchronet_Discussion#1348

  copy link   Newsgroups: DOVE-Net.Synchronet_Discussion
From: digital.man@VERT (Digital Man)
To: Christian Sacks
Subject: Re: kermit protocol in syncterm
Message-ID: <64DF0951.50275.sync@vert.synchro.net>
Date: Thu, 17 Aug 2023 23:01:53 -0700
X-Comment-To: Christian Sacks
Path: rocksolidbbs.com!not-for-mail
Organization: Vertrauen
Newsgroups: DOVE-Net.Synchronet_Discussion
In-Reply-To: <64DEBFB8.50270.sync@vert.synchro.net>
References: <64DEBFB8.50270.sync@vert.synchro.net>
X-FTN-PID: Synchronet 3.20a-Linux master/99e8c77ca Jul 24 2023 GCC 12.2.0
X-FTN-MSGID: 50275.sync@1:103/705 294503b4
X-FTN-REPLY: 2:250/5 37623ff8
X-FTN-CHRS: CP437 2
WhenImported: 20230817230153-0700 c1e0
WhenExported: 20230818021437-0700 c1e0
ExportedFrom: VERT sync 50275
Content-Type: text/plain; charset=IBM437
Content-Transfer-Encoding: 8bit
 by: Digital Man - Fri, 18 Aug 2023 06:01 UTC

Re: Re: kermit protocol in syncterm
By: Christian Sacks to MRO on Fri Aug 18 2023 01:38 am

> On 17 Aug 2023, MRO said the following...
>
> MR> I havent used kermit since 1998 or something. I'm pretty sure it had
> MR> problems with error correction and the speed wasn't great.
>
> Kermit is about 6 times faster than Zmodem for me =)

And how fast is that? Is possible that the Qodem Zmodem implementation is just slower than its Kermit implementation?

> It's working flawlessly, and I just wish every BBS now had Kermit.
>
> MR> did you try ymodem G ilke dm suggested? you might be happier with it.
>
> I did try Ymodem, and it's about the same speed as Zmodem.

The suggestion was to try Ymodem-G. Ymodem should normally be much slower than Zmodem over any kind of decent transport due to its ack/nak nature.
--
digital man (rob)

Sling Blade quote #15:
Doyle Hargraves: What'cha doin' with that lawn mower blade Karl?
Norco, CA WX: 70.5°F, 73.0% humidity, 0 mph NW wind, 0.00 inches rain/24hrs
---
■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net

Re: kermit protocol in syncterm

<64DF4285.50277.sync@vert.synchro.net>

  copy mid

https://www.rocksolidbbs.com/dovenet/article-flat.php?id=1350&group=DOVE-Net.Synchronet_Discussion#1350

  copy link   Newsgroups: DOVE-Net.Synchronet_Discussion
From: ryan.fantus@VERT (Ryan Fantus)
To: Christian Sacks
Subject: Re: kermit protocol in syncterm
Message-ID: <64DF4285.50277.sync@vert.synchro.net>
Date: Fri, 18 Aug 2023 02:39:51 -0700
X-Comment-To: Christian Sacks
Path: rocksolidbbs.com!not-for-mail
Newsgroups: DOVE-Net.Synchronet_Discussion
In-Reply-To: <64DEBFB8.50270.sync@vert.synchro.net>
References: <64DEBFB8.50270.sync@vert.synchro.net>
X-FTN-AREA: SYNCHRONET
X-FTN-PID: Synchronet 3.19c-Linux master/77e624dd0 Nov 13 2022 GCC 10.2.1
X-FTN-TID: Mystic BBS 1.12 A49
X-FTN-MSGID: 1:218/820 e047a765
X-FTN-REPLY: 2:250/5 37623ff8
X-FTN-CHRS: CP437 2
X-FTN-SEEN-BY: 218/700 820 229/426 103/17 705 102/401 103/1 218/215 840 301/1
X-FTN-PATH: 218/820 700
WhenImported: 20230818030557-0700 c1e0
WhenExported: 20230818081435-0700 c1e0
ExportedFrom: VERT sync 50277
Content-Type: text/plain; charset=IBM437
Content-Transfer-Encoding: 8bit
 by: Ryan Fantus - Fri, 18 Aug 2023 09:39 UTC

CS> MR> I havent used kermit since 1998 or something. I'm pretty sure it had
CS> MR> problems with error correction and the speed wasn't great.
CS>
CS> Kermit is about 6 times faster than Zmodem for me =)

I wonder if the inbuilt error correction in most file transfer protocols is more of a bug these days than a feature...tcp/ip already does all of this, so more error correction is just adding latency. If kermit has weak error correction, maybe that's why it's so fast over telnet.

--- Mystic BBS v1.12 A49 2023/02/26 (Linux/64)
* Origin: m O N T E R E Y b B S . c O M (1:218/820)
■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net

Re: kermit protocol in syncterm

<64DF4285.50278.sync@vert.synchro.net>

  copy mid

https://www.rocksolidbbs.com/dovenet/article-flat.php?id=1351&group=DOVE-Net.Synchronet_Discussion#1351

  copy link   Newsgroups: DOVE-Net.Synchronet_Discussion
From: ryan.fantus@VERT (Ryan Fantus)
To: MRO
Subject: Re: kermit protocol in syncterm
Message-ID: <64DF4285.50278.sync@vert.synchro.net>
Date: Fri, 18 Aug 2023 02:40:47 -0700
X-Comment-To: MRO
Path: rocksolidbbs.com!not-for-mail
Newsgroups: DOVE-Net.Synchronet_Discussion
In-Reply-To: <64DEE697.9237.sync@bbses.info>
References: <64DEE697.9237.sync@bbses.info>
X-FTN-AREA: SYNCHRONET
X-FTN-PID: Synchronet 3.19c-Linux master/77e624dd0 Nov 13 2022 GCC 10.2.1
X-FTN-TID: Mystic BBS 1.12 A49
X-FTN-MSGID: 1:218/820 05344de5
X-FTN-REPLY: 50273.sync@1:103/705 2944e450
X-FTN-CHRS: CP437 2
X-FTN-SEEN-BY: 218/700 820 229/426 103/17 705 102/401 103/1 218/215 840 301/1
X-FTN-PATH: 218/820 700
WhenImported: 20230818030557-0700 c1e0
WhenExported: 20230818081435-0700 c1e0
ExportedFrom: VERT sync 50278
Content-Type: text/plain; charset=IBM437
Content-Transfer-Encoding: 8bit
 by: Ryan Fantus - Fri, 18 Aug 2023 09:40 UTC

MR> also i recommend just making a script to make your files available on
MR> the web temporarily. make a fake protocol that has the user batch
MR> download it, then copy it on the web and give them the temporarly url.

Yeah I dig this idea, for downloads it feels like the cleanest solution. Uploads are a bit more of a challenge but not insurmountable by any means.

--- Mystic BBS v1.12 A49 2023/02/26 (Linux/64)
* Origin: m O N T E R E Y b B S . c O M (1:218/820)
■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net

kermit protocol in syncterm

<64DF6485.39388.dove-syncdisc@bbs.lizardmaster.com>

  copy mid

https://www.rocksolidbbs.com/dovenet/article-flat.php?id=1354&group=DOVE-Net.Synchronet_Discussion#1354

  copy link   Newsgroups: DOVE-Net.Synchronet_Discussion
From: the.lizard.master@VERT/NITEEYES (The Lizard Master)
To: MRO
Subject: kermit protocol in syncterm
Message-ID: <64DF6485.39388.dove-syncdisc@bbs.lizardmaster.com>
Date: Fri, 18 Aug 2023 08:31:01 -0400
X-Comment-To: MRO
Path: rocksolidbbs.com!not-for-mail
Organization: Nite Eyes BBS
Newsgroups: DOVE-Net.Synchronet_Discussion
In-Reply-To: <64DEA8A9.9233.sync@bbses.info>
References: <64DEA8A9.9233.sync@bbses.info>
X-FTN-PID: Synchronet 3.19c-Linux master/4dd32231f Nov 4 2022 GCC 9.4.0
X-FTN-MSGID: 50281.sync@1:103/705 2945770a
X-FTN-REPLY: 50268.sync@1:103/705 2944a4fe
X-FTN-CHRS: CP437 2
WhenImported: 20230818071353-0700 c1e0
WhenExported: 20230818081435-0700 c1e0
ExportedFrom: VERT sync 50281
WhenImported: 20230818083101-0400 c12c
WhenExported: 20230818101352-0400 c12c
ExportedFrom: NITEEYES dove-syncdisc 39388
Content-Type: text/plain; charset=IBM437
Content-Transfer-Encoding: 8bit
 by: The Lizard Master - Fri, 18 Aug 2023 12:31 UTC

Re: kermit protocol in syncterm
By: MRO to Christian Sacks on Thu Aug 17 2023 06:09 pm

> I havent used kermit since 1998 or something. I'm pretty sure it had
> problems with error correction and the speed wasn't great.
>
> did you try ymodem G ilke dm suggested? you might be happier with it.

Same experience here, although it might be easier these days to not worry as much about error correction with the speeds we have now?

---TLM

---
■ Synchronet ■ Nite Eyes BBS - To make people happy about my tagline everywhere...

Re: kermit protocol in syncterm

<64DFA823.84418.dove_sync@digitaldistortionbbs.com>

  copy mid

https://www.rocksolidbbs.com/dovenet/article-flat.php?id=1356&group=DOVE-Net.Synchronet_Discussion#1356

  copy link   Newsgroups: DOVE-Net.Synchronet_Discussion
From: nightfox@VERT/DIGDIST (Nightfox)
To: Christian Sacks
Subject: Re: kermit protocol in syncterm
Message-ID: <64DFA823.84418.dove_sync@digitaldistortionbbs.com>
Date: Fri, 18 Aug 2023 10:19:31 -0700
X-Comment-To: Christian Sacks
Path: rocksolidbbs.com!not-for-mail
Organization: Digital Distortion
Newsgroups: DOVE-Net.Synchronet_Discussion
In-Reply-To: <64DEBFB8.50270.sync@vert.synchro.net>
References: <64DEBFB8.50270.sync@vert.synchro.net>
X-FTN-PID: Synchronet 3.20a-Linux master/c8e52b5f6 Aug 17 2023 GCC 11.4.0
X-FTN-MSGID: 50283.sync@1:103/705 2945a501
X-FTN-REPLY: 2:250/5 37623ff8
X-FTN-CHRS: CP437 2
WhenImported: 20230818102958-0700 c1e0
WhenExported: 20230818141444-0700 c1e0
ExportedFrom: VERT sync 50283
WhenImported: 20230818101931-0700 c1e0
WhenExported: 20230818102958-0700 c1e0
ExportedFrom: DIGDIST dove_sync 84418
Content-Type: text/plain; charset=IBM437
Content-Transfer-Encoding: 8bit
 by: Nightfox - Fri, 18 Aug 2023 17:19 UTC

Re: Re: kermit protocol in syncterm
By: Christian Sacks to MRO on Fri Aug 18 2023 01:38 am

CS> Kermit is about 6 times faster than Zmodem for me =) It's working
CS> flawlessly, and I just wish every BBS now had Kermit.

Zmdoem became a de-facto standard file transfer protocol on BBSes by the 90s due to its error handling, speed, & such. I always thought Kermit was an older protocol (one of the first file transfer protocols developed). I did a search for Kermit the other day though and read something that Kermit has been udpated to keep up with current standards in file transfer protocols, and that there is also now a Kermit telnet/SSH software program.. I didn't know that.

Nightfox

---
■ Synchronet ■ Digital Distortion: digitaldistortionbbs.com

kermit protocol in syncterm

<64DFDDAF.9248.sync@bbses.info>

  copy mid

https://www.rocksolidbbs.com/dovenet/article-flat.php?id=1359&group=DOVE-Net.Synchronet_Discussion#1359

  copy link   Newsgroups: DOVE-Net.Synchronet_Discussion
From: mro@VERT/BBSESINF (MRO)
To: The Lizard Master
Subject: kermit protocol in syncterm
Message-ID: <64DFDDAF.9248.sync@bbses.info>
Date: Fri, 18 Aug 2023 16:07:59 -0500
X-Comment-To: The Lizard Master
Path: rocksolidbbs.com!not-for-mail
Organization: bbses.info
Newsgroups: DOVE-Net.Synchronet_Discussion
In-Reply-To: <64DF6485.39388.dove-syncdisc@bbs.lizardmaster.com>
References: <64DF6485.39388.dove-syncdisc@bbs.lizardmaster.com>
X-FTN-PID: Synchronet 3.19b-Win32 master/a2a9dc027 Jan 2 2022 MSC 1928
X-FTN-MSGID: 50286.sync@1:103/705 2945da81
X-FTN-REPLY: 50281.sync@1:103/705 2945770a
X-FTN-CHRS: CP437 2
WhenImported: 20230818141811-0700 c1e0
WhenExported: 20230818201437-0700 c1e0
ExportedFrom: VERT sync 50286
WhenImported: 20230818160759-0500 c168
WhenExported: 20230818161808-0500 c168
ExportedFrom: BBSESINF sync 9248
Content-Type: text/plain; charset=IBM437
Content-Transfer-Encoding: 8bit
 by: MRO - Fri, 18 Aug 2023 21:07 UTC

Re: kermit protocol in syncterm
By: The Lizard Master to MRO on Fri Aug 18 2023 08:31 am

> Re: kermit protocol in syncterm
> By: MRO to Christian Sacks on Thu Aug 17 2023 06:09 pm
>
> > I havent used kermit since 1998 or something. I'm pretty sure it had
> > problems with error correction and the speed wasn't great.
>
> > did you try ymodem G ilke dm suggested? you might be happier with it.
>
> Same experience here, although it might be easier these days to not worry as
> much about error correction with the speeds we have now?

yeah but if you get bad packets how is that going to do you any good.
---
■ Synchronet ■ ::: BBSES.info - free BBS services :::

Re: kermit protocol in syncterm

<64DFDE29.9249.sync@bbses.info>

  copy mid

https://www.rocksolidbbs.com/dovenet/article-flat.php?id=1360&group=DOVE-Net.Synchronet_Discussion#1360

  copy link   Newsgroups: DOVE-Net.Synchronet_Discussion
From: mro@VERT/BBSESINF (MRO)
To: Nightfox
Subject: Re: kermit protocol in syncterm
Message-ID: <64DFDE29.9249.sync@bbses.info>
Date: Fri, 18 Aug 2023 16:10:01 -0500
X-Comment-To: Nightfox
Path: rocksolidbbs.com!not-for-mail
Organization: bbses.info
Newsgroups: DOVE-Net.Synchronet_Discussion
In-Reply-To: <64DFA823.84418.dove_sync@digitaldistortionbbs.com>
References: <64DFA823.84418.dove_sync@digitaldistortionbbs.com>
X-FTN-PID: Synchronet 3.19b-Win32 master/a2a9dc027 Jan 2 2022 MSC 1928
X-FTN-MSGID: 50287.sync@1:103/705 2945da82
X-FTN-REPLY: 50283.sync@1:103/705 2945a501
X-FTN-CHRS: CP437 2
WhenImported: 20230818141811-0700 c1e0
WhenExported: 20230818201437-0700 c1e0
ExportedFrom: VERT sync 50287
WhenImported: 20230818161001-0500 c168
WhenExported: 20230818161808-0500 c168
ExportedFrom: BBSESINF sync 9249
Content-Type: text/plain; charset=IBM437
Content-Transfer-Encoding: 8bit
 by: MRO - Fri, 18 Aug 2023 21:10 UTC

Re: Re: kermit protocol in syncterm
By: Nightfox to Christian Sacks on Fri Aug 18 2023 10:19 am

> search for Kermit the other day though and read something that Kermit has
> been udpated to keep up with current standards in file transfer protocols,
> and that there is also now a Kermit telnet/SSH software program.. I didn't
> know that.

yup i tried it yesterday. i couldnt get it to do cp437 but i only spent a min with it.
---
■ Synchronet ■ ::: BBSES.info - free BBS services :::

Re: kermit protocol in syncterm

<64DFDBC5.2472.dove-syncdisc@tacopronto.bbs.io>

  copy mid

https://www.rocksolidbbs.com/dovenet/article-flat.php?id=1362&group=DOVE-Net.Synchronet_Discussion#1362

  copy link   Newsgroups: DOVE-Net.Synchronet_Discussion
From: phigan@VERT/TACOPRON (Phigan)
To: Nightfox
Subject: Re: kermit protocol in syncterm
Message-ID: <64DFDBC5.2472.dove-syncdisc@tacopronto.bbs.io>
Date: Fri, 18 Aug 2023 13:59:49 -0700
X-Comment-To: Nightfox
Path: rocksolidbbs.com!not-for-mail
Organization: Taco Pronto
Newsgroups: DOVE-Net.Synchronet_Discussion
In-Reply-To: <64DFA823.84418.dove_sync@digitaldistortionbbs.com>
References: <64DFA823.84418.dove_sync@digitaldistortionbbs.com>
X-FTN-PID: Synchronet 3.19c-Linux / Jun 26 2022 GCC 9.4.0
X-FTN-MSGID: 50289.sync@1:103/705 2945dd39
X-FTN-REPLY: 50283.sync@1:103/705 2945a501
X-FTN-CHRS: CP437 2
WhenImported: 20230818142944-0700 c1e0
WhenExported: 20230818201437-0700 c1e0
ExportedFrom: VERT sync 50289
WhenImported: 20230818135949-0700 41a4
WhenExported: 20230818142944-0700 41a4
ExportedFrom: TACOPRON dove-syncdisc 2472
Content-Type: text/plain; charset=IBM437
Content-Transfer-Encoding: 8bit
 by: Phigan - Fri, 18 Aug 2023 20:59 UTC

Re: Re: kermit protocol in syncterm
By: Nightfox to Christian Sacks on Fri Aug 18 2023 10:19 am

> and that there is also now a Kermit telnet/SSH software program.. I didn't

Kermit was ported to the 6502 computers as Kermit65... It did software 80 columns on the Atari 8bit and I could connect to the community college systems to use Gopher which connected me to FTP sites like funet.fi where I could leech demos! The Gopher FTP gateway would pull the file from the FTP site and then send it to me with Kermit :).

---
■ Synchronet ■ TIRED of waiting 2 hours for a taco? GO TO TACOPRONTO.bbs.io

Re: kermit protocol in syncterm

<64DFE9BF.9251.sync@bbses.info>

  copy mid

https://www.rocksolidbbs.com/dovenet/article-flat.php?id=1363&group=DOVE-Net.Synchronet_Discussion#1363

  copy link   Newsgroups: DOVE-Net.Synchronet_Discussion
From: mro@VERT/BBSESINF (MRO)
To: Phigan
Subject: Re: kermit protocol in syncterm
Message-ID: <64DFE9BF.9251.sync@bbses.info>
Date: Fri, 18 Aug 2023 16:59:27 -0500
X-Comment-To: Phigan
Path: rocksolidbbs.com!not-for-mail
Organization: bbses.info
Newsgroups: DOVE-Net.Synchronet_Discussion
In-Reply-To: <64DFDBC5.2472.dove-syncdisc@tacopronto.bbs.io>
References: <64DFDBC5.2472.dove-syncdisc@tacopronto.bbs.io>
X-FTN-PID: Synchronet 3.19b-Win32 master/a2a9dc027 Jan 2 2022 MSC 1928
X-FTN-MSGID: 50290.sync@1:103/705 2945e896
X-FTN-REPLY: 50289.sync@1:103/705 2945dd39
X-FTN-CHRS: CP437 2
WhenImported: 20230818151812-0700 c1e0
WhenExported: 20230818201437-0700 c1e0
ExportedFrom: VERT sync 50290
WhenImported: 20230818165927-0500 c168
WhenExported: 20230818171809-0500 c168
ExportedFrom: BBSESINF sync 9251
Content-Type: text/plain; charset=IBM437
Content-Transfer-Encoding: 8bit
 by: MRO - Fri, 18 Aug 2023 21:59 UTC

Re: Re: kermit protocol in syncterm
By: Phigan to Nightfox on Fri Aug 18 2023 01:59 pm

> Re: Re: kermit protocol in syncterm
> By: Nightfox to Christian Sacks on Fri Aug 18 2023 10:19 am
>
> > and that there is also now a Kermit telnet/SSH software program.. I
> > didn't
>
> Kermit was ported to the 6502 computers as Kermit65... It did software 80
> columns on the Atari 8bit and I could connect to the community college
> systems to use Gopher which connected me to FTP sites like funet.fi where I
> could leech demos! The Gopher FTP gateway would pull the file from the FTP
> site and then send it to me with Kermit :).

yeah i did that on metropolous bbs in 97.
lots of services had that feature.
---
■ Synchronet ■ ::: BBSES.info - free BBS services :::

Re: kermit protocol in syncterm

<2ecae065-5009-417b-85d0-bee0af6ffbaen@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/dovenet/article-flat.php?id=1459&group=DOVE-Net.Synchronet_Discussion#1459

  copy link   Newsgroups: DOVE-Net.Synchronet_Discussion
From: david.goodwin@VERT (David Goodwin)
To: alt.bbs.synchronet
Subject: Re: kermit protocol in syncterm
Message-ID: <2ecae065-5009-417b-85d0-bee0af6ffbaen@googlegroups.com>
Date: Wed, 13 Sep 2023 14:04:39 -0700
X-Comment-To: alt.bbs.synchronet
Path: rocksolidbbs.com!not-for-mail
Newsgroups: DOVE-Net.Synchronet_Discussion
In-Reply-To: <64DFDE29.9249.sync@bbses.info>
References: <64DFDE29.9249.sync@bbses.info>
X-FTN-PID: Synchronet 3.20a-Linux master/3e1aa12ec Sep 2 2023 GCC 12.2.0
X-FTN-MSGID: 50386.sync@1:103/705 29682a6b
X-FTN-REPLY: 50287.sync@1:103/705 2945da82
X-FTN-CHRS: UTF-8 4
WhenImported: 20230913145433-0700 c1e0
WhenExported: 20230913201443-0700 c1e0
ExportedFrom: VERT sync 50386
X-Received: by 2002:ac8:5d88:0:b0:410:a9dd:9fe4 with SMTP id d8-20020ac85d88000000b00410a9dd9fe4mr94685qtx.1.1694639080154;Wed, 13 Sep 2023 14:04:40 -0700 (PDT)
X-Received: by 2002:a05:6808:1995:b0:3a7:5f99:9fe1 with SMTP idbj21-20020a056808199500b003a75f999fe1mr1688689oib.2.1694639079907; Wed, 13Sep 2023 14:04:39 -0700 (PDT)
Injection-Info: google-groups.googlegroups.com; posting-host=124.157.103.69; posting-account=9D9SDwoAAACnifBr_Q9Flw5yKJJnd5rB
NNTP-Posting-Host: 124.157.103.69
User-Agent: G2/1.0
MIME-Version: 1.0
Injection-Date: Wed, 13 Sep 2023 21:04:40 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: 8bit
X-Received-Bytes: 2578
 by: David Goodwin - Wed, 13 Sep 2023 21:04 UTC

From Newsgroup: alt.bbs.synchronet

On Saturday, August 19, 2023 at 9:18:14�AM UTC+12, MRO wrote:
> To: Nightfox
> Re: Re: kermit protocol in syncterm
> By: Nightfox to Christian Sacks on Fri Aug 18 2023 10:19 am
> > search for Kermit the other day though and read something that Kermit has
> > been udpated to keep up with current standards in file transfer protocols,
> > and that there is also now a Kermit telnet/SSH software program.. I didn't
> > know that.
> yup i tried it yesterday. i couldnt get it to do cp437 but i only spent a min with it.
The command you want is: "set term remote cp437" or, in the version of C-Kermit
that doesn't run in the windows console, the rightmost drop-down on the toolbar
is where you can pick the charset to use.
For connecting to a BBS you'd probably want to switch the terminal emulator
from linux (the default) to ansi-bbs anyway. When you do that, C-Kermit for Windows
will automatically switch the remote character set to cp437. You can either use the
left-most drop-down on the toolbar or do a "set term type ansi-bbs".
(I'm the maintainer of the Windows version of C-Kermit and when I need to test
it on vintage windows I tend to point it at a synchronet BBS though the fonts
on vintage windows don't do nearly as good a job as on modern windows -
screenshots here: https://www.kermitproject.org/ckwscreenshots/ )
--- Synchronet 3.20a-Linux NewsLink 1.114
� Synchronet � Vertrauen � Home of Synchronet � [vert/cvs/bbs].synchro.net

1
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor