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
|
subintDialerC.addSC("arp", "Set arp type (arpa, probe, snap) or timeout");
subintDialerC.addSC("bandwidth", "Set bandwidth informational parameter");
subintDialerC.bandwidth.addSC("<1-10000000>", "Bandwidth in kilobits");
subintDialerC.addSC("bridge-group", "Transparent bridging interface parameters");
subintDialerC.addSC("carrier-delay", "Specify delay for interface transitions");
subintDialerC.addSC("cdp", "CDP interface subcommands");
subintDialerC.addSC("default", "Set a command to its defaults");
subintDialerC.addSC("delay", "Specify interface throughput delay");
subintDialerC.addSC("description", "Interface specific description");
subintDialerC.addSC("dxi", "ATM-DXI configurat");
subintDialerC.addSC("exit", "Exit from interface configuration mode");
subintDialerC.addSC("ip", "Interface Internet Protocol config commands");
subintDialerC.ip.addSC("access-group", "Specify access control for packets");
subintDialerC.ip.addSC("accounting", "Enable IP accounting on this interface");
subintDialerC.ip.addSC("address", "Set the IP address of an interface");
subintDialerC.ip.address.addSC("A.B.C.D", "IP address");
subintDialerC.ip.address["A.B.C.D"].addSC("A.B.C.D", "IP subnet mask");
subintDialerC.ip.address["A.B.C.D"]["A.B.C.D"].addSC("secondary", "Make this IP address a secondary address");
subintDialerC.ip.addSC("authentication", "authentication subcommands");
subintDialerC.ip.addSC("bandwidth-percent", "Set EIGRP bandwidth limit");
subintDialerC.ip["bandwidth-percent"].addSC("eigrp", "Enhanced Interior Gateway Routing Protocol (EIGRP)");
subintDialerC.ip["bandwidth-percent"].eigrp.addSC("<1-65535>", "Autonomous system number");
subintDialerC.ip["bandwidth-percent"].eigrp["<1-65535>"].addSC("<1-999999>", "Maximum bandwidth percentage that EIGRP may use");
subintDialerC.ip.addSC("broadcast-address", "Set the broadcast address of an interface");
subintDialerC.ip.addSC("cef", "Cisco Express Fowarding interface commands");
subintDialerC.ip.addSC("cgmp", "Enable/disable CGMP");
subintDialerC.ip.addSC("directed-broadcast", "Enable forwarding of directed broadcasts");
subintDialerC.ip.addSC("dvmrp", "DVMRP interface commands");
subintDialerC.ip.addSC("hello-interval", "Configures IP-EIGRP hello interval");
subintDialerC.ip.addSC("helper-address", "Specify a destination address for UDP broadcasts");
subintDialerC.ip.addSC("hold-time", "Configures IP-EIGRP hold time");
subintDialerC.ip.addSC("igmp", "IGMP interface commands");
subintDialerC.ip.addSC("irdp", "ICMP Router Discovery Protocol");
subintDialerC.ip.addSC("load-sharing", "Style of load sharing");
subintDialerC.ip.addSC("mask-reply", "Enable sending ICMP Mask Reply messages");
subintDialerC.ip.addSC("mroute-cache", "Enable switching cache for incoming multicast packets");
subintDialerC.ip.addSC("mtu", "Set IP Maximum Transmission Unit");
subintDialerC.ip.addSC("multicast", "IP multicast interface commands");
subintDialerC.ip.addSC("nat", "NAT interface commands");
subintDialerC.ip.nat.addSC("inside", "Inside interface for address translation");
subintDialerC.ip.nat.addSC("outside", "Outside interface for address translation");
subintDialerC.ip.addSC("pim", "PIM interface commands");
subintDialerC.ip.addSC("policy", "Enable policy routing");
subintDialerC.ip.addSC("probe", "Enable HP Probe support");
subintDialerC.ip.addSC("proxy-arp", "Enable proxy ARP");
subintDialerC.ip.addSC("rarp-server", "Enable RARP server for static arp entries");
subintDialerC.ip.addSC("redirects", "Enable sending ICMP Redirect messages");
subintDialerC.ip.addSC("rgmp", "Enable/disable RGMP");
subintDialerC.ip.addSC("rip", "Router Information Protocol");
subintDialerC.ip.addSC("route-cache", "Enable fast-switching cache for outgoing packets");
subintDialerC.ip.addSC("rsvp", "RSVP interface commands");
subintDialerC.ip.addSC("sap", "Session Advertisement Protocol interface commands");
subintDialerC.ip.addSC("sdr", "Session Directory Protocol interface commands");
subintDialerC.ip.addSC("security", "DDN IP Security Option");
subintDialerC.ip.addSC("split-horizon", "Perform split horizon");
subintDialerC.ip.addSC("summary-address", "Perform address summarization");
subintDialerC.ip.addSC("unnumbered", "Enable IP processing without an explicit address");
subintDialerC.ip.addSC("unreachables", "Enable sending ICMP Unreachable messages");
subintDialerC.ip.addSC("urd", "Configure URL Rendezvousing");
subintDialerC.ip.addSC("verify", "Enable per packet validation");
subintDialerC.ip.addSC("vrf", "VPN Routing/Forwarding parameters on the interface");
subintDialerC.addSC("llc2", "LLC2 Interface Subcommands");
subintDialerC.addSC("mtu", "Set the interface Maximum Transmission Unit (MTU)");
subintDialerC.addSC("netbios", "Use a defined NETBIOS access list or enable name-caching");
subintDialerC.addSC("no", "Negate a command or set its defaults");
subintDialerC.no.addSC("arp", "Set arp type (arpa, probe, snap) or timeout");
subintDialerC.no.addSC("bandwidth", "Set bandwidth informational parameter");
subintDialerC.no.addSC("bridge-group", "Transparent bridging interface parameters");
subintDialerC.no.addSC("carrier-delay", "Specify delay for interface transitions");
subintDialerC.no.addSC("cdp", "CDP interface subcommands");
subintDialerC.no.addSC("delay", "Specify interface throughput delay");
subintDialerC.no.addSC("description", "Interface specific description");
subintDialerC.no.addSC("dxi", "ATM-DXI configuration commands");
subintDialerC.no.addSC("ip", "Interface Internet Protocol config commands");
subintDialerC.no.ip.addSC("access-group", "Specify access control for packets");
subintDialerC.no.ip.addSC("accounting", "Enable IP accounting on this interface");
subintDialerC.no.ip.addSC("address", "Set the IP address of an interface");
subintDialerC.no.ip.address.addSC("A.B.C.D", "IP address");
subintDialerC.no.ip.address["A.B.C.D"].addSC("A.B.C.D", "IP subnet mask");
subintDialerC.no.ip.address["A.B.C.D"]["A.B.C.D"].addSC("secondary", "Make this IP address a secondary address");
subintDialerC.no.ip.addSC("authentication", "authentication subcommands");
subintDialerC.no.ip.addSC("bandwidth-percent", "Set EIGRP bandwidth limit");
subintDialerC.no.ip.addSC("broadcast-address", "Set the broadcast address of an interface");
subintDialerC.no.ip.addSC("cef", "Cisco Express Fowarding interface commands");
subintDialerC.no.ip.addSC("cgmp", "Enable/disable CGMP");
subintDialerC.no.ip.addSC("directed-broadcast", "Enable forwarding of directed broadcasts");
subintDialerC.no.ip.addSC("dvmrp", "DVMRP interface commands");
subintDialerC.no.ip.addSC("hello-interval", "Configures IP-EIGRP hello interval");
subintDialerC.no.ip.addSC("helper-address", "Specify a destination address for UDP broadcasts");
subintDialerC.no.ip.addSC("hold-time", "Configures IP-EIGRP hold time");
subintDialerC.no.ip.addSC("igmp", "IGMP interface commands");
subintDialerC.no.ip.addSC("irdp", "ICMP Router Discovery Protocol");
subintDialerC.no.ip.addSC("load-sharing", "Style of load sharing");
subintDialerC.no.ip.addSC("mask-reply", "Enable sending ICMP Mask Reply messages");
subintDialerC.no.ip.addSC("mroute-cache", "Enable switching cache for incoming multicast packets");
subintDialerC.no.ip.addSC("mtu", "Set IP Maximum Transmission Unit");
subintDialerC.no.ip.addSC("multicast", "IP multicast interface commands");
subintDialerC.no.ip.addSC("nat", "NAT interface commands");
subintDialerC.no.ip.addSC("pim", "PIM interface commands");
subintDialerC.no.ip.addSC("policy", "Enable policy routing");
subintDialerC.no.ip.addSC("probe", "Enable HP Probe support");
subintDialerC.no.ip.addSC("proxy-arp", "Enable proxy ARP");
subintDialerC.no.ip.addSC("rarp-server", "Enable RARP server for static arp entries");
subintDialerC.no.ip.addSC("redirects", "Enable sending ICMP Redirect messages");
subintDialerC.no.ip.addSC("rgmp", "Enable/disable RGMP");
subintDialerC.no.ip.addSC("rip", "Router Information Protocol");
subintDialerC.no.ip.addSC("route-cache", "Enable fast-switching cache for outgoing packets");
subintDialerC.no.ip.addSC("rsvp", "RSVP interface commands");
subintDialerC.no.ip.addSC("sap", "Session Advertisement Protocol interface commands");
subintDialerC.no.ip.addSC("sdr", "Session Directory Protocol interface commands");
subintDialerC.no.ip.addSC("security", "DDN IP Security Option");
subintDialerC.no.ip.addSC("split-horizon", "Perform split horizon");
subintDialerC.no.ip.addSC("summary-address", "Perform address summarization");
subintDialerC.no.ip.addSC("unnumbered", "Enable IP processing without an explicit address");
subintDialerC.no.ip.addSC("unreachables", "Enable sending ICMP Unreachable messages");
subintDialerC.no.ip.addSC("urd", "Configure URL Rendezvousing");
subintDialerC.no.ip.addSC("verify", "Enable per packet validation");
subintDialerC.no.ip.addSC("vrf", "VPN Routing/Forwarding parameters on the interface");
subintDialerC.no.addSC("llc2", "LLC2 Interface Subcommands");
subintDialerC.no.addSC("mtu", "Set the interface Maximum Transmission Unit (MTU)");
subintDialerC.no.addSC("netbios", "Use a defined NETBIOS access list or enable name-caching");
subintDialerC.addSC("pulse-time", "Force DTR low during resets");
subintDialerC.addSC("service-policy", "Configure QoS Service Policy");
subintDialerC.addSC("shutdown", "Shutdown the selected interface");
subintDialerC.addSC("snapshot", "Configure snapshot support on the interface");
subintDialerC.addSC("timeout", "Define timeout values for this interface");
|