mirror of
git://git.proxmox.com/git/pve-docs.git
synced 2025-01-06 13:17:48 +03:00
cda6d6418a
Added a new direction section, mostly so I can write about the forward direction and explain its use cases. Signed-off-by: Stefan Hanreich <s.hanreich@proxmox.com>
13 lines
199 B
Perl
Executable File
13 lines
199 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
use lib '.';
|
|
use strict;
|
|
use warnings;
|
|
|
|
use PVE::Firewall;
|
|
use PVE::RESTHandler;
|
|
|
|
my $prop = $PVE::Firewall::vnet_option_properties;
|
|
|
|
print PVE::RESTHandler::dump_properties($prop);
|