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 previously
30 defined with the "define_network" method in Sys::Virt. If the
31 network is running, you probably want to use the "shutdown" or
32 "destroy" methods instead.
33
35 Daniel P. Berrange <berrange@redhat.com>
36
38 Copyright (C) 2006 Red Hat Copyright (C) 2006-2007 Daniel P. Berrange
39
41 This program is free software; you can redistribute it and/or modify it
42 under the terms of either the GNU General Public License as published
43 by the Free Software Foundation (either version 2 of the License, or at
44 your option any later version), or, the Artistic License, as specified
45 in the Perl README file.
46
48 Sys::Virt, Sys::Virt::Error, "http://libvirt.org"
49
50
51
52perl v5.12.3 2010-05-19 Sys::Virt::NWFilter(3)