Kermit and the Year 2000

New Years 2000 - Times Square

Kermit software is not, for the most part, date dependent. It makes connections, performs terminal emulation (in those versions that include this feature), transfers files, translates character sets, and, in most cases, executes scripts regardless of the date.

"Year 2000 compliance" depends on the Kermit program and the underlying platform. If the operating system, file system, BIOS, hardware, and/or other critical component is not ready for the year 2000, then most likely Kermit isn't either, since it relies on the underlying OS and hardware for date / time service.

The primary relevance of this question to Kermit software is whether post-millenium file dates are recognized, transmitted, received, and reproduced correctly during the file transfer process. This consideration, in turn, applies only to those Kermit versions that implement the optional "Attribute Packet" feature. These include C-Kermit, Kermit 95, MS-DOS Kermit, Kermit-370, and PDP-11 Kermit, all of which are coded to write and read 4-digit years in all protocol messages. (Note that these programs also include a command to disable file-date processing altogether, in the event that it does not work as intended.)

If post-millenium dates are not processed correctly, file transfer will still take place, but the creation or modification date of the received file might be incorrect. An exception would be if the "file collision update" feature is being used to prevent unnecessary transfer of files that have not changed since the last time a transfer took place; in this case, a file might be transferred unnecessarily, or it might not be transferred when it should have been. Correct operation of the update feature depends on both Kermit programs having the correct date and time.

Another exception would be when using the /BEFORE: or /AFTER: file-selection switches during file transfer. If dates are not processed correctly, files could be skipped that should have been sent, or vice versa.

If an incoming file is stored with the wrong date, for example with a year of 1900 rather than 2000, this might affect backup, archival, and cleanup procedures, perhaps resulting in unwanted file deletion. For example (in VMS):

  $ delete/before="-90-" *.*;*
  $ dir/since=1-jan-2000
  $ purge/before=login *.*

Of secondary importance are the time stamps in the transaction and/or debug logs, and the date-related script programming constructs, such as \v(date), \v(ndate), \v(day), \v(nday), and perhaps also the time-related ones, \v(time) and \v(ntime), insofar as they might be affected by the date. Note: the aforementioned script programming constructs are available only in C-Kermit, Kermit 95, and MS-DOS Kermit. The \v(ndate) is a numeric-format date of the form yyyymmdd, suitable for comparison and sorting: e.g. 19970208 or 20011231. If the underlying operating system returns the correct date information, these variables will have the proper values. If not, then scripts that make decisions based on these variables might not operate correctly, but then neither will any other date-related software on your computer.

Here is the current situation for the most popular Kermit software products. The minimum version known to be Year-2000 compliant is shown. We make no claims whatsoever about the underlying operating systems or file systems. The situation with Kermit programs not listed here is at present unknown.


MS-DOS, PC-DOS, DR-DOS:
MS-DOS Kermit: Version 3.15 or later required.

Windows 3.0/3.1/3.11:
MS-DOS Kermit: Version 3.15 or later required. IMPORTANT: MS-DOS Kermit is not supported under Windows 95, Windows 98, Windows NT, Windows 2000, or OS/2. The supported Kermit software for those platforms is Kermit 95.

Windows 95 and 98:
Kermit 95: Version 1.1.3 or later required (note that versions 1.1.10, 1.1.11, etc, are later than 1.1.3; thus, for example, version 1.1.17 is Year-2000 ready).

Windows NT and Windows 2000:
Kermit 95: Version 1.1.3 or later required.

OS/2:
Kermit 95: Version 1.1.11 or later required.

UNIX:
C-Kermit: Version 6.0.192 or later required.

VMS:
C-Kermit: Yes, all versions. Kermit-32: unknown; Kermit-32 has not been supported since about 1987. If you are using Kermit-32, please upgrade to C-Kermit.

Stratus VOS
C-Kermit: Version 6.0.192 or later and VOS 12.3 or later required.

VM/CMS:
CMS Version 13 and Kermit-370 Version 4.3.2 or later required.

MVS/TSO:
Kermit-370 for TSO: Version 4.3.2 or later required.

MVS/ROSCOE:
Kermit-370 for ROSCOE: Version 4.3.2 or later required.

MUSIC:
Kermit-370 for MUSIC: Version 4.3.0 or later required.

CICS:
Kermit-370 for CICS: Version 4.3.0 or later required.

RT-11:
KRT for RT-11 and TSX+: Version 3.63 or later required.

RSTS/E:
KRT for RSTS/E: Version 3.63 or later required.


Year 2000 / The Kermit Project / Columbia University / kermit@columbia.edu / 1 Jan 2000