diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-03-10 12:04:54 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-03-10 12:04:54 -0700 |
commit | abc01ce66884914f1fb0db0d433044e0dc55c040 (patch) | |
tree | 95fb614bef533cfb10d413771be131fd91707fae | |
parent | 05d9d335582936eea369689a3554d8e7ff871e17 (diff) | |
parent | eba9b5c8fcdc941eb9b7181bfde25bc508b81888 (diff) | |
download | vyatta-nat-abc01ce66884914f1fb0db0d433044e0dc55c040.tar.gz vyatta-nat-abc01ce66884914f1fb0db0d433044e0dc55c040.zip |
Merge branch 'glendale' of suva.vyatta.com:/git/vyatta-nat into glendale
-rwxr-xr-x | scripts/vyatta-show-nat.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vyatta-show-nat.pl b/scripts/vyatta-show-nat.pl index d4d381c..4837840 100755 --- a/scripts/vyatta-show-nat.pl +++ b/scripts/vyatta-show-nat.pl @@ -19,7 +19,7 @@ my %stats = ( source => [ ], destination => [ ], ); -open(STATS, "/sbin/iptables -t nat -L -vn |") or exit 1; +open(STATS, "sudo /sbin/iptables -t nat -L -vn |") or exit 1; my $skey = ""; while (<STATS>) { if (m/^Chain PREROUTING/) { |