This file is indexed.

/etc/libvirt/nwfilter/clean-traffic.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
22
23
24
25
26
27
28
29
30
<filter name='clean-traffic' chain='root'>
   <!-- An example of a traffic filter enforcing clean traffic
        from a VM by
      - preventing MAC spoofing -->
   <filterref filter='no-mac-spoofing'/>

   <!-- preventing IP spoofing on outgoing, allow all IPv4 in incoming -->
   <filterref filter='no-ip-spoofing'/>

   <rule direction='out' action='accept' priority='-650'>
      <mac protocolid='ipv4'/>
   </rule>

   <filterref filter='allow-incoming-ipv4'/>

   <!-- preventing ARP spoofing/poisoning -->
   <filterref filter='no-arp-spoofing'/>

   <!-- accept all other incoming and outgoing ARP traffic -->
   <rule action='accept' direction='inout' priority='-500'>
      <mac protocolid='arp'/>
   </rule>

   <!-- preventing any other traffic than IPv4 and ARP -->
   <filterref filter='no-other-l2-traffic'/>

   <!-- allow qemu to send a self-announce upon migration end -->
   <filterref filter='qemu-announce-self'/>

</filter>