blob: 41ead9f01fc33e8063a361a4527a6159f4bdd78c (
plain)
1
2
3
4
5
6
7
8
9
10
|
type: txt
help: Configure plain text password
syntax:expression: pattern $VAR(@) "^[^[:space:]]{1,8}$" ; "Password must be 8 characters or less"
update:vtysh -c "configure terminal" -c "interface $IFNAME" \
-c "no ip ospf authentication " -c "ip ospf authentication " \
-c "ip ospf authentication-key $VAR(@)"
delete:vtysh -c "configure terminal" -c "interface $IFNAME" \
-c "no ip ospf authentication " -c "no ip ospf authentication-key"
comp_help: possible completions:
<text> Plain text password (8 characters or less)
|