mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 20:01:16 +00:00
ba5566e80f
As of netcf-0.2.8, netcf supports configuring multipl IPv4 addresses, as well as simultaneously configuring dhcp and static IPv4 addresses, on a single interface. This patch updates libvirt's interface.rng to allow such configurations. This resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1223688
10 lines
264 B
XML
10 lines
264 B
XML
<interface type='ethernet' name='eth1'>
|
|
<start mode='onboot'/>
|
|
<protocol family='ipv4'>
|
|
<dhcp peerdns='yes'/>
|
|
<ip address='192.168.0.5' prefix='24'/>
|
|
<ip address='1.2.3.4' prefix='32'/>
|
|
<route gateway='192.168.0.1'/>
|
|
</protocol>
|
|
</interface>
|