1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
classMapC.addSC("exit", "Exit from QoS class-map configuration mode");
classMapC.addSC("match", "classification criteria");
classMapC.match.addSC("access-group", "access group");
classMapC.match["access-group"].addSC("<1-2699>", "Access list index");
classMapC.match["access-group"].addSC("name", "Named Access List");
classMapC.match["access-group"].name.addSC("WORD", "Access List name");
classMapC.match.addSC("input-interface", "Select an input interface to match");
classMapC.match["input-interface"].addSC("FastEthernet", "FastEthernet IEEE 802.3");
classMapC.match["input-interface"].FastEthernet.addSC("<0-2>", "FastEthernet interface number");
classMapC.match["input-interface"].addSC("Null", "Null interface");
classMapC.match["input-interface"].Null.addSC("<0-0>", "Null interface number");
classMapC.match["input-interface"].addSC("VLAN", "Switch VLAN Virtual Interface");
classMapC.match["input-interface"].VLAN.addSC("<1-1001>", "VLAN interface number");
classMapC.match.addSC("protocol", "Protocol");
classMapC.match.protocol.addSC("arp", "IP ARP");
classMapC.match.protocol.addSC("cdp", "Cisco Discovery Protocol");
classMapC.match.protocol.addSC("compressedtcp", "Compressed TCP");
classMapC.match.protocol.addSC("ip", "IP");
classMapC.addSC("no", "Negate or set default values of a command");
|