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
|
routerEIGRPC.addSC("auto-summary", "Enable automatic network number summarization");
routerEIGRPC.addSC("default", "Set a command to its defaults");
routerEIGRPC.addSC("default-information", "Control distribution of default information");
routerEIGRPC.addSC("default-metric", "Set metric of redistributed routes");
routerEIGRPC.addSC("distance", "Define an administrative distance");
routerEIGRPC.addSC("distribute-list", "Filter networks in routing updates");
routerEIGRPC.addSC("eigrp", "EIGRP specific commands");
routerEIGRPC.addSC("exit", "Exit from routing protocol configuration mode");
routerEIGRPC.addSC("help", "Description of the interactive help system");
routerEIGRPC.addSC("maximum-paths", "Forward packets over multiple paths");
routerEIGRPC.addSC("metric", "Modify IGRP routing metrics and parameters");
routerEIGRPC.addSC("neighbor", "Specify a neighbor router");
routerEIGRPC.addSC("network", "Enable routing on an IP network");
routerEIGRPC.network.addSC("A.B.C.D", "Network number");
routerEIGRPC.network["A.B.C.D"].addSC("A.B.C.D", "EIGRP wild card bits");
routerEIGRPC.addSC("no", "Negate a command or set its defaults");
routerEIGRPC.no.addSC("auto-summary", "Enable automatic network number summarization");
routerEIGRPC.no.addSC("default-information", "Control distribution of default information");
routerEIGRPC.no.addSC("default-metric", "Set metric of redistributed routes");
routerEIGRPC.no.addSC("distance", "Define an administrative distance");
routerEIGRPC.no.addSC("distribute-list", "Filter networks in routing updates");
routerEIGRPC.no.addSC("eigrp", "EIGRP specific commands");
routerEIGRPC.no.addSC("maximum-paths", "Forward packets over multiple paths");
routerEIGRPC.no.addSC("metric", "Modify IGRP routing metrics and parameters");
routerEIGRPC.no.addSC("neighbor", "Specify a neighbor router");
routerEIGRPC.no.addSC("network", "Enable routing on an IP network");
routerEIGRPC.addSC("offset-list", "Add or subtract offset from IGRP or RIP metrics");
routerEIGRPC.addSC("passive-interface", "Suppress routing updates on an interface");
routerEIGRPC["passive-interface"].addSC("Async", "Async interface");
routerEIGRPC["passive-interface"].addSC("Dialer", "Dialer interface");
routerEIGRPC["passive-interface"].addSC("FastEthernet", "FastEthernet IEEE 802.3");
routerEIGRPC["passive-interface"].addSC("Loopback", "Loopback interface");
routerEIGRPC["passive-interface"].addSC("Null", "Null interface");
routerEIGRPC["passive-interface"].addSC("Serial", "Serial");
routerEIGRPC["passive-interface"].addSC("default", "Suppress routing updates on all interfaces");
routerEIGRPC.addSC("redistribute", "Redistribute information from another routing protocol");
routerEIGRPC.addSC("timers", "Adjust routing timers");
routerEIGRPC.addSC("variance", "Control load balancing variance");
|