diff options
author | John Southworth <john.southworth@vyatta.com> | 2011-09-15 19:11:35 -0500 |
---|---|---|
committer | John Southworth <john.southworth@vyatta.com> | 2011-10-27 17:11:29 -0500 |
commit | 6af87429ae97d7cd069268ad3597508e6954d5e8 (patch) | |
tree | 4f361f9e7cf446324adac096f5798d0b219690e8 /scripts | |
parent | b04673afd899d2032200799a9d9b0c72901ad262 (diff) | |
download | vyatta-op-6af87429ae97d7cd069268ad3597508e6954d5e8.tar.gz vyatta-op-6af87429ae97d7cd069268ad3597508e6954d5e8.zip |
Fix 'monitor interface traffic save'
(cherry picked from commit ecb4650bc1ff7f7039a8de0c21f72667be9b189d)
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/vyatta-tshark.pl | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/scripts/vyatta-tshark.pl b/scripts/vyatta-tshark.pl index 103808d..75b1a5b 100755 --- a/scripts/vyatta-tshark.pl +++ b/scripts/vyatta-tshark.pl @@ -57,15 +57,21 @@ sub check_if_interface_is_tsharkable { # # main # -my ($detail,$filter,$intf,$unlimited); +my ($detail,$filter,$intf,$unlimited,$save); -GetOptions("detail!" => \$detail, +GetOptions("detail!" => \$detail, "filter=s" => \$filter, + "save=s" => \$save, "intf=s" => \$intf, - "unlimited!" => \$unlimited); + "unlimited!" => \$unlimited); check_if_interface_is_tsharkable($intf); +if (defined($save)){ + exec "sudo /usr/bin/tshark -i $intf -w '$save' | grep -v root"; + exit 0; +} + if (defined($filter)) { if (defined($detail)) { if (defined($unlimited)){ |