retspen / webvirtcloud

WebVirtCloud is virtualization web interface for admins and users
1.63k stars 362 forks source link

The pool bridge name must not contain any special characters #645

Open softboy99 opened 1 month ago

softboy99 commented 1 month ago

image

catborise commented 5 days ago

i cannot reproduce the issue. it works as expected. probably it is not related with webvirtcloud but libvirt config. can you check it with command line? (create network with xml)

create an xml file name like test.xml and contains specified directives.

<network>
  <name>testttt</name>
  <forward mode="nat"/>
  <ip address="192.168.123.1" netmask="255.255.255.0">
    <dhcp>
      <range start="192.168.123.2" end="192.168.123.254"/>
    </dhcp>
  </ip>
  <ip family="ipv6" address="2001:db8:ca2:2::1" prefix="64"/>
</network>

run command: virsh net-create --file text.xml

feedback please