webvirtcloud icon indicating copy to clipboard operation
webvirtcloud copied to clipboard

The pool bridge name must not contain any special characters

Open softboy99 opened this issue 1 year ago • 1 comments

image

softboy99 avatar May 13 '24 11:05 softboy99

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

catborise avatar Jun 24 '24 07:06 catborise