diff options
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)){ |