1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#!/usr/bin/env perl
use lib "/opt/vyatta/share/perl5/";
use Vyatta::Zone;
use Getopt::Long;
my $zone_in;
GetOptions("zone=s" => \$zone_in);
my $zone_hash = Vyatta::Zone::get_zone_hash();
my $format = " %-20s%-35s%s\n";
for my $zone (sort(keys %{$zone_hash})) {
if (defined $zone_in){
next unless $zone eq $zone_in;
}
print "-------------------\n";
print "Name: $zone" .
(defined($zone_hash->{$zone}{'description'})
? " [$zone_hash->{$zone}{'description'}]\n" : "\n");
print "\n";
print "Interfaces: @{$zone_hash->{$zone}{'interfaces'}}\n";
print "\n";
print "From Zone:\n";
printf($format, "name", "firewall", "content-inspection");
printf($format, "----", "--------", "------------------");
for my $from_zone (sort(keys(%{$zone_hash->{$zone}{'from'}}))){
my ($firewall, $ipv6_firewall, $ci);
$firewall = $zone_hash->{$zone}{'from'}->{$from_zone}{'firewall'}->{'ipv4'}
if (defined($zone_hash->{$zone}{'from'}->{$from_zone}{'firewall'}->{'ipv4'}));
$ipv6_firewall = $zone_hash->{$zone}{'from'}->{$from_zone}{'firewall'}->{'ipv6'}
if (defined($zone_hash->{$zone}{'from'}->{$from_zone}{'firewall'}->{'ipv6'}));
$ci = $zone_hash->{$zone}{'from'}->{$from_zone}{'content-inspection'}
if (defined($zone_hash->{$zone}{'from'}->{$from_zone}{'content-inspection'}));
if (defined($firewall)){
if (defined($ci)) {
printf($format, "$from_zone", "$firewall", "$ci");
} else {
printf($format, "$from_zone", "$firewall", "disabled");
}
if (defined($ipv6_firewall)){
printf($format, "", "$ipv6_firewall [v6]", "");
}
} elsif (defined($ipv6_firewall)){
if (defined($ci)) {
printf($format, "$from_zone", "$ipv6_firewall [v6]", "$ci");
} else {
printf($format, "$from_zone", "$ipv6_firewall [v6]", "disabled");
}
} else {
if (defined($ci)) {
printf($format, "$from_zone", "-", "$ci");
} else {
printf($format, "$from_zone", "-", "disabled");
}
}
}
print "\n";
}
|