similar to: DNS forwarding for guest domains on isolated network

Displaying 20 results from an estimated 5000 matches similar to: "DNS forwarding for guest domains on isolated network"

2020 Nov 11
0
Re: DNS forwarding for guest domains on isolated network
On 11/11/20 3:40 AM, Jörg Kastning wrote: > Hi @all, > > I'm having trouble to realize my use case and hope somebody could help me. > > # Use case > > For a home lab I want to deploy several guest domains. These domains > must not have a direct or NAT connection to the internet or my LAN. They > should only be able to reach my LAN and the internet through a
2014 Apr 06
3
Changing dnsmasq DNS settings for virtual machines
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi everyone, maybe this is an old fart, but I cant get it to work. I am running libvirt on a laptop, where a dnsmasq is already running to delegate dns info for my local (not-public) network. My resolv.conf (on the host) lists the system-dnsmasq as first server. I had to set the listen-adress for the system-dnsmasq to 127.0.0.1 and set
2014 Apr 10
2
Re: Changing dnsmasq DNS settings for virtual machines
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 10.04.2014 13:08 Laine Stump wrote: > On 04/06/2014 08:33 AM, Johannes Kastl wrote: >> There was a bug in libvirt for quite awhile that caused >> locally-unresolved requests for hostnames in the domain given by >> the network's <domain name='xyzzy'/> element to be dropped rather >> than forwarded. Is
2009 May 18
4
[LLVMdev] Getting exceptions to work?
I've been struggling for several days, trying to get native exceptions to work in my code. I managed to boil down the IR to the simplest possible example that I can think of. If anyone on this list can tell me what changes I need to make to the following code to get it to work (i.e. return 0 instead of a bus error), it would make my life immensely better. ; ModuleID =
2009 May 18
0
[LLVMdev] Getting exceptions to work?
Hi Talin, You're not using the llvm intrinsics for exception handling, so your code won't work. Using _Unwind_RaiseException should be OK, but your main function must at least use llvm.eh.exception, llvm.eh.selector.i32/64 and probably __cxa_begin_catch and __cxa_end_catch. Nicolas Talin wrote: > I've been struggling for several days, trying to get native exceptions > to
2017 Mar 30
3
Network isolation for KVM guests
Hi all, What options exists under CentOS hosts to work with isolated networks?. For example, on BSD systems it is really trivial. In FreeBSD you can use setfib tools and on OpenBSD it is possible to use rdomain options. In 30 secs it is possible to work with isolated networks and assign process, ip address and routes (hidden from the main route table and ip addresses), etc. But I can't
2020 Jul 20
2
host and vm on isolated network, there is ip (via dhcp) but not ping
Greetings, I've setup an vm with openwrt in it, defined a isolated lan between the vm and the host and booted the vm up. I see the vm is up, made sure the vnic is visible in both the host and guest and added it to the br in the guest. I've issued an dhcpd call on the vnic (labeled vnic0) in the host and got an ip, see: dagg@NCC-5001D ~ $ dhcpcd vnet0 DUID
2016 Dec 22
1
dsync for subscription on public/shared folder
Hello, I already wrote regarding that, but maybe it sounded too complex. I will write it a bit softer now. The replication through dsnyc works perfectly with one exception. I am having an issue with the replication of the subscriptions file on shared folder. We have a public mailbox defined: namespace public-test { location = maildir:/opt/mail/_public/test prefix = public/test/
2020 Apr 28
2
Re: Libvirt APIs for creating virtual networks
Okay. Thanks. Do we have any facility APIs to set the DHCP Options via XML ? Default gateway ? Dns-server ? domain-name ? Thanks & Regards Santhosh Kumar Gunturu On Tue, Apr 28, 2020 at 8:47 AM Daniel P. Berrangé <berrange@redhat.com> wrote: > On Tue, Apr 28, 2020 at 08:39:06AM -0700, Santhosh Kumar Gunturu wrote: > > I am using the Libvirt APIs to create the virtual
2009 May 19
5
[LLVMdev] Getting exceptions to work?
Nicolas Geoffray wrote: > Hi Talin, > > You're not using the llvm intrinsics for exception handling, so your > code won't work. Using _Unwind_RaiseException should be OK, but your > main function must at least use llvm.eh.exception, > llvm.eh.selector.i32/64 and probably __cxa_begin_catch and __cxa_end_catch. > Let me ask a follow-up question then - if the
2020 Apr 30
2
Re: Libvirt APIs for creating virtual networks
On 4/28/20 12:01 PM, Daniel P. Berrangé wrote: > On Tue, Apr 28, 2020 at 08:51:45AM -0700, Santhosh Kumar Gunturu wrote: >> Okay. Thanks. >> >> Do we have any facility APIs to set the DHCP Options via XML ? >> Default gateway ? libvirt has no supported method of specifying a default gateway other than the IP of the bridge device on the virtualization host it self, and
2017 Jun 07
2
Re: Isolate VMs' network
On Tue, Jun 06, 2017 at 11:37:27PM -0300, Thiago Oliveira wrote: > Daniel, > > Are you talking about XML? If yes, could please show us an example? <domain> ... <devices> .... <interface type='bridge'> <mac address='00:16:3e:5d:c7:9e'/> <filterref filter='clean-traffic'/> </interface> ....
2011 Nov 16
1
Speaking of DNSmasq ....
.... I am getting a bit tired of those pesky DNSmasq entries in my syslog file, they fill it up about weekly, wash other stuff out of view on a tail. Is there any way to suppress them. or else increase their lease time so that they happen less frequently ? Having a finite lease time for a VM seems nonsensical, it can't go anywhere or disconnect (obviously) .... I tried restarting DNSmasq,
2016 Apr 04
1
add external access to routed dnsmasq
I have created a routed virtual network. From within the routed net, DNS requests to the dnsmasq interface virbr2 work fine. On the libvirt host, DNS requests to the dnsmasq interface virbr2 work fine. I would like to allow external hosts, on the same network as the libvirt host, to query the dnsmasq interface. However external DNS queries to the virbr2 interface time out. The iptables firewall
2017 Dec 27
3
libvirt net xml format
Hi all, I went through the docs but could not find a way to pass the -h OR --no-hosts option to dnsmasq via libvirt xml Is there a way to do this via xml ? please can someone help. Thanks
2014 Mar 14
1
How assign static ip using NAT?
Hi, I have the following configuration in the xml of the guest. But if I set a static ip on the guest, then the guest can not access the outside network. I don't find an example on how to set a static IP address for the guest. Could anybody know how to modify the following xml code to do so? Thanks. 41 <interface type='network'> 42 <mac
2017 Mar 31
4
Network isolation for KVM guests
On Thu, Mar 30, 2017 at 06:15:28PM +0100, Nux! wrote: > Use libvirt with mac/ip spoofing enabled. > > https://libvirt.org/formatnwfilter.html > > https://libvirt.org/firewall.html > > -- > Sent from the Delta quadrant using Borg technology! > Thanks Nux and Kristian but I don't see if these solutions will be really efective in my environment. Let me to explain.
2019 May 31
2
Easy solution for custom firewall rules- is it possible?
Hello All- I've looked in several places and haven't found an answer to this question: is it possible to have libvirt add custom rules to iptables for virtual network interfaces? I took a look at the "Firewall and Network Filtering in Libvirt" page and it seems overly complicated for what I want to do. Given an interface virbr2 and its network 192.168.4.0/24, libvirt installs
2012 Mar 23
1
[libvirt] Problem with Open vSwitch and dnsmasq
Date: Thu, 22 Mar 2012 11:43:03 -0700 Subject: Re: [libvirt] Problem with Open vSwitch and dnsmasq From: aatteka at nicira.com To: dano1988 at hotmail.it CC: libvir-list at redhat.com; roberto.sassu at polito.it; paolo.smiraglia at polito.it; dev at openvswitch.org On Thu, Mar 22, 2012 at 11:11 AM, Daniele Milani <dano1988 at hotmail.it> wrote: I think I could try the first solution.
2018 Mar 13
2
Re: Specify DNS and gateway for dnsmasq
On 13/03/2018 15:30, Michal Privoznik wrote:> The default GW depends on the IP address you assigned to your network: > > <ip address='192.168.122.1' netmask='255.255.255.0'/> > > This says the default GW is 192.168.122.1/24. However, you can insert > other routes too: > > <route address="192.168.222.0" prefix="24"