QEMU KVM - Network Bridge not working

I have a windows Client on my open suse 12.3 system. Everything with the KVM seems to be working just fine except the networking. I am stumped with this issue as to why my KVM is failing get something other than a 169 IP.

Initially I thought my issue was libvirt and made the following changes however the windows7 VM is still failing to obtain a network connection.

Initial settings

virsh net-list --all

Name State Autostart Persistent

default inactive no yes

Corrected to be active and autostart

virsh net-list --all

Name State Autostart Persistent

default active yes yes

Connection settings for libvirt.
more /usr/share/libvirt/networks/default.xml
<network>
<name>default</name>
<bridge name=“virbr0”/>
<forward/>
<ip address=“192.168.122.1” netmask=“255.255.255.0”>
<dhcp>
<range start=“192.168.122.2” end=“192.168.122.254”/>
</dhcp>
</ip>
</network>

KVM settings

more /home/wolfsburg18/kvm/windowsvistax64-1.orig.xml

<domain type=‘kvm’>
<name>windowsvistax64-1</name>
<uuid>c99e2519-f4f1-7b37-685d-41786bb3e506</uuid>
<memory>1048576</memory>
<currentMemory>1048576</currentMemory>
<vcpu>2</vcpu>
<os>
<type arch=‘x86_64’ machine=‘pc’>hvm</type>
<boot dev=‘hd’/>
</os>
<features>
<pae/>
<apic/>
<acpi/>
</features>
<clock offset=‘localtime’>
<timer name=‘hpet’ present=‘no’/>
</clock>
<on_poweroff>destroy</on_poweroff>
<on_reboot>restart</on_reboot>
<on_crash>destroy</on_crash>
<devices>
<emulator>/usr/bin/qemu-kvm</emulator>
<disk type=‘file’ device=‘disk’>
<driver name=‘qemu’ type=‘raw’ cache=‘default’/>
<source file=’/home/wolfsburg18/kvm/windowsdisk0.raw’/>
<target dev=‘hda’/>
</disk>
<disk type=‘file’ device=‘cdrom’>
<driver name=‘qemu’ type=‘raw’ cache=‘default’/>
<source file=’/home/wolfsburg18/images/windows7_x86_64.iso’/>
<target dev=‘hdc’/>
<readonly/>
</disk>
<interface type=‘bridge’>
<source bridge=‘br0’/>
<mac address=‘52:54:00:7d:6c:28’/>
<model type=‘e1000’/>
</interface>

&lt;input type='tablet' bus='usb'/&gt;
&lt;graphics type='vnc' port='-1' autoport='yes'/&gt;
&lt;sound model='ac97'/&gt;

</devices>
</domain>

In your “KVM Settings”

Change
<source bridge=‘br0’/>
To
<source bridge=‘virbr0’/>

HTH,
TSU

Thanks for the response but never was able to get it working. Ended up wiping the machine and doing a fresh install, VMs, spice are working correctly now.