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
|
<pre>Network Working Group J. Davin
Request for Comments: 1028 Proteon, Inc.
J. Case
University of Tennessee at Knoxville
M. Fedor
Cornell University
M. Schoffstall
Rensselaer Polytechnic Institute
November 1987
<span class="h1">A Simple Gateway Monitoring Protocol</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Status of this Memo</span>
This document is being distributed to members of the Internet
community in order to solicit their reactions to the proposals
contained in it. While the issues discussed may not be directly
relevant to the research problems of the Internet, they may be
interesting to a number of researchers and implementors.
This memo defines a simple application-layer protocol by which
management information for a gateway may be inspected or altered by
logically remote users.
This proposal is intended only as an interim response to immediate
gateway monitoring needs while work on more elaborate and robust
designs proceeds with the care and deliberation appropriate to that
task. Accordingly, long term use of the mechanisms described here
should be seriously questioned as more comprehensive proposals emerge
in the future. Distribution of this memo is unlimited.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Protocol Design Strategy</span>
The proposed protocol is shaped in large part by the desire to
minimize the number and complexity of management functions realized
by the gateway itself. This goal is attractive in at least four
respects:
(1) The development cost for gateway software necessary to
support the protocol is accordingly reduced.
(2) The degree of management function that is remotely
supported is accordingly increased, thereby admitting
fullest use of internet resources in the management task.
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
(3) The degree of management function that is remotely
supported is accordingly increased, thereby imposing the
fewest possible restrictions on the form and sophistication
of management tools.
(4) A simplified set of management functions is easily
understood and used by developers of gateway management
tools.
A second design goal is that the functional paradigm for monitoring
and control be sufficiently extensible to accommodate additional,
possibly unanticipated aspects of gateway operation.
A third goal is that the design be, as much as possible, independent
of the architecture and mechanisms of particular hosts or particular
gateways.
Consistent with the foregoing design goals are a number of decisions
regarding the overall form of the protocol design.
One such decision is to model all gateway management functions as
alterations or inspections of various parameter values. By this
model, a protocol entity on a logically remote host (possibly the
gateway itself) interacts with a protocol entity resident on the
gateway in order to alter or retrieve named portions (variables) of
the gateway state. This design decision has at least two positive
consequences:
(1) It has the effect of limiting the number of essential
management functions realized by the gateway to two: one
operation to assign a value to a specified configuration
parameter and another to retrieve such a value.
(2) A second effect of this decision is to avoid introducing
into the protocol definition support for imperative
management commands: the number of such commands is in
practice ever-increasing, and the semantics of such
commands are in general arbitrarily complex.
The exclusion of imperative commands from the set of explicitly
supported management functions is unlikely to preclude any desirable
gateway management operation. Currently, most gateway commands are
requests either to set the value of some gateway parameter or to
retrieve such a value, and the function of the few imperative
commands currently supported is easily accommodated in an
asynchronous mode by this management model. In this scheme, an
imperative command might be realized as the setting of a parameter
value that subsequently triggers the desired action.
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
A second design decision is to realize any needed authentication
functionality in a distinct protocol layer that provides services to
the monitoring protocol itself. The most important benefit of this
decision is a reduction in the complexity of the individual protocol
layers - thereby easing the task of implementation.
Consistent with this layered design strategy is a third design
decision that the identity of an application protocol entity is known
to its peers only by the services of the underlying authentication
protocol. Implicit in this decision is a model of access control by
which access to variables of a gateway configuration is managed in
terms of the association between application entities and sessions of
the authentication protocol. Thus, multi-level access to gateway
variables is supported by multiple instances of the application
protocol entity, each of which is characterized by:
(1) the set of gateway variables known to said entity,
(2) the mode of access (READ-ONLY or READ-WRITE) afforded to
said set of variables, and
(3) the authentication protocol session to which belong the
messages sent and received by said entity.
A fourth design decision is to adopt the conventions of the CCITT
X.409 recommendation [<a href="#ref-1" title=""Message Handling Systems: Presentation Transfer Syntax and Notation"">1</a>] for representing the information exchanged
between protocol entities. One cost of this decision is a modest
increase in the complexity of the protocol implementation. One
benefit of this decision is that protocol data are represented on the
network in a machine-independent, widely understood, and widely
accepted form. A second benefit of this decision is that the form of
the protocol messages may be concisely and understandably described
in the X.409 language defined for such purposes.
A fifth design decision, consistent with the goal of minimizing
gateway complexity, is that the variables manipulated by the protocol
assume only integer or octet string type values.
A sixth design decision, also consistent with the goal of minimizing
gateway complexity, is that the exchange of protocol messages
requires only an unreliable datagram transport, and, furthermore,
that every protocol message is entirely and independently
representable by a single transport datagram. While this document
specifies the exchange of protocol messages via the UDP protocol [<a href="#ref-2" title=""User Datagram Protocol"">2</a>],
the design proposed here is in general suitable for use with a wide
variety of transport mechanisms.
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
A seventh design decision, consistent with the goals of simplicity
and extensibility, is that the variables manipulated by the protocol
are named by octet string values. While this decision departs from
the architectural traditions of the Internet whereby objects are
identified by assigned integer values, the naming of variables by
octet strings affords at least two valuable benefits. Because the
set of octet string values constitutes a variable name space that, as
convenient, manifests either flat or hierarchical structure,
(1) a single, simple mechanism can provide both random access
to individual variables and sequential access to
semantically related groups of variables, and
(2) the variable name space may be extended to accommodate
unforeseen needs without compromising either the
relationships among existing variables or the potential
for further extensions to the space.
An eighth design decision is to minimize the number of unsolicited
messages required by the protocol definition. This decision is
consistent with the goal of simplicity and motivated by the desire to
retain maximal control over the amount of traffic generated by the
network management function - even at the expense of additional
protocol overhead. The strategy implicit in this decision is that
the monitoring of network state at any significant level of detail is
accomplished primarily by polling for appropriate information on the
part of the monitoring center. In this context, the definition of
unsolicited messages in the protocol is confined to those strictly
necessary to properly guide a monitoring center regarding the timing
and focus of its polling.
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. The Gateway Monitoring Protocol</span>
The gateway monitoring protocol is an application protocol by which
the variables of a gateway's configuration may be inspected or
altered.
Communication among application protocol entities is by the exchange
of protocol messages using the services of the authentication
protocol described elsewhere in this document. Each such message is
entirely and independently represented by a single message of the
underlying authentication protocol. An implementation of this
protocol need not accept protocol messages whose length exceeds 484
octets.
The form and function of the four message types recognized by a
protocol entity is described below. The type of a given protocol
message is indicated by the value of the implicit type tag for the
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
data structure that is represented by said message according to the
conventions of the CCITT X.409 recommendation.
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. The Get Request Message Type</span>
The form of a message of Get Request type is described below in the
language defined in the CCITT X.409 recommendation:
var_value_type ::= CHOICE {
INTEGER,
OCTET STRING
}
var_name_type := OCTET STRING
var_op_type ::= SEQUENCE {
var_name var_name_type,
var_value var_value_type
}
var_op_list_type ::= SEQUENCE OF var_op_type
error_status_type ::= INTEGER {
gmp_err_noerror (0),
gmp_err_too_big (1),
gmp_err_nix_name (2),
gmp_err_bad_value (3)
}
error_index_type ::= INTEGER
request_id_type ::= INTEGER
get_req_message_type ::= [ APPLICATION 1 ] IMPLICIT
SEQUENCE {
request_id request_id_type,
error_status error_status_type,
error_index error_index_type,
var_op_list var_op_list_type
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
}
Upon receipt of a message of this type, the receiving entity responds
according to any applicable rule in the list below:
(1) If, for some var_op_type component of the received message, the
value of the var_name field does not lexicographically precede
the name of some variable known to the receiving entity, then
the receiving entity sends to the originator of the received
message a message of identical form except that the indicated
message type is Get Response, the value of the error_status
field is gmp_err_nix_name, and the value of the error_index
field is the unit-based index of said var_op_type component in
the received message.
(2) If the size of the Get Response type message generated as
described below would exceed the size of the largest message
for which the protocol definition requires acceptance, then the
receiving entity sends to the originator of the received message
a message of identical form except that the indicated message
type is Get Response, the value of the error_status field is
gmp_err_too_big, and the value of the error_index field is zero.
If none of the foregoing rules apply, then the receiving entity sends
to the originator of the received message a Get Response type message
such that, for each var_op_type component of the received message, a
corresponding component of the generated message represents the name
and value of that variable whose name is, in the lexicographical
ordering of the names of all variables known to the receiving entity
together with the value of the var_name field of the given component,
the immediate successor to that value. The value of the error_status
field of the generated message is gmp_err_noerror and the value of
the error_index field is zero. The value of the request_id field of
the generated message is that for the received message.
Messages of the Get Request type are generated by a protocol entity
only at the request of the application user.
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. The Get Response Message Type</span>
The form of messages of this type is identical to that of Get Request
type messages except for the indication of message type. In the CCITT
X.409 language,
get_rsp_message_type ::= [ APPLICATION 2 ] IMPLICIT
SEQUENCE {
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
request_id request_id_type,
error_status error_status_type,
error_index error_index_type,
var_op_list var_op_list_type
}
The response of a protocol entity to a message of this type is to
present its contents to the application user.
Messages of the Get Response type are generated by a protocol entity
only upon receipt of Set Request or Get Request type messages as
described elsewhere in this document.
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a>. The Trap Request Message Type</span>
The form of a message of this type is described below in the language
defined in the CCITT X.409 recommendation:
val_list_type ::= SEQUENCE OF var_value_type
trap_type_type ::= INTEGER
trap_req_message_type ::= [ APPLICATION 3 ] IMPLICIT
SEQUENCE {
trap_type trap_type_type,
val_list val_list_type
}
The response of a protocol entity to a message of this type is to
present its contents to the application user.
Messages of the Trap Request type are generated by a protocol entity
only at the request of the application user.
The significance of the val_list component of a Trap Request type
message is implementation-specific.
Interpretations for negative values of the trap_type field are
implementation-specific. Interpretations for non-negative values of
the trap_type field are defined below.
<span class="h4"><a class="selflink" id="section-3.3.1" href="#section-3.3.1">3.3.1</a>. The Cold Start Trap Type</span>
A Trap Request type message for which the value of the trap_type
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
field is 0, signifies that the sending protocol entity is
reinitializing itself such that the gateway configuration or the
protocol entity implementation may be altered.
<span class="h4"><a class="selflink" id="section-3.3.2" href="#section-3.3.2">3.3.2</a>. The Warm Start Trap Type</span>
A Trap Request type message for which the value of the trap_type
field is 1, signifies that the sending protocol entity is
reinitializing itself such that neither the gateway configuration nor
the protocol entity implementation is altered.
<span class="h4"><a class="selflink" id="section-3.3.3" href="#section-3.3.3">3.3.3</a>. The Link Failure Trap Type</span>
A Trap Request type message for which the value of the trap_type
field is 2, signifies that the sending protocol entity recognizes a
failure in one of the communication links represented in the gateway
configuration.
<span class="h4"><a class="selflink" id="section-3.3.4" href="#section-3.3.4">3.3.4</a>. The Authentication Failure Trap Type</span>
A Trap Request type message for which the value of the trap_type
field is 3, signifies that the sending protocol entity is the
addressee of a protocol message that is not properly authenticated.
<span class="h4"><a class="selflink" id="section-3.3.5" href="#section-3.3.5">3.3.5</a>. The EGP Neighbor Loss Trap Type</span>
A Trap Request type message for which the value of the trap_type
field is 4, signifies that an EGP neighbor for whom the sending
protocol entity was an EGP peer has been marked down and the peer
relationship no longer obtains.
<span class="h3"><a class="selflink" id="section-3.4" href="#section-3.4">3.4</a>. The Set Request Message Type</span>
The form of messages of this type is identical to that of Get Request
type messages except for the indication of message type. In the
CCITT X.409 language:
set_req_message_type ::= [ APPLICATION 4 ] IMPLICIT
SEQUENCE {
request_id request_id_type,
error_status error_status_type,
error_index error_index_type,
var_op_list var_op_list_type
}
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
Upon receipt of a message of this type, the receiving entity responds
according to any applicable rule in the list below:
(1) If, for some var_op_type component of the received message, the
value of the var_name field names no variable known to the
receiving entity, then the receiving entity sends to the
originator of the received message a message of identical form
except that the indicated message type is Get Response, the
value of the error_status field is gmp_err_nix_name, and the
value of the error_index field is the unit-based index of said
var_op_type component in the received message.
(2) If, for some var_op_type component of the received message, the
contents of the var_value field does not, according to the CCITT
X.409 recommendation, manifest a type, length, and value that is
consistent with that required for the variable named by the
value of the var_name field, then the receiving entity sends to
the originator of the received message a message of identical
form except that the indicated message type is Get Response, the
value of the error_status field is gmp_err_bad_value, and the
value of the error_index field is the unit-based index of said
var_op_type component in the received message.
(3) If the size of the Get Response type message generated as
described below would exceed the size of the largest message for
which the protocol definition requires acceptance, then the
receiving entity sends to the originator of the received
message a message of identical form except that the indicated
message type is Get Response, the value of the error_status
field is gmp_err_too_big, and the value of the error_index field
is zero.
If none of the foregoing rules apply, then for each var_op_type
component of the received message, according to the sequence of such
components represented by said message, the value represented by the
var_value field of the given component is assigned to the variable
named by the value of the var_name field of that component. The
receiving entity sends to the originator of the received message a
message of identical form except that the indicated message type is
Get Response, the value of the error_status field is gmp_err_noerror,
and the value of the error_index field is zero.
Messages of the Set Request type are generated by a protocol entity
only at the request of the application user.
Recognition and processing of Set Request type frames is not required
by the protocol definition.
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. The Authentication Protocol</span>
The authentication protocol is a session-layer protocol by which
messages specified by a protocol user are selectively delivered to
other protocol users. The protocol definition precludes delivery to
a protocol user of any user message for which the protocol
representation lacks a specified "authentic" form.
Communication among authentication protocol entities is accomplished
by the exchange of protocol messages, each of which is entirely and
independently represented by a single UDP datagram. An
authentication protocol entity responds to protocol messages received
at UDP port 153 on the host with which it is associated.
A half-session of the authentication protocol is, for any ordered
pair of protocol users, the set of messages sent from the first user
of the pair to the second user of said pair. A session of the
authentication protocol is defined to be union of two complementary
half-sessions of the protocol - that is, the set of messages
exchanged between a given pair of protocol users. Associated with
each protocol half-session is a triplet of functions:
(1) The authentication function for a given half-session is a
boolean-valued function that characterizes the set of
authentication protocol messages that are of acceptable,
authentic form with respect to the set of all possible
authentication protocol messages.
(2) The message interpretation function for a given half-
session is a mapping from the set of authentication
protocol messages accepted by the authentication function
for said half-session to the set of all possible user
messages.
(3) The message representation function for a given half-
session is a mapping that is the inverse of the message
interpretation function for said half-session.
The association between half-sessions of the authentication protocol
and triplets of functions is not defined in this document.
The form and function of the single message type recognized by a
protocol entity is described below. The type of a given protocol
message is indicated by the value of the implicit type tag for the
data structure that is represented by said message according to the
conventions of the CCITT X.409 recommendation.
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. The Data Request Message Type</span>
Messages of this type are represented by a sequence of fields whose
form and interpretation are described below.
<span class="h4"><a class="selflink" id="section-4.1.1" href="#section-4.1.1">4.1.1</a>. The Message Length Field</span>
The Message Length field of a given Data Request message represents
the length of said message as an unsigned, 16-bit, binary integer.
This value is encoded such that more significant bits precede less
significant bits in the order of transmission and includes the length
of the Message Length field itself.
<span class="h4"><a class="selflink" id="section-4.1.2" href="#section-4.1.2">4.1.2</a>. The Session ID Length Field</span>
The Session ID Length field of a given Data Request message
represents the length, in octets, of the Session ID field of said
message. This value is encoded as an unsigned, 8-bit, binary
integer.
<span class="h4"><a class="selflink" id="section-4.1.3" href="#section-4.1.3">4.1.3</a>. The Session ID Field</span>
The Session ID field of a given Data Request message represents the
name of the protocol session to which said message belongs. The
value of this field is encoded as asequence of octets whose length is
the value of the Session ID Length field for said message.
<span class="h4"><a class="selflink" id="section-4.1.4" href="#section-4.1.4">4.1.4</a>. The User Data Field</span>
The User Data field of a given Data Request message represents a
message being passed from one protocol user to another. The value of
this field is encoded according to conventions implicit in the
message representation function for the appropriate half of the
protocol session named by the value of the Session ID field for said
message.
Upon receipt of a Data Request type message, the receiving
authentication protocol entity verifies the form of said message by
application of the authentication function associated with its half
of the session named by the value of the Session ID field in the
received message. If the form of the received message is accepted as
"authentic" by said function, then the user message computed by the
application of the message interpretation function for said half-
session to the value of the User Data field of the received message
is presented to the protocol user together with an indication of the
protocol session to which the received message belongs.
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
Otherwise, the message is discarded and an indication of the receipt
of an unauthenticated message is presented to the protocol user.
A message of this type is generated only at the request of the
protocol user to communicate a message to another user of the
protocol. Such a request specifies the user message to be sent as
well as the session of the authentication protocol to which said user
message belongs. The value of the Session ID field of the generated
message is the name of the session specified in the user request.
The value of the User Data field of the generated message is computed
by applying the message representation function for the appropriate
half of the specified session to the specified user message.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Variable Names</span>
The variables retrieved or manipulated by the application protocol
are named by octet string values. Such values are represented in
this document in two ways:
(1) A variable name octet string may be represented
numerically by a sequence of hexadecimal numbers, each of
which denotes the value of the corresponding octet in
said string.
(2) A variable name octet string may be represented
symbolically by a character string whose form reflects
the sequence of octets in said name while at the same
time suggesting to a human reader the semantics of the
named variable.
Variable name octet strings are represented symbolically according to
the following two rules:
(1) The symbolic character string representation of the
variable name of zero length is the character string of
zero length.
(2) The symbolic character string representation of a
variable name of non-zero length n is the concatenation
of the symbolic character string representation of the
variable name formed by the first (n - 1) octets of the
given name together with the underscore character ("_")
and a character string that does not include the
underscore character, such that the resulting character
string is unique among the symbolic character string
representations for all variable names of length n.
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
Thus, for example, the variable names represented numerically as:
01 01 01,
01 01 02,
01 02 01,
01 03 01 03 01,
01 03 01 03 02,
01 03 01 04 01, and
01 03 01 04 02
might be represented symbolically by the character strings:
_GW_version_id,
_GW_version_rev,
_GW_cfg_nnets,
_GW_net_if_type_net1,
_GW_net_if_type_net2,
_GW_net_if_speed_net1, and
_GW_net_if_speed_net2.
All variable names are terminated by an implementation specific octet
string of non-zero length. Thus, a complete variable name is not
specified for any of the variables defined in this document. Rather,
for each defined variable, some prefix portion of its name is
specified, with the understanding that the rightmost portion of its
name is specific to the protocol implementation.
Fullest exploitation of the semantics of the Get Request type message
requires that names for related variables be chosen so as to be
contiguous in the lexicographic ordering of all variable names
recognized by an application protocol entity. This principle is
observed in the naming of variables currently defined by this
document, and it should be observed as well for variables defined by
subsequent revisions of this document and for variables introduced by
particular implementations of the protocol.
A particular implementation of a protocol entity may present
variables in addition to those defined by this document, provided
that in no case will an implementation-specific variable be presented
as having a name identical to that for one of the variables defined
here. By convention, the names of variables specific to a particular
implementation share a common prefix that distinguishes said
variables from those defined in this document and from those that may
be presented by other implementations of an application protocol
entity. For example, variables specific to an implementation of this
protocol in version 1.3 of the Squeaky gateway product of the
Swinging Gateway company might have the names represented by:
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
01 FF 01 01 13 01,
01 FF 01 01 13 02, and
01 FF 01 01 13 03,
for which the corresponding symbolic representations might be:
_GW_impl_Swinging_Squeaky_v1.3_variableA,
_GW_impl_Swinging_Squeaky_v1.3_variableB, and
_GW_impl_Swinging_Squeaky_v1.3_variableC.
The names and semantics of implementation-specific variables are not
otherwise defined by this document, although implementors are
encouraged to publish such definitions either as appendices to this
document or by other appropriate means.
Variable names of which the initial portion is represented
numerically as 02 and symbolically as "_HOST" are reserved for future
use. Variable names of which the initial portion is represented
numerically as 03 and symbolically as "_TS" are similarly reserved.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Required Variables</span>
To the extent that the information represented by a variable defined
in this section is also represented internally by a gateway for which
this protocol is realized, access to that variable must be afforded
by at least one application protocol entity associated with said
gateway.
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a>. The _GW_version_id Variable</span>
The variable such that the initial portion of its name is represented
symbolically as "_GW_version_id" and numerically as:
01 01 01
has an octet string value that identifies the protocol entity
implementation (e.g., "ACME Packet-Whiz Model II").
<span class="h3"><a class="selflink" id="section-6.2" href="#section-6.2">6.2</a>. The _GW_version_rev Variable</span>
The variable such that the initial portion of its name is represented
symbolically as "_GW_version_rev" and numerically as:
01 01 02
has an integer value that identifies the revision level of the entity
implementation. The encoding of the revision level as an integer
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
value is implementation-specific.
<span class="h3"><a class="selflink" id="section-6.3" href="#section-6.3">6.3</a>. The _GW_cfg_nnets Variable</span>
The variable such that the initial portion of its name is represented
symbolically as "_GW_cfg_nnets" and numerically as:
01 02 01
has an integer value that represents the number of logical network
interfaces afforded by the configuration of the gateway.
<span class="h3"><a class="selflink" id="section-6.4" href="#section-6.4">6.4</a>. Network Interface Variables</span>
This section describes a related set of variables that represent
attributes of the logical network interfaces afforded by the gateway
configuration. Each such network interface is uniquely identified by
an octet string. The convention by which names are assigned to the
network interfaces of a gateway is implementation-specific.
<span class="h4"><a class="selflink" id="section-6.4.1" href="#section-6.4.1">6.4.1</a>. The _GW_net_if_type Variable Class</span>
A variable such that the initial portion of its name is represented
symbolically as "_GW_net_if_type" and numerically as:
01 03 01 03
has an integer value that represents the type of the network
interface identified by the remainder of the name for said variable.
The value of a variable of this class represents network type
according to the conventions described in Appendix 1.
<span class="h4"><a class="selflink" id="section-6.4.2" href="#section-6.4.2">6.4.2</a>. The _GW_net_if_speed Variable Class</span>
A variable such that the initial portion of its name is represented
symbolically as "_GW_net_if_speed" and numerically as:
01 03 01 04
has an integer value that represents the estimated nominal bandwidth
in bits per second of the network interface identified by the
remainder of the name for said variable.
<span class="h4"><a class="selflink" id="section-6.4.3" href="#section-6.4.3">6.4.3</a>. The _GW_net_if_in_pkts Variable Class</span>
A variable such that the initial portion of its name is represented
symbolically as "_GW_net_if_in_pkts" and numerically as:
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
01 03 01 01 01
has an integer value that represents the number of packets received
by the gateway over the network interface identified by the remainder
of the name for said variable.
<span class="h4"><a class="selflink" id="section-6.4.4" href="#section-6.4.4">6.4.4</a>. The _GW_net_if_out_pkts Variable Class</span>
A variable such that the initial portion of its name is represented
symbolically as "_GW_net_if_out_pkts" and numerically as:
01 03 01 02 01
has an integer value that represents the number of packets
transmitted by the gateway over the network interface identified by
the remainder of the name for said variable.
<span class="h4"><a class="selflink" id="section-6.4.5" href="#section-6.4.5">6.4.5</a>. The _GW_net_if_in_bytes Variable Class</span>
A variable such that the initial portion of its name is represented
symbolically as "_GW_net_if_in_bytes" and numerically as:
01 03 01 01 02
has an integer value that represents the number of octets received by
the gateway over the network interface identified by the remainder of
the name for said variable.
<span class="h4"><a class="selflink" id="section-6.4.6" href="#section-6.4.6">6.4.6</a>. The _GW_net_if_out_bytes Variable Class</span>
A variable such that the initial portion of its name is represented
symbolically as "_GW_net_if_out_bytes" and numerically as:
01 03 01 02 02
has an integer value that represents the number of octets transmitted
by the gateway over the network interface identified by the remainder
of the name for said variable.
<span class="h4"><a class="selflink" id="section-6.4.7" href="#section-6.4.7">6.4.7</a>. The _GW_net_if_in_errors Variable Class</span>
A variable such that the initial portion of its name is represented
symbolically as "_GW_net_if_in_errors" and numerically as:
01 03 01 01 03
has an integer value that represents the number of reception errors
encountered by the gateway on the network interface identified by the
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
remainder of the name for said variable. The definition of a
reception error is implementation-specific and may vary according to
network type.
<span class="h4"><a class="selflink" id="section-6.4.8" href="#section-6.4.8">6.4.8</a>. The _GW_net_if_out_errors Variable Class</span>
A variable such that the initial portion of its name is represented
symbolically as "_GW_net_if_out_errors" and numerically as:
01 03 01 02 03
has an integer value that represents the number of transmission
errors encountered by the gateway on the network interface identified
by the remainder of the name for said variable. The definition of a
transmission error is implementation-specific and may vary according
to network type.
<span class="h4"><a class="selflink" id="section-6.4.9" href="#section-6.4.9">6.4.9</a>. The _GW_net_if_status Variable Class</span>
A variable such that the initial portion of its name is represented
symbolically as "_GW_net_if_status" and numerically as:
01 03 01 05
has an integer value that represents the current status of the
network interface identified by the remainder of the name for said
variable. Network status is represented according to the conventions
described in Appendix 2.
<span class="h3"><a class="selflink" id="section-6.5" href="#section-6.5">6.5</a>. Internet Protocol Variables</span>
This section describes variables that represent information related
to protocols and mechanisms of the Internet Protocol (IP) family [<a href="#ref-3" title=""Internet Protocol"">3</a>].
<span class="h4"><a class="selflink" id="section-6.5.1" href="#section-6.5.1">6.5.1</a>. Protocol Address Variable Classes</span>
This section describes a related set of variables that represent
attributes of the the IP interfaces presented by a gateway on the
various networks to which it is attached. Each such protocol
interface is uniquely identified by an octet string. The convention
by which names are assigned to the protocol interfaces for a gateway
is implementation-specific.
<span class="h5"><a class="selflink" id="section-6.5.1.1" href="#section-6.5.1.1">6.5.1.1</a>. The _GW_pr_in_addr_value Variable Class</span>
A variable such that the initial portion of its name is represented
symbolically as "_GW_pr_in_addr_value" and numerically as:
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
01 04 01 01 01
has an octet string value that literally represents the 32-bit
Internet address for the IP interface identified by the remainder of
the name for said variable.
<span class="h5"><a class="selflink" id="section-6.5.1.2" href="#section-6.5.1.2">6.5.1.2</a>. The _GW_pr_in_addr_scope Variable Class</span>
A variable such that the initial portion of its name is represented
symbolically as "_GW_pr_in_addr_scope" and numerically as:
01 04 01 01 02
has an octet string value that names the network interface with which
the IP interface identified by the remainder of the name for said
variable is associated.
<span class="h4"><a class="selflink" id="section-6.5.2" href="#section-6.5.2">6.5.2</a>. Exterior Gateway Protocol (EGP) Variables</span>
This section describes variables that represent information related
to protocols and mechanisms of the EGP protocol [<a href="#ref-4" title=""Exterior Gateway Protocol"">4</a>].
<span class="h5"><a class="selflink" id="section-6.5.2.1" href="#section-6.5.2.1">6.5.2.1</a>. The _GW_pr_in_egp_core Variable</span>
A variable such that the initial portion of its name is represented
symbolically as "_GW_pr_in_egp_core" and numerically as:
01 04 01 03 01
has an integer value that characterizes the associated gateway with
respect to the set of INTERNET core gateways. A nonzero value
indicates that the associated gateway is part of the INTERNET core.
<span class="h5"><a class="selflink" id="section-6.5.2.2" href="#section-6.5.2.2">6.5.2.2</a>. The _GW_pr_in_egp_as Variable Class</span>
A variable such that the initial portion of its name is represented
symbolically as "_GW_pr_in_egp_as" and numerically as:
01 04 01 03 02
has an integer value that literally identifies an Autonomous System
to which this gateway belongs.
<span class="h5"><a class="selflink" id="section-6.5.2.3" href="#section-6.5.2.3">6.5.2.3</a>. The EGP Neighbor Variable Classes</span>
This section describes a related set of variables that represent
attributes of "neighbors" with which the gateway may be associated by
EGP. Each such EGP neighbor is uniquely identified by an octet
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
string. The convention by which names are assigned to EGP neighbors
of a gateway is implementation-specific.
<span class="h6"><a class="selflink" id="section-6.5.2.3.1" href="#section-6.5.2.3.1">6.5.2.3.1</a>. The _GW_pr_in_egp_neighbor_addr Variable Class</span>
A variable such that the initial portion of its name is represented
symbolically as "_GW_pr_in_egp_neighbor_addr" and numerically as:
01 04 01 03 03 01
has an octet string value that literally represents the 32-bit
Internet address for the EGP neighbor identified by the remainder of
the name for said variable.
<span class="h6"><a class="selflink" id="section-6.5.2.3.2" href="#section-6.5.2.3.2">6.5.2.3.2</a>. The _GW_pr_in_egp_neighbor_state Variable Class</span>
A variable such that the initial portion of its name is represented
symbolically as "_GW_pr_in_egp_neighbor_state" and numerically as:
01 04 01 03 03 02
has an octet string value that represents the EGP protocol state of
the gateway with respect to the EGP neighbor identified by the
remainder of the name for said variable. The meaningful values for
such a variable are: "IDLE," "ACQUISITION," "DOWN," "UP," and
"CEASE."
<span class="h5"><a class="selflink" id="section-6.5.2.4" href="#section-6.5.2.4">6.5.2.4</a>. The _GW_pr_in_egp_errors Variable</span>
The variable such that the initial portion of its name is represented
symbolically as "_GW_pr_in_egp_errors" and numerically as:
01 04 01 03 05
has an integer value that represents the number of EGP protocol
errors.
<span class="h4"><a class="selflink" id="section-6.5.3" href="#section-6.5.3">6.5.3</a>. Routing Variable Classes</span>
This section describes a related set of variables that represent
attributes of the the IP routes by which a gateway directs packets to
various destinations on the Internet. Each such route is uniquely
identified by an octet string that is the concatenation of the
literal 32-bit value of the Internet address for the destination of
said route together with an implementation-specific octet string.
The convention by which names are assigned to the Internet routes for
a gateway is in all other respects implementation-specific.
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
<span class="h5"><a class="selflink" id="section-6.5.3.1" href="#section-6.5.3.1">6.5.3.1</a>. The _GW_pr_in_rt_gateway Variable Class</span>
A variable such that the initial portion of its name is represented
symbolically as "_GW_pr_in_rt_gateway" and numerically as:
01 04 01 02 01
has an octet string value that literally represents the 32-bit
Internet address of the next gateway to which traffic is directed by
the route identified by the remainder of the name for said variable.
<span class="h5"><a class="selflink" id="section-6.5.3.2" href="#section-6.5.3.2">6.5.3.2</a>. The _GW_pr_in_rt_type Variable Class</span>
A variable such that the initial portion of its name is represented
symbolically as "_GW_pr_in_rt_type" and numerically as:
01 04 01 02 02
has an integer value that represents the type of the route identified
by the remainder of the name for said variable. Route types are
identified according to the conventions described in Appendix 3.
<span class="h5"><a class="selflink" id="section-6.5.3.3" href="#section-6.5.3.3">6.5.3.3</a>. The _GW_pr_in_rt_how-learned Variable Class</span>
A variable such that the initial portion of its name is represented
symbolically as "_GW_pr_in_rt_how-learned" and numerically as:
01 04 01 02 03
has an octet string value that represents the source of the
information from which the route identified by the remainder of the
name for said variable is generated. The meaningful values of such a
variable are: "STATIC," "EGP," and "RIP."
<span class="h5"><a class="selflink" id="section-6.5.3.4" href="#section-6.5.3.4">6.5.3.4</a>. The _GW_pr_in_rt_metric0 Variable Class</span>
A variable such that the initial portion of its name is represented
symbolically as "_GW_pr_in_rt_metric0" and numerically as:
01 04 01 02 04
has an integer value that represents the quality (in terms of cost,
distance from the ultimate destination, or other metric) of the route
identified by the remainder of the name for said variable.
<span class="h5"><a class="selflink" id="section-6.5.3.5" href="#section-6.5.3.5">6.5.3.5</a>. The _GW_pr_in_rt_metric1 Variable Class</span>
A variable such that the initial portion of its name is represented
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
symbolically as "_GW_pr_in_rt_metric1" and numerically as:
01 04 01 02 05
has an integer value that represents the quality (in terms of cost,
distance from the ultimate destination, or other metric) of the route
identified by the remainder of the name for said variable.
<span class="h3"><a class="selflink" id="section-6.6" href="#section-6.6">6.6</a>. DECnet Protocol Variables</span>
This section describes variables that represent information related
to protocols and mechanisms of the DEC Digital Network Architecture.
DEC and DECnet are registered trademarks of Digital Equipment
Corporation.
<span class="h3"><a class="selflink" id="section-6.7" href="#section-6.7">6.7</a>. XNS Protocol Variables</span>
This section describes variables that represent information related
to protocols and mechanisms of the Xerox Network System. Xerox
Network System and XNS are registered trademarks of the XEROX
Corporation.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Implementation-Specific Variables</span>
Additional variables that may be presented for inspection or
manipulation by particular protocol entity implementations are
described in Appendices to this document.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. References</span>
[<a id="ref-1">1</a>] CCITT, "Message Handling Systems: Presentation Transfer
Syntax and Notation", Recommendation X.409, 1984.
[<a id="ref-2">2</a>] Postel, J., "User Datagram Protocol", <a href="./rfc768">RFC-768</a>,
USC/Information Sciences Institute, August 1980.
[<a id="ref-3">3</a>] Postel, J., "Internet Protocol", <a href="./rfc760">RFC-760</a>, USC/Information
Sciences Institute, January 1980.
[<a id="ref-4">4</a>] Rosen, E., "Exterior Gateway Protocol", <a href="./rfc827">RFC-827</a>, Bolt
Beranek and Newman, October 1982.
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. Appendix 1: Network Type Representation</span>
Numeric representations for various types of networks are presented
below:
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
Value Network Type
====================
0 Unspecified
1 IEEE 802.3 MAC
2 IEEE 802.4 MAC
3 IEEE 802.5 MAC
4 Ethernet
5 ProNET-80
6 ProNET-10
7 FDDI
8 X.25
9 Point-to-Point Serial
10 Proprietary Point-to-Point Serial
11 ARPA 1822 HDH
12 ARPA 1822
13 AppleTalk
14 StarLAN
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. Appendix 2: Network Status Representation</span>
Numeric representations for network status are presented below.
Value Network Status
======================
0 Interface Operating Normally
1 Interface Not Present
2 Interface Disabled
3 Interface Down
4 Interface Attempting Link
<span class="h2"><a class="selflink" id="section-11" href="#section-11">11</a>. Appendix 3: Route Type Representation</span>
Numeric representations for route types are presented below.
Value Route Type
==================
0 Route to Nowhere -- ignored
1 Route to Directly Connected Network
2 Route to a Remote Host
3 Route to a Remote Network
4 Route to a Sub-Network
<span class="h2"><a class="selflink" id="section-12" href="#section-12">12</a>. Appendix 4: Initial Implementation Strategy</span>
The initial objective of implementing the protocol specified in this
document is to provide a mechanism for monitoring Internet gateways.
While the protocol design makes some provision for gateway management
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
functions as well, this aspect of the design is not fully developed
and needs further refinement before a generally useful implementation
could be produced. Accordingly, initial implementations will not
generate or respond to the optional Set Request message type.
The protocol defined here may be subsequently refined based upon
experience with early implementations or upon further study of the
problem of gateway management. Moreover, it may be superceded by
other proposals in the area of gateway monitoring and control.
Implementations of the authentication protocol specified in this
document are likely to evolve in response to the particular security
and privacy needs of its users. While, in general, the association
between particular half-sessions of the authentication protocol and
the described triplets of functions is specific to an implementation
and beyond the scope of this document, the desire for immediate
interoperability among initial implementations of this protocol is
best served by the temporary adoption of a common authentication
scheme. Accordingly, initial implementations will associate with
every possible half-session a triplet of functions that realizes a
trivial authentication mechanism:
(1) The authentication function is defined to have the value
TRUE over the entire domain of authentication protocol
messages.
(2) The message interpretation function is defined to be the
identity function.
(3) The message representation function is defined to be the
identity function.
Because this initial posture with respect to authentication is not
likely to remain acceptable indefinitely, implementors are urged to
adopt designs that isolate authentication mechanism as much as
possible from other components of the implementation.
<span class="h2"><a class="selflink" id="section-13" href="#section-13">13</a>. Appendix 5: Routing Information Propagation Variables</span>
This section describes a set of related variables that characterize
the sources and destinations of routing information propagated by
various routing protocols. These variables have meaning only for
those routing protocol implementations that afford greater
flexibility in propagating routing information than is required by
the various routing protocol specifications.
Each IP interface afforded by the configuration of the gateway over
which routing information may propagate via a routing protocol
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
(target interface) is named by a string of four octets that literally
represents the IP address associated with said protocol interface.
Each IP protocol interface afforded by the configuration of the
gateway over which routing information may arrive via any routing
protocol (source interface) is named by a string of four octets that
literally represents the IP address associated with said protocol
interface.
Each routing protocol by which a gateway receives information that it
uses to route IP traffic (source routing protocol) is named by a
single-octet string according to the conventions set forth in
Appendix 6 of this document.
Each routing protocol by which a gateway propagates routing
information used by other hosts or gateways to route IP traffic
(target routing protocol) is named by a single-octet string according
to the conventions set forth in Appendix 6 of this document.
A variable such that the initial portion of its name is the
concatenation of:
(1) the octet string represented symbolically as "_GW_pr_in_rif"
and numerically as 01 04 01 04 followed by:
(2) the name of a target routing protocol followed by
(3) the name of a target interface followed by
(4) the name of a source routing protocol followed by
(5) the name of a source interface
has an integer value that characterizes the propagation of routing
information between the sources and destinations of such information
that are identified by the initial portion of that variable's name. A
non-zero value for such a variable indicates that routing information
received via the source routing protocol named by the fourth
component of the variable name on the source interface named by its
fifth component is propagated via the target routing protocol named
by the second component of the variable name over the target
interface named by its third component. A zero value for such a
variable indicates that routing information received via the source
routing protocol on the source interface identified in the variable
name is NOT propagated via the target routing protocol over the
target interface identified in the variable name.
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
<span class="h2"><a class="selflink" id="section-14" href="#section-14">14</a>. Appendix 6: Routing Protocol Representation</span>
Numeric representations for routing protocols are presented below.
Value Routing Protocol
========================
0 None -- Reserved
1 Berkeley RIP Version 1
2 EGP
3 GGP
4 Hello
5 Other IGRP
<span class="h2"><a class="selflink" id="section-15" href="#section-15">15</a>. Appendix 7: Proteon p4200 Release 7.4 Variables</span>
This section describes implementation-specific variables presented by
the implementation of this protocol in Software Release 7.4 for the
Proteon p4200 Internet Router. These variable definitions are
subject to change without notice.
<span class="h3"><a class="selflink" id="section-15.1" href="#section-15.1">15.1</a>. The Network Interface Variables</span>
This section describes a related set of variables that represent
attributes of a network interface in the Proteon p4200 Internet
Router gateway. Each such network interface is uniquely named by an
implementation-specific octet string of length 1.
<span class="h4"><a class="selflink" id="section-15.1.1" href="#section-15.1.1">15.1.1</a>. The Generic Network Interface Variables</span>
This section describes a related set of variables that represent
attributes common to all network interfaces in the Proteon p4200
Internet Router gateway. Each generic network interface of a p4200
configuration is uniquely named by the concatenation of the octet
string represented symbolically as "_GW_impl_Proteon_p4200-R7.4_net-
if" and numerically as:
01 FF 01 01 01
followed by the name of said network interface as described above.
<span class="h5"><a class="selflink" id="section-15.1.1.1" href="#section-15.1.1.1">15.1.1.1</a>. The Generic _ovfl-in Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for a generic network interface followed by
the octet string represented symbolically as "_ovfl-in" and
numerically as 01, has an integer value that represents the number of
input packets dropped due to gateway congestion for the network
interface identified by the initial portion of its name.
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
<span class="h5"><a class="selflink" id="section-15.1.1.2" href="#section-15.1.1.2">15.1.1.2</a>. The Generic _ovfl-out Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for a generic network interface followed by
the octet string represented symbolically as "_ovfl-out" and
numerically as 02, has an integer value that represents the number of
output packets dropped due to gateway congestion for the network
interface identified by the initial portion of its name.
<span class="h5"><a class="selflink" id="section-15.1.1.3" href="#section-15.1.1.3">15.1.1.3</a>. The Generic _slftst-pass Variable Class </span> A variable
such that the initial portion of its name is the concatenation of the
name for a generic network interface followed by the octet string
represented symbolically as "_slftst-pass" and numerically as 03, has
an integer value that represents the number of times the interface
self-test procedure succeeded for the network interface identified by
the initial portion of its name.
<span class="h5"><a class="selflink" id="section-15.1.1.4" href="#section-15.1.1.4">15.1.1.4</a>. The Generic _slftst-fail Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for a generic network interface followed by
the octet string represented symbolically as "_slftst-fail" and
numerically as 04, has an integer value that represents the number of
times the interface self-test procedure failed for the network
interface identified by the initial portion of its name.
<span class="h5"><a class="selflink" id="section-15.1.1.5" href="#section-15.1.1.5">15.1.1.5</a>. The Generic _maint-fail Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for a generic network interface followed by
the octet string represented symbolically as "_maint-fail" and
numerically as 06, has an integer value that represents the number of
times the network maintenance procedure failed for the network
interface identified by the initial portion of its name.
<span class="h5"><a class="selflink" id="section-15.1.1.6" href="#section-15.1.1.6">15.1.1.6</a>. The Generic _csr Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for a generic network interface followed by
the octet string represented symbolically as "_csr" and numerically
as 07, has an integer value that represents the internal address of
the device CSR for the network interface identified by the initial
portion of its name.
<span class="h5"><a class="selflink" id="section-15.1.1.7" href="#section-15.1.1.7">15.1.1.7</a>. The Generic _vec Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for a generic network interface followed by
the octet string represented symbolically as "_vec" and numerically
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
as 08, has an integer value that identifies the device interrupt
vector used by the network interface identified by the initial
portion of its name.
<span class="h4"><a class="selflink" id="section-15.1.2" href="#section-15.1.2">15.1.2</a>. The ProNET Network Interface Variables</span>
This section describes a related set of variables that represent
attributes of a ProNET type network interface in the Proteon p4200
Internet Router gateway. Each network interface of a p4200
configuration that supports ProNET media is uniquely named by the
concatenation of the octet string represented symbolically as
"_GW_impl_Proteon_p4200-R7.4_devpn" and numerically as:
01 FF 01 01 04
followed by the name of said network interface as described above.
<span class="h5"><a class="selflink" id="section-15.1.2.1" href="#section-15.1.2.1">15.1.2.1</a>. The ProNET _node-number Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for a ProNET type network interface
followed by the octet string represented symbolically as "_node-
number" and numerically as 01, has an integer value that represents
the ProNET node number associated with the network interface
identified by the initial portion of its name.
<span class="h5"><a class="selflink" id="section-15.1.2.2" href="#section-15.1.2.2">15.1.2.2</a>. The ProNET _in-data-present Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for a ProNET type network interface
followed by the octet string represented symbolically as "_in-data-
present" and numerically as 02, has an integer value that represents
the number of times that unread data was present in the input packet
buffer for the network interface dentified by the initial portion of
its name.
<span class="h5"><a class="selflink" id="section-15.1.2.3" href="#section-15.1.2.3">15.1.2.3</a>. The ProNET _in-overrun Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for a ProNET type network interface
followed by the octet string represented symbolically as "_in-
overrun" and numerically as 03, has an integer value that represents
the number of times that a packet copied from the ring exceeded the
size of the packet input buffer on the network interface identified
by the initial portion of its name.
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
<span class="h5"><a class="selflink" id="section-15.1.2.4" href="#section-15.1.2.4">15.1.2.4</a>. The ProNET _in-odd-byte-cnt Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for a ProNET type network interface
followed by the octet string represented symbolically as "_in-odd-
byte-cnt" and numerically as 04, has an integer value that represents
the number of times that a packet was received with an odd number of
bytes on the network interface identified by the initial portion of
its name.
<span class="h5"><a class="selflink" id="section-15.1.2.5" href="#section-15.1.2.5">15.1.2.5</a>. The ProNET _in-parity-error Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for a ProNET type network interface
followed by the octet string represented symbolically as "_in-
parity-error" and numerically as 05, has an integer value that
represents the number of times that a parity error was detected in a
packet copied from the ring on the network interface identified by
the initial portion of its name.
<span class="h5"><a class="selflink" id="section-15.1.2.6" href="#section-15.1.2.6">15.1.2.6</a>. The ProNET _in-bad-format Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for a ProNET type network interface
followed by the octet string represented symbolically as "_in-bad-
format" and numerically as 06, has an integer value that represents
the number of times that a format error was detected in a packet
copied from the ring on the network interface identified by the
initial portion of its name.
<span class="h5"><a class="selflink" id="section-15.1.2.7" href="#section-15.1.2.7">15.1.2.7</a>. The ProNET _not-in-ring Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for a ProNET type network interface
followed by the octet string represented symbolically as "_not-in-
ring" and numerically as 07, has an integer value that represents the
number of times that the ProNET wire center relays were detected in
an unenergized state for the network interface identified by the
initial portion of its name.
<span class="h5"><a class="selflink" id="section-15.1.2.8" href="#section-15.1.2.8">15.1.2.8</a>. The ProNET _out-ring-inits Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for a ProNET type network interface
followed by the octet string represented symbolically as "_out-ring-
inits" and numerically as 08, has an integer value that represents
the number of times that ring initialization has been attempted on
the network interface identified by the initial portion of its name.
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
<span class="h5"><a class="selflink" id="section-15.1.2.9" href="#section-15.1.2.9">15.1.2.9</a>. The ProNET _out-bad-format Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for a ProNET type network interface
followed by the octet string represented symbolically as "_out-bad-
format" and numerically as 09, has an integer value that represents
the number of times that an improperly formatted packet was detected
in the course of an output operation on the network interface
identified by the initial portion of its name.
<span class="h5"><a class="selflink" id="section-15.1.2.10" href="#section-15.1.2.10">15.1.2.10</a>. The ProNET _out-timeout Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for a ProNET type network interface
followed by the octet string represented symbolically as "_out-
timeout" and numerically as 0A, has an integer value that represents
the number of times that an attempt to originate a message has been
delayed by more than 700 ms on the network interface identified by
the initial portion of its name.
<span class="h4"><a class="selflink" id="section-15.1.3" href="#section-15.1.3">15.1.3</a>. The Ethernet Network Interface Variables</span>
This section describes a related set of variables that represent
attributes of an Ethernet type network interface in the Proteon p4200
Internet Router gateway. Each network interface of a p4200
configuration that supports Ethernet media is uniquely named by the
concatenation of the octet string represented symbolically as
"_GW_impl_Proteon_p4200-R7.4_dev-ie" and numerically as:
01 FF 01 01 03
followed by the name of said network interface as described above.
<span class="h5"><a class="selflink" id="section-15.1.3.1" href="#section-15.1.3.1">15.1.3.1</a>. The Ethernet _phys-addr Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for an Ethernet type network interface
followed by the octet string represented symbolically as "_phys-addr"
and numerically as 01 has an octet string value that literally
represents the Ethernet station address associated with the network
interface identified by the initial portion of its name.
<span class="h5"><a class="selflink" id="section-15.1.3.2" href="#section-15.1.3.2">15.1.3.2</a>. The Ethernet _input-ovfl Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for an Ethernet type network interface
followed by the octet string represented symbolically as "_input-
ovfl" and numerically as 02, has an integer value that represents the
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
number of times the size of a received frame exceeded the maximum
allowable for the network interface identified by the initial portion
of its name.
<span class="h5"><a class="selflink" id="section-15.1.3.3" href="#section-15.1.3.3">15.1.3.3</a>. The Ethernet _input-dropped Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for an Ethernet type network interface
followed by the octet string represented0 symbolically as "_input-
dropped" and numerically as 03, has an integer value that represents
the number of times the loss of one or more frames was detected on
the network interface identified by the initial portion of its name.
<span class="h5"><a class="selflink" id="section-15.1.3.4" href="#section-15.1.3.4">15.1.3.4</a>. The Ethernet _output-retry Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for an Ethernet type network interface
followed by the octet string represented symbolically as "_output-
retry" and numerically as 04, has an integer value that represents
the number of output operations retried as the result of a
transmission failure on the network interface identified by the
initial portion of its name.
<span class="h5"><a class="selflink" id="section-15.1.3.5" href="#section-15.1.3.5">15.1.3.5</a>. The Ethernet _output-fail Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for an Ethernet type network interface
followed by the octet string represented symbolically as "_output-
fail" and numerically as 05, has an integer value that represents the
number of failed output operations detected on the network interface
identified by the initial portion of its name.
<span class="h5"><a class="selflink" id="section-15.1.3.6" href="#section-15.1.3.6">15.1.3.6</a>. The Ethernet _excess-coll Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for an Ethernet type network interface
followed by the octet string represented symbolically as "_excess-
coll" and numerically as 06, has an integer value that represents the
number of times a transmit frame incurred 16 successive collisions
when attempting media access via the network interface identified by
the initial portion of its name.
<span class="h5"><a class="selflink" id="section-15.1.3.7" href="#section-15.1.3.7">15.1.3.7</a>. The Ethernet _frag-rcvd Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for an Ethernet type network interface
followed by the octet string represented symbolically as "_frag-rcvd"
and numerically as 07, has an integer value that represents the
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 30]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-31" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
number of collision fragments (i.e., "runt packets") that were
received and filtered by the controller for the network interface
identified by the initial portion of its name.
<span class="h5"><a class="selflink" id="section-15.1.3.8" href="#section-15.1.3.8">15.1.3.8</a>. The Ethernet _frames-lost Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for an Ethernet type network interface
followed by the octet string represented symbolically as "_frames-
lost" and numerically as 08, has an integer value that represents the
number of frames not accepted by the Receive FIFO due to insufficient
space for the network interface identified by the initial portion of
its name.
<span class="h5"><a class="selflink" id="section-15.1.3.9" href="#section-15.1.3.9">15.1.3.9</a>. The Ethernet _multicst-accept Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for an Ethernet type network interface
followed by the octet string represented symbolically as "_multicst-
accept" and numerically as 09, has an integer value that represents
the number of frames received with a multicast-group destination
address that matches one of those assigned to the controller for the
network interface identified by the initial portion of said variable
name.
<span class="h5"><a class="selflink" id="section-15.1.3.10" href="#section-15.1.3.10">15.1.3.10</a>. The Ethernet _multicst-reject Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for an Ethernet type network interface
followed by the octet string represented symbolically as "_multicst-
reject" and numerically as 0A, has an integer value that represents
the number of frames detected as having a multicast-group destination
address that matches none of those assigned to the controller for the
network interface identified by the initial portion of said variable
name.
<span class="h5"><a class="selflink" id="section-15.1.3.11" href="#section-15.1.3.11">15.1.3.11</a>. The Ethernet _crc-error Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for an Ethernet type network interface
followed by the octet string represented symbolically as "_crc-error"
and numerically as 0B, has an integer value that represents the
number of frames received with a CRC error on the network interface
identified by the initial portion of its name.
<span class="h5"><a class="selflink" id="section-15.1.3.12" href="#section-15.1.3.12">15.1.3.12</a>. The Ethernet _alignmnt-error Variable Class</span>
A variable such that the initial portion of its name is the
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 31]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-32" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
concatenation of the name for an Ethernet type network interface
followed by the octet string represented symbolically as "_alignmnt-
error" and numerically as 0C, has an integer value that represents
the number of frames received with an alignment error on the network
interface identified by the initial portion of its name. A received
frame is said to have an alignment error if its received length is
not an integral multiple of 8 bits.
<span class="h5"><a class="selflink" id="section-15.1.3.13" href="#section-15.1.3.13">15.1.3.13</a>. The Ethernet _collisions Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for an Ethernet type network interface
followed by the octet string represented symbolically as
"_collisions" and numerically as 0D, has an integer value that
represents the number of collisions incurred during transmissions on
the network interface identified by the initial portion of its name.
<span class="h5"><a class="selflink" id="section-15.1.3.14" href="#section-15.1.3.14">15.1.3.14</a>. The Ethernet _out-of-window-coll Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for an Ethernet type network interface
followed by the octet string represented symbolically as "_out-of-
window-coll" and numerically as 0E, has an integer value that
represents the number of out-ofwindow collisions incurred during
transmissions on the network interface identified by the initial
portion of its name. Outof-window collisions are those occurring
after the first 51.2 microseconds of slot time.
<span class="h4"><a class="selflink" id="section-15.1.4" href="#section-15.1.4">15.1.4</a>. The Serial Network Interface Variables</span>
This section describes a related set of variables that represent
attributes of an serial line type network interface in the Proteon
p4200 Internet Router gateway. Each network interface of a p4200
configuration that supports serial communications is uniquely named
by the concatenation of the octet string represented symbolically as
"_GW_impl_Proteon_p4200-R7.4_dev-sl" and numerically as:
01 FF 01 01 05
followed by the name of said network interface as described above.
<span class="h5"><a class="selflink" id="section-15.1.4.1" href="#section-15.1.4.1">15.1.4.1</a>. The Serial _tx-pkts Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for a serial line type network interface
followed by the octet string represented symbolically as "_tx-pkts"
and numerically as 01, has an integer value that represents the
number of packets transmitted on the network interface identified by
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 32]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-33" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
the initial portion of its name.
<span class="h5"><a class="selflink" id="section-15.1.4.2" href="#section-15.1.4.2">15.1.4.2</a>. The Serial _tx-framing-error Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for a serial line type network interface
followed by the octet string represented symbolically as "_tx-
framing-error" and numerically as 02, has an integer value that
represents the number of transmission framing errors for the network
interface identified by the initial portion of its name.
<span class="h5"><a class="selflink" id="section-15.1.4.3" href="#section-15.1.4.3">15.1.4.3</a>. The Serial _tx-underrns Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for a serial line type network interface
followed by the octet string represented symbolically as "_tx-
underrns" and numerically as 03, has an integer value that represents
the number of transmission underrun errors for the network interface
identified by the initial portion of its name.
<span class="h5"><a class="selflink" id="section-15.1.4.4" href="#section-15.1.4.4">15.1.4.4</a>. The Serial _tx-no-dcd Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for a serial line type network interface
followed by the octet string represented symbolically as "_tx-no-dcd"
and numerically as 04, has an integer value that represents the
number of times transmission failed due to absence of the EIA Data
Carrier Detect signal on the network interface identified by the
initial portion of its name.
<span class="h5"><a class="selflink" id="section-15.1.4.5" href="#section-15.1.4.5">15.1.4.5</a>. The Serial _tx-no-cts Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for a serial line type network interface
followed by the octet string represented symbolically as "_tx-no-cts"
and numerically as 05, has an integer value that represents the
number of times transmission failed due to absence of the EIA Clear
To Send signal on the network interface identified by the initial
portion of its name.
<span class="h5"><a class="selflink" id="section-15.1.4.6" href="#section-15.1.4.6">15.1.4.6</a>. The Serial _tx-no-dsr Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for a serial line type network interface
followed by the octet string represented symbolically as "_tx-no-dsr"
and numerically as 06, has an integer value that represents the
number of times transmission failed due to absence of the EIA Data
Set Ready signal on the network interface identified by the initial
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 33]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-34" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
portion of its name.
<span class="h5"><a class="selflink" id="section-15.1.4.7" href="#section-15.1.4.7">15.1.4.7</a>. The Serial _rx-pkts Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for a serial line type network interface
followed by the octet string represented symbolically as "_rx-pkts"
and numerically as 07, has an integer value that represents the
number of packets received on the network interface identified by the
initial portion of its name.
<span class="h5"><a class="selflink" id="section-15.1.4.8" href="#section-15.1.4.8">15.1.4.8</a>. The Serial _rx-framing-err Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for a serial line type network interface
followed by the octet string represented symbolically as "_rx-
framing-err" and numerically as 08, has an integer value that
represents the number of receive framing errors on the network
interface identified by the initial portion of its name.
<span class="h5"><a class="selflink" id="section-15.1.4.9" href="#section-15.1.4.9">15.1.4.9</a>. The Serial _rx-overrns Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for a serial line type network interface
followed by the octet string represented symbolically as "_rx-
overrns" and numerically as 09, has an integer value that represents
the number of receive overrun errors on the network interface
identified by the initial portion of its name.
<span class="h5"><a class="selflink" id="section-15.1.4.10" href="#section-15.1.4.10">15.1.4.10</a>. The Serial _rx-aborts Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for a serial line type network interface
followed by the octet string represented symbolically as "_rx-aborts"
and numerically as 0A, has an integer value that represents the
number of aborted frames received on the network interface identified
by the initial portion of its name.
<span class="h5"><a class="selflink" id="section-15.1.4.11" href="#section-15.1.4.11">15.1.4.11</a>. The Serial _rx-crc-err Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for a serial line type network interface
followed by the octet string represented symbolically as "_rx-crc-
err" and numerically as 0B, has an integer value that represents the
number of frames received with CRC errors on the network interface
identified by the initial portion of its name.
<span class="grey">Davin, Case, Fedor and Schoffstall [Page 34]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-35" ></span>
<span class="grey"><a href="./rfc1028">RFC 1028</a> Simple Gateway Monitoring November 1987</span>
<span class="h5"><a class="selflink" id="section-15.1.4.12" href="#section-15.1.4.12">15.1.4.12</a>. The Serial _rx-buf-ovfl Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for a serial line type network interface
followed by the octet string represented symbolically as "_rx-buf-
ovfl" and numerically as 0C, has an integer value that represents the
number of received frames whose size exceeded the maximum allowable
on the network interface identified by the initial portion of its
name.
<span class="h5"><a class="selflink" id="section-15.1.4.13" href="#section-15.1.4.13">15.1.4.13</a>. The Serial _rx-buf-locked Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for a serial line type network interface
followed by the octet string represented symbolically as "_rx-buf-
locked" and numerically as 0D, has an integer value that represents
the number of received frames lost for lack of an available buffer on
the network interface identified by the initial portion of its name.
<span class="h5"><a class="selflink" id="section-15.1.4.14" href="#section-15.1.4.14">15.1.4.14</a>. The Serial _rx-line-speed Variable Class</span>
A variable such that the initial portion of its name is the
concatenation of the name for a serial line type network interface
followed by the octet string represented symbolically as "_rx-line-
speed" and numerically as 0E, has an integer value that represents an
estimate of serial line bandwidth in bits per second for the network
interface identified by the initial portion of its name.
Davin, Case, Fedor and Schoffstall [Page 35]
</pre>
|