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
|
/*
* 3com.c -- scli 3com mode implementation
*
* Copyright (C) 2002 Juergen Schoenwaelder
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* @(#) $Id: 3com.c 717 2004-10-14 21:16:08Z schoenw $
*/
#include "scli.h"
#include "if-mib.h"
#include "if-mib-proc.h"
#include "productmib.h"
#include "productmib-proc.h"
static void
fmt_vlanStatus(GString *s, productmib_a3ComVlanIfEntry_t *vlanEntry)
{
static GNetSnmpEnum const a3ComVlanIfStatus[] = {
{ PRODUCTMIB_ROWSTATUS_ACTIVE, "A" },
{ PRODUCTMIB_ROWSTATUS_NOTINSERVICE, "S" },
{ PRODUCTMIB_ROWSTATUS_NOTREADY, "R" },
{ 0, NULL }
};
const char *e;
e = fmt_enum(a3ComVlanIfStatus, vlanEntry->a3ComVlanIfStatus);
g_string_sprintfa(s, "%s ", e ? e : "-");
}
static void
vlan_error(scli_interp_t *interp,
productmib_a3ComVlanIfEntry_t *vlanEntry)
{
if (vlanEntry) {
g_string_append(interp->result, "vlan");
if (vlanEntry->a3ComVlanIfGlobalIdentifier) {
g_string_sprintfa(interp->result, " %d", *vlanEntry->a3ComVlanIfGlobalIdentifier);
}
g_string_append(interp->result, ": ");
if (vlanEntry->a3ComVlanIfDescr && vlanEntry->_a3ComVlanIfDescrLength) {
g_string_sprintfa(interp->result, "%.*s: ",
(int) vlanEntry->_a3ComVlanIfDescrLength,
vlanEntry->a3ComVlanIfDescr);
}
}
}
static void
vlan_snmp_error(scli_interp_t *interp,
productmib_a3ComVlanIfEntry_t *vlanEntry)
{
vlan_error(interp, vlanEntry);
scli_snmp_error(interp);
g_string_append(interp->result, "\n");
}
static int
match_vlan(regex_t *regex_vlan,
productmib_a3ComVlanIfEntry_t *vlanEntry)
{
int status;
if (! regex_vlan) {
return 1;
}
if (vlanEntry->a3ComVlanIfDescr) {
char *string = g_malloc0(vlanEntry->_a3ComVlanIfDescrLength + 1);
memcpy(string, vlanEntry->a3ComVlanIfDescr, vlanEntry->_a3ComVlanIfDescrLength);
status = regexec(regex_vlan, string, (size_t) 0, NULL, 0);
g_free(string);
if (status == 0) {
return 1;
}
}
return 0;
}
static int
get_vlan_name_width(productmib_a3ComVlanIfEntry_t **vlanTable)
{
int i, name_width = 6;
if (vlanTable) {
for (i = 0; vlanTable[i]; i++) {
if (vlanTable[i]->_a3ComVlanIfDescrLength > name_width) {
name_width = vlanTable[i]->_a3ComVlanIfDescrLength;
}
}
}
return name_width;
}
static void
fmt_3com_bridge_vlan_info(GString *s,
productmib_a3ComVlanIfEntry_t *vlanEntry,
guchar *bits, gsize bits_len,
int name_width)
{
if (vlanEntry->a3ComVlanIfGlobalIdentifier) {
g_string_sprintfa(s, "%4d ", *vlanEntry->a3ComVlanIfGlobalIdentifier);
} else {
g_string_sprintfa(s, "%4s ", "-");
}
fmt_vlanStatus(s, vlanEntry);
if (vlanEntry->a3ComVlanIfDescr && vlanEntry->_a3ComVlanIfDescrLength) {
g_string_sprintfa(s, " %-*.*s ", name_width,
(int) vlanEntry->_a3ComVlanIfDescrLength,
vlanEntry->a3ComVlanIfDescr);
} else {
g_string_sprintfa(s, " %*s ", name_width, "");
}
g_string_sprintfa(s, "%9d ", vlanEntry->a3ComVlanIfIndex);
fmt_port_set(s, bits, bits_len);
g_string_append(s, "\n");
}
static void
create_port_list(guchar *bits, gsize bits_len, int ifIndex,
if_mib_ifStackEntry_t **ifStackTable,
if_mib_ifEntry_t **ifTable)
{
int i;
memset(bits, 0, bits_len);
for (i = 0; ifStackTable[i]; i++) {
if (ifStackTable[i]->ifStackHigherLayer == ifIndex) {
int l = ifStackTable[i]->ifStackLowerLayer;
// xxx ignore everything which is not a real physical interface
if (l < bits_len * 8) {
bits[l/8] |= (1 <<(7-(l%8)));
}
}
}
}
static int
show_3com_bridge_vlan_info(scli_interp_t *interp, int argc, char **argv)
{
productmib_a3ComVlanIfEntry_t **vlanTable = NULL;
if_mib_ifStackEntry_t **ifStackTable = NULL;
if_mib_ifEntry_t **ifTable = NULL;
regex_t _regex_vlan, *regex_vlan = NULL;
int i, name_width, code = SCLI_OK;
guchar ports[256];
const int mask = (PRODUCTMIB_A3COMVLANIFDESCR
| PRODUCTMIB_A3COMVLANIFTYPE
| PRODUCTMIB_A3COMVLANIFGLOBALIDENTIFIER
| PRODUCTMIB_A3COMVLANIFSTATUS);
g_return_val_if_fail(interp, SCLI_ERROR);
if (argc > 2) {
return SCLI_SYNTAX_NUMARGS;
}
if (argc == 2) {
regex_vlan = &_regex_vlan;
if (regcomp(regex_vlan, argv[1], interp->regex_flags) != 0) {
g_string_assign(interp->result, argv[1]);
return SCLI_SYNTAX_REGEXP;
}
}
if (scli_interp_dry(interp)) {
if (regex_vlan) regfree(regex_vlan);
return SCLI_OK;
}
productmib_get_a3ComVlanIfTable(interp->peer, &vlanTable, mask);
if (interp->peer->error_status) {
code = SCLI_SNMP;
goto done;
}
name_width = get_vlan_name_width(vlanTable);
if (vlanTable) {
if_mib_get_ifStackTable(interp->peer, &ifStackTable, 0);
if (interp->peer->error_status) {
code = SCLI_SNMP;
goto done;
}
if_mib_proc_get_ifTable(interp->peer, &ifTable,
IF_MIB_IFTYPE, interp->epoch);
if (interp->peer->error_status) {
code = SCLI_SNMP;
goto done;
}
g_string_sprintfa(interp->header,
"VLAN STATUS %-*s INTERFACE PORTS", name_width, "NAME");
for (i = 0; vlanTable[i]; i++) {
if (! match_vlan(regex_vlan, vlanTable[i])) continue;
create_port_list(ports, sizeof(ports),
vlanTable[i]->a3ComVlanIfIndex,
ifStackTable, ifTable);
fmt_3com_bridge_vlan_info(interp->result, vlanTable[i],
ports, sizeof(ports), name_width);
}
}
done:
if (vlanTable) productmib_free_a3ComVlanIfTable(vlanTable);
if (ifStackTable) if_mib_free_ifStackTable(ifStackTable);
if (ifTable) if_mib_proc_free_ifTable(ifTable);
if (regex_vlan) regfree(regex_vlan);
return code;
}
static int
create_3com_bridge_vlan(scli_interp_t *interp, int argc, char **argv)
{
productmib_a3ComVlanIfEntry_t **vlanTable = NULL;
gint32 vlanId;
char *end, *name;
size_t name_len;
int i;
g_return_val_if_fail(interp, SCLI_ERROR);
if (argc != 3) {
return SCLI_SYNTAX_NUMARGS;
}
vlanId = strtol(argv[1], &end, 0);
if (*end || vlanId < 0) {
g_string_assign(interp->result, argv[1]);
return SCLI_SYNTAX_NUMBER;
}
name = argv[2];
name_len = strlen(name);
if (name_len < PRODUCTMIB_A3COMVLANIFDESCRMINLENGTH
|| name_len > PRODUCTMIB_A3COMVLANIFDESCRMAXLENGTH) {
g_string_assign(interp->result, name);
return SCLI_SYNTAX_VALUE;
}
if (scli_interp_dry(interp)) {
return SCLI_OK;
}
productmib_get_a3ComVlanIfTable(interp->peer, &vlanTable,
PRODUCTMIB_A3COMVLANIFGLOBALIDENTIFIER
| PRODUCTMIB_A3COMVLANIFDESCR);
if (interp->peer->error_status) {
return SCLI_SNMP;
}
if (vlanTable) {
for (i = 0; vlanTable[i]; i++) {
if (vlanTable[i]->a3ComVlanIfGlobalIdentifier
&& *vlanTable[i]->a3ComVlanIfGlobalIdentifier == vlanId) {
productmib_free_a3ComVlanIfTable(vlanTable);
g_string_sprintf(interp->result, "%d", vlanId);
return SCLI_SYNTAX_VALUE;
}
if (vlanTable[i]->_a3ComVlanIfDescrLength == name_len
&& memcmp(vlanTable[i]->a3ComVlanIfDescr, name, name_len)==0) {
productmib_free_a3ComVlanIfTable(vlanTable);
g_string_assign(interp->result, name);
return SCLI_SYNTAX_VALUE;
}
}
}
if (vlanTable) productmib_free_a3ComVlanIfTable(vlanTable);
productmib_proc_create_vlan(interp->peer, vlanId, name, name_len,
PRODUCTMIB_A3COMVLANTYPE_VLANLAYER2);
if (interp->peer->error_status) {
return SCLI_SNMP;
}
return SCLI_OK;
}
static int
delete_3com_bridge_vlan(scli_interp_t *interp, int argc, char **argv)
{
productmib_a3ComVlanIfEntry_t **vlanTable = NULL;
regex_t _regex_vlan, *regex_vlan = NULL;
int i;
g_return_val_if_fail(interp, SCLI_ERROR);
if (argc != 2) {
return SCLI_SYNTAX_NUMARGS;
}
regex_vlan = &_regex_vlan;
if (regcomp(regex_vlan, argv[1], interp->regex_flags) != 0) {
g_string_assign(interp->result, argv[1]);
return SCLI_SYNTAX_REGEXP;
}
if (scli_interp_dry(interp)) {
regfree(regex_vlan);
return SCLI_OK;
}
productmib_get_a3ComVlanIfTable(interp->peer, &vlanTable,
PRODUCTMIB_A3COMVLANIFDESCR);
if (interp->peer->error_status) {
regfree(regex_vlan);
return SCLI_SNMP;
}
if (vlanTable) {
for (i = 0; vlanTable[i]; i++) {
if (! match_vlan(regex_vlan, vlanTable[i])) continue;
productmib_proc_delete_vlan(interp->peer,
vlanTable[i]->a3ComVlanIfIndex);
if (interp->peer->error_status) {
vlan_snmp_error(interp, vlanTable[i]);
}
}
}
if (vlanTable) productmib_free_a3ComVlanIfTable(vlanTable);
regfree(regex_vlan);
return SCLI_OK;
}
static int
set_3com_bridge_vlan_name(scli_interp_t *interp, int argc, char **argv)
{
productmib_a3ComVlanIfEntry_t **vlanTable = NULL;
gint32 vlanId;
char *end, *name;
size_t name_len;
int i;
g_return_val_if_fail(interp, SCLI_ERROR);
if (argc != 3) {
return SCLI_SYNTAX_NUMARGS;
}
vlanId = strtol(argv[1], &end, 0);
if (*end || vlanId < 0) {
g_string_assign(interp->result, argv[1]);
return SCLI_SYNTAX_NUMBER;
}
name = argv[2];
name_len = strlen(name);
if (name_len < PRODUCTMIB_A3COMVLANIFDESCRMINLENGTH
|| name_len > PRODUCTMIB_A3COMVLANIFDESCRMAXLENGTH) {
g_string_assign(interp->result, name);
return SCLI_SYNTAX_VALUE;
}
if (scli_interp_dry(interp)) {
return SCLI_OK;
}
productmib_get_a3ComVlanIfTable(interp->peer, &vlanTable,
PRODUCTMIB_A3COMVLANIFGLOBALIDENTIFIER);
if (interp->peer->error_status) {
return SCLI_SNMP;
}
if (vlanTable) {
for (i = 0; vlanTable[i]; i++) {
if (vlanTable[i]->a3ComVlanIfGlobalIdentifier
&& *vlanTable[i]->a3ComVlanIfGlobalIdentifier == vlanId) {
vlanTable[i]->a3ComVlanIfDescr = name;
vlanTable[i]->_a3ComVlanIfDescrLength = name_len;
productmib_set_a3ComVlanIfEntry(interp->peer, vlanTable[i],
PRODUCTMIB_A3COMVLANIFDESCR);
if (interp->peer->error_status) {
vlan_snmp_error(interp, vlanTable[i]);
}
}
}
}
if (vlanTable) productmib_free_a3ComVlanIfTable(vlanTable);
return SCLI_OK;
}
static int
set_3com_bridge_vlan_ports(scli_interp_t *interp, int argc, char **argv)
{
productmib_a3ComVlanIfEntry_t **vlanTable = NULL;
regex_t _regex_vlan, *regex_vlan = NULL;
guchar ports[256];
int i;
g_return_val_if_fail(interp, SCLI_ERROR);
if (argc != 3) {
return SCLI_SYNTAX_NUMARGS;
}
regex_vlan = &_regex_vlan;
if (regcomp(regex_vlan, argv[1], interp->regex_flags) != 0) {
g_string_assign(interp->result, argv[1]);
return SCLI_SYNTAX_REGEXP;
}
if (scan_port_set(ports, sizeof(ports), argv[2]) != SCLI_OK) {
if (regex_vlan) regfree(regex_vlan);
g_string_assign(interp->result, argv[2]);
return SCLI_SYNTAX_VALUE;
}
if (scli_interp_dry(interp)) {
if (regex_vlan) regfree(regex_vlan);
return SCLI_OK;
}
productmib_get_a3ComVlanIfTable(interp->peer, &vlanTable,
PRODUCTMIB_A3COMVLANIFDESCR);
if (interp->peer->error_status) {
regfree(regex_vlan);
return SCLI_SNMP;
}
if (vlanTable) {
for (i = 0; vlanTable[i]; i++) {
if (! match_vlan(regex_vlan, vlanTable[i])) continue;
productmib_proc_set_vlan_port_member(interp->peer,
vlanTable[i]->a3ComVlanIfIndex,
ports, sizeof(ports));
}
}
if (vlanTable) productmib_free_a3ComVlanIfTable(vlanTable);
regfree(regex_vlan);
return SCLI_OK;
}
static int
dump_3com_bridge_vlan(scli_interp_t *interp, int argc, char **argv)
{
productmib_a3ComVlanIfEntry_t **vlanTable = NULL;
if_mib_ifStackEntry_t **ifStackTable = NULL;
if_mib_ifEntry_t **ifTable = NULL;
int i;
guchar ports[256];
const int mask = (PRODUCTMIB_A3COMVLANIFDESCR
| PRODUCTMIB_A3COMVLANIFTYPE
| PRODUCTMIB_A3COMVLANIFGLOBALIDENTIFIER
| PRODUCTMIB_A3COMVLANIFSTATUS);
g_return_val_if_fail(interp, SCLI_ERROR);
if (argc > 1) {
return SCLI_SYNTAX_NUMARGS;
}
if (scli_interp_dry(interp)) {
return SCLI_OK;
}
productmib_get_a3ComVlanIfTable(interp->peer, &vlanTable, mask);
if (interp->peer->error_status) {
return SCLI_SNMP;
}
if (vlanTable) {
if_mib_get_ifStackTable(interp->peer, &ifStackTable, 0);
if (interp->peer->error_status) {
return SCLI_SNMP;
}
if_mib_proc_get_ifTable(interp->peer, &ifTable,
IF_MIB_IFTYPE, interp->epoch);
if (interp->peer->error_status) {
productmib_free_a3ComVlanIfTable(vlanTable);
return SCLI_SNMP;
}
for (i = 0; vlanTable[i]; i++) {
if (! vlanTable[i]->a3ComVlanIfDescr
|| !vlanTable[i]->a3ComVlanIfGlobalIdentifier) {
continue;
}
if (! vlanTable[i]->a3ComVlanIfStatus
|| *vlanTable[i]->a3ComVlanIfStatus != PRODUCTMIB_ROWSTATUS_ACTIVE) {
continue;
}
create_port_list(ports, sizeof(ports),
vlanTable[i]->a3ComVlanIfIndex,
ifStackTable, ifTable);
g_string_sprintfa(interp->result,
"create 3com bridge vlan \"%u\" \"%.*s\"\n",
*vlanTable[i]->a3ComVlanIfGlobalIdentifier,
vlanTable[i]->_a3ComVlanIfDescrLength,
vlanTable[i]->a3ComVlanIfDescr);
}
for (i = 0; vlanTable[i]; i++) {
if (! vlanTable[i]->a3ComVlanIfDescr
|| !vlanTable[i]->a3ComVlanIfGlobalIdentifier) {
continue;
}
if (! vlanTable[i]->a3ComVlanIfStatus
|| *vlanTable[i]->a3ComVlanIfStatus != PRODUCTMIB_ROWSTATUS_ACTIVE) {
continue;
}
create_port_list(ports, sizeof(ports),
vlanTable[i]->a3ComVlanIfIndex,
ifStackTable, ifTable);
g_string_sprintfa(interp->result,
"set 3com bridge vlan ports \"%.*s\" \"",
vlanTable[i]->_a3ComVlanIfDescrLength,
vlanTable[i]->a3ComVlanIfDescr);
fmt_port_set(interp->result, ports, sizeof(ports));
g_string_sprintfa(interp->result, "\"\n");
}
}
if (vlanTable) productmib_free_a3ComVlanIfTable(vlanTable);
if (ifStackTable) if_mib_free_ifStackTable(ifStackTable);
if (ifTable) if_mib_proc_free_ifTable(ifTable);
return SCLI_OK;
}
void
scli_init_3com_mode(scli_interp_t *interp)
{
static scli_cmd_t cmds[] = {
{ "create 3com bridge vlan", "<vlanid> <name>",
"The `create 3com bridge vlan' command is used to create a\n"
"new virtual LAN with the given <vlanid> and <name>.",
SCLI_CMD_FLAG_NEED_PEER | SCLI_CMD_FLAG_DRY | SCLI_CMD_FLAG_NORECURSE,
NULL, NULL,
create_3com_bridge_vlan },
{ "delete 3com bridge vlan", "<regexp>",
"The `delete 3com bridge vlan' command deletes all selected\n"
"virtual LANs. The regular expression <regexp> is matched\n"
"against the virtual LAN names to select the vlans that should\n"
"be deleted.",
SCLI_CMD_FLAG_NEED_PEER | SCLI_CMD_FLAG_DRY | SCLI_CMD_FLAG_NORECURSE,
NULL, NULL,
delete_3com_bridge_vlan },
{ "set 3com bridge vlan name", "<vlanid> <name>",
"The `set 3com bridge vlan name' command changes the name of\n"
"a virtual LAN.",
SCLI_CMD_FLAG_NEED_PEER | SCLI_CMD_FLAG_DRY | SCLI_CMD_FLAG_NORECURSE,
NULL, NULL,
set_3com_bridge_vlan_name },
{ "set 3com bridge vlan ports", "<regexp> <ports>",
"The `set 3com bridge vlan ports' command allows to assign ports\n"
"to port-based virtual LANs. The regular expression <regexp>\n"
"is matched against the virtual LAN names to select the vlans that\n"
"should be modified. The <ports> argument contains a comma\n"
"separated list of port numbers or port number ranges, e.g.\n"
"1,5,7-8.",
SCLI_CMD_FLAG_NEED_PEER | SCLI_CMD_FLAG_DRY | SCLI_CMD_FLAG_NORECURSE,
NULL, NULL,
set_3com_bridge_vlan_ports },
{ "show 3com bridge vlan info", "[<regexp>]",
"The `show 3com bridge vlan info' command shows summary\n"
"information about all selected virtual LANs. The optional\n"
"regular expression <regexp> is matched against the virtual\n"
"LAN names to select the virtual LANs of interest. The\n"
"command generates a table with the following columns:\n"
"\n"
" VLAN virtual LAN number\n"
" STATUS status of the virutal LAN (see below)\n"
" NAME name of the virutal LAN\n"
" INTERFCE virtual LAN interface number\n"
" PORTS ports assigned to the virtual LAN\n"
"\n"
"The status is encoded in two characters. The first character\n"
"indicates the status of the row (A=active, S=not in service,\n"
"R=not ready). The second character indicates virutal LAN type\n"
"(P=port, I=IP-subnet, O=protocol, S=src address, D=dst address)."
"",
SCLI_CMD_FLAG_NEED_PEER | SCLI_CMD_FLAG_DRY,
NULL, NULL,
show_3com_bridge_vlan_info },
{ "dump 3com bridge vlan", NULL,
"The `dump 3com bridge vlan' command generates a sequence of scli\n"
"commands which can be used to restore the virtual LAN configuration.",
SCLI_CMD_FLAG_NEED_PEER | SCLI_CMD_FLAG_DRY,
NULL, NULL,
dump_3com_bridge_vlan },
{ NULL, NULL, NULL, 0, NULL, NULL, NULL }
};
static scli_mode_t _3com_mode = {
"3com",
"The 3com scli mode allows to manipulate virtual lans (vlans)\n"
"on 3com bridges. It is based on the PRODUCTMIB which is\n"
"implemented at least on 3Com SuperStack II switches.",
cmds
};
scli_register_mode(interp, &_3com_mode);
}
|