Bhyve / Windows Server 2016 Issue

2017-02-13 Thread The Doctor
Has anyone tried to RPC into a Virtual Windows 2016 server box in FreeBSD Successfully? -- Member - Liberal International This is doctor@@nl2k.ab.ca Ici doctor@@nl2k.ab.ca Yahweh, Queen & country!Never Satan President Republic!Beware AntiChrist rising! http://www.fullyfollow.me/rootnl2k Look at

Re: Installing Freebsd guests under bhyve without using scripts

2017-02-13 Thread Anish Gupta
Yes, you need bhyveload to load guest OS, setup hypervisor nested{EPT/NPT] page table etc, see vmrun.sh ${LOADER} -c ${console} -m ${memsize} -d ${BOOTDISK} ${loader_opt} \ ${vmname} LOADER=bhyveload and then use 'bhyve' to start and run guest/VM. ${FBSDRUN} -c ${cpus} -m ${mem

Installing Freebsd guests under bhyve without using scripts

2017-02-13 Thread C. L. Martinez
Hi all, What are the steps to install freebsd guests under bhyve without using iocage, vm-bhyve or vmrun.sh?? Do I need to use first bhyveload and after bhyve -A -c 1 -u, etc?? Thanks. ___ freebsd-virtualization@freebsd.org mailing list https://lists.

[Bug 211746] [Hyper-V] UEFI VM can't boot from the iso installation disk

2017-02-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211746 --- Comment #6 from Marcel Moolenaar --- Check in the EFI memory map whether there's runtime-persistent memory at 0x20 + 45MB (or abouts). Runtime persistent memory are memory allocations of type runtime, firmware, (e.g. ACPI non-reclai

Re: tap interfaces disappears after bhyve guests shutdowns

2017-02-13 Thread The Doctor
On Mon, Feb 13, 2017 at 12:09:38PM +, C. L. Martinez wrote: > Hi all, > > Why when a bhyve guest shutdowns or reboot tap interfaces goes down and lost > IP assigned address?. I need to use same tap interface for several guests and > assign an IP to this tap interface to act as a router for

[Bug 211746] [Hyper-V] UEFI VM can't boot from the iso installation disk

2017-02-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211746 --- Comment #5 from Dexuan Cui --- (In reply to Dexuan Cui from comment #4) > last = (uint64_t *)staging + (1024*1024*45); I meant last = (uint64_t *) (staging + (1024*1024*45)); (I missed a pair of parentheses) -- You are receiving th

[Bug 211746] [Hyper-V] UEFI VM can't boot from the iso installation disk

2017-02-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211746 --- Comment #4 from Dexuan Cui --- (In reply to Marcel Moolenaar from comment #3) Hi Marcel, Thank you for the quick help! Yes, I checked all the AllocatePages() calls and they all succeeded, i.e. returning 0. I found the crash happened

Re: tap interfaces disappears after bhyve guests shutdowns

2017-02-13 Thread Daniel Niculescu
On 02/13/17 13:37, Miroslav Lachman wrote: C. L. Martinez wrote on 2017/02/13 13:09: Why when a bhyve guest shutdowns or reboot tap interfaces goes down and lost IP assigned address?. I need to use same tap interface for several guests and assign an IP to this tap interface to act as a ro

Re: tap interfaces disappears after bhyve guests shutdowns

2017-02-13 Thread Miroslav Lachman
C. L. Martinez wrote on 2017/02/13 13:09: Why when a bhyve guest shutdowns or reboot tap interfaces goes down and lost IP assigned address?. I need to use same tap interface for several guests and assign an IP to this tap interface to act as a router for these guests. How can I do a "pers

tap interfaces disappears after bhyve guests shutdowns

2017-02-13 Thread C. L. Martinez
Hi all, Why when a bhyve guest shutdowns or reboot tap interfaces goes down and lost IP assigned address?. I need to use same tap interface for several guests and assign an IP to this tap interface to act as a router for these guests. How can I do a "persistent tap" interface?? Thanks. I --