summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/vyatta-show-version6
-rw-r--r--scripts/vyatta-tshark-interface-port.pl36
2 files changed, 36 insertions, 6 deletions
diff --git a/scripts/vyatta-show-version b/scripts/vyatta-show-version
index 587f17e..f609930 100755
--- a/scripts/vyatta-show-version
+++ b/scripts/vyatta-show-version
@@ -84,7 +84,7 @@ sub read_pkg_file {
sub show_added {
for my $name (sort keys %$rHoH_now_debs) {
if (!$rHoH_base_debs->{$name}) {
- printf("Aii %-25s%-25s\n",
+ printf("Aii %-25s %-25s\n",
$name, $rHoH_now_debs->{$name}->{'version'});
}
}
@@ -93,7 +93,7 @@ sub show_added {
sub show_deleted {
for my $name (sort keys %$rHoH_base_debs) {
if (!$rHoH_now_debs->{$name}) {
- printf("X %-25s%-25s\n",
+ printf("X %-25s %-25s\n",
$name, $rHoH_base_debs->{$name}->{'version'});
}
}
@@ -117,7 +117,7 @@ sub show_upgraded_downgraded {
if ($ver_base ne $ver_now) {
$cmd = "dpkg --compare-versions \"$ver_base\" $op \"$ver_now\"";
if (!system($cmd)) {
- printf("%sii %-25s%-20s (baseline: %s)\n",
+ printf("%sii %-25s %-20s (baseline: %s)\n",
$symbol, $name, $ver_now, $ver_base);
}
}
diff --git a/scripts/vyatta-tshark-interface-port.pl b/scripts/vyatta-tshark-interface-port.pl
index 4eff322..aa750e5 100644
--- a/scripts/vyatta-tshark-interface-port.pl
+++ b/scripts/vyatta-tshark-interface-port.pl
@@ -28,12 +28,39 @@ use lib "/opt/vyatta/share/perl5/";
use strict;
use warnings;
+sub check_if_interface_is_tsharkable {
+ my $interface = shift;
+
+ my @grep_tshark_interfaces = `sudo /usr/bin/tshark -D | grep $interface`;
+ my $any_interface;
+
+ for my $count (0 .. $#grep_tshark_interfaces) {
+ my @temp = split(/ /,$grep_tshark_interfaces[$count]);
+ chomp $temp[1];
+ $grep_tshark_interfaces[$count] = $temp[1];
+ }
+
+ my $exact_match = 0;
+ for my $count (0 .. $#grep_tshark_interfaces) {
+ if ($grep_tshark_interfaces[$count] eq $interface) {
+ $exact_match = 1;
+ $any_interface = $grep_tshark_interfaces[$count];
+ }
+ }
+ if ($exact_match == 0 || $any_interface eq 'any') {
+ print "Unable to capture traffic on $interface\n";
+ exit 1;
+ }
+}
+
#
# main
#
my $intf = $ARGV[0];
+check_if_interface_is_tsharkable($intf);
+
if ($#ARGV > 0){
my $port = $ARGV[1];
my $not_port = $ARGV[2];
@@ -43,9 +70,11 @@ if ($#ARGV > 0){
} else {
if (($port > 0) and ($port < 65536)){
if ($not_port == 0){
- exec "sudo /usr/bin/tshark -n -i $intf port $port";
+ print "Capturing traffic on $intf port $port ...\n";
+ exec "sudo /usr/bin/tshark -n -i $intf port $port 2> /dev/null";
} else {
- exec "sudo /usr/bin/tshark -n -i $intf not port $port";
+ print "Capturing traffic on $intf excluding port $port ...\n";
+ exec "sudo /usr/bin/tshark -n -i $intf not port $port 2> /dev/null";
}
} else {
print "Invalid port number. Allowed values: <1-65535>\n";
@@ -54,7 +83,8 @@ if ($#ARGV > 0){
}
} else {
- exec "sudo /usr/bin/tshark -n -i $intf";
+ print "Capturing traffic on $intf ...\n";
+ exec "sudo /usr/bin/tshark -n -i $intf 2> /dev/null";
}
exit 0;