network.rng 2.8 KB
Newer Older
1 2 3
<!-- A Relax NG schema for the libvirt network XML format -->
<element name="network" xmlns="http://relaxng.org/ns/structure/1.0"
         datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
4
  <interleave>
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
  <!-- The name of the network, used to refer to it through the API
       and in virsh -->
  <element name="name"><text/></element>
  <optional>
    <element name="uuid"><text/></element>
  </optional>
  <optional>
    <!-- The name of the network to be set up; this will back
         the network on the host -->
    <element name="bridge">
      <optional>
        <attribute name="name"><text/></attribute>
      </optional>
      <optional>
        <attribute name="stp">
          <choice>
            <value>on</value>
            <value>off</value>
          </choice>
        </attribute>
      </optional>
      <optional>
        <attribute name="delay"><data type="integer"/></attribute>
      </optional>
    </element>
  </optional>
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
  <optional>
    <!-- The device through which the bridge is connected to the
         rest of the network -->
    <element name="forward">
      <optional><attribute name="dev"><text/></attribute></optional>
      <optional>
        <attribute name="mode">
          <choice>
            <value>nat</value>
            <value>routed</value>
          </choice>
        </attribute>
      </optional>
    </element>
  </optional>
46 47 48 49 50
  <optional>
    <element name="domain">
      <attribute name="name"><text/></attribute>
    </element>
  </optional>
51 52 53 54 55 56 57 58 59 60 61 62
  <optional>
    <!-- The IP element sets up NAT'ing and an optional DHCP server
         local to the host. -->
    <!-- FIXME: address, netmask and the start and end of the ranges
         are IP addresses, and should be validated as such in the scheme -->
    <element name="ip">
      <optional>
        <attribute name="address"><text/></attribute>
      </optional>
      <optional>
        <attribute name="netmask"><text/></attribute>
      </optional>
63 64 65 66 67
      <optional>
	<element name="tftp">
	  <attribute name="root"><text/></attribute>
	</element>
      </optional>
68 69 70 71 72 73 74 75 76
      <!-- Define the range(s) of IP addresses that the DHCP
           server should hand out -->
      <element name="dhcp">
        <zeroOrMore>
          <element name="range">
            <attribute name="start"><text/></attribute>
            <attribute name="end"><text/></attribute>
          </element>
        </zeroOrMore>
77 78 79 80 81 82 83
        <zeroOrMore>
          <element name="host">
            <attribute name="mac"><text/></attribute>
            <attribute name="name"><text/></attribute>
            <attribute name="ip"><text/></attribute>
          </element>
        </zeroOrMore>
84 85 86 87 88
	<optional>
	  <element name="bootp">
	    <attribute name="file"><text/></attribute>
	  </element>
	</optional>
89 90 91
      </element>
    </element>
  </optional>
92
  </interleave>
93
</element>