• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/lib/

Lines Matching refs:password

436 /* Do not support password encryption */
467 vty_out (vty, "password 8 %s%s", host.password_encrypt, VTY_NEWLINE);
469 vty_out (vty, "enable password 8 %s%s", host.enable_encrypt, VTY_NEWLINE);
473 if (host.password)
474 vty_out (vty, "password %s%s", host.password, VTY_NEWLINE);
476 vty_out (vty, "enable password %s%s", host.enable, VTY_NEWLINE);
498 vty_out (vty, "service password-encryption%s", VTY_NEWLINE);
2058 /* If enable password is NULL, change to ENABLE_NODE */
2465 /* VTY interface password set. */
2467 "password (8|) WORD",
2468 "Assign the terminal connection password\n"
2469 "Specifies a HIDDEN password will follow\n"
2471 "The HIDDEN line password string\n")
2476 vty_out (vty, "Please specify password.%s", VTY_NEWLINE);
2484 if (host.password)
2485 XFREE (0, host.password);
2486 host.password = NULL;
2506 if (host.password)
2507 XFREE (0, host.password);
2508 host.password = NULL;
2511 /* Do not support password encryption */
2524 host.password = XSTRDUP (0, argv[0]);
2530 "password LINE",
2531 "Assign the terminal connection password\n"
2532 "The UNENCRYPTED (cleartext) line password\n")
2534 /* VTY enable password set. */
2536 "enable password (8|) WORD",
2537 "Modify enable password parameters\n"
2538 "Assign the privileged level password\n"
2539 "Specifies a HIDDEN password will follow\n"
2541 "The HIDDEN 'enable' password string\n")
2546 vty_out (vty, "Please specify password.%s", VTY_NEWLINE);
2583 /* Plain password input. */
2585 /* Do not support password encryption */
2605 "enable password LINE",
2606 "Modify enable password parameters\n"
2607 "Assign the privileged level password\n"
2608 "The UNENCRYPTED (cleartext) 'enable' password\n")
2610 /* VTY enable password delete. */
2612 "no enable password",
2614 "Modify enable password parameters\n"
2615 "Assign the privileged level password\n")
2630 "service password-encryption",
2635 /* Do not support password encryption */
2644 if (host.password)
2648 host.password_encrypt = XSTRDUP (0, zencrypt (host.password));
2664 "no service password-encryption",
2962 host.password = NULL;