aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssh/doc/standard/draft-ietf-secsh-connect-18.2.ps
blob: 7a386724c21b1d9d54b7474f460ba26ed84a85df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
%!PS-Adobe-3.0
%%BoundingBox: 75 0 595 747
%%Title: Enscript Output
%%For: Magnus Thoang
%%Creator: GNU enscript 1.6.1
%%CreationDate: Fri Oct 31 13:33:02 2003
%%Orientation: Portrait
%%Pages: 11 0
%%DocumentMedia: A4 595 842 0 () ()
%%DocumentNeededResources: (atend)
%%EndComments
%%BeginProlog
%%BeginProcSet: PStoPS 1 15
userdict begin
[/showpage/erasepage/copypage]{dup where{pop dup load
 type/operatortype eq{1 array cvx dup 0 3 index cvx put
 bind def}{pop}ifelse}{pop}ifelse}forall
[/letter/legal/executivepage/a4/a4small/b5/com10envelope
 /monarchenvelope/c5envelope/dlenvelope/lettersmall/note
 /folio/quarto/a5]{dup where{dup wcheck{exch{}put}
 {pop{}def}ifelse}{pop}ifelse}forall
/setpagedevice {pop}bind 1 index where{dup wcheck{3 1 roll put}
 {pop def}ifelse}{def}ifelse
/PStoPSmatrix matrix currentmatrix def
/PStoPSxform matrix def/PStoPSclip{clippath}def
/defaultmatrix{PStoPSmatrix exch PStoPSxform exch concatmatrix}bind def
/initmatrix{matrix defaultmatrix setmatrix}bind def
/initclip[{matrix currentmatrix PStoPSmatrix setmatrix
 [{currentpoint}stopped{$error/newerror false put{newpath}}
 {/newpath cvx 3 1 roll/moveto cvx 4 array astore cvx}ifelse]
 {[/newpath cvx{/moveto cvx}{/lineto cvx}
 {/curveto cvx}{/closepath cvx}pathforall]cvx exch pop}
 stopped{$error/errorname get/invalidaccess eq{cleartomark
 $error/newerror false put cvx exec}{stop}ifelse}if}bind aload pop
 /initclip dup load dup type dup/operatortype eq{pop exch pop}
 {dup/arraytype eq exch/packedarraytype eq or
  {dup xcheck{exch pop aload pop}{pop cvx}ifelse}
  {pop cvx}ifelse}ifelse
 {newpath PStoPSclip clip newpath exec setmatrix} bind aload pop]cvx def
/initgraphics{initmatrix newpath initclip 1 setlinewidth
 0 setlinecap 0 setlinejoin []0 setdash 0 setgray
 10 setmiterlimit}bind def
end
%%EndProcSet
%%BeginResource: procset Enscript-Prolog 1.6 1
%
% Procedures.
%

/_S {	% save current state
  /_s save def
} def
/_R {	% restore from saved state
  _s restore
} def

/S {	% showpage protecting gstate
  gsave
  showpage
  grestore
} bind def

/MF {	% fontname newfontname -> -	make a new encoded font
  /newfontname exch def
  /fontname exch def

  /fontdict fontname findfont def
  /newfont fontdict maxlength dict def

  fontdict {
    exch
    dup /FID eq {
      % skip FID pair
      pop pop
    } {
      % copy to the new font dictionary
      exch newfont 3 1 roll put
    } ifelse
  } forall

  newfont /FontName newfontname put

  % insert only valid encoding vectors
  encoding_vector length 256 eq {
    newfont /Encoding encoding_vector put
  } if

  newfontname newfont definefont pop
} def

/SF { % fontname width height -> -	set a new font
  /height exch def
  /width exch def

  findfont
  [width 0 0 height 0 0] makefont setfont
} def

/SUF { % fontname width height -> -	set a new user font
  /height exch def
  /width exch def

  /F-gs-user-font MF
  /F-gs-user-font width height SF
} def

/M {moveto} bind def
/s {show} bind def

/Box {	% x y w h -> -			define box path
  /d_h exch def /d_w exch def /d_y exch def /d_x exch def
  d_x d_y  moveto
  d_w 0 rlineto
  0 d_h rlineto
  d_w neg 0 rlineto
  closepath
} def

/bgs {	% x y height blskip gray str -> -	show string with bg color
  /str exch def
  /gray exch def
  /blskip exch def
  /height exch def
  /y exch def
  /x exch def

  gsave
    x y blskip sub str stringwidth pop height Box
    gray setgray
    fill
  grestore
  x y M str s
} def

% Highlight bars.
/highlight_bars {	% nlines lineheight output_y_margin gray -> -
  gsave
    setgray
    /ymarg exch def
    /lineheight exch def
    /nlines exch def

    % This 2 is just a magic number to sync highlight lines to text.
    0 d_header_y ymarg sub 2 sub translate

    /cw d_output_w cols div def
    /nrows d_output_h ymarg 2 mul sub lineheight div cvi def

    % for each column
    0 1 cols 1 sub {
      cw mul /xp exch def

      % for each rows
      0 1 nrows 1 sub {
        /rn exch def
        rn lineheight mul neg /yp exch def
        rn nlines idiv 2 mod 0 eq {
	  % Draw highlight bar.  4 is just a magic indentation.
	  xp 4 add yp cw 8 sub lineheight neg Box fill
	} if
      } for
    } for

  grestore
} def

% Line highlight bar.
/line_highlight {	% x y width height gray -> -
  gsave
    /gray exch def
    Box gray setgray fill
  grestore
} def

% Column separator lines.
/column_lines {
  gsave
    .1 setlinewidth
    0 d_footer_h translate
    /cw d_output_w cols div def
    1 1 cols 1 sub {
      cw mul 0 moveto
      0 d_output_h rlineto stroke
    } for
  grestore
} def

% Column borders.
/column_borders {
  gsave
    .1 setlinewidth
    0 d_footer_h moveto
    0 d_output_h rlineto
    d_output_w 0 rlineto
    0 d_output_h neg rlineto
    closepath stroke
  grestore
} def

% Do the actual underlay drawing
/draw_underlay {
  ul_style 0 eq {
    ul_str true charpath stroke
  } {
    ul_str show
  } ifelse
} def

% Underlay
/underlay {	% - -> -
  gsave
    0 d_page_h translate
    d_page_h neg d_page_w atan rotate

    ul_gray setgray
    ul_font setfont
    /dw d_page_h dup mul d_page_w dup mul add sqrt def
    ul_str stringwidth pop dw exch sub 2 div ul_h_ptsize -2 div moveto
    draw_underlay
  grestore
} def

/user_underlay {	% - -> -
  gsave
    ul_x ul_y translate
    ul_angle rotate
    ul_gray setgray
    ul_font setfont
    0 0 ul_h_ptsize 2 div sub moveto
    draw_underlay
  grestore
} def

% Page prefeed
/page_prefeed {		% bool -> -
  statusdict /prefeed known {
    statusdict exch /prefeed exch put
  } {
    pop
  } ifelse
} def

% Wrapped line markers
/wrapped_line_mark {	% x y charwith charheight type -> -
  /type exch def
  /h exch def
  /w exch def
  /y exch def
  /x exch def

  type 2 eq {
    % Black boxes (like TeX does)
    gsave
      0 setlinewidth
      x w 4 div add y M
      0 h rlineto w 2 div 0 rlineto 0 h neg rlineto
      closepath fill
    grestore
  } {
    type 3 eq {
      % Small arrows
      gsave
        .2 setlinewidth
        x w 2 div add y h 2 div add M
        w 4 div 0 rlineto
        x w 4 div add y lineto stroke

        x w 4 div add w 8 div add y h 4 div add M
        x w 4 div add y lineto
	w 4 div h 8 div rlineto stroke
      grestore
    } {
      % do nothing
    } ifelse
  } ifelse
} def

% EPSF import.

/BeginEPSF {
  /b4_Inc_state save def    		% Save state for cleanup
  /dict_count countdictstack def	% Count objects on dict stack
  /op_count count 1 sub def		% Count objects on operand stack
  userdict begin
  /showpage { } def
  0 setgray 0 setlinecap
  1 setlinewidth 0 setlinejoin
  10 setmiterlimit [ ] 0 setdash newpath
  /languagelevel where {
    pop languagelevel
    1 ne {
      false setstrokeadjust false setoverprint
    } if
  } if
} bind def

/EndEPSF {
  count op_count sub { pos } repeat	% Clean up stacks
  countdictstack dict_count sub { end } repeat
  b4_Inc_state restore
} bind def

% Check PostScript language level.
/languagelevel where {
  pop /gs_languagelevel languagelevel def
} {
  /gs_languagelevel 1 def
} ifelse
%%EndResource
%%BeginResource: procset Enscript-Encoding-88591 1.6 1
/encoding_vector [
/.notdef      	/.notdef      	/.notdef      	/.notdef      	
/.notdef      	/.notdef      	/.notdef      	/.notdef      	
/.notdef      	/.notdef      	/.notdef      	/.notdef      	
/.notdef      	/.notdef      	/.notdef      	/.notdef      	
/.notdef      	/.notdef      	/.notdef      	/.notdef      	
/.notdef      	/.notdef      	/.notdef      	/.notdef      	
/.notdef      	/.notdef      	/.notdef      	/.notdef      	
/.notdef      	/.notdef      	/.notdef      	/.notdef      	
/space        	/exclam       	/quotedbl     	/numbersign   	
/dollar       	/percent      	/ampersand    	/quoteright   	
/parenleft    	/parenright   	/asterisk     	/plus         	
/comma        	/hyphen       	/period       	/slash        	
/zero         	/one          	/two          	/three        	
/four         	/five         	/six          	/seven        	
/eight        	/nine         	/colon        	/semicolon    	
/less         	/equal        	/greater      	/question     	
/at           	/A            	/B            	/C            	
/D            	/E            	/F            	/G            	
/H            	/I            	/J            	/K            	
/L            	/M            	/N            	/O            	
/P            	/Q            	/R            	/S            	
/T            	/U            	/V            	/W            	
/X            	/Y            	/Z            	/bracketleft  	
/backslash    	/bracketright 	/asciicircum  	/underscore   	
/quoteleft    	/a            	/b            	/c            	
/d            	/e            	/f            	/g            	
/h            	/i            	/j            	/k            	
/l            	/m            	/n            	/o            	
/p            	/q            	/r            	/s            	
/t            	/u            	/v            	/w            	
/x            	/y            	/z            	/braceleft    	
/bar          	/braceright   	/tilde        	/.notdef      	
/.notdef      	/.notdef      	/.notdef      	/.notdef      	
/.notdef      	/.notdef      	/.notdef      	/.notdef      	
/.notdef      	/.notdef      	/.notdef      	/.notdef      	
/.notdef      	/.notdef      	/.notdef      	/.notdef      	
/.notdef      	/.notdef      	/.notdef      	/.notdef      	
/.notdef      	/.notdef      	/.notdef      	/.notdef      	
/.notdef      	/.notdef      	/.notdef      	/.notdef      	
/.notdef      	/.notdef      	/.notdef      	/.notdef      	
/space        	/exclamdown   	/cent         	/sterling     	
/currency     	/yen          	/brokenbar    	/section      	
/dieresis     	/copyright    	/ordfeminine  	/guillemotleft	
/logicalnot   	/hyphen       	/registered   	/macron       	
/degree       	/plusminus    	/twosuperior  	/threesuperior	
/acute        	/mu           	/paragraph    	/bullet       	
/cedilla      	/onesuperior  	/ordmasculine 	/guillemotright	
/onequarter   	/onehalf      	/threequarters	/questiondown 	
/Agrave       	/Aacute       	/Acircumflex  	/Atilde       	
/Adieresis    	/Aring        	/AE           	/Ccedilla     	
/Egrave       	/Eacute       	/Ecircumflex  	/Edieresis    	
/Igrave       	/Iacute       	/Icircumflex  	/Idieresis    	
/Eth          	/Ntilde       	/Ograve       	/Oacute       	
/Ocircumflex  	/Otilde       	/Odieresis    	/multiply     	
/Oslash       	/Ugrave       	/Uacute       	/Ucircumflex  	
/Udieresis    	/Yacute       	/Thorn        	/germandbls   	
/agrave       	/aacute       	/acircumflex  	/atilde       	
/adieresis    	/aring        	/ae           	/ccedilla     	
/egrave       	/eacute       	/ecircumflex  	/edieresis    	
/igrave       	/iacute       	/icircumflex  	/idieresis    	
/eth          	/ntilde       	/ograve       	/oacute       	
/ocircumflex  	/otilde       	/odieresis    	/divide       	
/oslash       	/ugrave       	/uacute       	/ucircumflex  	
/udieresis    	/yacute       	/thorn        	/ydieresis    	
] def
%%EndResource
%%EndProlog
%%BeginSetup
%%IncludeResource: font Courier-Bold
%%IncludeResource: font Courier
/HFpt_w 10 def
/HFpt_h 10 def
/Courier-Bold /HF-gs-font MF
/HF /HF-gs-font findfont [HFpt_w 0 0 HFpt_h 0 0] makefont def
/Courier /F-gs-font MF
/F-gs-font 10 10 SF
/#copies 1 def
/d_page_w 520 def
/d_page_h 747 def
/d_header_x 0 def
/d_header_y 747 def
/d_header_w 520 def
/d_header_h 0 def
/d_footer_x 0 def
/d_footer_y 0 def
/d_footer_w 520 def
/d_footer_h 0 def
/d_output_w 520 def
/d_output_h 747 def
/cols 1 def
userdict/PStoPSxform PStoPSmatrix matrix currentmatrix
 matrix invertmatrix matrix concatmatrix
 matrix invertmatrix put
%%EndSetup
%%Page: (0,1) 1
userdict/PStoPSsaved save put
PStoPSmatrix setmatrix
595.000000 0.271378 translate
90 rotate
0.706651 dup scale
userdict/PStoPSmatrix matrix currentmatrix put
userdict/PStoPSclip{0 0 moveto
 595.000000 0 rlineto 0 842.000000 rlineto -595.000000 0 rlineto
 closepath}put initclip
/showpage{}def/copypage{}def/erasepage{}def
PStoPSxform concat
%%BeginPageSetup
_S
75 0 translate
/pagenum 1 def
/fname () def
/fdir () def
/ftail () def
/user_header_p false def
%%EndPageSetup
5 701 M
(Network Working Group                                          T. Ylonen) s
5 690 M
(Internet-Draft                          SSH Communications Security Corp) s
5 679 M
(Expires: March 31, 2004                           D. Moffat, Editor, Ed.) s
5 668 M
(                                                   Sun Microsystems, Inc) s
5 657 M
(                                                                Oct 2003) s
5 624 M
(                        SSH Connection Protocol) s
5 613 M
(                    draft-ietf-secsh-connect-18.txt) s
5 591 M
(Status of this Memo) s
5 569 M
(   This document is an Internet-Draft and is in full conformance with) s
5 558 M
(   all provisions of Section 10 of RFC2026.) s
5 536 M
(   Internet-Drafts are working documents of the Internet Engineering) s
5 525 M
(   Task Force \(IETF\), its areas, and its working groups. Note that other) s
5 514 M
(   groups may also distribute working documents as Internet-Drafts.) s
5 492 M
(   Internet-Drafts are draft documents valid for a maximum of six months) s
5 481 M
(   and may be updated, replaced, or obsoleted by other documents at any) s
5 470 M
(   time. It is inappropriate to use Internet-Drafts as reference) s
5 459 M
(   material or to cite them other than as "work in progress.") s
5 437 M
(   The list of current Internet-Drafts can be accessed at http://) s
5 426 M
(   www.ietf.org/ietf/1id-abstracts.txt.) s
5 404 M
(   The list of Internet-Draft Shadow Directories can be accessed at) s
5 393 M
(   http://www.ietf.org/shadow.html.) s
5 371 M
(   This Internet-Draft will expire on March 31, 2004.) s
5 349 M
(Copyright Notice) s
5 327 M
(   Copyright \(C\) The Internet Society \(2003\). All Rights Reserved.) s
5 305 M
(Abstract) s
5 283 M
(   SSH is a protocol for secure remote login and other secure network) s
5 272 M
(   services over an insecure network.) s
5 250 M
(   This document describes the SSH Connection Protocol. It provides) s
5 239 M
(   interactive login sessions, remote execution of commands, forwarded) s
5 228 M
(   TCP/IP connections, and forwarded X11 connections. All of these) s
5 217 M
(   channels are multiplexed into a single encrypted tunnel.) s
5 195 M
(   The SSH Connection Protocol has been designed to run on top of the) s
5 184 M
(   SSH transport layer and user authentication protocols.) s
5 129 M
(Ylonen & Moffat, Editor    Expires March 31, 2004               [Page 1]) s
_R
S
PStoPSsaved restore
userdict/PStoPSsaved save put
PStoPSmatrix setmatrix
595.000000 421.271378 translate
90 rotate
0.706651 dup scale
userdict/PStoPSmatrix matrix currentmatrix put
userdict/PStoPSclip{0 0 moveto
 595.000000 0 rlineto 0 842.000000 rlineto -595.000000 0 rlineto
 closepath}put initclip
PStoPSxform concat
%%BeginPageSetup
_S
75 0 translate
/pagenum 2 def
/fname () def
/fdir () def
/ftail () def
/user_header_p false def
%%EndPageSetup
5 723 M
(Internet-Draft          SSH Connection Protocol                 Oct 2003) s
5 690 M
(Table of Contents) s
5 668 M
(   1.    Contributors . . . . . . . . . . . . . . . . . . . . . . . .  3) s
5 657 M
(   2.    Introduction . . . . . . . . . . . . . . . . . . . . . . . .  3) s
5 646 M
(   3.    Conventions Used in This Document  . . . . . . . . . . . . .  3) s
5 635 M
(   4.    Global Requests  . . . . . . . . . . . . . . . . . . . . . .  3) s
5 624 M
(   5.    Channel Mechanism  . . . . . . . . . . . . . . . . . . . . .  4) s
5 613 M
(   5.1   Opening a Channel  . . . . . . . . . . . . . . . . . . . . .  4) s
5 602 M
(   5.2   Data Transfer  . . . . . . . . . . . . . . . . . . . . . . .  5) s
5 591 M
(   5.3   Closing a Channel  . . . . . . . . . . . . . . . . . . . . .  6) s
5 580 M
(   5.4   Channel-Specific Requests  . . . . . . . . . . . . . . . . .  7) s
5 569 M
(   6.    Interactive Sessions . . . . . . . . . . . . . . . . . . . .  8) s
5 558 M
(   6.1   Opening a Session  . . . . . . . . . . . . . . . . . . . . .  8) s
5 547 M
(   6.2   Requesting a Pseudo-Terminal . . . . . . . . . . . . . . . .  8) s
5 536 M
(   6.3   X11 Forwarding . . . . . . . . . . . . . . . . . . . . . . .  9) s
5 525 M
(   6.3.1 Requesting X11 Forwarding  . . . . . . . . . . . . . . . . .  9) s
5 514 M
(   6.3.2 X11 Channels . . . . . . . . . . . . . . . . . . . . . . . . 10) s
5 503 M
(   6.4   Environment Variable Passing . . . . . . . . . . . . . . . . 10) s
5 492 M
(   6.5   Starting a Shell or a Command  . . . . . . . . . . . . . . . 10) s
5 481 M
(   6.6   Session Data Transfer  . . . . . . . . . . . . . . . . . . . 11) s
5 470 M
(   6.7   Window Dimension Change Message  . . . . . . . . . . . . . . 12) s
5 459 M
(   6.8   Local Flow Control . . . . . . . . . . . . . . . . . . . . . 12) s
5 448 M
(   6.9   Signals  . . . . . . . . . . . . . . . . . . . . . . . . . . 12) s
5 437 M
(   6.10  Returning Exit Status  . . . . . . . . . . . . . . . . . . . 13) s
5 426 M
(   7.    TCP/IP Port Forwarding . . . . . . . . . . . . . . . . . . . 14) s
5 415 M
(   7.1   Requesting Port Forwarding . . . . . . . . . . . . . . . . . 14) s
5 404 M
(   7.2   TCP/IP Forwarding Channels . . . . . . . . . . . . . . . . . 15) s
5 393 M
(   8.    Encoding of Terminal Modes . . . . . . . . . . . . . . . . . 16) s
5 382 M
(   9.    Summary of Message Numbers . . . . . . . . . . . . . . . . . 18) s
5 371 M
(   10.   Security Considerations  . . . . . . . . . . . . . . . . . . 18) s
5 360 M
(   11.   iana cONSiderations  . . . . . . . . . . . . . . . . . . . . 19) s
5 349 M
(   12.   Intellectual Property  . . . . . . . . . . . . . . . . . . . 19) s
5 338 M
(         Normative References . . . . . . . . . . . . . . . . . . . . 19) s
5 327 M
(         Informative References . . . . . . . . . . . . . . . . . . . 20) s
5 316 M
(         Authors' Addresses . . . . . . . . . . . . . . . . . . . . . 20) s
5 305 M
(         Intellectual Property and Copyright Statements . . . . . . . 21) s
5 129 M
(Ylonen & Moffat, Editor    Expires March 31, 2004               [Page 2]) s
_R
S
PStoPSsaved restore
%%Page: (2,3) 2
userdict/PStoPSsaved save put
PStoPSmatrix setmatrix
595.000000 0.271378 translate
90 rotate
0.706651 dup scale
userdict/PStoPSmatrix matrix currentmatrix put
userdict/PStoPSclip{0 0 moveto
 595.000000 0 rlineto 0 842.000000 rlineto -595.000000 0 rlineto
 closepath}put initclip
/showpage{}def/copypage{}def/erasepage{}def
PStoPSxform concat
%%BeginPageSetup
_S
75 0 translate
/pagenum 3 def
/fname () def
/fdir () def
/ftail () def
/user_header_p false def
%%EndPageSetup
5 723 M
(Internet-Draft          SSH Connection Protocol                 Oct 2003) s
5 690 M
(1. Contributors) s
5 668 M
(   The major original contributors of this document were: Tatu Ylonen,) s
5 657 M
(   Tero Kivinen, Timo J. Rinne, Sami Lehtinen \(all of SSH Communications) s
5 646 M
(   Security Corp\), and Markku-Juhani O. Saarinen \(University of) s
5 635 M
(   Jyvaskyla\)) s
5 613 M
(   The document editor is: [email protected].  Comments on this) s
5 602 M
(   internet draft should be sent to the IETF SECSH working group,) s
5 591 M
(   details at: http://ietf.org/html.charters/secsh-charter.html) s
5 569 M
(2. Introduction) s
5 547 M
(   The SSH Connection Protocol has been designed to run on top of the) s
5 536 M
(   SSH transport layer and user authentication protocols. It provides) s
5 525 M
(   interactive login sessions, remote execution of commands, forwarded) s
5 514 M
(   TCP/IP connections, and forwarded X11 connections. The service name) s
5 503 M
(   for this protocol is "ssh-connection".) s
5 481 M
(   This document should be read only after reading the SSH architecture) s
5 470 M
(   document [SSH-ARCH]. This document freely uses terminology and) s
5 459 M
(   notation from the architecture document without reference or further) s
5 448 M
(   explanation.) s
5 426 M
(3. Conventions Used in This Document) s
5 404 M
(   The keywords "MUST", "MUST NOT", "REQUIRED", "SHOULD", "SHOULD NOT",) s
5 393 M
(   and "MAY" that appear in this document are to be interpreted as) s
5 382 M
(   described in [RFC2119].) s
5 360 M
(   The used data types and terminology are specified in the architecture) s
5 349 M
(   document [SSH-ARCH].) s
5 327 M
(   The architecture document also discusses the algorithm naming) s
5 316 M
(   conventions that MUST be used with the SSH protocols.) s
5 294 M
(4. Global Requests) s
5 272 M
(   There are several kinds of requests that affect the state of the) s
5 261 M
(   remote end "globally", independent of any channels.  An example is a) s
5 250 M
(   request to start TCP/IP forwarding for a specific port.  All such) s
5 239 M
(   requests use the following format.) s
5 217 M
(     byte      SSH_MSG_GLOBAL_REQUEST) s
5 206 M
(     string    request name \(restricted to US-ASCII\)) s
5 195 M
(     boolean   want reply) s
5 184 M
(     ... request-specific data follows) s
5 129 M
(Ylonen & Moffat, Editor    Expires March 31, 2004               [Page 3]) s
_R
S
PStoPSsaved restore
userdict/PStoPSsaved save put
PStoPSmatrix setmatrix
595.000000 421.271378 translate
90 rotate
0.706651 dup scale
userdict/PStoPSmatrix matrix currentmatrix put
userdict/PStoPSclip{0 0 moveto
 595.000000 0 rlineto 0 842.000000 rlineto -595.000000 0 rlineto
 closepath}put initclip
PStoPSxform concat
%%BeginPageSetup
_S
75 0 translate
/pagenum 4 def
/fname () def
/fdir () def
/ftail () def
/user_header_p false def
%%EndPageSetup
5 723 M
(Internet-Draft          SSH Connection Protocol                 Oct 2003) s
5 690 M
(   Request names follow the DNS extensibility naming convention outlined) s
5 679 M
(   in [SSH-ARCH].) s
5 657 M
(   The recipient will respond to this message with) s
5 646 M
(   SSH_MSG_REQUEST_SUCCESS or SSH_MSG_REQUEST_FAILURE if `want reply' is) s
5 635 M
(   TRUE.) s
5 613 M
(     byte      SSH_MSG_REQUEST_SUCCESS) s
5 602 M
(     .....     response specific data) s
5 580 M
(   Usually the response specific data is non-existent.) s
5 558 M
(   If the recipient does not recognize or support the request, it simply) s
5 547 M
(   responds with SSH_MSG_REQUEST_FAILURE.) s
5 525 M
(     byte      SSH_MSG_REQUEST_FAILURE) s
5 492 M
(5. Channel Mechanism) s
5 470 M
(   All terminal sessions, forwarded connections, etc. are channels.) s
5 459 M
(   Either side may open a channel.  Multiple channels are multiplexed) s
5 448 M
(   into a single connection.) s
5 426 M
(   Channels are identified by numbers at each end.  The number referring) s
5 415 M
(   to a channel may be different on each side.  Requests to open a) s
5 404 M
(   channel contain the sender's channel number.  Any other) s
5 393 M
(   channel-related messages contain the recipient's channel number for) s
5 382 M
(   the channel.) s
5 360 M
(   Channels are flow-controlled.  No data may be sent to a channel until) s
5 349 M
(   a message is received to indicate that window space is available.) s
5 327 M
(5.1 Opening a Channel) s
5 305 M
(   When either side wishes to open a new channel, it allocates a local) s
5 294 M
(   number for the channel.  It then sends the following message to the) s
5 283 M
(   other side, and includes the local channel number and initial window) s
5 272 M
(   size in the message.) s
5 250 M
(     byte      SSH_MSG_CHANNEL_OPEN) s
5 239 M
(     string    channel type \(restricted to US-ASCII\)) s
5 228 M
(     uint32    sender channel) s
5 217 M
(     uint32    initial window size) s
5 206 M
(     uint32    maximum packet size) s
5 195 M
(     ... channel type specific data follows) s
5 173 M
(   The channel type is a name as described in the SSH architecture) s
5 129 M
(Ylonen & Moffat, Editor    Expires March 31, 2004               [Page 4]) s
_R
S
PStoPSsaved restore
%%Page: (4,5) 3
userdict/PStoPSsaved save put
PStoPSmatrix setmatrix
595.000000 0.271378 translate
90 rotate
0.706651 dup scale
userdict/PStoPSmatrix matrix currentmatrix put
userdict/PStoPSclip{0 0 moveto
 595.000000 0 rlineto 0 842.000000 rlineto -595.000000 0 rlineto
 closepath}put initclip
/showpage{}def/copypage{}def/erasepage{}def
PStoPSxform concat
%%BeginPageSetup
_S
75 0 translate
/pagenum 5 def
/fname () def
/fdir () def
/ftail () def
/user_header_p false def
%%EndPageSetup
5 723 M
(Internet-Draft          SSH Connection Protocol                 Oct 2003) s
5 690 M
(   document, with similar extension mechanisms. `sender channel' is a) s
5 679 M
(   local identifier for the channel used by the sender of this message.) s
5 668 M
(   `initial window size' specifies how many bytes of channel data can be) s
5 657 M
(   sent to the sender of this message without adjusting the window.) s
5 646 M
(   `Maximum packet size' specifies the maximum size of an individual) s
5 635 M
(   data packet that can be sent to the sender \(for example, one might) s
5 624 M
(   want to use smaller packets for interactive connections to get better) s
5 613 M
(   interactive response on slow links\).) s
5 591 M
(   The remote side then decides whether it can open the channel, and) s
5 580 M
(   responds with either) s
5 558 M
(     byte      SSH_MSG_CHANNEL_OPEN_CONFIRMATION) s
5 547 M
(     uint32    recipient channel) s
5 536 M
(     uint32    sender channel) s
5 525 M
(     uint32    initial window size) s
5 514 M
(     uint32    maximum packet size) s
5 503 M
(     ... channel type specific data follows) s
5 481 M
(   where `recipient channel' is the channel number given in the original) s
5 470 M
(   open request, and `sender channel' is the channel number allocated by) s
5 459 M
(   the other side, or) s
5 437 M
(     byte      SSH_MSG_CHANNEL_OPEN_FAILURE) s
5 426 M
(     uint32    recipient channel) s
5 415 M
(     uint32    reason code) s
5 404 M
(     string    additional textual information \(ISO-10646 UTF-8 [RFC2279]\)) s
5 393 M
(     string    language tag \(as defined in [RFC3066]\)) s
5 371 M
(   If the recipient of the SSH_MSG_CHANNEL_OPEN message does not support) s
5 360 M
(   the specified channel type, it simply responds with) s
5 349 M
(   SSH_MSG_CHANNEL_OPEN_FAILURE. The client MAY show the additional) s
5 338 M
(   information to the user. If this is done, the client software should) s
5 327 M
(   take the precautions discussed in [SSH-ARCH].) s
5 305 M
(   The following reason codes are defined:) s
5 283 M
(     #define SSH_OPEN_ADMINISTRATIVELY_PROHIBITED    1) s
5 272 M
(     #define SSH_OPEN_CONNECT_FAILED                 2) s
5 261 M
(     #define SSH_OPEN_UNKNOWN_CHANNEL_TYPE           3) s
5 250 M
(     #define SSH_OPEN_RESOURCE_SHORTAGE              4) s
5 217 M
(5.2 Data Transfer) s
5 195 M
(   The window size specifies how many bytes the other party can send) s
5 184 M
(   before it must wait for the window to be adjusted.  Both parties use) s
5 173 M
(   the following message to adjust the window.) s
5 129 M
(Ylonen & Moffat, Editor    Expires March 31, 2004               [Page 5]) s
_R
S
PStoPSsaved restore
userdict/PStoPSsaved save put
PStoPSmatrix setmatrix
595.000000 421.271378 translate
90 rotate
0.706651 dup scale
userdict/PStoPSmatrix matrix currentmatrix put
userdict/PStoPSclip{0 0 moveto
 595.000000 0 rlineto 0 842.000000 rlineto -595.000000 0 rlineto
 closepath}put initclip
PStoPSxform concat
%%BeginPageSetup
_S
75 0 translate
/pagenum 6 def
/fname () def
/fdir () def
/ftail () def
/user_header_p false def
%%EndPageSetup
5 723 M
(Internet-Draft          SSH Connection Protocol                 Oct 2003) s
5 690 M
(     byte      SSH_MSG_CHANNEL_WINDOW_ADJUST) s
5 679 M
(     uint32    recipient channel) s
5 668 M
(     uint32    bytes to add) s
5 646 M
(   After receiving this message, the recipient MAY send the given number) s
5 635 M
(   of bytes more than it was previously allowed to send; the window size) s
5 624 M
(   is incremented.) s
5 602 M
(   Data transfer is done with messages of the following type.) s
5 580 M
(     byte      SSH_MSG_CHANNEL_DATA) s
5 569 M
(     uint32    recipient channel) s
5 558 M
(     string    data) s
5 536 M
(   The maximum amount of data allowed is the current window size.  The) s
5 525 M
(   window size is decremented by the amount of data sent. Both parties) s
5 514 M
(   MAY ignore all extra data sent after the allowed window is empty.) s
5 492 M
(   Additionally, some channels can transfer several types of data.  An) s
5 481 M
(   example of this is stderr data from interactive sessions. Such data) s
5 470 M
(   can be passed with SSH_MSG_CHANNEL_EXTENDED_DATA messages, where a) s
5 459 M
(   separate integer specifies the type of the data.  The available types) s
5 448 M
(   and their interpretation depend on the type of the channel.) s
5 426 M
(     byte      SSH_MSG_CHANNEL_EXTENDED_DATA) s
5 415 M
(     uint32    recipient_channel) s
5 404 M
(     uint32    data_type_code) s
5 393 M
(     string    data) s
5 371 M
(   Data sent with these messages consumes the same window as ordinary) s
5 360 M
(   data.) s
5 338 M
(   Currently, only the following type is defined.) s
5 316 M
(   #define SSH_EXTENDED_DATA_STDERR                1) s
5 283 M
(5.3 Closing a Channel) s
5 261 M
(   When a party will no longer send more data to a channel, it SHOULD) s
5 250 M
(   send SSH_MSG_CHANNEL_EOF.) s
5 228 M
(     byte      SSH_MSG_CHANNEL_EOF) s
5 217 M
(     uint32    recipient_channel) s
5 195 M
(   No explicit response is sent to this message; however, the) s
5 184 M
(   application may send EOF to whatever is at the other end of the) s
5 173 M
(   channel.  Note that the channel remains open after this message, and) s
5 129 M
(Ylonen & Moffat, Editor    Expires March 31, 2004               [Page 6]) s
_R
S
PStoPSsaved restore
%%Page: (6,7) 4
userdict/PStoPSsaved save put
PStoPSmatrix setmatrix
595.000000 0.271378 translate
90 rotate
0.706651 dup scale
userdict/PStoPSmatrix matrix currentmatrix put
userdict/PStoPSclip{0 0 moveto
 595.000000 0 rlineto 0 842.000000 rlineto -595.000000 0 rlineto
 closepath}put initclip
/showpage{}def/copypage{}def/erasepage{}def
PStoPSxform concat
%%BeginPageSetup
_S
75 0 translate
/pagenum 7 def
/fname () def
/fdir () def
/ftail () def
/user_header_p false def
%%EndPageSetup
5 723 M
(Internet-Draft          SSH Connection Protocol                 Oct 2003) s
5 690 M
(   more data may still be sent in the other direction.  This message) s
5 679 M
(   does not consume window space and can be sent even if no window space) s
5 668 M
(   is available.) s
5 646 M
(   When either party wishes to terminate the channel, it sends) s
5 635 M
(   SSH_MSG_CHANNEL_CLOSE.  Upon receiving this message, a party MUST) s
5 624 M
(   send back a SSH_MSG_CHANNEL_CLOSE unless it has already sent this) s
5 613 M
(   message for the channel.  The channel is considered closed for a) s
5 602 M
(   party when it has both sent and received SSH_MSG_CHANNEL_CLOSE, and) s
5 591 M
(   the party may then reuse the channel number.  A party MAY send) s
5 580 M
(   SSH_MSG_CHANNEL_CLOSE without having sent or received) s
5 569 M
(   SSH_MSG_CHANNEL_EOF.) s
5 547 M
(     byte      SSH_MSG_CHANNEL_CLOSE) s
5 536 M
(     uint32    recipient_channel) s
5 514 M
(   This message does not consume window space and can be sent even if no) s
5 503 M
(   window space is available.) s
5 481 M
(   It is recommended that any data sent before this message is delivered) s
5 470 M
(   to the actual destination, if possible.) s
5 448 M
(5.4 Channel-Specific Requests) s
5 426 M
(   Many channel types have extensions that are specific to that) s
5 415 M
(   particular channel type.  An example is requesting a pty \(pseudo) s
5 404 M
(   terminal\) for an interactive session.) s
5 382 M
(   All channel-specific requests use the following format.) s
5 360 M
(     byte      SSH_MSG_CHANNEL_REQUEST) s
5 349 M
(     uint32    recipient channel) s
5 338 M
(     string    request type \(restricted to US-ASCII\)) s
5 327 M
(     boolean   want reply) s
5 316 M
(     ... type-specific data) s
5 294 M
(   If want reply is FALSE, no response will be sent to the request.) s
5 283 M
(   Otherwise, the recipient responds with either SSH_MSG_CHANNEL_SUCCESS) s
5 272 M
(   or SSH_MSG_CHANNEL_FAILURE, or request-specific continuation) s
5 261 M
(   messages. If the request is not recognized or is not supported for) s
5 250 M
(   the channel, SSH_MSG_CHANNEL_FAILURE is returned.) s
5 228 M
(   This message does not consume window space and can be sent even if no) s
5 217 M
(   window space is available. Request types are local to each channel) s
5 206 M
(   type.) s
5 184 M
(   The client is allowed to send further messages without waiting for) s
5 173 M
(   the response to the request.) s
5 129 M
(Ylonen & Moffat, Editor    Expires March 31, 2004               [Page 7]) s
_R
S
PStoPSsaved restore
userdict/PStoPSsaved save put
PStoPSmatrix setmatrix
595.000000 421.271378 translate
90 rotate
0.706651 dup scale
userdict/PStoPSmatrix matrix currentmatrix put
userdict/PStoPSclip{0 0 moveto
 595.000000 0 rlineto 0 842.000000 rlineto -595.000000 0 rlineto
 closepath}put initclip
PStoPSxform concat
%%BeginPageSetup
_S
75 0 translate
/pagenum 8 def
/fname () def
/fdir () def
/ftail () def
/user_header_p false def
%%EndPageSetup
5 723 M
(Internet-Draft          SSH Connection Protocol                 Oct 2003) s
5 690 M
(   request type names follow the DNS extensibility naming convention) s
5 679 M
(   outlined in [SSH-ARCH]) s
5 657 M
(     byte      SSH_MSG_CHANNEL_SUCCESS) s
5 646 M
(     uint32    recipient_channel) s
5 613 M
(     byte      SSH_MSG_CHANNEL_FAILURE) s
5 602 M
(     uint32    recipient_channel) s
5 580 M
(   These messages do not consume window space and can be sent even if no) s
5 569 M
(   window space is available.) s
5 547 M
(6. Interactive Sessions) s
5 525 M
(   A session is a remote execution of a program.  The program may be a) s
5 514 M
(   shell, an application, a system command, or some built-in subsystem.) s
5 503 M
(   It may or may not have a tty, and may or may not involve X11) s
5 492 M
(   forwarding. Multiple sessions can be active simultaneously.) s
5 470 M
(6.1 Opening a Session) s
5 448 M
(   A session is started by sending the following message.) s
5 426 M
(     byte      SSH_MSG_CHANNEL_OPEN) s
5 415 M
(     string    "session") s
5 404 M
(     uint32    sender channel) s
5 393 M
(     uint32    initial window size) s
5 382 M
(     uint32    maximum packet size) s
5 360 M
(   Client implementations SHOULD reject any session channel open) s
5 349 M
(   requests to make it more difficult for a corrupt server to attack the) s
5 338 M
(   client.) s
5 316 M
(6.2 Requesting a Pseudo-Terminal) s
5 294 M
(   A pseudo-terminal can be allocated for the session by sending the) s
5 283 M
(   following message.) s
5 261 M
(     byte      SSH_MSG_CHANNEL_REQUEST) s
5 250 M
(     uint32    recipient_channel) s
5 239 M
(     string    "pty-req") s
5 228 M
(     boolean   want_reply) s
5 217 M
(     string    TERM environment variable value \(e.g., vt100\)) s
5 206 M
(     uint32    terminal width, characters \(e.g., 80\)) s
5 195 M
(     uint32    terminal height, rows \(e.g., 24\)) s
5 184 M
(     uint32    terminal width, pixels \(e.g., 640\)) s
5 173 M
(     uint32    terminal height, pixels \(e.g., 480\)) s
5 129 M
(Ylonen & Moffat, Editor    Expires March 31, 2004               [Page 8]) s
_R
S
PStoPSsaved restore
%%Page: (8,9) 5
userdict/PStoPSsaved save put
PStoPSmatrix setmatrix
595.000000 0.271378 translate
90 rotate
0.706651 dup scale
userdict/PStoPSmatrix matrix currentmatrix put
userdict/PStoPSclip{0 0 moveto
 595.000000 0 rlineto 0 842.000000 rlineto -595.000000 0 rlineto
 closepath}put initclip
/showpage{}def/copypage{}def/erasepage{}def
PStoPSxform concat
%%BeginPageSetup
_S
75 0 translate
/pagenum 9 def
/fname () def
/fdir () def
/ftail () def
/user_header_p false def
%%EndPageSetup
5 723 M
(Internet-Draft          SSH Connection Protocol                 Oct 2003) s
5 690 M
(     string    encoded terminal modes) s
5 668 M
(   The encoding of terminal modes is described in Section Encoding of) s
5 657 M
(   Terminal Modes \(Section 8\). Zero dimension parameters MUST be) s
5 646 M
(   ignored. The character/row dimensions override the pixel dimensions) s
5 635 M
(   \(when nonzero\). Pixel dimensions refer to the drawable area of the) s
5 624 M
(   window.) s
5 602 M
(   The dimension parameters are only informational.) s
5 580 M
(   The client SHOULD ignore pty requests.) s
5 558 M
(6.3 X11 Forwarding) s
5 536 M
(6.3.1 Requesting X11 Forwarding) s
5 514 M
(   X11 forwarding may be requested for a session by sending) s
5 492 M
(     byte      SSH_MSG_CHANNEL_REQUEST) s
5 481 M
(     uint32    recipient channel) s
5 470 M
(     string    "x11-req") s
5 459 M
(     boolean   want reply) s
5 448 M
(     boolean   single connection) s
5 437 M
(     string    x11 authentication protocol) s
5 426 M
(     string    x11 authentication cookie) s
5 415 M
(     uint32    x11 screen number) s
5 393 M
(   It is recommended that the authentication cookie that is sent be a) s
5 382 M
(   fake, random cookie, and that the cookie is checked and replaced by) s
5 371 M
(   the real cookie when a connection request is received.) s
5 349 M
(   X11 connection forwarding should stop when the session channel is) s
5 338 M
(   closed; however, already opened forwardings should not be) s
5 327 M
(   automatically closed when the session channel is closed.) s
5 305 M
(   If `single connection' is TRUE, only a single connection should be) s
5 294 M
(   forwarded.  No more connections will be forwarded after the first, or) s
5 283 M
(   after the session channel has been closed.) s
5 261 M
(   The "x11 authentication protocol" is the name of the X11) s
5 250 M
(   authentication method used, e.g. "MIT-MAGIC-COOKIE-1".) s
5 228 M
(   The x11 authentication cookie MUST be hexadecimal encoded.) s
5 206 M
(   X Protocol is documented in [SCHEIFLER].) s
5 129 M
(Ylonen & Moffat, Editor    Expires March 31, 2004               [Page 9]) s
_R
S
PStoPSsaved restore
userdict/PStoPSsaved save put
PStoPSmatrix setmatrix
595.000000 421.271378 translate
90 rotate
0.706651 dup scale
userdict/PStoPSmatrix matrix currentmatrix put
userdict/PStoPSclip{0 0 moveto
 595.000000 0 rlineto 0 842.000000 rlineto -595.000000 0 rlineto
 closepath}put initclip
PStoPSxform concat
%%BeginPageSetup
_S
75 0 translate
/pagenum 10 def
/fname () def
/fdir () def
/ftail () def
/user_header_p false def
%%EndPageSetup
5 723 M
(Internet-Draft          SSH Connection Protocol                 Oct 2003) s
5 690 M
(6.3.2 X11 Channels) s
5 668 M
(   X11 channels are opened with a channel open request.  The resulting) s
5 657 M
(   channels are independent of the session, and closing the session) s
5 646 M
(   channel does not close the forwarded X11 channels.) s
5 624 M
(     byte      SSH_MSG_CHANNEL_OPEN) s
5 613 M
(     string    "x11") s
5 602 M
(     uint32    sender channel) s
5 591 M
(     uint32    initial window size) s
5 580 M
(     uint32    maximum packet size) s
5 569 M
(     string    originator address \(e.g. "192.168.7.38"\)) s
5 558 M
(     uint32    originator port) s
5 536 M
(   The recipient should respond with SSH_MSG_CHANNEL_OPEN_CONFIRMATION) s
5 525 M
(   or SSH_MSG_CHANNEL_OPEN_FAILURE.) s
5 503 M
(   Implementations MUST reject any X11 channel open requests if they) s
5 492 M
(   have not requested X11 forwarding.) s
5 470 M
(6.4 Environment Variable Passing) s
5 448 M
(   Environment variables may be passed to the shell/command to be) s
5 437 M
(   started later. Uncontrolled setting of environment variables in a) s
5 426 M
(   privileged process can be a security hazard.  It is recommended that) s
5 415 M
(   implementations either maintain a list of allowable variable names or) s
5 404 M
(   only set environment variables after the server process has dropped) s
5 393 M
(   sufficient privileges.) s
5 371 M
(     byte      SSH_MSG_CHANNEL_REQUEST) s
5 360 M
(     uint32    recipient channel) s
5 349 M
(     string    "env") s
5 338 M
(     boolean   want reply) s
5 327 M
(     string    variable name) s
5 316 M
(     string    variable value) s
5 283 M
(6.5 Starting a Shell or a Command) s
5 261 M
(   Once the session has been set up, a program is started at the remote) s
5 250 M
(   end. The program can be a shell, an application program or a) s
5 239 M
(   subsystem with a host-independent name.  Only one of these requests) s
5 228 M
(   can succeed per channel.) s
5 206 M
(     byte      SSH_MSG_CHANNEL_REQUEST) s
5 195 M
(     uint32    recipient channel) s
5 184 M
(     string    "shell") s
5 173 M
(     boolean   want reply) s
5 129 M
(Ylonen & Moffat, Editor    Expires March 31, 2004              [Page 10]) s
_R
S
PStoPSsaved restore
%%Page: (10,11) 6
userdict/PStoPSsaved save put
PStoPSmatrix setmatrix
595.000000 0.271378 translate
90 rotate
0.706651 dup scale
userdict/PStoPSmatrix matrix currentmatrix put
userdict/PStoPSclip{0 0 moveto
 595.000000 0 rlineto 0 842.000000 rlineto -595.000000 0 rlineto
 closepath}put initclip
/showpage{}def/copypage{}def/erasepage{}def
PStoPSxform concat
%%BeginPageSetup
_S
75 0 translate
/pagenum 11 def
/fname () def
/fdir () def
/ftail () def
/user_header_p false def
%%EndPageSetup
5 723 M
(Internet-Draft          SSH Connection Protocol                 Oct 2003) s
5 690 M
(   This message will request the user's default shell \(typically defined) s
5 679 M
(   in /etc/passwd in UNIX systems\) to be started at the other end.) s
5 657 M
(     byte      SSH_MSG_CHANNEL_REQUEST) s
5 646 M
(     uint32    recipient channel) s
5 635 M
(     string    "exec") s
5 624 M
(     boolean   want reply) s
5 613 M
(     string    command) s
5 591 M
(   This message will request the server to start the execution of the) s
5 580 M
(   given command. The command string may contain a path. Normal) s
5 569 M
(   precautions MUST be taken to prevent the execution of unauthorized) s
5 558 M
(   commands.) s
5 536 M
(     byte      SSH_MSG_CHANNEL_REQUEST) s
5 525 M
(     uint32    recipient channel) s
5 514 M
(     string    "subsystem") s
5 503 M
(     boolean   want reply) s
5 492 M
(     string    subsystem name) s
5 470 M
(   This last form executes a predefined subsystem.  It is expected that) s
5 459 M
(   these will include a general file transfer mechanism, and possibly) s
5 448 M
(   other features.  Implementations may also allow configuring more such) s
5 437 M
(   mechanisms. As the user's shell is usually used to execute the) s
5 426 M
(   subsystem, it is advisable for the subsystem protocol to have a) s
5 415 M
(   "magic cookie" at the beginning of the protocol transaction to) s
5 404 M
(   distinguish it from arbitrary output generated by shell) s
5 393 M
(   initialization scripts etc. This spurious output from the shell may) s
5 382 M
(   be filtered out either at the server or at the client.) s
5 360 M
(   The server SHOULD not halt the execution of the protocol stack when) s
5 349 M
(   starting a shell or a program. All input and output from these SHOULD) s
5 338 M
(   be redirected to the channel or to the encrypted tunnel.) s
5 316 M
(   It is RECOMMENDED to request and check the reply for these messages.) s
5 305 M
(   The client SHOULD ignore these messages.) s
5 283 M
(   Subsystem names follow the DNS extensibility naming convention) s
5 272 M
(   outlined in [SSH-ARCH].) s
5 250 M
(6.6 Session Data Transfer) s
5 228 M
(   Data transfer for a session is done using SSH_MSG_CHANNEL_DATA and) s
5 217 M
(   SSH_MSG_CHANNEL_EXTENDED_DATA packets and the window mechanism.  The) s
5 206 M
(   extended data type SSH_EXTENDED_DATA_STDERR has been defined for) s
5 195 M
(   stderr data.) s
5 129 M
(Ylonen & Moffat, Editor    Expires March 31, 2004              [Page 11]) s
_R
S
PStoPSsaved restore
userdict/PStoPSsaved save put
PStoPSmatrix setmatrix
595.000000 421.271378 translate
90 rotate
0.706651 dup scale
userdict/PStoPSmatrix matrix currentmatrix put
userdict/PStoPSclip{0 0 moveto
 595.000000 0 rlineto 0 842.000000 rlineto -595.000000 0 rlineto
 closepath}put initclip
PStoPSxform concat
%%BeginPageSetup
_S
75 0 translate
/pagenum 12 def
/fname () def
/fdir () def
/ftail () def
/user_header_p false def
%%EndPageSetup
5 723 M
(Internet-Draft          SSH Connection Protocol                 Oct 2003) s
5 690 M
(6.7 Window Dimension Change Message) s
5 668 M
(   When the window \(terminal\) size changes on the client side, it MAY) s
5 657 M
(   send a message to the other side to inform it of the new dimensions.) s
5 635 M
(     byte      SSH_MSG_CHANNEL_REQUEST) s
5 624 M
(     uint32    recipient_channel) s
5 613 M
(     string    "window-change") s
5 602 M
(     boolean   FALSE) s
5 591 M
(     uint32    terminal width, columns) s
5 580 M
(     uint32    terminal height, rows) s
5 569 M
(     uint32    terminal width, pixels) s
5 558 M
(     uint32    terminal height, pixels) s
5 536 M
(    No response SHOULD be sent to this message.) s
5 514 M
(6.8 Local Flow Control) s
5 492 M
(   On many systems, it is possible to determine if a pseudo-terminal is) s
5 481 M
(   using control-S/control-Q flow control.  When flow control is) s
5 470 M
(   allowed, it is often desirable to do the flow control at the client) s
5 459 M
(   end to speed up responses to user requests.  This is facilitated by) s
5 448 M
(   the following notification.  Initially, the server is responsible for) s
5 437 M
(   flow control. \(Here, again, client means the side originating the) s
5 426 M
(   session, and server means the other side.\)) s
5 404 M
(   The message below is used by the server to inform the client when it) s
5 393 M
(   can or cannot perform flow control \(control-S/control-Q processing\).) s
5 382 M
(   If `client can do' is TRUE, the client is allowed to do flow control) s
5 371 M
(   using control-S and control-Q.  The client MAY ignore this message.) s
5 349 M
(     byte      SSH_MSG_CHANNEL_REQUEST) s
5 338 M
(     uint32    recipient channel) s
5 327 M
(     string    "xon-xoff") s
5 316 M
(     boolean   FALSE) s
5 305 M
(     boolean   client can do) s
5 283 M
(   No response is sent to this message.) s
5 261 M
(6.9 Signals) s
5 239 M
(   A signal can be delivered to the remote process/service using the) s
5 228 M
(   following message.  Some systems may not implement signals, in which) s
5 217 M
(   case they SHOULD ignore this message.) s
5 195 M
(     byte      SSH_MSG_CHANNEL_REQUEST) s
5 184 M
(     uint32    recipient channel) s
5 173 M
(     string    "signal") s
5 129 M
(Ylonen & Moffat, Editor    Expires March 31, 2004              [Page 12]) s
_R
S
PStoPSsaved restore
%%Page: (12,13) 7
userdict/PStoPSsaved save put
PStoPSmatrix setmatrix
595.000000 0.271378 translate
90 rotate
0.706651 dup scale
userdict/PStoPSmatrix matrix currentmatrix put
userdict/PStoPSclip{0 0 moveto
 595.000000 0 rlineto 0 842.000000 rlineto -595.000000 0 rlineto
 closepath}put initclip
/showpage{}def/copypage{}def/erasepage{}def
PStoPSxform concat
%%BeginPageSetup
_S
75 0 translate
/pagenum 13 def
/fname () def
/fdir () def
/ftail () def
/user_header_p false def
%%EndPageSetup
5 723 M
(Internet-Draft          SSH Connection Protocol                 Oct 2003) s
5 690 M
(     boolean   FALSE) s
5 679 M
(     string    signal name without the "SIG" prefix.) s
5 657 M
(   Signal names will be encoded as discussed in the "exit-signal") s
5 646 M
(   SSH_MSG_CHANNEL_REQUEST.) s
5 624 M
(6.10 Returning Exit Status) s
5 602 M
(   When the command running at the other end terminates, the following) s
5 591 M
(   message can be sent to return the exit status of the command.) s
5 580 M
(   Returning the status is RECOMMENDED.  No acknowledgment is sent for) s
5 569 M
(   this message.  The channel needs to be closed with) s
5 558 M
(   SSH_MSG_CHANNEL_CLOSE after this message.) s
5 536 M
(   The client MAY ignore these messages.) s
5 514 M
(     byte      SSH_MSG_CHANNEL_REQUEST) s
5 503 M
(     uint32    recipient_channel) s
5 492 M
(     string    "exit-status") s
5 481 M
(     boolean   FALSE) s
5 470 M
(     uint32    exit_status) s
5 448 M
(   The remote command may also terminate violently due to a signal.) s
5 437 M
(   Such a condition can be indicated by the following message. A zero) s
5 426 M
(   exit_status usually means that the command terminated successfully.) s
5 404 M
(     byte      SSH_MSG_CHANNEL_REQUEST) s
5 393 M
(     uint32    recipient channel) s
5 382 M
(     string    "exit-signal") s
5 371 M
(     boolean   FALSE) s
5 360 M
(     string    signal name without the "SIG" prefix.) s
5 349 M
(     boolean   core dumped) s
5 338 M
(     string    error message \(ISO-10646 UTF-8\)) s
5 327 M
(     string    language tag \(as defined in [RFC3066]\)) s
5 305 M
(   The signal name is one of the following \(these are from [POSIX]\)) s
5 283 M
(     ABRT) s
5 272 M
(     ALRM) s
5 261 M
(     FPE) s
5 250 M
(     HUP) s
5 239 M
(     ILL) s
5 228 M
(     INT) s
5 217 M
(     KILL) s
5 206 M
(     PIPE) s
5 195 M
(     QUIT) s
5 184 M
(     SEGV) s
5 173 M
(     TERM) s
5 129 M
(Ylonen & Moffat, Editor    Expires March 31, 2004              [Page 13]) s
_R
S
PStoPSsaved restore
userdict/PStoPSsaved save put
PStoPSmatrix setmatrix
595.000000 421.271378 translate
90 rotate
0.706651 dup scale
userdict/PStoPSmatrix matrix currentmatrix put
userdict/PStoPSclip{0 0 moveto
 595.000000 0 rlineto 0 842.000000 rlineto -595.000000 0 rlineto
 closepath}put initclip
PStoPSxform concat
%%BeginPageSetup
_S
75 0 translate
/pagenum 14 def
/fname () def
/fdir () def
/ftail () def
/user_header_p false def
%%EndPageSetup
5 723 M
(Internet-Draft          SSH Connection Protocol                 Oct 2003) s
5 690 M
(     USR1) s
5 679 M
(     USR2) s
5 657 M
(   Additional signal names MAY be sent in the format "sig-name@xyz",) s
5 646 M
(   where `sig-name' and `xyz' may be anything a particular implementor) s
5 635 M
(   wants \(except the `@' sign\). However, it is suggested that if a) s
5 624 M
(   `configure' script is used, the non-standard signal names it finds be) s
5 613 M
(   encoded as "[email protected]", where `SIG' is the signal name) s
5 602 M
(   without the "SIG" prefix, and `xyz' be the host type, as determined) s
5 591 M
(   by `config.guess'.) s
5 569 M
(   The `error message' contains an additional explanation of the error) s
5 558 M
(   message. The message may consist of multiple lines. The client) s
5 547 M
(   software MAY display this message to the user. If this is done, the) s
5 536 M
(   client software should take the precautions discussed in [SSH-ARCH].) s
5 514 M
(7. TCP/IP Port Forwarding) s
5 492 M
(7.1 Requesting Port Forwarding) s
5 470 M
(   A party need not explicitly request forwardings from its own end to) s
5 459 M
(   the other direction.  However, if it wishes that connections to a) s
5 448 M
(   port on the other side be forwarded to the local side, it must) s
5 437 M
(   explicitly request this.) s
5 404 M
(     byte      SSH_MSG_GLOBAL_REQUEST) s
5 393 M
(     string    "tcpip-forward") s
5 382 M
(     boolean   want reply) s
5 371 M
(     string    address to bind \(e.g. "0.0.0.0"\)) s
5 360 M
(     uint32    port number to bind) s
5 338 M
(   `Address to bind' and `port number to bind' specify the IP address) s
5 327 M
(   and port to which the socket to be listened is bound.  The address) s
5 316 M
(   should be "0.0.0.0" if connections are allowed from anywhere. \(Note) s
5 305 M
(   that the client can still filter connections based on information) s
5 294 M
(   passed in the open request.\)) s
5 272 M
(   Implementations should only allow forwarding privileged ports if the) s
5 261 M
(   user has been authenticated as a privileged user.) s
5 239 M
(   Client implementations SHOULD reject these messages; they are) s
5 228 M
(   normally only sent by the client.) s
5 195 M
(   If a client passes 0 as port number to bind and has want reply TRUE) s
5 184 M
(   then the server allocates the next available unprivileged port number) s
5 173 M
(   and replies with the following message, otherwise there is no) s
5 129 M
(Ylonen & Moffat, Editor    Expires March 31, 2004              [Page 14]) s
_R
S
PStoPSsaved restore
%%Page: (14,15) 8
userdict/PStoPSsaved save put
PStoPSmatrix setmatrix
595.000000 0.271378 translate
90 rotate
0.706651 dup scale
userdict/PStoPSmatrix matrix currentmatrix put
userdict/PStoPSclip{0 0 moveto
 595.000000 0 rlineto 0 842.000000 rlineto -595.000000 0 rlineto
 closepath}put initclip
/showpage{}def/copypage{}def/erasepage{}def
PStoPSxform concat
%%BeginPageSetup
_S
75 0 translate
/pagenum 15 def
/fname () def
/fdir () def
/ftail () def
/user_header_p false def
%%EndPageSetup
5 723 M
(Internet-Draft          SSH Connection Protocol                 Oct 2003) s
5 690 M
(   response specific data.) s
5 657 M
(     byte     SSH_MSG_GLOBAL_REQUEST_SUCCESS) s
5 646 M
(     uint32   port that was bound on the server) s
5 624 M
(   A port forwarding can be cancelled with the following message.  Note) s
5 613 M
(   that channel open requests may be received until a reply to this) s
5 602 M
(   message is received.) s
5 580 M
(     byte      SSH_MSG_GLOBAL_REQUEST) s
5 569 M
(     string    "cancel-tcpip-forward") s
5 558 M
(     boolean   want reply) s
5 547 M
(     string    address_to_bind \(e.g. "127.0.0.1"\)) s
5 536 M
(     uint32    port number to bind) s
5 514 M
(   Client implementations SHOULD reject these messages; they are) s
5 503 M
(   normally only sent by the client.) s
5 481 M
(7.2 TCP/IP Forwarding Channels) s
5 459 M
(   When a connection comes to a port for which remote forwarding has) s
5 448 M
(   been requested, a channel is opened to forward the port to the other) s
5 437 M
(   side.) s
5 415 M
(     byte      SSH_MSG_CHANNEL_OPEN) s
5 404 M
(     string    "forwarded-tcpip") s
5 393 M
(     uint32    sender channel) s
5 382 M
(     uint32    initial window size) s
5 371 M
(     uint32    maximum packet size) s
5 360 M
(     string    address that was connected) s
5 349 M
(     uint32    port that was connected) s
5 338 M
(     string    originator IP address) s
5 327 M
(     uint32    originator port) s
5 305 M
(   Implementations MUST reject these messages unless they have) s
5 294 M
(   previously requested a remote TCP/IP port forwarding with the given) s
5 283 M
(   port number.) s
5 261 M
(   When a connection comes to a locally forwarded TCP/IP port, the) s
5 250 M
(   following packet is sent to the other side.  Note that these messages) s
5 239 M
(   MAY be sent also for ports for which no forwarding has been) s
5 228 M
(   explicitly requested.  The receiving side must decide whether to) s
5 217 M
(   allow the forwarding.) s
5 195 M
(     byte      SSH_MSG_CHANNEL_OPEN) s
5 184 M
(     string    "direct-tcpip") s
5 173 M
(     uint32    sender channel) s
5 129 M
(Ylonen & Moffat, Editor    Expires March 31, 2004              [Page 15]) s
_R
S
PStoPSsaved restore
userdict/PStoPSsaved save put
PStoPSmatrix setmatrix
595.000000 421.271378 translate
90 rotate
0.706651 dup scale
userdict/PStoPSmatrix matrix currentmatrix put
userdict/PStoPSclip{0 0 moveto
 595.000000 0 rlineto 0 842.000000 rlineto -595.000000 0 rlineto
 closepath}put initclip
PStoPSxform concat
%%BeginPageSetup
_S
75 0 translate
/pagenum 16 def
/fname () def
/fdir () def
/ftail () def
/user_header_p false def
%%EndPageSetup
5 723 M
(Internet-Draft          SSH Connection Protocol                 Oct 2003) s
5 690 M
(     uint32    initial window size) s
5 679 M
(     uint32    maximum packet size) s
5 668 M
(     string    host to connect) s
5 657 M
(     uint32    port to connect) s
5 646 M
(     string    originator IP address) s
5 635 M
(     uint32    originator port) s
5 613 M
(   `Host to connect' and `port to connect' specify the TCP/IP host and) s
5 602 M
(   port where the recipient should connect the channel. `Host to) s
5 591 M
(   connect' may be either a domain name or a numeric IP address.) s
5 569 M
(   `Originator IP address' is the numeric IP address of the machine) s
5 558 M
(   where the connection request comes from, and `originator port' is the) s
5 547 M
(   port on the originator host from where the connection came from.) s
5 525 M
(   Forwarded TCP/IP channels are independent of any sessions, and) s
5 514 M
(   closing a session channel does not in any way imply that forwarded) s
5 503 M
(   connections should be closed.) s
5 481 M
(   Client implementations SHOULD reject direct TCP/IP open requests for) s
5 470 M
(   security reasons.) s
5 448 M
(8. Encoding of Terminal Modes) s
5 426 M
(   Terminal modes \(as passed in a pty request\) are encoded into a byte) s
5 415 M
(   stream.  It is intended that the coding be portable across different) s
5 404 M
(   environments.) s
5 382 M
(   The tty mode description is a stream of bytes.  The stream consists) s
5 371 M
(   of opcode-argument pairs.  It is terminated by opcode TTY_OP_END \(0\).) s
5 360 M
(   Opcodes 1 to 159 have a single uint32 argument. Opcodes 160 to 255) s
5 349 M
(   are not yet defined, and cause parsing to stop \(they should only be) s
5 338 M
(   used after any other data\).) s
5 316 M
(   The client SHOULD put in the stream any modes it knows about, and the) s
5 305 M
(   server MAY ignore any modes it does not know about.  This allows some) s
5 294 M
(   degree of machine-independence, at least between systems that use a) s
5 283 M
(   POSIX-like tty interface.  The protocol can support other systems as) s
5 272 M
(   well, but the client may need to fill reasonable values for a number) s
5 261 M
(   of parameters so the server pty gets set to a reasonable mode \(the) s
5 250 M
(   server leaves all unspecified mode bits in their default values, and) s
5 239 M
(   only some combinations make sense\).) s
5 217 M
(   The following opcodes have been defined.  The naming of opcodes) s
5 206 M
(   mostly follows the POSIX terminal mode flags.) s
5 184 M
(   0   TTY_OP_END     Indicates end of options.) s
5 173 M
(   1   VINTR          Interrupt character; 255 if none.  Similarly for the) s
5 129 M
(Ylonen & Moffat, Editor    Expires March 31, 2004              [Page 16]) s
_R
S
PStoPSsaved restore
%%Page: (16,17) 9
userdict/PStoPSsaved save put
PStoPSmatrix setmatrix
595.000000 0.271378 translate
90 rotate
0.706651 dup scale
userdict/PStoPSmatrix matrix currentmatrix put
userdict/PStoPSclip{0 0 moveto
 595.000000 0 rlineto 0 842.000000 rlineto -595.000000 0 rlineto
 closepath}put initclip
/showpage{}def/copypage{}def/erasepage{}def
PStoPSxform concat
%%BeginPageSetup
_S
75 0 translate
/pagenum 17 def
/fname () def
/fdir () def
/ftail () def
/user_header_p false def
%%EndPageSetup
5 723 M
(Internet-Draft          SSH Connection Protocol                 Oct 2003) s
5 690 M
(                      other characters. Not all of these characters are) s
5 679 M
(                      supported on all systems.) s
5 668 M
(   2   VQUIT          The quit character \(sends SIGQUIT signal on POSIX) s
5 657 M
(                      systems\).) s
5 646 M
(   3   VERASE         Erase the character to left of the cursor.) s
5 635 M
(   4   VKILL          Kill the current input line.) s
5 624 M
(   5   VEOF           End-of-file character \(sends EOF from the terminal\).) s
5 613 M
(   6   VEOL           End-of-line character in addition to carriage return) s
5 602 M
(                      and/or linefeed.) s
5 591 M
(   7   VEOL2          Additional end-of-line character.) s
5 580 M
(   8   VSTART         Continues paused output \(normally control-Q\).) s
5 569 M
(   9   VSTOP          Pauses output \(normally control-S\).) s
5 558 M
(   10  VSUSP          Suspends the current program.) s
5 547 M
(   11  VDSUSP         Another suspend character.) s
5 536 M
(   12  VREPRINT       Reprints the current input line.) s
5 525 M
(   13  VWERASE        Erases a word left of cursor.) s
5 514 M
(   14  VLNEXT         Enter the next character typed literally, even if it) s
5 503 M
(                      is a special character) s
5 492 M
(   15  VFLUSH         Character to flush output.) s
5 481 M
(   16  VSWTCH         Switch to a different shell layer.) s
5 470 M
(   17  VSTATUS        Prints system status line \(load, command, pid etc\).) s
5 459 M
(   18  VDISCARD       Toggles the flushing of terminal output.) s
5 448 M
(   30  IGNPAR         The ignore parity flag.  The parameter SHOULD be 0 if) s
5 437 M
(                      this flag is FALSE set, and 1 if it is TRUE.) s
5 426 M
(   31  PARMRK         Mark parity and framing errors.) s
5 415 M
(   32  INPCK          Enable checking of parity errors.) s
5 404 M
(   33  ISTRIP         Strip 8th bit off characters.) s
5 393 M
(   34  INLCR          Map NL into CR on input.) s
5 382 M
(   35  IGNCR          Ignore CR on input.) s
5 371 M
(   36  ICRNL          Map CR to NL on input.) s
5 360 M
(   37  IUCLC          Translate uppercase characters to lowercase.) s
5 349 M
(   38  IXON           Enable output flow control.) s
5 338 M
(   39  IXANY          Any char will restart after stop.) s
5 327 M
(   40  IXOFF          Enable input flow control.) s
5 316 M
(   41  IMAXBEL        Ring bell on input queue full.) s
5 305 M
(   50  ISIG           Enable signals INTR, QUIT, [D]SUSP.) s
5 294 M
(   51  ICANON         Canonicalize input lines.) s
5 283 M
(   52  XCASE          Enable input and output of uppercase characters by) s
5 272 M
(                      preceding their lowercase equivalents with `\\'.) s
5 261 M
(   53  ECHO           Enable echoing.) s
5 250 M
(   54  ECHOE          Visually erase chars.) s
5 239 M
(   55  ECHOK          Kill character discards current line.) s
5 228 M
(   56  ECHONL         Echo NL even if ECHO is off.) s
5 217 M
(   57  NOFLSH         Don't flush after interrupt.) s
5 206 M
(   58  TOSTOP         Stop background jobs from output.) s
5 195 M
(   59  IEXTEN         Enable extensions.) s
5 184 M
(   60  ECHOCTL        Echo control characters as ^\(Char\).) s
5 173 M
(   61  ECHOKE         Visual erase for line kill.) s
5 129 M
(Ylonen & Moffat, Editor    Expires March 31, 2004              [Page 17]) s
_R
S
PStoPSsaved restore
userdict/PStoPSsaved save put
PStoPSmatrix setmatrix
595.000000 421.271378 translate
90 rotate
0.706651 dup scale
userdict/PStoPSmatrix matrix currentmatrix put
userdict/PStoPSclip{0 0 moveto
 595.000000 0 rlineto 0 842.000000 rlineto -595.000000 0 rlineto
 closepath}put initclip
PStoPSxform concat
%%BeginPageSetup
_S
75 0 translate
/pagenum 18 def
/fname () def
/fdir () def
/ftail () def
/user_header_p false def
%%EndPageSetup
5 723 M
(Internet-Draft          SSH Connection Protocol                 Oct 2003) s
5 690 M
(   62  PENDIN         Retype pending input.) s
5 679 M
(   70  OPOST          Enable output processing.) s
5 668 M
(   71  OLCUC          Convert lowercase to uppercase.) s
5 657 M
(   72  ONLCR          Map NL to CR-NL.) s
5 646 M
(   73  OCRNL          Translate carriage return to newline \(output\).) s
5 635 M
(   74  ONOCR          Translate newline to carriage return-newline) s
5 624 M
(                      \(output\).) s
5 613 M
(   75  ONLRET         Newline performs a carriage return \(output\).) s
5 602 M
(   90  CS7            7 bit mode.) s
5 591 M
(   91  CS8            8 bit mode.) s
5 580 M
(   92  PARENB         Parity enable.) s
5 569 M
(   93  PARODD         Odd parity, else even.) s
5 547 M
(   128 TTY_OP_ISPEED  Specifies the input baud rate in bits per second.) s
5 536 M
(   129 TTY_OP_OSPEED  Specifies the output baud rate in bits per second.) s
5 503 M
(9. Summary of Message Numbers) s
5 481 M
(     #define SSH_MSG_GLOBAL_REQUEST                  80) s
5 470 M
(     #define SSH_MSG_REQUEST_SUCCESS                 81) s
5 459 M
(     #define SSH_MSG_REQUEST_FAILURE                 82) s
5 448 M
(     #define SSH_MSG_CHANNEL_OPEN                    90) s
5 437 M
(     #define SSH_MSG_CHANNEL_OPEN_CONFIRMATION       91) s
5 426 M
(     #define SSH_MSG_CHANNEL_OPEN_FAILURE            92) s
5 415 M
(     #define SSH_MSG_CHANNEL_WINDOW_ADJUST           93) s
5 404 M
(     #define SSH_MSG_CHANNEL_DATA                    94) s
5 393 M
(     #define SSH_MSG_CHANNEL_EXTENDED_DATA           95) s
5 382 M
(     #define SSH_MSG_CHANNEL_EOF                     96) s
5 371 M
(     #define SSH_MSG_CHANNEL_CLOSE                   97) s
5 360 M
(     #define SSH_MSG_CHANNEL_REQUEST                 98) s
5 349 M
(     #define SSH_MSG_CHANNEL_SUCCESS                 99) s
5 338 M
(     #define SSH_MSG_CHANNEL_FAILURE                 100) s
5 305 M
(10. Security Considerations) s
5 283 M
(   This protocol is assumed to run on top of a secure, authenticated) s
5 272 M
(   transport.  User authentication and protection against network-level) s
5 261 M
(   attacks are assumed to be provided by the underlying protocols.) s
5 239 M
(   It is RECOMMENDED that implementations disable all the potentially) s
5 228 M
(   dangerous features \(e.g. agent forwarding, X11 forwarding, and TCP/IP) s
5 217 M
(   forwarding\) if the host key has changed.) s
5 195 M
(   Full security considerations for this protocol are provided in) s
5 184 M
(   Section 8 of [SSH-ARCH]) s
5 129 M
(Ylonen & Moffat, Editor    Expires March 31, 2004              [Page 18]) s
_R
S
PStoPSsaved restore
%%Page: (18,19) 10
userdict/PStoPSsaved save put
PStoPSmatrix setmatrix
595.000000 0.271378 translate
90 rotate
0.706651 dup scale
userdict/PStoPSmatrix matrix currentmatrix put
userdict/PStoPSclip{0 0 moveto
 595.000000 0 rlineto 0 842.000000 rlineto -595.000000 0 rlineto
 closepath}put initclip
/showpage{}def/copypage{}def/erasepage{}def
PStoPSxform concat
%%BeginPageSetup
_S
75 0 translate
/pagenum 19 def
/fname () def
/fdir () def
/ftail () def
/user_header_p false def
%%EndPageSetup
5 723 M
(Internet-Draft          SSH Connection Protocol                 Oct 2003) s
5 690 M
(11. iana cONSiderations) s
5 668 M
(   This document is part of a set, the IANA considerations for the SSH) s
5 657 M
(   protocol as defined in [SSH-ARCH], [SSH-TRANS], [SSH-USERAUTH],) s
5 646 M
(   [SSH-CONNECT] are detailed in [SSH-NUMBERS].) s
5 624 M
(12. Intellectual Property) s
5 602 M
(   The IETF takes no position regarding the validity or scope of any) s
5 591 M
(   intellectual property or other rights that might be claimed to) s
5 580 M
(   pertain to the implementation or use of the technology described in) s
5 569 M
(   this document or the extent to which any license under such rights) s
5 558 M
(   might or might not be available; neither does it represent that it) s
5 547 M
(   has made any effort to identify any such rights. Information on the) s
5 536 M
(   IETF's procedures with respect to rights in standards-track and) s
5 525 M
(   standards-related documentation can be found in BCP-11. Copies of) s
5 514 M
(   claims of rights made available for publication and any assurances of) s
5 503 M
(   licenses to be made available, or the result of an attempt made to) s
5 492 M
(   obtain a general license or permission for the use of such) s
5 481 M
(   proprietary rights by implementers or users of this specification can) s
5 470 M
(   be obtained from the IETF Secretariat.) s
5 448 M
(   The IETF has been notified of intellectual property rights claimed in) s
5 437 M
(   regard to some or all of the specification contained in this) s
5 426 M
(   document. For more information consult the online list of claimed) s
5 415 M
(   rights.) s
5 393 M
(Normative References) s
5 371 M
(   [SSH-ARCH]) s
5 360 M
(              Ylonen, T., "SSH Protocol Architecture", I-D) s
5 349 M
(              draft-ietf-architecture-15.txt, Oct 2003.) s
5 327 M
(   [SSH-TRANS]) s
5 316 M
(              Ylonen, T., "SSH Transport Layer Protocol", I-D) s
5 305 M
(              draft-ietf-transport-17.txt, Oct 2003.) s
5 283 M
(   [SSH-USERAUTH]) s
5 272 M
(              Ylonen, T., "SSH Authentication Protocol", I-D) s
5 261 M
(              draft-ietf-userauth-18.txt, Oct 2003.) s
5 239 M
(   [SSH-CONNECT]) s
5 228 M
(              Ylonen, T., "SSH Connection Protocol", I-D) s
5 217 M
(              draft-ietf-connect-18.txt, Oct 2003.) s
5 195 M
(   [SSH-NUMBERS]) s
5 184 M
(              Lehtinen, S. and D. Moffat, "SSH Protocol Assigned) s
5 173 M
(              Numbers", I-D draft-ietf-secsh-assignednumbers-05.txt, Oct) s
5 129 M
(Ylonen & Moffat, Editor    Expires March 31, 2004              [Page 19]) s
_R
S
PStoPSsaved restore
userdict/PStoPSsaved save put
PStoPSmatrix setmatrix
595.000000 421.271378 translate
90 rotate
0.706651 dup scale
userdict/PStoPSmatrix matrix currentmatrix put
userdict/PStoPSclip{0 0 moveto
 595.000000 0 rlineto 0 842.000000 rlineto -595.000000 0 rlineto
 closepath}put initclip
PStoPSxform concat
%%BeginPageSetup
_S
75 0 translate
/pagenum 20 def
/fname () def
/fdir () def
/ftail () def
/user_header_p false def
%%EndPageSetup
5 723 M
(Internet-Draft          SSH Connection Protocol                 Oct 2003) s
5 690 M
(              2003.) s
5 668 M
(   [RFC2119]  Bradner, S., "Key words for use in RFCs to Indicate) s
5 657 M
(              Requirement Levels", BCP 14, RFC 2119, March 1997.) s
5 635 M
(Informative References) s
5 613 M
(   [RFC3066]  Alvestrand, H., "Tags for the Identification of) s
5 602 M
(              Languages", BCP 47, RFC 3066, January 2001.) s
5 580 M
(   [RFC1884]  Hinden, R. and S. Deering, "IP Version 6 Addressing) s
5 569 M
(              Architecture", RFC 1884, December 1995.) s
5 547 M
(   [RFC2279]  Yergeau, F., "UTF-8, a transformation format of ISO) s
5 536 M
(              10646", RFC 2279, January 1998.) s
5 514 M
(   [SCHEIFLER]) s
5 503 M
(              Scheifler, R., "X Window System : The Complete Reference) s
5 492 M
(              to Xlib, X Protocol, Icccm, Xlfd, 3rd edition.", Digital) s
5 481 M
(              Press ISBN 1555580882, Feburary 1992.) s
5 459 M
(   [POSIX]    ISO/IEC, 9945-1., "Information technology -- Portable) s
5 448 M
(              Operating System Interface  \(POSIX\)-Part 1: System) s
5 437 M
(              Application Program Interface \(API\) C Language", ANSI/IEE) s
5 426 M
(              Std 1003.1, July 1996.) s
5 393 M
(Authors' Addresses) s
5 371 M
(   Tatu Ylonen) s
5 360 M
(   SSH Communications Security Corp) s
5 349 M
(   Fredrikinkatu 42) s
5 338 M
(   HELSINKI  FIN-00100) s
5 327 M
(   Finland) s
5 305 M
(   EMail: [email protected]) s
5 272 M
(   Darren J. Moffat \(editor\)) s
5 261 M
(   Sun Microsystems, Inc) s
5 250 M
(   17 Network Circle) s
5 239 M
(   Menlo Park  CA 94025) s
5 228 M
(   USA) s
5 206 M
(   EMail: [email protected]) s
5 129 M
(Ylonen & Moffat, Editor    Expires March 31, 2004              [Page 20]) s
_R
S
PStoPSsaved restore
%%Page: (20,21) 11
userdict/PStoPSsaved save put
PStoPSmatrix setmatrix
595.000000 0.271378 translate
90 rotate
0.706651 dup scale
userdict/PStoPSmatrix matrix currentmatrix put
userdict/PStoPSclip{0 0 moveto
 595.000000 0 rlineto 0 842.000000 rlineto -595.000000 0 rlineto
 closepath}put initclip
/showpage{}def/copypage{}def/erasepage{}def
PStoPSxform concat
%%BeginPageSetup
_S
75 0 translate
/pagenum 21 def
/fname () def
/fdir () def
/ftail () def
/user_header_p false def
%%EndPageSetup
5 723 M
(Internet-Draft          SSH Connection Protocol                 Oct 2003) s
5 690 M
(Intellectual Property Statement) s
5 668 M
(   The IETF takes no position regarding the validity or scope of any) s
5 657 M
(   intellectual property or other rights that might be claimed to) s
5 646 M
(   pertain to the implementation or use of the technology described in) s
5 635 M
(   this document or the extent to which any license under such rights) s
5 624 M
(   might or might not be available; neither does it represent that it) s
5 613 M
(   has made any effort to identify any such rights. Information on the) s
5 602 M
(   IETF's procedures with respect to rights in standards-track and) s
5 591 M
(   standards-related documentation can be found in BCP-11. Copies of) s
5 580 M
(   claims of rights made available for publication and any assurances of) s
5 569 M
(   licenses to be made available, or the result of an attempt made to) s
5 558 M
(   obtain a general license or permission for the use of such) s
5 547 M
(   proprietary rights by implementors or users of this specification can) s
5 536 M
(   be obtained from the IETF Secretariat.) s
5 514 M
(   The IETF invites any interested party to bring to its attention any) s
5 503 M
(   copyrights, patents or patent applications, or other proprietary) s
5 492 M
(   rights which may cover technology that may be required to practice) s
5 481 M
(   this standard. Please address the information to the IETF Executive) s
5 470 M
(   Director.) s
5 448 M
(   The IETF has been notified of intellectual property rights claimed in) s
5 437 M
(   regard to some or all of the specification contained in this) s
5 426 M
(   document. For more information consult the online list of claimed) s
5 415 M
(   rights.) s
5 382 M
(Full Copyright Statement) s
5 360 M
(   Copyright \(C\) The Internet Society \(2003\). All Rights Reserved.) s
5 338 M
(   This document and translations of it may be copied and furnished to) s
5 327 M
(   others, and derivative works that comment on or otherwise explain it) s
5 316 M
(   or assist in its implementation may be prepared, copied, published) s
5 305 M
(   and distributed, in whole or in part, without restriction of any) s
5 294 M
(   kind, provided that the above copyright notice and this paragraph are) s
5 283 M
(   included on all such copies and derivative works. However, this) s
5 272 M
(   document itself may not be modified in any way, such as by removing) s
5 261 M
(   the copyright notice or references to the Internet Society or other) s
5 250 M
(   Internet organizations, except as needed for the purpose of) s
5 239 M
(   developing Internet standards in which case the procedures for) s
5 228 M
(   copyrights defined in the Internet Standards process must be) s
5 217 M
(   followed, or as required to translate it into languages other than) s
5 206 M
(   English.) s
5 184 M
(   The limited permissions granted above are perpetual and will not be) s
5 173 M
(   revoked by the Internet Society or its successors or assignees.) s
5 129 M
(Ylonen & Moffat, Editor    Expires March 31, 2004              [Page 21]) s
_R
S
PStoPSsaved restore
userdict/PStoPSsaved save put
PStoPSmatrix setmatrix
595.000000 421.271378 translate
90 rotate
0.706651 dup scale
userdict/PStoPSmatrix matrix currentmatrix put
userdict/PStoPSclip{0 0 moveto
 595.000000 0 rlineto 0 842.000000 rlineto -595.000000 0 rlineto
 closepath}put initclip
PStoPSxform concat
%%BeginPageSetup
_S
75 0 translate
/pagenum 22 def
/fname () def
/fdir () def
/ftail () def
/user_header_p false def
%%EndPageSetup
5 723 M
(Internet-Draft          SSH Connection Protocol                 Oct 2003) s
5 690 M
(   This document and the information contained herein is provided on an) s
5 679 M
(   "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING) s
5 668 M
(   TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING) s
5 657 M
(   BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION) s
5 646 M
(   HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF) s
5 635 M
(   MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.) s
5 602 M
(Acknowledgment) s
5 580 M
(   Funding for the RFC Editor function is currently provided by the) s
5 569 M
(   Internet Society.) s
5 129 M
(Ylonen & Moffat, Editor    Expires March 31, 2004              [Page 22]) s
_R
S
PStoPSsaved restore
%%Trailer
%%Pages: 22
%%DocumentNeededResources: font Courier-Bold Courier 
%%EOF