diff options
author | Andrew J. Schorr <ajschorr@alumni.princeton.edu> | 2006-07-27 18:01:41 +0000 |
---|---|---|
committer | Andrew J. Schorr <ajschorr@alumni.princeton.edu> | 2006-07-27 18:01:41 +0000 |
commit | f366ad31ae6bf7e2fb7271cf8eab6dee4af3baf9 (patch) | |
tree | 452f3071f7e1dc71d056bd476481bb008f6f435e /vtysh/ChangeLog | |
parent | 171eee31edbddbd8906447dc8725e0513227d013 (diff) |
[vtysh] Never skip authentication, and add support for multiple -c commands
2006-07-27 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
* vtysh.1: Document new options -d and -E, and note that now multiple
-c options may be supplied, with embedded linefeed now supported.
In BUGS section, remove warning about vtysh causing a daemon
to freeze, since this has been fixed.
* vtysh_main.c: (usage) Add new -d and -E options. And note that
-c can be used multiple times, possibly with embedded linefeeds.
(longopts) Add new -d and -E options.
(main) Add new -d and -E options, and create a linked list to
support multiple -c options. Do not call vtysh_connect_all until
after vtysh_read_config(config_default) and vtysh_auth have
succeeded. This prevents the vtysh.conf file from configuring
any daemons, and it ensures that authentication has been passed
before we send any commands to any daemons. Call vtysh_connect_all
with any daemon name supplied with -d. If it is unable to connect
to any daemons, issue an error message and exit immediately.
When used in -c mode, call vtysh_execute("enable") before
executing the commands in order to match interactive behavior.
And detect embedded linefeed chars in -c commands and break them up
appropriately.
* vtysh.h: (vtysh_connect_all) Fix proto to reflect new
daemon_name argument, and that it now returns an integer -- the
number of daemons to which we were able to connect.
* vtysh.c: (vtysh_connect_all) Add a new daemon_name argument.
If supplied, connect only to that daemon. And return
the number of daemons to which we were able to connect.
(vtysh_prompt): Performance enhancement -- make struct utsname
static so we call uname to get the hostname only once.
Diffstat (limited to 'vtysh/ChangeLog')
-rw-r--r-- | vtysh/ChangeLog | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/vtysh/ChangeLog b/vtysh/ChangeLog index ac038e1c..b9b78f5e 100644 --- a/vtysh/ChangeLog +++ b/vtysh/ChangeLog @@ -1,3 +1,29 @@ +2006-07-27 Andrew J. Schorr <ajschorr@alumni.princeton.edu> + + * vtysh_main.c: (usage) Add new -d and -E options. And note that + -c can be used multiple times, possibly with embedded linefeeds. + (longopts) Add new -d and -E options. + (main) Add new -d and -E options, and create a linked list to + support multiple -c options. Do not call vtysh_connect_all until + after vtysh_read_config(config_default) and vtysh_auth have + succeeded. This prevents the vtysh.conf file from configuring + any daemons, and it ensures that authentication has been passed + before we send any commands to any daemons. Call vtysh_connect_all + with any daemon name supplied with -d. If it is unable to connect + to any daemons, issue an error message and exit immediately. + When used in -c mode, call vtysh_execute("enable") before + executing the commands in order to match interactive behavior. + And detect embedded linefeed chars in -c commands and break them up + appropriately. + * vtysh.h: (vtysh_connect_all) Fix proto to reflect new + daemon_name argument, and that it now returns an integer -- the + number of daemons to which we were able to connect. + * vtysh.c: (vtysh_connect_all) Add a new daemon_name argument. + If supplied, connect only to that daemon. And return + the number of daemons to which we were able to connect. + (vtysh_prompt): Performance enhancement -- make struct utsname + static so we call uname to get the hostname only once. + 2006-05-24 Paul Jakma <paul.jakma@sun.com> * vtysh.c: (general) Add 'show memory' command. |