summaryrefslogtreecommitdiff
path: root/vtysh
diff options
context:
space:
mode:
authorhasso <hasso>2005-03-09 12:41:14 +0000
committerhasso <hasso>2005-03-09 12:41:14 +0000
commit060d438cb1be51d2f7fb7954a8b7b1cd491f555f (patch)
tree275208fe82700e56a929d1a35a7f16256b155362 /vtysh
parent220851816a699d9977702ea2b2501d4ede76e898 (diff)
* vtysh_config.c: Move password commands to the AAA_NODE. It
quarantees that they will appear after SERVICE_NODE to make sure that encrypted passwords will work ("service password-encryption" command). [backport candidate]
Diffstat (limited to 'vtysh')
-rw-r--r--vtysh/ChangeLog7
-rw-r--r--vtysh/vtysh_config.c11
2 files changed, 13 insertions, 5 deletions
diff --git a/vtysh/ChangeLog b/vtysh/ChangeLog
index 6822126e..9d6d3c09 100644
--- a/vtysh/ChangeLog
+++ b/vtysh/ChangeLog
@@ -1,3 +1,10 @@
+2005-03-09 Hasso Tepper <hasso at quagga.net>
+
+ * vtysh_config.c: Move password commands to the AAA_NODE. It
+ quarantees that they will appear after SERVICE_NODE to make sure
+ that encrypted passwords will work ("service password-encryption"
+ command).
+
2005-01-28 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
* vtysh.h: Remove obsolete VTYSH_INDEX_* defines. Fix many prototypes
diff --git a/vtysh/vtysh_config.c b/vtysh/vtysh_config.c
index c7be8d26..14efa486 100644
--- a/vtysh/vtysh_config.c
+++ b/vtysh/vtysh_config.c
@@ -240,14 +240,14 @@ vtysh_config_parse_line (const char *line)
config = config_get (SERVICE_NODE, line);
else if (strncmp (line, "debug", strlen ("debug")) == 0)
config = config_get (DEBUG_NODE, line);
+ else if (strncmp (line, "password", strlen ("password")) == 0
+ || strncmp (line, "enable password",
+ strlen ("enable password")) == 0)
+ config = config_get (AAA_NODE, line);
else
{
if (strncmp (line, "log", strlen ("log")) == 0
|| strncmp (line, "hostname", strlen ("hostname")) == 0
- || strncmp (line, "password", strlen ("password")) == 0
- || strncmp (line, "enable password",
- strlen ("enable password")) == 0
- || strncmp (line, "service", strlen ("service")) == 0
)
config_add_line_uniq (config_top, line);
else
@@ -287,7 +287,8 @@ vtysh_config_parse (char *line)
((I) == ACCESS_NODE || (I) == PREFIX_NODE || (I) == IP_NODE \
|| (I) == AS_LIST_NODE || (I) == COMMUNITY_LIST_NODE || \
(I) == ACCESS_IPV6_NODE || (I) == PREFIX_IPV6_NODE \
- || (I) == SERVICE_NODE || (I) == FORWARDING_NODE || (I) == DEBUG_NODE)
+ || (I) == SERVICE_NODE || (I) == FORWARDING_NODE || (I) == DEBUG_NODE \
+ || (I) == AAA_NODE)
/* Display configuration to file pointer. */
void