File: example-2.xml

package info (click to toggle)
libvirt-tck 0.1.0~2.git890d1c-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 1,128 kB
  • sloc: perl: 2,885; sh: 1,180; xml: 992; makefile: 6
file content (37 lines) | stat: -rw-r--r-- 1,221 bytes parent folder | download | duplicates (13)
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
31
32
33
34
35
36
37
<filter name='tck-testcase'>
  <uuid>0a5288ea-612c-834a-6bbf-82a03a1a3244</uuid>

  <!-- VM outgoing: allow all established and related connections -->
  <rule action='accept' direction='out' priority='100'>
    <all state='ESTABLISHED,RELATED'
         comment='out: existing and related (ftp) connections'/>
  </rule>

  <!-- VM incoming: allow all established connections -->
  <rule action='accept' direction='in' priority='100'>
    <all state='ESTABLISHED'
         comment='in: existing connections'/>
  </rule>

  <!-- allow incoming ssh and ftp traffic -->
  <rule action='accept' direction='in' priority='200'>
    <tcp dstportstart='21' dstportend='22' state='NEW'
         comment='in: ftp and ssh'/>
  </rule>

  <!-- allow incoming ICMP (ping) packets -->
  <rule action='accept' direction='in' priority='300'>
    <icmp state='NEW' comment='in: icmp'/>
  </rule>

  <!-- allow outgong DNS lookups -->
  <rule action='accept' direction='out' priority='300'>
    <udp dstportstart='53' state='NEW' comment='out: DNS lookups'/>
  </rule>

  <!-- drop all other traffic -->
  <rule action='drop' direction='inout' priority='1000'>
    <all comment='inout: drop all non-accepted traffic'/>
  </rule>

</filter>