Appendix B: Automatic Script to Implement Methodology
#!/usr/bin/perl
# Program to read text files (such as RFCs and Internet Drafts) and
# output items that might relate to year 2000 issues, particularly
# 2-digit years.
# Version 1.1a. Slight modification by Philip J. Nesser
# (phil@nesser.com) to split lines from old RFC's that are
# too wide to conform with current RFC standards.
# Version 1.1. By Paul Hoffman (phoffman@imc.org). This is a
# quick-and-dirty hack and could be written more elegantly and
# more efficiently. There may be bugs in this software. For
# example, there was an off-by-one-line bug in version 1.0.
# Use this code at your own risk. This code may be freely
# redistributed.
# Some people like using disk files, others like STDIN and STDOUT.
# This program accomodates both types by setting the $UsageType
# variable. 'file' means input comes from the first argument on
# the command line, output goes to that filename with a ".out"
# extension; 'std' means STDIN and STDOUT.
$UsageType = 'file'; # Should be 'file' or 'std'
# @CheckWords is a list of words to look for. This list is used in
# addition to the automatic checking for "yy" on a line without "YYYY".
# You might want to add "year yyyy" to this list, but then a large
# proportion of the RFCs and drafts get selected
@CheckWords = qw(UTCTime two-digit 2-digit 2digit century 1900 2000);
if($UsageType eq 'file') {
if($ARGV[0] eq '')
{ die "You must specify the name of the file to open.\n" }
$InName = $ARGV[0];
unless(-r $InName) { die "Could not read $InName.\n" }
open(IN, $InName) or die "Could not open $InName.\n";
$OutName = "$InName.out";
open(OUT, ">$OutName") or die "Could not write to $OutName.\n";
$OutStuff = ''; # Holder for what we're going to print out
} else { # Do STDIN and STDOUT
open(IN, "-"); open(OUT, ">-");
}
# Read the whole file into an array. This is a tad wasteful of memory
# but makes the output easier.
@All = ();
while(<IN>) { push(@All, $_) }
$LastLine = $#All;
# Process the instance of "yy" not followed by "yy"
for($i = 0; $i <= $LastLine; $i += 1 ) {
next unless(grep(/yy/i, $All[$i]));
next if(grep(/yyyy/i, $All[$i]));
&PrintFive($i, "'yy' on a line without 'yyyy'");
}
# Next do the words that should cause extra concern
foreach $Word (@CheckWords) {
for($i = 0; $i <= $LastLine; $i += 1 ) {
next unless(grep(/$Word/i, $All[$i]));
&PrintFive($i, "$Word");
}
}
# All done. If writing to a file, and nothing got written, delete the
# file so that you can quickly scan for the ".out" files.
# (A better-written program would have waited to do the opens
# until here so the unlink wouldn't be necessary. Oh, well.)
if($UsageType eq 'file') {
if(length($OutStuff) > 0) {
$OutStuff = "+=+=+=+=+= File $InName +=+=+=+=+= \n$OutStuff\n
print OUT $OutStuff; close(OUT);
} else { # Nothing to put in the .out
close(OUT);
unlink($OutName) or die "Couldn't unlink $OutName\n";
}
}
exit;
# Print the five lines around the word found
sub PrintFive {
my $Where = shift(@_); my $Msg = shift(@_);
my ($WhereRealLine, $Start, $End, $j);
$WhereRealLine = $Where + 1;
$OutStuff .= "$Msg found at line $WhereRealLine:\n";
$Start = $WhereRealLine - 2; $End = $WhereRealLine + 2;
if($Where < 2) { $Start = 0 }
if($Where > $LastLine - 2) { $End = $LastLine }
for($j = $Start; $j <= $End; $j += 1) {
if (length($All[$j-1]) > 64) {
$FirstHalf = substr($All[$j-1], 0, 64) . "\n";
$LastHalf = "$j(continued):\t\t" . substr($All[$j-1], 64);
$OutStuff .= "$j: " . $FirstHalf . $LastHalf;
}
else {
$OutStuff .= "$j: " . $All[$j-1]
}
}
$OutStuff .= "\n";
}
Appendix C: Output of the script in Appendix B on all RFC's from 1
through 2479
+=+=+=+=+= File rfc0052.txt +=+=+=+=+=
2000 found at line 141:
139:
140: Chuck Rose Case University
141: Jennings Computing Center (216) 368-2000
142: Case Western Reserve University x2808
143: 10900 Euclid Avenue
+=+=+=+=+= File rfc0090.txt +=+=+=+=+=
2000 found at line 71:
69: consoles);
70:
71: j) Six data communication ports (3 dial @
71(continued): 2000 baud,
72: 1 dedicated @ 4800 baud, and 2 dedicate
72(continued): d @ 50,000
73: baud) for remote batch entry terminals;
73(continued):
+=+=+=+=+= File rfc0230.txt +=+=+=+=+=
2000 found at line 92:
90: as for conventional synchronous block communication, since start
90(continued): and
91: stop bits for each character would need to be transmitted. This
91(continued): loss
92: is not substantial and does occur now for 2000 bps TIP-terminal
93: communication.
94:
2000 found at line 134:
132: 92 transmitting sites in the U.S. and Canada were used with stan
132(continued): dard
133: Bell System Dataphone datasets used at both ends. At both 1200
133(continued): and
134: 2000 bps, approximately 82% of the calls had error rates of 1 er
134(continued): ror in
135: 10^5 bits or better, assuming an equal number of short, medium,
135(continued): and
136: long hauls.
+=+=+=+=+= File rfc0241.txt +=+=+=+=+=
2000 found at line 32:
30: justifiable on the basis that the IMP and Host computers were
30(continued):
31: expected to be either in the same room (up to 30 feet of cabl
31(continued): e) or,
32: via the Distant Host option, within 2000 feet on well- contro
32(continued): lled,
33: shielded cables. A connection through common carrier facilit
33(continued): ies is
34: not comparably free of errors. Usage of common- carrier line
34(continued): s for
+=+=+=+=+= File rfc0263.txt +=+=+=+=+=
2000 found at line 22:
20: of the occasional desire to interface a Host to some IMP via a
21: long-distance connection (where long-distance, in this context,
22: is any cable run longer than 2000 feet but may typically be tens
22(continued):
23: of miles) via either a hard-wire or telephone circuit. We belie
23(continued): ve
24: that any good solution to the general problem of interfacing Hos
24(continued): ts
+=+=+=+=+= File rfc0662.txt +=+=+=+=+=
2000 found at line 143:
141: by a rather short cable (approximately 100 feet long.) The CISL
141(continued): Multics is
142: connected to the IMP number 6 (port 0) by an approximately l5OO
142(continued): feet long cable.
143: 8oth IMPs are in close physical proximity (approximately 2000 fe
143(continued): et,) and are
144: connected to each other by a 5O kilobits per second line. The re
144(continued): sults given
145: above show considerable improvement in the performance with the
145(continued): new IMP DIM.
+=+=+=+=+= File rfc0713.txt +=+=+=+=+=
2000 found at line 830:
828: succeeding bytes in the stream used to encode the object.
829:
830: A data object requiring 20000 (47040 octal) bytes would
831: appear in the stream as follows.
832:
2000 found at line 837:
835: 10000010 -- specifying that the next 2 bytes
836: contain the stream length
837: 01001110 -- first byte of number 20000
838: 00100000 -- second byte
839: .
2000 found at line 845:
843: .
844:
845: Interpretation of the contents of the 20000 bytes in
846: the stream can be performed by a module which knows the
847: specific format of the non-atomic type specified by DEFGH in
+=+=+=+=+= File rfc0724.txt +=+=+=+=+=
2-digit found at line 1046:
1044: <4-digit-year>
1045: <slash-date> ::= <numeric-month> "/" <date-of-mo
1045(continued): nth>
1046: "/" <2-digit-ye
1046(continued): ar>
1047: <numeric-month> ::= <one or two decimal digits>
1048: <day-of-month> ::= <one or two decimal digits>
2-digit found at line 1062:
1060: | "December" | "Dec"
1061: <4-digit-year> ::= <four decimal digits>
1062: <2-digit-year> ::= <two decimal digits>
1063: <time> ::= <24-hour-time> "-" <time-zone>
1064: <24-hour-time> ::= <hour> <minute>
2-digit found at line 1675:
1673: A. ALPHABETICAL LISTING OF SYNTAX RULES
1674:
1675: <2-digit-year> ::= <two decimal digits>
1676: <4-digit-year> ::= <four decimal digits>
1677: <24-hour-time> ::= <hour> <minute>
2-digit found at line 1829:
1827:
1828: <slash-date> ::= <numeric-month> "/" <date-of-month>
1828(continued):
1829: "/" <2-digit-year>
1830: <space> ::= <TELNET ASCII space (decimal 32)>
1831:
+=+=+=+=+= File rfc0731.txt +=+=+=+=+=
2000 found at line 1571:
1569: RFC 728, 1977.
1570:
1571: 9. Hazeltine 2000 Desk Top Display Operating Instructions.
1571(continued):
1572: Hazeltine IB-1866A, 1870.
1573:
+=+=+=+=+= File rfc0732.txt +=+=+=+=+=
2000 found at line 1681:
1679: 1977.
1680:
1681: 9. Hazeltine 2000 Desk Top Display Operating Instructions. H
1681(continued): azeltine
1682: IB-1866A, 1870.
1683:
+=+=+=+=+= File rfc0733.txt +=+=+=+=+=
2-digit found at line 333:
331:
332: "<n>(element)" is equivalent to "<n>*<n>(element)"; that is
332(continued): ,
333: exactly <n> occurrences of (element). Thus 2DIGIT is a 2-digi
333(continued): t
334: number, and 3ALPHA is a string of three alphabetic characters.
335:
2digit found at line 333:
331:
332: "<n>(element)" is equivalent to "<n>*<n>(element)"; that is
332(continued): ,
333: exactly <n> occurrences of (element). Thus 2DIGIT is a 2-digi
333(continued): t
334: number, and 3ALPHA is a string of three alphabetic characters.
335:
2digit found at line 947:
945: / "Sunday" / "Sun"
946:
947: date = 1*2DIGIT ["-"] month ; day month year
948: ["-"] (2DIGIT /4DIGIT) ; e.g. 20 Aug [19]7
948(continued): 7
949:
2digit found at line 948:
946:
947: date = 1*2DIGIT ["-"] month ; day month year
948: ["-"] (2DIGIT /4DIGIT) ; e.g. 20 Aug [19]7
948(continued): 7
949:
950: month = "January" / "Jan" / "February" / "Feb"
2digit found at line 967:
965: ; (seconds optional
965(continued): )
966:
967: hour = 2DIGIT [":"] 2DIGIT [ [":"] 2DIGIT ]
968: ; 0000[00] - 2359[59
968(continued): ]
969:
2digit found at line 1718:
1716: CTL = <any TELNET ASCII control character and DEL>
1717:
1718: date = 1*2DIGIT ["-"] month ["-"] (2DIGIT /4DIGIT)
1719: date-field = "Date" ":" date-time
1720: date-time = [ day-of-week "," ] date time
2digit found at line 1754:
1752: host-indicator = 1*( ("at" / "@") node )
1753: host-phrase = phrase host-indicator
1754: hour = 2DIGIT [":"] 2DIGIT [ [":"] 2DIGIT ]
1755: HTAB = <TELNET ASCII horizontal-tab>
1756:
+=+=+=+=+= File rfc0734.txt +=+=+=+=+=
2000 found at line 184:
182: Bit name Value Meaning
183:
184: %TOALT 200000,,0 characters 175 and 176 are
184(continued): converted to
185: altmode (033) on input.
186:
2000 found at line 264:
262: NORMALLY OFF.
263:
264: %TOSA1 2000,,0 characters 001-037 should
264(continued): be displayed
265: using the Stanford/ITS extended
265(continued): ASCII
266: graphics character set instead of
266(continued): uparrow
2000 found at line 354:
352: %TXTOP 4000 This character has the [TOP] key depressed.
353:
354: %TXSFL 2000 Reserved, must be zero.
355:
356: %TXSFT 1000 Reserved, must be zero.
2000 found at line 634:
632: Value Key
633:
634: 2000 Reserved
635: 1000 Reserved
636: 0400 <META>
+=+=+=+=+= File rfc0738.txt +=+=+=+=+=
1900 found at line 41:
39: without sending anything.
40:
41: The time is the number of seconds since 0000 (midnight) 1 Januar
41(continued): y 1900
42: GMT, such that the time 1 is 12:00:01 am on 1 January 1900 GMT;
42(continued): this
43: base will serve until the year 2036. As a further example, the
43(continued): most
1900 found at line 42:
40:
41: The time is the number of seconds since 0000 (midnight) 1 Januar
41(continued): y 1900
42: GMT, such that the time 1 is 12:00:01 am on 1 January 1900 GMT;
42(continued): this
43: base will serve until the year 2036. As a further example, the
43(continued): most
44: recent leap year as of this writing began from the time 2,398,29
44(continued): 1,200
+=+=+=+=+= File rfc0745.txt +=+=+=+=+=
2000 found at line 562:
560: Circuits, EIA standard RS-422," April 1975; Engineering Dept.,
561: Electronic Industries Assn., 2001 Eye St., N.W., Washington, D.C
561(continued): .,
562: 20006.
563:
564: REA bulletin 345-67, Rural Electrification Admin., U.S. Dept. of
564(continued):
+=+=+=+=+= File rfc0746.txt +=+=+=+=+=
'yy' on a line without 'yyyy' found at line 341:
339: %TDGRF ;Enter graphics.
340: %GOCLR ;Clear the screen.
341: %GOMVA xx yy ;Set cursor.
342: %GODLA xx yy ;Draw line from there.
343: << repeat last two commands for each line >>
'yy' on a line without 'yyyy' found at line 342:
340: %GOCLR ;Clear the screen.
341: %GOMVA xx yy ;Set cursor.
342: %GODLA xx yy ;Draw line from there.
343: << repeat last two commands for each line >>
344: %TDNOP ;Exit graphics.
2000 found at line 859:
857: %TRGIN 0,,400000 terminal can provide graphics input.
858:
859: %TRGHC 0,,200000 terminal has a hard-copy device to which outp
859(continued): ut can
860: be diverted.
861:
+=+=+=+=+= File rfc0752.txt +=+=+=+=+=
'yy' on a line without 'yyyy' found at line 218:
216: word 4 The name of the site in SIXBIT.
217: word 5 The user name who compiled the file, usually in
217(continued): SIXBIT.
218: word 6 Date of compilation as SIXBIT YYMMDD.
219: word 7 Time of compilation as SIXBIT HHMMSS.
220: word 8 Address in file of NAME table.
+=+=+=+=+= File rfc0754.txt +=+=+=+=+=
'yy' on a line without 'yyyy' found at line 76:
74:
75: Messages are transmitted as a character string to an address whi
75(continued): ch is
76: specified "outside" the message. The destination host ("YYY") i
76(continued): s
77: specified to the sending (or user) FTP as the argument of the "o
77(continued): pen
78: connection" command, and the destination user ("XXX") is specifi
78(continued): ed to
'yy' on a line without 'yyyy' found at line 81:
79: the receiving (or server) FTP as the argument of the "MAIL" (or
79(continued): "MLFL")
80: command. In Tenex, when mail is queued this outside information
80(continued): is
81: saved in the file name ("[---].XXX@YYY").
82:
83: The proposed solutions are briefly characterized.
'yy' on a line without 'yyyy' found at line 239:
237:
238:
239: "[---].XXX@YYY", not anything from the header. Only the stri
239(continued): ng "XXX"
240: is passed to the FTP server.
241:
+=+=+=+=+= File rfc0759.txt +=+=+=+=+=
two-digit found at line 1414:
1412: yyyy-mm-dd-hh:mm:ss,fff+hh:mm
1413:
1414: Where yyyy is the four-digit year, mm is the two-digit month
1414(continued): , dd is
1415: the two-digit day, hh is the two-digit hour in 24 hour time,
1415(continued): mm is
1416: the two-digit minute, ss is the two-digit second, and fff is
1416(continued): the
two-digit found at line 1415:
1413:
1414: Where yyyy is the four-digit year, mm is the two-digit month
1414(continued): , dd is
1415: the two-digit day, hh is the two-digit hour in 24 hour time,
1415(continued): mm is
1416: the two-digit minute, ss is the two-digit second, and fff is
1416(continued): the
1417: decimal fraction of the second. To this basic date and time
1417(continued): is
two-digit found at line 1416:
1414: Where yyyy is the four-digit year, mm is the two-digit month
1414(continued): , dd is
1415: the two-digit day, hh is the two-digit hour in 24 hour time,
1415(continued): mm is
1416: the two-digit minute, ss is the two-digit second, and fff is
1416(continued): the
1417: decimal fraction of the second. To this basic date and time
1417(continued): is
1418: appended the offset from Greenwich as plus or minus hh hours
1418(continued): and mm
+=+=+=+=+= File rfc0767.txt +=+=+=+=+=
two-digit found at line 710:
708: yyyy-mm-dd-hh:mm:ss,fff+hh:mm
709:
710: Where yyyy is the four-digit year, mm is the two-digit month
710(continued): , dd is
711: the two-digit day, hh is the two-digit hour in 24 hour time,
711(continued): mm is
712: the two-digit minute, ss is the two-digit second, and fff is
712(continued): the
two-digit found at line 711:
709:
710: Where yyyy is the four-digit year, mm is the two-digit month
710(continued): , dd is
711: the two-digit day, hh is the two-digit hour in 24 hour time,
711(continued): mm is
712: the two-digit minute, ss is the two-digit second, and fff is
712(continued): the
713: decimal fraction of the second. To this basic date and time
713(continued): is
two-digit found at line 712:
710: Where yyyy is the four-digit year, mm is the two-digit month
710(continued): , dd is
711: the two-digit day, hh is the two-digit hour in 24 hour time,
711(continued): mm is
712: the two-digit minute, ss is the two-digit second, and fff is
712(continued): the
713: decimal fraction of the second. To this basic date and time
713(continued): is
714: appended the offset from Greenwich as plus or minus hh hours
714(continued): and mm
+=+=+=+=+= File rfc0786.txt +=+=+=+=+=
'yy' on a line without 'yyyy' found at line 71:
69:
70: The date-time will be in the default TOPS20 ODTIM forma
70(continued): t
71: "dd-mmm-yy hh:mm:ss" (24 hour time).
72:
73: The files will named "arbitrary.NIMAIL.-1", where "arbitra
73(continued): ry" will
+=+=+=+=+= File rfc0788.txt +=+=+=+=+=
'yy' on a line without 'yyyy' found at line 1592:
1590: <daytime> ::= "at" <SP> <date> <SP> <time>
1591:
1592: <date> ::= <dd> "-" <mon> "-" <yy>
1593:
1594: <time> ::= <hh> ":" <mm> ":" <ss> "-" <zone>
'yy' on a line without 'yyyy' found at line 1602:
1600: "JUL" | "AUG" | "SEP" | "OCT" | "NOV" | "D
1600(continued): EC"
1601:
1602: <yy> ::= the two decimal integer year of the century
1602(continued): in the
1603: range 01 to 99.
1604:
century found at line 1602:
1600: "JUL" | "AUG" | "SEP" | "OCT" | "NOV" | "D
1600(continued): EC"
1601:
1602: <yy> ::= the two decimal integer year of the century
1602(continued): in the
1603: range 01 to 99.
1604:
+=+=+=+=+= File rfc0809.txt +=+=+=+=+=
2000 found at line 3349:
3347:
3348: #define WID 0000000 /* Write Image Data */
3349: #define WGD 0020000 /* Write Graphic Data */
3350: #define WAC 0022000 /* Write AlphanumCh */
3351:
2000 found at line 3350:
3348: #define WID 0000000 /* Write Image Data */
3349: #define WGD 0020000 /* Write Graphic Data */
3350: #define WAC 0022000 /* Write AlphanumCh */
3351:
3352: #define LWM 0024000 /* Load Write Mode */
2000 found at line 3379:
3377:
3378: #define ERS 0030000 /* Erase */
3379: #define ERL 0032000 /* Erase Line */
3380: #define SLU 0034000 /* Special Location Update */
3381: #define SCRL_ZAP 0100 /* unlimited scroll speed */
2000 found at line 3392:
3390: #define LLB 0070000 /* Load Lb */
3391: #define LLC 0074000 /* Load Lc */
3392: #define LGW 02000 /* perform write */
3393:
3394: #define NOP 0110000 /* No-Operation */
2000 found at line 3396:
3394: #define NOP 0110000 /* No-Operation */
3395:
3396: #define SPD 0120000 /* Select Special Device */
3397: #define LPA 0130000 /* Load Peripheral Address */
3398: #define LPR 0140000 /* Load Peripheral Register */
2000 found at line 3405:
3403: #define ALPHA 06000 /* LPR - Alphanumeric data */
3404: #define GRAPH 04000 /* LPR - Graphic data */
3405: #define IMAGE 02000 /* LPR - Image data */
3406: #define LTHENH 01000 /* take lo byte then hi byte */
3407: #define DROPBYTE 0400 /* drop last byte */
2000 found at line 3408:
3406: #define LTHENH 01000 /* take lo byte then hi byte */
3407: #define DROPBYTE 0400 /* drop last byte */
3408: #define INTERR 02000 /* SPD - Interrupt Enable */
3409: #define TEST 04000 /* SPD - Diagnostic Test */
3410:
+=+=+=+=+= File rfc0810.txt +=+=+=+=+=
'yy' on a line without 'yyyy' found at line 146:
144: , (comma) is used as a data element delimiter
145:
146: XXX/YYY indicates protocol information of the type
146(continued):
147: TRANSPORT/SERVICE.
148:
+=+=+=+=+= File rfc0820.txt +=+=+=+=+=
2000 found at line 674:
672: 014.000.000.001 311031700035 00 PURDUE-TN
672(continued): [CXK]
673: 014.000.000.002 311060800027 00 UWISC-TN
673(continued): [CXK]
674: 014.000.000.003 311030200024 00 UDEL-TN
674(continued): [CXK]
675: 014.000.000.004 234219200149 23 UCL-VTEST
675(continued): [PK]
676: 014.000.000.005 234219200300 23 UCL-TG
676(continued): [PK]
+=+=+=+=+= File rfc0821.txt +=+=+=+=+=
'yy' on a line without 'yyyy' found at line 1944:
1942: <daytime> ::= <SP> <date> <SP> <time>
1943:
1944: <date> ::= <dd> <SP> <mon> <SP> <yy>
1945:
1946: <time> ::= <hh> ":" <mm> ":" <ss> <SP> <zone>
'yy' on a line without 'yyyy' found at line 1954:
1952: "JUL" | "AUG" | "SEP" | "OCT" | "NOV" | "D
1952(continued): EC"
1953:
1954: <yy> ::= the two decimal integer year of the century
1954(continued): in the
1955: range 00 to 99.
1956:
century found at line 1954:
1952: "JUL" | "AUG" | "SEP" | "OCT" | "NOV" | "D
1952(continued): EC"
1953:
1954: <yy> ::= the two decimal integer year of the century
1954(continued): in the
1955: range 00 to 99.
1956:
+=+=+=+=+= File rfc0822.txt +=+=+=+=+=
'yy' on a line without 'yyyy' found at line 1635:
1633: 5.1. SYNTAX
1634:
1635: date-time = [ day "," ] date time ; dd mm yy
1636: ; hh:mm:ss zzz
1636(continued):
1637:
'yy' on a line without 'yyyy' found at line 2701:
2699: dates = orig-date ; Original
2700: [ resent-date ] ; Forwarded
2701: date-time = [ day "," ] date time ; dd mm yy
2702: ; hh:mm:ss zzz
2702(continued):
2703: day = "Mon" / "Tue" / "Wed" / "Thu"
2-digit found at line 344:
342:
343: "<n>(element)" is equivalent to "<n>*<n>(element)"; th
343(continued): at is,
344: exactly <n> occurrences of (element). Thus 2DIGIT is a 2
344(continued): -digit
345: number, and 3ALPHA is a string of three alphabetic characte
345(continued): rs.
346:
2digit found at line 344:
342:
343: "<n>(element)" is equivalent to "<n>*<n>(element)"; th
343(continued): at is,
344: exactly <n> occurrences of (element). Thus 2DIGIT is a 2
344(continued): -digit
345: number, and 3ALPHA is a string of three alphabetic characte
345(continued): rs.
346:
2digit found at line 1641:
1639: / "Fri" / "Sat" / "Sun"
1640:
1641: date = 1*2DIGIT month 2DIGIT ; day month yea
1641(continued): r
1642: ; e.g. 20 Jun
1642(continued): 82
1643:
2digit found at line 1650:
1648: time = hour zone ; ANSI and Mili
1648(continued): tary
1649:
1650: hour = 2DIGIT ":" 2DIGIT [":" 2DIGIT]
1651: ; 00:00:00 - 23
1651(continued): :59:59
1652:
2digit found at line 2697:
2695: CTL = <any ASCII control ; ( 0- 37, 0.
2695(continued): - 31.)
2696: character and DEL> ; ( 177,
2696(continued): 127.)
2697: date = 1*2DIGIT month 2DIGIT ; day month yea
2697(continued): r
2698: ; e.g. 20 Jun
2698(continued): 82
2699: dates = orig-date ; Original
2digit found at line 2747:
2745: field-name = 1*<any CHAR, excluding CTLs, SPACE, and ":">
2745(continued):
2746: group = phrase ":" [#mailbox] ";"
2747: hour = 2DIGIT ":" 2DIGIT [":" 2DIGIT]
2748: ; 00:00:00 - 23
2748(continued): :59:59
2749: HTAB = <ASCII HT, horizontal-tab> ; ( 11,
2749(continued): 9.)
+=+=+=+=+= File rfc0850.txt +=+=+=+=+=
'yy' on a line without 'yyyy' found at line 227:
225: network. One format that is acceptable to both is
226:
227: Weekday, DD-Mon-YY HH:MM:SS TIMEZONE
228:
229: Several examples of valid dates appear in the sample
+=+=+=+=+= File rfc0867.txt +=+=+=+=+=
'yy' on a line without 'yyyy' found at line 67:
65: Another popular syntax is that used in SMTP:
66:
67: dd mmm yy hh:mm:ss zzz
68:
69: Example:
+=+=+=+=+= File rfc0868.txt +=+=+=+=+=
1900 found at line 19:
17: This protocol provides a site-independent, machine readable date
17(continued): and
18: time. The Time service sends back to the originating source the
18(continued): time in
19: seconds since midnight on January first 1900.
20:
21: One motivation arises from the fact that not all systems have a
1900 found at line 83:
81: The Time
82:
83: The time is the number of seconds since 00:00 (midnight) 1 Janua
83(continued): ry 1900
84: GMT, such that the time 1 is 12:00:01 am on 1 January 1900 GMT;
84(continued): this
85: base will serve until the year 2036.
1900 found at line 84:
82:
83: The time is the number of seconds since 00:00 (midnight) 1 Janua
83(continued): ry 1900
84: GMT, such that the time 1 is 12:00:01 am on 1 January 1900 GMT;
84(continued): this
85: base will serve until the year 2036.
86:
+=+=+=+=+= File rfc0869.txt +=+=+=+=+=
2000 found at line 1639:
1637: 400 HDH
1638: 1000 Cassette Writer
1639: 2000 Propagation Delay Measurement
1640: 4000 X25
1641: 10000 Profile Measurements
2000 found at line 1642:
1640: 4000 X25
1641: 10000 Profile Measurements
1642: 20000 Self Authenticating Password
1643: 40000 Host traffic Matrix
1644: 100000 Experimental/Special
2000 found at line 1669:
1667: 200 Trace ON
1668: 1000 Statistics ON
1669: 2000 Message Generator ON
1670: 4000 Packet Trace ON
1671: 10000 Host Data Checksum is BAD
2000 found at line 1672:
1670: 4000 Packet Trace ON
1671: 10000 Host Data Checksum is BAD
1672: 20000 Reload Location SET
1673:
1674:
+=+=+=+=+= File rfc0884.txt +=+=+=+=+=
2000 found at line 236:
234: GENERAL-TERMINAL-100A
235: HAZELTINE-1500
236: HAZELTINE-2000
237: HP-2621
238: HP-2640A
+=+=+=+=+= File rfc0899.txt +=+=+=+=+=
1900 found at line 337:
335: provides a site-independent, machine readable date and time.
335(continued): The
336: Time service sends back to the originating source the time in
336(continued): seconds
337: since midnight on January first 1900.
338:
339: 867 Postel May 83 Daytime Protocol
+=+=+=+=+= File rfc0900.txt +=+=+=+=+=
2000 found at line 1595:
1593: HAZELTINE-1510
1594: HAZELTINE-1520
1595: HAZELTINE-2000
1596: HP-2621
1597: HP-2621A
+=+=+=+=+= File rfc0909.txt +=+=+=+=+=
'yy' on a line without 'yyyy' found at line 859:
857: responses from the target. A session begins when a host op
857(continued): ens a
858: transport connection to a target listening on a well known
858(continued): port.
859: LDP uses RDP port number zzz or TCP port number yyy. Whe
859(continued): n the
860: connection has been established, the host sends a HELLO co
860(continued): mmand,
861: and the target replies with a HELLO_REPLY. The HELLO
861(continued): _REPLY
+=+=+=+=+= File rfc0923.txt +=+=+=+=+=
2000 found at line 1769:
1767: HAZELTINE-1510
1768: HAZELTINE-1520
1769: HAZELTINE-2000
1770: HP-2621
1771: HP-2621A
+=+=+=+=+= File rfc0937.txt +=+=+=+=+=
'yy' on a line without 'yyyy' found at line 327:
325: FOLD mailbox - Error
326: READ [n] #xxx
327: RETR =yyy
328: ACKS
329: ACKD
+=+=+=+=+= File rfc0943.txt +=+=+=+=+=
2000 found at line 1829:
1827: HAZELTINE-1510
1828: HAZELTINE-1520
1829: HAZELTINE-2000
1830: HP-2621
1831: HP-2621A
+=+=+=+=+= File rfc0952.txt +=+=+=+=+=
'yy' on a line without 'yyyy' found at line 159:
157: ,(comma) is used as a data element delimiter
158:
159: XXX/YYY indicates protocol information of the type
160: TRANSPORT/SERVICE.
161:
+=+=+=+=+= File rfc0956.txt +=+=+=+=+=
1900 found at line 748:
746:
747: 3. The data format should be based on the UDP Time format
747(continued): , which
748: specifies 32-bit time in seconds since 1 January 1900,
748(continued): but
749: extended additional bits for the fractional part of a
749(continued): second.
750:
1900 found at line 826:
824: experiment the results indicated by UDP and ICMP are compared
824(continued): . In
825: the UDP Time protocol time is indicated as a 32-bit field in
825(continued): seconds
826: past 0000 UT on 1 January 1900, while in the ICMP Timestamp m
826(continued): essage
827: time is indicated as a 32-bit field in milliseconds past 0000
827(continued): UT of
828: each day.
2000 found at line 1392:
1390: CU-ARPA.CS.CORNELL.EDU -1 -514
1391: UCI-ICSE.ARPA -1 -1896
1392: UCI-ICSC.ARPA 1 2000
1393: DCN9.ARPA -7 -6610
1394: TRANTOR.ARPA 10 10232
+=+=+=+=+= File rfc0958.txt +=+=+=+=+=
century found at line 41:
39: NTP provides the protocol mechanisms to synchronize time in p
39(continued): rinciple
40: to precisions in the order of nanoseconds while preserving a
41: non-ambiguous date, at least for this century. The protocol
41(continued): includes
42: provisions to specify the precision and estimated error of th
42(continued): e local
43: clock and the characteristics of the reference clock to which
43(continued): it may
1900 found at line 143:
141:
142: NTP timestamps are represented as a 64-bit fixed-point number
142(continued): , in
143: seconds relative to 0000 UT on 1 January 1900. The integer p
143(continued): art is
144: in the first 32 bits and the fraction part in the last 32 bit
144(continued): s, as
145: shown in the following diagram.
+=+=+=+=+= File rfc0960.txt +=+=+=+=+=
2000 found at line 1659:
1657: 014.000.000.018 2624-522-80900 52 DFVLR5-X25
1657(continued): [HDC1]
1658: 014.000.000.019 2041-170-10000 00 SHAPE-X25
1658(continued): [JFW]
1659: 014.000.000.020 5052-737-20000 50 UQNET
1659(continued): [AXH]
1660: 014.000.000.021 3020-801-00057 50 DMC-CRC1
1660(continued): [JR17]
1661: 014.000.000.022-014.255.255.254 Unassigned
1661(continued): [JBP]
2000 found at line 1984:
1982: AEGIS
1983: APOLLO
1984: BS-2000
1985: CEDAR
1986: CGW
2000 found at line 2350:
2348: HAZELTINE-1510
2349: HAZELTINE-1520
2350: HAZELTINE-2000
2351: HP-2621
2352: HP-2621A
+=+=+=+=+= File rfc0973.txt +=+=+=+=+=
2000 found at line 377:
375: We might add the following to the parent zone:
376:
377: 99.128.IN-ADDR.ARPA. 2000 NS Q.ISI.EDU.
378: 2000 NS XX.MIT.EDU.
379: Q.ISI.EDU. 2000 A <address of Q.ISI.EDU.>
2000 found at line 378:
376:
377: 99.128.IN-ADDR.ARPA. 2000 NS Q.ISI.EDU.
378: 2000 NS XX.MIT.EDU.
379: Q.ISI.EDU. 2000 A <address of Q.ISI.EDU.>
380: XX.MIT.EDU. 2000 A <address of XX.MIT.EDU.>
2000 found at line 379:
377: 99.128.IN-ADDR.ARPA. 2000 NS Q.ISI.EDU.
378: 2000 NS XX.MIT.EDU.
379: Q.ISI.EDU. 2000 A <address of Q.ISI.EDU.>
380: XX.MIT.EDU. 2000 A <address of XX.MIT.EDU.>
381:
2000 found at line 380:
378: 2000 NS XX.MIT.EDU.
379: Q.ISI.EDU. 2000 A <address of Q.ISI.EDU.>
380: XX.MIT.EDU. 2000 A <address of XX.MIT.EDU.>
381:
382: and the following to the child zone:
2000 found at line 384:
382: and the following to the child zone:
383:
384: 99.128.IN-ADDR.ARPA. 2000 NS Q.ISI.EDU.
385: 2000 NS XX.MIT.EDU.
386: 5000 SOA <SOA information>
2000 found at line 385:
383:
384: 99.128.IN-ADDR.ARPA. 2000 NS Q.ISI.EDU.
385: 2000 NS XX.MIT.EDU.
386: 5000 SOA <SOA information>
387: Q.ISI.EDU. 2000 A <address of Q.ISI.EDU.>
2000 found at line 387:
385: 2000 NS XX.MIT.EDU.
386: 5000 SOA <SOA information>
387: Q.ISI.EDU. 2000 A <address of Q.ISI.EDU.>
388: XX.MIT.EDU. 2000 A <address of XX.MIT.EDU.>
389:
2000 found at line 388:
386: 5000 SOA <SOA information>
387: Q.ISI.EDU. 2000 A <address of Q.ISI.EDU.>
388: XX.MIT.EDU. 2000 A <address of XX.MIT.EDU.>
389:
390: SOA serials
+=+=+=+=+= File rfc0977.txt +=+=+=+=+=
'yy' on a line without 'yyyy' found at line 814:
812: the same format as the LIST command.
813:
814: The date is sent as 6 digits in the format YYMMDD, where YY i
814(continued): s the
815: last two digits of the year, MM is the two digits of the mont
815(continued): h (with
816: leading zero, if appropriate), and DD is the day of the month
816(continued): (with
century found at line 817:
815: last two digits of the year, MM is the two digits of the mont
815(continued): h (with
816: leading zero, if appropriate), and DD is the day of the month
816(continued): (with
817: leading zero, if appropriate). The closest century is assume
817(continued): d as
818: part of the year (i.e., 86 specifies 1986, 30 specifies 2030,
818(continued): 99 is
819: 1999, 00 is 2000).
2000 found at line 819:
817: leading zero, if appropriate). The closest century is assume
817(continued): d as
818: part of the year (i.e., 86 specifies 1986, 30 specifies 2030,
818(continued): 99 is
819: 1999, 00 is 2000).
820:
821: Time must also be specified. It must be as 6 digits HHMMSS w
821(continued): ith HH
2000 found at line 1190:
1188:
1189: (client asks for new newsgroups since April 3, 1985)
1190: C: NEWGROUPS 850403 020000
1191:
1192: S: 231 New newsgroups since 03/04/85 02:00:00 follow
2000 found at line 1275:
1273:
1274: (client asks for new newsgroups since 2 am, May 15, 1985)
1275: C: NEWGROUPS 850515 020000
1276: S: 235 New newsgroups since 850515 follow
1277: S: net.fluff
2000 found at line 1282:
1280:
1281: (client asks for new news articles since 2 am, May 15, 1985)
1282: C: NEWNEWS * 850515 020000
1283: S: 230 New news since 850515 020000 follows
1284: S: <1772@foo.UUCP>
2000 found at line 1283:
1281: (client asks for new news articles since 2 am, May 15, 1985)
1282: C: NEWNEWS * 850515 020000
1283: S: 230 New news since 850515 020000 follows
1284: S: <1772@foo.UUCP>
1285: S: <87623@baz.UUCP>
+=+=+=+=+= File rfc0985.txt +=+=+=+=+=
2000 found at line 505:
503: Very Distant Host (VDH) methods are not recommended for ne
503(continued): w
504: implementations. The Distant Host (DH) method is used whe
504(continued): n the
505: host and IMP are separated by not more than about 2000 fee
505(continued): t of
506: cable, while the HDLC Distant Host is used for greater dis
506(continued): tances
507: where a modem is required. Retransmission, resequencing a
507(continued): nd flow
+=+=+=+=+= File rfc0987.txt +=+=+=+=+=
UTCTime found at line 1100:
1098: X.408 (sections 4.2.2 and 5.2.2).
1099:
1100: 3.3.5. UTCTime
1101:
1102: Both UTCTime and the RFC 822 822.date-time syntax conta
1102(continued): in: Year
UTCTime found at line 1102:
1100: 3.3.5. UTCTime
1101:
1102: Both UTCTime and the RFC 822 822.date-time syntax conta
1102(continued): in: Year
1103: (lowest two digits), Month, Day of Month, hour, minute,
1103(continued): second
1104: (optional), and Timezone. 822.date-time also contains
1104(continued): an
UTCTime found at line 1107:
1105: optional day of the week, but this is redundant. There
1105(continued): fore a
1106: symmetrical mapping can be made between these construct
1106(continued): s <5>.
1107: The UTCTime format which specifies the timezone offset
1107(continued): should
1108: be used, in line with CEN/CENELEC recommendations.
1109:
UTCTime found at line 3395:
3393:
3394: The extended syntax of zone defined in the JNT Mail Protoc
3394(continued): ol
3395: should be used in the mapping of UTCTime defined in chapte
3395(continued): r 3.
3396:
3397: 5. Lack of separate 822-P1 originator specification
UTCTime found at line 3910:
3908: <5> In practice, a gateway will need to parse various illega
3908(continued): l
3909: variants on 822.date-time. In cases where 822.date-time
3909(continued): cannot
3910: be parsed, it is recommended that the derived UTCTime is
3910(continued): set to
3911: the value at the time of translation.
3912:
2digit found at line 2785:
2783: last-trace ";"
2784: "ext" 1*DIGIT
2785: "flags" 2DIGIT
2786: [ "intended" mailbox ] ";"
2787: [ "info" printablestring ]
+=+=+=+=+= File rfc0990.txt +=+=+=+=+=
2000 found at line 2265:
2263: 014.000.000.018 2624-522-80900 52 DFVLR5-X25
2263(continued): [GB7]
2264: 014.000.000.019 2041-170-10000 00 SHAPE-X25
2264(continued): [JFW]
2265: 014.000.000.020 5052-737-20000 50 UQNET
2265(continued): [AXH]
2266: 014.000.000.021 3020-801-00057 50 DMC-CRC1
2266(continued): [JR17]
2267: 014.000.000.022 2624-522-80902 77 DFVLRVAX-X25
2267(continued): [GB7]
2000 found at line 2584:
2582: AEGIS
2583: APOLLO
2584: BS-2000
2585: CEDAR
2586: CGW
2000 found at line 2945:
2943: HAZELTINE-1510
2944: HAZELTINE-1520
2945: HAZELTINE-2000
2946: HP-2621
2947: HP-2621A
+=+=+=+=+= File rfc0996.txt +=+=+=+=+=
2000 found at line 76:
74:
75: Process type: 000027 options: 040000
76: Subnet: DMV status: 376 hello: 15 timeout: 2000
77: Foreign address: [192.5.39.87] max size: 576
78: Input packets 3645 Output packets 3690
+=+=+=+=+= File rfc1000.txt +=+=+=+=+=
1900 found at line 3105:
3103: protocol provides a site-independent, machine readable dat
3103(continued): e and
3104: time. The Time service sends back to the originating sour
3104(continued): ce the
3105: time in seconds since midnight on January first 1900.
3106:
3107: 867 Postel May 83 Daytime Protocol
+=+=+=+=+= File rfc1009.txt +=+=+=+=+=
2000 found at line 1412:
1410: method is used when the host and IMP (the Defense Communic
1410(continued): ation
1411: Agency calls it a Packet Switch Node or PSN) are separated
1411(continued): by not
1412: more than about 2000 feet of cable, while the HDLC Distant
1412(continued): Host
1413: (HDH) is used for greater distances where a modem is requi
1413(continued): red.
1414: Under HDH, retransmission, resequencing and flow control a
1414(continued): re
+=+=+=+=+= File rfc1010.txt +=+=+=+=+=
2000 found at line 969:
967: 014.000.000.018 2624-522-80900 52 DFVLR5-X25
967(continued): [GB7]
968: 014.000.000.019 2041-170-10000 00 SHAPE-X25
968(continued): [JFW]
969: 014.000.000.020 5052-737-20000 50 UQNET
969(continued): [AXH]
970: 014.000.000.021 3020-801-00057 50 DMC-CRC1
970(continued): [JR17]
971: 014.000.000.022 2624-522-80902 77 DFVLRVAX-X25
971(continued): [GB7]
2000 found at line 1353:
1351: AEGIS
1352: APOLLO
1353: BS-2000
1354: CEDAR
1355: CGW
2000 found at line 1719:
1717: HAZELTINE-1510
1718: HAZELTINE-1520
1719: HAZELTINE-2000
1720: HP-2621
1721: HP-2621A
+=+=+=+=+= File rfc1024.txt +=+=+=+=+=
1900 found at line 535:
533:
534: The local system clock, measured in milliseconds since 00:00
534(continued): 1
535: January 1900 UTC. Assumed to be only a local estimate of the
535(continued): time.
536: The value 0 is reserved for an uninitialized clock (For examp
536(continued): le, an
537: uninitialized time-of-day chip.)
1900 found at line 546:
544: A network synchronized clock, which is assumed to be synchron
544(continued): ized
545: across some part of a network. The clock value is measured i
545(continued): n
546: milliseconds since 00:00 1 January 1900 UTC. Specific inform
546(continued): ation
547: about the synchronization protocol is found in the system var
547(continued): iable
548: dictionary. The value 0 is used to indicate an uninitialized
548(continued): clock.
+=+=+=+=+= File rfc1036.txt +=+=+=+=+=
'yy' on a line without 'yyyy' found at line 196:
194: both is:
195:
196: Wdy, DD Mon YY HH:MM:SS TIMEZONE
197:
198: Several examples of valid dates appear in the sample message
198(continued): above.
+=+=+=+=+= File rfc1037.txt +=+=+=+=+=
1900 found at line 541:
539: Date A numeric data token. The date is expre
539(continued): ssed in
540: Universal Time format, which measures a
540(continued): time as
541: the number of seconds since January 1, 1
541(continued): 900, at
542: midnight GMT.
543:
1900 found at line 2544:
2542: The creation date of the file. The date is expressed in Univ
2542(continued): ersal
2543: Time format, which measures a time as the number of seconds s
2543(continued): ince
2544: January 1, 1900, at midnight GMT. Creation date does not nec
2544(continued): essarily
2545: mean the time the file system created the directory entry or
2545(continued): records
2546: of the file. For systems that support modification or append
2546(continued): ing to
+=+=+=+=+= File rfc1038.txt +=+=+=+=+=
2000 found at line 317:
315:
316: The values of this field are assigned by DCA Code R130, Washi
316(continued): ngton,
317: D.C. 20305-2000. Each value corresponds to a requestor who,
317(continued): once
318: assigned, becomes the authority for the remainder of the opti
318(continued): on
319: definition for that value.
+=+=+=+=+= File rfc1050.txt +=+=+=+=+=
2000 found at line 323:
321: 7.3 Program Number Assignment
322:
323: Program numbers are given out in groups of hexadecimal 200000
323(continued): 00
324: (decimal 536870912) according to the following chart:
325:
2000 found at line 327:
325:
326: 0 - 1fffffff defined by Sun
327: 20000000 - 3fffffff defined by user
328: 40000000 - 5fffffff transient
329: 60000000 - 7fffffff reserved
+=+=+=+=+= File rfc1057.txt +=+=+=+=+=
2000 found at line 339:
337: 7.3 Program Number Assignment
338:
339: Program numbers are given out in groups of hexadecimal 200000
339(continued): 00
340: (decimal 536870912) according to the following chart:
341:
2000 found at line 343:
341:
342: 0 - 1fffffff defined by Sun
343: 20000000 - 3fffffff defined by user
344: 40000000 - 5fffffff transient
345: 60000000 - 7fffffff reserved
+=+=+=+=+= File rfc1059.txt +=+=+=+=+=
century found at line 142:
140: mechanisms to synchronize time in principle to precisions in
140(continued): the
141: order of nanoseconds while preserving a non-ambiguous date we
141(continued): ll into
142: the next century. The protocol includes provisions to specif
142(continued): y the
143: characteristics and estimate the error of the local clock and
143(continued): the
144: time server to which it may be synchronized. It also include
144(continued): s
1900 found at line 574:
572: frequency to the TA time scale. At 0000 hours on 1 January 1
572(continued): 972 the
573: NTP time scale was set to 2,272,060,800, representing the num
573(continued): ber of
574: TA seconds since 0000 hours on 1 January 1900. The insertion
574(continued): of leap
575: seconds in UTC does not affect the oscillator itself, only th
575(continued): e
576: translation between TA and UTC, or conventional civil time.
576(continued): However,
1900 found at line 649:
647: main product of the protocol, a special timestamp format has
647(continued): been
648: established. NTP timestamps are represented as a 64-bit unsi
648(continued): gned
649: fixed-point number, in seconds relative to 0000 UT on 1 Janua
649(continued): ry 1900.
650: The integer part is in the first 32 bits and the fraction par
650(continued): t in the
651: last 32 bits, as shown in the following diagram.
1900 found at line 690:
688: the Integer Part) has been set and that the 64-bit field will
688(continued):
689: overflow some time in 2036. Should NTP be in use in 2036, so
689(continued): me
690: external means will be necessary to qualify time relative to
690(continued): 1900 and
691: time relative to 2036 (and other multiples of 136 years).
692: Timestamped data requiring such qualification will be so prec
692(continued): ious
+=+=+=+=+= File rfc1060.txt +=+=+=+=+=
'yy' on a line without 'yyyy' found at line 2324:
2322: AB-00-03-00-00-00 6004 DEC Local Area Transport
2322(continued): (LAT) - old
2323: AB-00-04-00-xx-xx ???? Reserved DEC customer private
2323(continued): use
2324: AB-00-04-01-xx-yy 6007 DEC Local Area VAX Cluster gr
2324(continued): oups
2325: System Communication Architec
2325(continued): ture (SCA)
2326: CF-00-00-00-00-00 9000 Ethernet Configuration Test
2326(continued): protocol (Loopback)
2000 found at line 2729:
2727: 014.000.000.018 2624-522-80900 52 FGAN-SIEMENS-X25
2727(continued): [GB7]
2728: 014.000.000.019 2041-170-10000 00 SHAPE-X25
2728(continued): [JFW]
2729: 014.000.000.020 5052-737-20000 50 UQNET
2729(continued): [AXH]
2730: 014.000.000.021 3020-801-00057 50 DMC-CRC1
2730(continued): [VXT]
2731: 014.000.000.022 2624-522-80329 02 FGAN-FGANFFMVAX-X25
2731(continued): [GB7]
2000 found at line 3155:
3153: AEGIS MACOS TP3010
3154: APOLLO MINOS TRSDOS
3155: BS-2000 MOS ULTRIX
3156: CEDAR MPE5 UNIX
3157: CGW MSDOS UNIX-BSD
2000 found at line 3508:
3506: HAZELTINE-1520 IBM-3278-5-E
3507: HAZELTINE-1552 IBM-3279-2-E
3508: HAZELTINE-2000 IBM-3279-3-E
3509: HAZELTINE-ESPRIT IMLAC
3510: HP-2392 INFOTON-100
+=+=+=+=+= File rfc1064.txt +=+=+=+=+=
'yy' on a line without 'yyyy' found at line 1321:
1319: "NO" SP text_line / "BAD" SP text_line)
1320:
1321: date ::= string in form "dd-mmm-yy hh:mm:ss-zzz"
1322:
1323: envelope ::= "(" env_date SP env_subject SP env_from S
1323(continued): P
+=+=+=+=+= File rfc1085.txt +=+=+=+=+=
UTCTime found at line 1501:
1499:
1500: commonReference
1501: UTCTime,
1502:
1503: additionalReferenceInformation[0]
+=+=+=+=+= File rfc1094.txt +=+=+=+=+=
2000 found at line 878:
876:
877: 0040000 This is a directory; "type" field should be NFDIR.
877(continued):
878: 0020000 This is a character special file; "type" field sho
878(continued): uld
879: be NFCHR.
880: 0060000 This is a block special file; "type" field should
880(continued): be
2000 found at line 883:
881: NFBLK.
882: 0100000 This is a regular file; "type" field should be NFR
882(continued): EG.
883: 0120000 This is a symbolic link file; "type" field should
883(continued): be
884: NFLNK.
885: 0140000 This is a named socket; "type" field should be NFN
885(continued): ON.
2000 found at line 887:
885: 0140000 This is a named socket; "type" field should be NFN
885(continued): ON.
886: 0004000 Set user id on execution.
887: 0002000 Set group id on execution.
888: 0001000 Save swapped text even after use.
889: 0000400 Read permission for owner.
+=+=+=+=+= File rfc1108.txt +=+=+=+=+=
2000 found at line 187:
185: throughout DoD common user data networks, users of these netw
185(continued): orks
186: should submit requirements for additional Protection Authorit
186(continued): y Flags
187: to DISA DISDB, Washington, D.C. 20305-2000, for review and a
187(continued): pproval.
188: Such review and approval should be sought prior to design,
189: development or deployment of any system which would make use
189(continued): of
2000 found at line 774:
772: data networks, and to maximize interoperability, each activit
772(continued): y should
773: submit its plans for the definition and use of an Additional
773(continued): Security
774: Info Format Code to DISA DISDB, Washington, D.C. 20305-2000
774(continued): for
775: review and approval. DISA DISDB will forward plans to the In
775(continued): ternet
776: Activities Board for architectural review and, if required, a
776(continued): cleared
+=+=+=+=+= File rfc1114.txt +=+=+=+=+=
UTCTime found at line 922:
920: issuer Name,
921: list SEQUENCE RCLEntry,
922: lastUpdate UTCTime,
923: nextUpdate UTCTime}
924:
UTCTime found at line 923:
921: list SEQUENCE RCLEntry,
922: lastUpdate UTCTime,
923: nextUpdate UTCTime}
924:
925: RCLEntry ::= SEQUENCE {
UTCTime found at line 927:
925: RCLEntry ::= SEQUENCE {
926: subject CertificateSerialNumber,
927: revocationDate UTCTime}
928:
929: 3.4 Certificate Definition and Usage
UTCTime found at line 1296:
1294:
1295: Validity ::= SEQUENCE{
1296: notBefore UTCTime,
1297: notAfter UTCTime}
1298:
UTCTime found at line 1297:
1295: Validity ::= SEQUENCE{
1296: notBefore UTCTime,
1297: notAfter UTCTime}
1298:
1299: SubjectPublicKeyInfo ::= SEQUENCE{
+=+=+=+=+= File rfc1117.txt +=+=+=+=+=
'yy' on a line without 'yyyy' found at line 4965:
4963: jwmanly%amherst.bitnet@MITVMA.MIT.EDU
4964: [JWN10] Norris, James W a02jwn1%niu.bitnet@CUNYVM.CUNY.E
4964(continued): DU
4965: [JY24] Yu, Jessica jyy@MERIT.EDU
4966: [JY33] Yoshida, Jun ---none---
4967: [KA4] Auerbach, Karl auerbach@CSL.SRI.COM
+=+=+=+=+= File rfc1123.txt +=+=+=+=+=
2digit found at line 3239:
3237: The syntax for the date is hereby changed to:
3238:
3239: date = 1*2DIGIT month 2*4DIGIT
3240:
3241:
century found at line 3253:
3251:
3252: All mail software SHOULD use 4-digit years in dates, to
3252(continued): ease
3253: the transition to the next century.
3254:
3255: There is a strong trend towards the use of numeric time
3255(continued): zone
+=+=+=+=+= File rfc1133.txt +=+=+=+=+=
'yy' on a line without 'yyyy' found at line 493:
491: Telephone: 313 936-2655
492: Fax: 313 747-3745
493: EMail: jyy@merit.edu
494:
495: Hans-Werner Braun
+=+=+=+=+= File rfc1138.txt +=+=+=+=+=
UTCTime found at line 1471:
1469: the full BNF easier to parse.
1470:
1471: 3.3.5. UTCTime
1472:
1473: Both UTCTime and the RFC 822 822.date-time syntax contain: Y
1473(continued): ear
UTCTime found at line 1473:
1471: 3.3.5. UTCTime
1472:
1473: Both UTCTime and the RFC 822 822.date-time syntax contain: Y
1473(continued): ear
1474: (lowest two digits), Month, Day of Month, hour, minute, secon
1474(continued): d
1475: (optional), and Timezone. 822.date-time also contains an opt
1475(continued): ional
UTCTime found at line 1482:
1480: In practice, a gateway will need to parse various illega
1480(continued): l
1481: variants on 822.date-time. In cases where 822.date-time
1481(continued):
1482: cannot be parsed, it is recommended that the derived UTC
1482(continued): Time
1483: is set to the value at the time of translation.
1484:
UTCTime found at line 1485:
1483: is set to the value at the time of translation.
1484:
1485: The UTCTime format which specifies the timezone offset should
1485(continued): be
1486: used.
1487:
UTCTime found at line 4469:
4467:
4468: The extended syntax of zone defined in the JNT Mail Protocol
4468(continued): should
4469: be used in the mapping of UTCTime defined in Chapter 3.
4470:
4471: 6. Lack of 822-MTS originator specification
+=+=+=+=+= File rfc1147.txt +=+=+=+=+=
'yy' on a line without 'yyyy' found at line 9715:
9713: cerns to security and management personnel at DDN faci
9713(continued): li-
9714: ties. It is available online, via kermit or anonymous
9714(continued): FTP,
9715: from nic.ddn.mil, in SCC:DDN-SECURITY-yy-nn.TXT (where
9715(continued): "yy"
9716: is the year and "nn" is the bulletin number). The SCC
9716(continued): pro-
9717: vides immediate assistance with DDN-related host secur
9717(continued): ity
century found at line 1096:
1094: "NETMON." These tools were independently developed, ar
1094(continued): e
1095: functionally different, run in different environments,
1095(continued): and
1096: are no more related than Richard Burton the 19th centu
1096(continued): ry
1097: explorer and Richard Burton the 20th century actor. B
1097(continued): YU's
1098: tool "NETMON" is listed as "NETMON (I)," MITRE's as "N
1098(continued): ETMON
century found at line 1097:
1095: functionally different, run in different environments,
1095(continued): and
1096: are no more related than Richard Burton the 19th centu
1096(continued): ry
1097: explorer and Richard Burton the 20th century actor. B
1097(continued): YU's
1098: tool "NETMON" is listed as "NETMON (I)," MITRE's as "N
1098(continued): ETMON
1099: (II)," and the tool from SNMP Research as "NETMON (III
1099(continued): )."
2000 found at line 4134:
4132: libraries), but this has not been done. Curses i
4132(continued): s very
4133: slow and cpu intensive on VMS, but the tool has b
4133(continued): een
4134: run in a window on a VAXstation 2000. Just don't
4134(continued): try
4135: to run it on a terminal connected to a 11/750.
4136:
+=+=+=+=+= File rfc1148.txt +=+=+=+=+=
UTCTime found at line 1475:
1473: the full BNF easier to parse.
1474:
1475: 3.3.5. UTCTime
1476:
1477: Both UTCTime and the RFC 822 822.date-time syntax contain: Y
1477(continued): ear
UTCTime found at line 1477:
1475: 3.3.5. UTCTime
1476:
1477: Both UTCTime and the RFC 822 822.date-time syntax contain: Y
1477(continued): ear
1478: (lowest two digits), Month, Day of Month, hour, minute, secon
1478(continued): d
1479: (optional), and Timezone. 822.date-time also contains an opt
1479(continued): ional
UTCTime found at line 1486:
1484: In practice, a gateway will need to parse various illega
1484(continued): l
1485: variants on 822.date-time. In cases where 822.date-time
1485(continued):
1486: cannot be parsed, it is recommended that the derived UTC
1486(continued): Time
1487: is set to the value at the time of translation.
1488:
UTCTime found at line 1489:
1487: is set to the value at the time of translation.
1488:
1489: The UTCTime format which specifies the timezone offset should
1489(continued): be
1490: used.
1491:
UTCTime found at line 4566:
4564:
4565: The extended syntax of zone defined in the JNT Mail Protocol
4565(continued): should
4566: be used in the mapping of UTCTime defined in Chapter 3.
4567:
4568: 6. Lack of 822-MTS originator specification
+=+=+=+=+= File rfc1152.txt +=+=+=+=+=
'yy' on a line without 'yyyy' found at line 937:
935: Reservation Multiple-Access).
936:
937: Finally, Yechiam Yemeni (YY, Columbia University) discussed h
937(continued): is work
938: on a protocol silicon compiler. In order to exploit the pote
938(continued): ntial
939: parallelism, he is planning to use one processor per connecti
939(continued): on.
+=+=+=+=+= File rfc1153.txt +=+=+=+=+=
'yy' on a line without 'yyyy' found at line 119:
117:
118:
119: Date: ddd, dd mmm yy hh:mm:ss zzz
120: From: listname-REQUEST@fqhn
121: Reply-To: listname@fqhn
'yy' on a line without 'yyyy' found at line 122:
120: From: listname-REQUEST@fqhn
121: Reply-To: listname@fqhn
122: Subject: listname Digest Vyy #nn
123: To: listname@fqhn
124:
'yy' on a line without 'yyyy' found at line 125:
123: To: listname@fqhn
124:
125: listname Digest ddd, dd mmm yy Volume yy : Iss
125(continued): ue nn
126:
127: Today's Topics:
'yy' on a line without 'yyyy' found at line 137:
135: ----------------------------------------------------------------
135(continued): ------
136:
137: Date: ddd, dd mmm yy hh:mm:ss zzz
138: From: Joe User <username@fqhn>
139: Subject: Message One Subject
'yy' on a line without 'yyyy' found at line 147:
145: ------------------------------
146:
147: Date: ddd, dd mmm yy hh:mm:ss zzz
148: From: Jane User <username@fqhn>
149: Subject: Message Two Subject
'yy' on a line without 'yyyy' found at line 157:
155: ------------------------------
156:
157: End of listname Digest Vyy Issue #nn
158: ************************************
159:
+=+=+=+=+= File rfc1161.txt +=+=+=+=+=
1900 found at line 322:
320: on the protocol-ID
321:
322: 03019000
323:
324: 5. Acknowledgements
2000 found at line 210:
208: (1) <nsap> is a hex string defining the nsap, e.g.,
209:
210: "snmp"/NS+4900590800200038bafe00
211:
212: Similarly, SNMP traps are, by convention, sent to a manager l
212(continued): istening
2000 found at line 291:
289: (1) <nsap> is a hex string defining the nsap, e.g.,
290:
291: "snmp"/NS+4900590800200038bafe00
292:
293: Similarly, SNMP traps are, by convention, sent to a manager l
293(continued): istening
+=+=+=+=+= File rfc1164.txt +=+=+=+=+=
'yy' on a line without 'yyyy' found at line 1267:
1265: Phone: (313) 936-3000
1266:
1267: Email: JYY@MERIT.EDU
1268:
1269:
+=+=+=+=+= File rfc1166.txt +=+=+=+=+=
'yy' on a line without 'yyyy' found at line 8270:
8268: [JWN10] Norris, James W.
8269: a02jwn1%niu.bitnet@CUNYVM.CUNY.EDU
8270: [JY24] Yu, Jessica jyy@MERIT.EDU
8271: [JY33] Yoshida, Jun ---none---
8272: [JY35] Young, Jeff ---none---
+=+=+=+=+= File rfc1167.txt +=+=+=+=+=
2000 found at line 89:
87: are also likely play a role along with Switched Multi-megabit
87(continued): Data
88: Service (SMDS) provided by telecommunications carriers. It a
88(continued): lso
89: would be fair to ask what role FTS-2000 might play in the sys
89(continued): tem, at
90: least in support of government access to the NREN, and possib
90(continued): ly in
91: support of national agency network facilities.
+=+=+=+=+= File rfc1173.txt +=+=+=+=+=
century found at line 72:
70: only choice; I don't see any prospect of either the governmen
70(continued): t or
71: private enterprise building a monolithic, centralized, ubiqui
71(continued): tous "Ma
72: Datagram" network provider in this century.
73:
74: 2. Responsibilities of Network Managers
+=+=+=+=+= File rfc1176.txt +=+=+=+=+=
'yy' on a line without 'yyyy' found at line 1435:
1433: "NO" SP text_line / "BAD" SP text_line)
1434:
1435: date ::= string in form "dd-mmm-yy hh:mm:ss-zzz"
1436:
1437: envelope ::= "(" env_date SP env_subject SP env_from S
1437(continued): P
+=+=+=+=+= File rfc1185.txt +=+=+=+=+=
2000 found at line 208:
206: 1.1MBps, no matter how high the theoretical transfer rate
206(continued): of the
207: path. This corresponds to cycling the sequence number spa
207(continued): ce in
208: Twrap= 2000 secs, which is safe in today's Internet.
209:
210: Based on this reasoning, an earlier RFC [McKenzie89] has c
210(continued): autioned
+=+=+=+=+= File rfc1190.txt +=+=+=+=+=
2000 found at line 7630:
7628: link failure
7629:
7630: 2000 DefaultRecoveryTimeout Interval between successive
7630(continued):
7631: HELLOs to/from active neigh
7631(continued): bors
7632:
+=+=+=+=+= File rfc1191.txt +=+=+=+=+=
2000 found at line 925:
923: 65535 Hyperchannel RFC 1044
924: 65535
925: 32000 Just in case
926: 17914 16Mb IBM Token Ring ref. [6]
927: 17914
+=+=+=+=+= File rfc1203.txt +=+=+=+=+=
'yy' on a line without 'yyyy' found at line 2102:
2100: "NO" SP text_line / "BAD" SP text_line)
2101:
2102: date ::= string in form "dd-mmm-yy hh:mm:ss-zzz"
2103:
2104: envelope ::= "(" env_date SP env_subject SP env_from SP
2000 found at line 2614:
2612: question. For example:
2613:
2614: tag42 FETCH 197 BODY 2000:3999
2615:
2616: would fetch the second two thousand bytes of the body of
2616(continued): message
+=+=+=+=+= File rfc1207.txt +=+=+=+=+=
'yy' on a line without 'yyyy' found at line 136:
134: directory. Information includes packet counts by NSS and
134(continued): byte
135: counts for type of use (ftp, smtp, telnet, etc.). Filenam
135(continued): es are
136: of the form 'NSFyy-mm.type'.
137:
138: Files are available for anonymous ftp; use 'guest' as the
+=+=+=+=+= File rfc1210.txt +=+=+=+=+=
2000 found at line 1548:
1546: Franci Bigi (1)
1547: CEC
1548: Rue de la Loi 2000
1549: B-1049
1550: Brussels
2000 found at line 1756:
1754: Rolf Speth (1)
1755: CEC
1756: Rue de la Loi 2000
1757: B-1049
1758: Brussels
2000 found at line 1773:
1771: Jose Torcato (1), (2)
1772: CEC, TR 61 0/10
1773: Rue de la Loi 2000
1774: B-1049
1775: Brussels
2000 found at line 1801:
1799: Karel De Vriendt (1)
1800: CEC
1801: Rue de la Loi 2000
1802: B-1049
1803: Brussels
2000 found at line 1837:
1835: Rosalie Zobel (1) (2)
1836: CEC
1837: Rue de la Loi 2000
1838: B-1049
1839: Brussels
+=+=+=+=+= File rfc1211.txt +=+=+=+=+=
1900 found at line 1591:
1589:
1590: westine 49% mconnect OSI3.NCSL.NIST.GOV
1591: connecting to host OSI3.NCSL.NIST.GOV (0x6c300681), port 0x19
1591(continued): 00
1592: connection open
1593: 220 osi3.ncsl.nist.gov sendmail 4.0/NIST(rbj/dougm) ready at
2000 found at line 2363:
2361: Office Automation Division
2362: Code H610
2363: Washington, DC 20305-2000
2364:
2365: Hostname: DCA-EMS.DCA.MIL
+=+=+=+=+= File rfc1218.txt +=+=+=+=+=
2000 found at line 1249:
1247: Rapport Communication, Inc.
1248: 3055 Q Street NW
1249: Washington, DC 20007
1250:
1251: Tel: +1 202-342-2727
+=+=+=+=+= File rfc1224.txt +=+=+=+=+=
2000 found at line 983:
981: and placed in an ethernet packet). 120 request packets ar
981(continued): e sent
982: each cycle (3 for each of 40 nodes), and 120 response pack
982(continued): ets are
983: expected. 72000 bytes (240 packets at 300 bytes each) mus
983(continued): t be
984: transferred during each poll cycle, merely to determine th
984(continued): at the
985: network is fine.
+=+=+=+=+= File rfc1244.txt +=+=+=+=+=
'yy' on a line without 'yyyy' found at line 2481:
2479: and concerns to security and management personnel at
2479(continued): DDN
2480: facilities. It is available online, via kermit or a
2480(continued): nonymous
2481: FTP, from the host NIC.DDN.MIL, in SCC:DDN-SECURITY-
2481(continued): yy-
2482: nn.TXT (where "yy" is the year and "nn" is the bulle
2482(continued): tin
2483: number). The SCC provides immediate assistance with
2483(continued): DDN-
'yy' on a line without 'yyyy' found at line 2482:
2480: facilities. It is available online, via kermit or a
2480(continued): nonymous
2481: FTP, from the host NIC.DDN.MIL, in SCC:DDN-SECURITY-
2481(continued): yy-
2482: nn.TXT (where "yy" is the year and "nn" is the bulle
2482(continued): tin
2483: number). The SCC provides immediate assistance with