diff options
author | Daniil Baturin <daniil@vyos.io> | 2022-02-10 22:11:16 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-10 22:11:16 +0700 |
commit | e92646a0b3ed4d25c55c52bc1ac1081b4687563a (patch) | |
tree | 79f0523796d92179294eb3fad919823f31a7672e | |
parent | 57ba9dfc292de6ac8c5bf579c04e8f2a05396d8a (diff) | |
parent | 66b3b1567869eeb6fd83e0773be770b987e73f7b (diff) | |
download | vyatta-op-firewall-e92646a0b3ed4d25c55c52bc1ac1081b4687563a.tar.gz vyatta-op-firewall-e92646a0b3ed4d25c55c52bc1ac1081b4687563a.zip |
Merge pull request #2 from goodNETnick/sh_firewall
firewall: T4234: show firewall with rule number > 10000
-rwxr-xr-x | scripts/firewall/vyatta-show-firewall.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/firewall/vyatta-show-firewall.pl b/scripts/firewall/vyatta-show-firewall.pl index aaf011c..051a00c 100755 --- a/scripts/firewall/vyatta-show-firewall.pl +++ b/scripts/firewall/vyatta-show-firewall.pl @@ -15,7 +15,7 @@ my $tree_chain = $ARGV[0]; my $xsl_file = $ARGV[1]; my $rule_num = $ARGV[2]; # rule number to match (optional) -my $max_rule = 10000; +my $max_rule = 1000000; if (! -e $xsl_file) { print "Invalid XSL file \"$xsl_file\"\n"; |