This file is indexed.

/etc/libvirt/nwfilter/allow-dhcp.xml is in libvirt-bin 1.3.1-1ubuntu10.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
<filter name='allow-dhcp' chain='ipv4'>

    <!-- accept outgoing DHCP requests -->
    <!-- not, this rule must be evaluated before general MAC broadcast
         traffic is discarded since DHCP requests use MAC broadcast -->
    <rule action='accept' direction='out' priority='100'>
        <ip srcipaddr='0.0.0.0'
            dstipaddr='255.255.255.255'
            protocol='udp'
            srcportstart='68'
            dstportstart='67' />
    </rule>

    <!-- accept incoming DHCP responses from any DHCP server -->
    <rule action='accept' direction='in' priority='100' >
        <ip protocol='udp'
            srcportstart='67'
            dstportstart='68'/>
    </rule>

</filter>