While I haven't gotten this error, I do have a blown vnic0 interface. I re-ran parallels-config to rebuild the drivers but -- the parallels dhcp server refuses to load. My configuration is set to use host-only networking and I did the necessary steps to enable host-only networking to work (it can access both the host computer and the internet).
This thread said something about using the same ip address as the vnic0 dhcp server will cause it to be taken out of the game, I think it might relevant to the OP's thread.
Upon starting the host computer, I saw a line in the bootup screen where firestarter failed to start because vnic0 wasn't available for it to properly initialize and masquerade upon startup. Ifconfig does not show vnic0 as being up. I can bring it up manually with
Code:
ifconfig vnic0 10.37.129.2 netmask 255.255.255.0
and everything works fine after that. I created a script in /etc/init.d called vnic0 to bring up the vnic0 interface before the firewall loads, but I feel this is a kludgy hack, not an elegant permanent solution.
Here is the relevant bits if its a clue:
dmesg:
device vnic0 entered promiscuous mode
audit(1190555774.735:4): dev=vnic0 prom=256 old_prom=0 auid=4294967295
[ 9282] Can't enable interrupts via /dev/rtc: -25
(/usr/lib/parallels/drivers/drv_main/common/timer.c:176)
device vnic0 left promiscuous mode
audit(1190555992.239:5): dev=vnic0 prom=0 old_prom=256 auid=4294967295
lsmod:
Module Size Used by
vmvirtualnic 2116 0
vm_bridge 10524 0
vm_main 37488 0
hypervisor 73128 1 vm_main
Any help?