• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/zebra/lib/

Lines Matching refs:vty

244   vty->index = keychain;
245 vty->node = KEYCHAIN_NODE;
264 vty_out (vty, "Can't find keychain %s%s", argv[0], VTY_NEWLINE);
284 keychain = vty->index;
289 vty_out (vty, "Key identifier number error%s", VTY_NEWLINE);
293 vty->index_sub = key;
294 vty->node = KEYCHAIN_KEY_NODE;
311 keychain = vty->index;
316 vty_out (vty, "Key identifier number error%s", VTY_NEWLINE);
323 vty_out (vty, "Can't find key %d%s", index, VTY_NEWLINE);
329 vty->node = KEYCHAIN_NODE;
342 key = vty->index_sub;
360 key = vty->index_sub;
470 key_lifetime_set (struct vty *vty, struct key_range *krange, char *stime_str,
481 vty_out (vty, "Malformed time value%s", VTY_NEWLINE);
488 vty_out (vty, "Malformed time value%s", VTY_NEWLINE);
494 vty_out (vty, "Expire time is not later than start time%s", VTY_NEWLINE);
505 key_lifetime_duration_set (struct vty *vty, struct key_range *krange,
516 vty_out (vty, "Malformed time value%s", VTY_NEWLINE);
524 vty_out (vty, "Malformed duration%s", VTY_NEWLINE);
534 key_lifetime_infinite_set (struct vty *vty, struct key_range *krange,
543 vty_out (vty, "Malformed time value%s", VTY_NEWLINE);
569 key = vty->index_sub;
571 return key_lifetime_set (vty, &key->accept, argv[0], argv[1], argv[2],
590 key = vty->index_sub;
592 return key_lifetime_set (vty, &key->accept, argv[0], argv[1], argv[2],
611 key = vty->index_sub;
613 return key_lifetime_set (vty, &key->accept, argv[0], argv[2], argv[1],
632 key = vty->index_sub;
634 return key_lifetime_set (vty, &key->accept, argv[0], argv[2], argv[1],
650 key = vty->index_sub;
652 return key_lifetime_infinite_set (vty, &key->accept, argv[0], argv[1],
668 key = vty->index_sub;
670 return key_lifetime_infinite_set (vty, &key->accept, argv[0], argv[2],
687 key = vty->index_sub;
689 return key_lifetime_duration_set (vty, &key->accept, argv[0], argv[1],
706 key = vty->index_sub;
708 return key_lifetime_duration_set (vty, &key->accept, argv[0], argv[2],
728 key = vty->index_sub;
730 return key_lifetime_set (vty, &key->send, argv[0], argv[1], argv[2], argv[3],
749 key = vty->index_sub;
751 return key_lifetime_set (vty, &key->send, argv[0], argv[1], argv[2], argv[3],
770 key = vty->index_sub;
772 return key_lifetime_set (vty, &key->send, argv[0], argv[2], argv[1], argv[3],
791 key = vty->index_sub;
793 return key_lifetime_set (vty, &key->send, argv[0], argv[2], argv[1], argv[3],
809 key = vty->index_sub;
811 return key_lifetime_infinite_set (vty, &key->send, argv[0], argv[1], argv[2],
827 key = vty->index_sub;
829 return key_lifetime_infinite_set (vty, &key->send, argv[0], argv[2], argv[1],
846 key = vty->index_sub;
848 return key_lifetime_duration_set (vty, &key->send, argv[0], argv[1], argv[2],
865 key = vty->index_sub;
867 return key_lifetime_duration_set (vty, &key->send, argv[0], argv[2], argv[1],
900 keychain_config_write (struct vty *vty)
910 vty_out (vty, "key chain %s%s", keychain->name, VTY_NEWLINE);
914 vty_out (vty, " key %d%s", key->index, VTY_NEWLINE);
917 vty_out (vty, " key-string %s%s", key->string, VTY_NEWLINE);
922 vty_out (vty, " accept-lifetime %s", buf);
925 vty_out (vty, " infinite");
927 vty_out (vty, " duration %ld",
932 vty_out (vty, " %s", buf);
934 vty_out (vty, "%s", VTY_NEWLINE);
940 vty_out (vty, " send-lifetime %s", buf);
943 vty_out (vty, " infinite");
945 vty_out (vty, " duration %ld", key->send.end - key->send.start);
949 vty_out (vty, " %s", buf);
951 vty_out (vty, "%s", VTY_NEWLINE);
954 vty_out (vty, "!%s", VTY_NEWLINE);