1Sys::Virt::NWFilter(3)User Contributed Perl DocumentationSys::Virt::NWFilter(3)
2
3
4
6 Sys::Virt::NWFilter - Represent & manage a libvirt virtual network
7
9 The "Sys::Virt::NWFilter" module represents a virtual network managed
10 by the virtual machine monitor.
11
13 my $uuid = $filter->get_uuid()
14 Returns a 16 byte long string containing the raw globally unique
15 identifier (UUID) for the network.
16
17 my $uuid = $filter->get_uuid_string()
18 Returns a printable string representation of the raw UUID, in the
19 format 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX'.
20
21 my $name = $filter->get_name()
22 Returns a string with a locally unique name of the network
23
24 my $xml = $filter->get_xml_description()
25 Returns an XML document containing a complete description of the
26 network's configuration
27
28 $filter->undefine()
29 Remove the configuration associated with a network filter
30 previously defined with the "define_nwfilter" method in Sys::Virt.
31
33 Daniel P. Berrange <berrange@redhat.com>
34
36 Copyright (C) 2006 Red Hat Copyright (C) 2006-2007 Daniel P. Berrange
37
39 This program is free software; you can redistribute it and/or modify it
40 under the terms of either the GNU General Public License as published
41 by the Free Software Foundation (either version 2 of the License, or at
42 your option any later version), or, the Artistic License, as specified
43 in the Perl README file.
44
46 Sys::Virt, Sys::Virt::Error, "http://libvirt.org"
47
48
49
50perl v5.32.1 2021-03-02 Sys::Virt::NWFilter(3)