search for: setlink

Displaying 20 results from an estimated 27 matches for "setlink".

Did you mean: netlink
2006 Jul 03
13
Eager loading ActiveRecord objects
I have a complex graph of ActiveRecord entities that I want to load with one big honkin'' join query to avoid ripple loading. It''s for a report. However :include doesn''t get me all the way there because I want to load parents of parents (or children of children). I don''t mind doing the SQL by hand but I''m not quite sure what to do to get the result
2015 Feb 13
1
GPO set link contaniter
>I created a gpo with samba-tool, but I want to assign to a OU, the GPO that I created earlier, >I guess I need to use the command, samba-tool gpo SetLink. How the command is used? >I tried the following way: > samba-tool gpo setLink OU=People,DC=dominio,DC=pdc,DC=cu cn_GPO > But it did not work > Throws the following exception Badly formed gpLink
2013 Oct 02
1
Re: Bringing up a guest with network disabled
...idea if it's possible to "disable" the NIC on the VM > definition but you could boot into runlevel 1 (where there is no > network) and perform the changes there. You may do this by passing a 1 > to the end of the kernel line (during GRUB boot section). > try : virsh domif-setlink
2016 Apr 19
4
Re: Create multiple domains from single saved domain state (is UUID/name fixed?)
...wo networks using the same IP range (since libvirt doesn't use network namespaces for its networks), so the guest will need to change its IP, which means it will need to be notified of this need, possibly by having the host toggle the interface offline and back on - you can use virsh domif-setlink to do this. > > Is this doable with libvirt, or am I better off using QEMU directly? > and how? I couldn't do internal snapshots with --live, and > snapshot-revert says it can't revert to external snapshots yet :) > (using QEMU directly would certainly leave me with a lot...
2006 May 13
1
Rake clone bug?
...| | link_id | bigint(20) unsigned | | PRI | NULL | auto_increment | | external_pupil_id | int(11) | YES | | NULL | | | external_pupil_set_id | int(11) | YES | | NULL | | | | setlink_end_date | int(11) | YES | | NULL | | | setlink_start_date | int(11) | | | 0 | | +-----------------------+------------------------+------+-----+---------+----------------+ gets cloned by rake to: +---------...
2014 Nov 07
1
php api binding for setting interface link flags (up/down).
Hello. I can't see in php api reference info about setting port status of interface. virsh have comands virsh domif-setlink, but php api does not have link funstions. Please add this interface, bacause it very useful - then we need to disable some vps, but not want to shutdown it. Thanks! -- Vasiliy Tolstov, e-mail: v.tolstov@selfip.ru jabber: vase@selfip.ru
2016 Apr 20
2
Re: Create multiple domains from single saved domain state (is UUID/name fixed?)
...same IP range (since libvirt doesn't use network namespaces for its >> networks), so the guest will need to change its IP, which means it will >> need to be notified of this need, possibly by having the host toggle the >> interface offline and back on - you can use virsh domif-setlink to do this. >> >> >> >>> Is this doable with libvirt, or am I better off using QEMU directly? and >>> how? I couldn't do internal snapshots with --live, and snapshot-revert says >>> it can't revert to external snapshots yet :) >>> (using...
2018 May 24
0
[PATCH net-next v12 5/5] virtio_net: Extend virtio to use VF datapath when available
...#39;pci' domain='0x0000' bus='0x00' slot='0x0b' function='0x0'/> +</interface> + +# Source Hypervisor +#!/bin/bash + +DOMAIN=fedora27-tap01 +PF=enp66s0f0 +VF_NUM=5 +TAP_IF=tap01 +VF_XML= + +MAC=52:54:00:00:12:53 +ZERO_MAC=00:00:00:00:00:00 + +virsh domif-setlink $DOMAIN $TAP_IF up +bridge fdb del $MAC dev $PF master +virsh detach-device $DOMAIN $VF_XML +ip link set $PF vf $VF_NUM mac $ZERO_MAC + +virsh migrate --live $DOMAIN qemu+ssh://$REMOTE_HOST/system + +# Destination Hypervisor +#!/bin/bash + +virsh attach-device $DOMAIN $VF_XML +virsh domif-setlink $...
2016 Apr 19
0
Re: Create multiple domains from single saved domain state (is UUID/name fixed?)
...ng the > same IP range (since libvirt doesn't use network namespaces for its > networks), so the guest will need to change its IP, which means it will > need to be notified of this need, possibly by having the host toggle the > interface offline and back on - you can use virsh domif-setlink to do this. > > > >> Is this doable with libvirt, or am I better off using QEMU directly? and >> how? I couldn't do internal snapshots with --live, and snapshot-revert says >> it can't revert to external snapshots yet :) >> (using QEMU directly would certain...
2013 Oct 01
4
Re: Bringing up a guest with network disabled
On Tue, 01 Oct 2013 06:10:46 -0600 Eric Blake <eblake@redhat.com> wrote: > On 10/01/2013 06:04 AM, James Gibbon wrote: > > > > > > Hello all, > > > > I have a KVM guest VM which is a clone of a production machine > > running on a different physical server, incarnated from an > > image backup. > > Careful. You need to scrub more than
2016 Apr 20
0
Re: Create multiple domains from single saved domain state (is UUID/name fixed?)
...e (since libvirt doesn't use network namespaces for its >>> networks), so the guest will need to change its IP, which means it will >>> need to be notified of this need, possibly by having the host toggle the >>> interface offline and back on - you can use virsh domif-setlink to do >>> this. >>> >>> >>> >>> Is this doable with libvirt, or am I better off using QEMU directly? and >>>> how? I couldn't do internal snapshots with --live, and snapshot-revert >>>> says >>>> it can't rever...
2018 Mar 13
0
auto propagate interface status change
2016 Apr 19
2
Re: Create multiple domains from single saved domain state (is UUID/name fixed?)
On Mon, Apr 18, 2016 at 10:05:02PM +0300, Michael Ravits wrote: >Hi Jonas, > >I asked a similar question here last week. You could find it by searching >for this topic in the mailing list archives: "Clone VM with saved state". >That being said I'd be very glad if you could update here when you find a >complete solution. > >- Michael > What I *think* Jones
2016 Jun 30
10
[PATCH net-next V4 0/6] switch to use tx skb array in tun
Hi all: This series tries to switch to use skb array in tun. This is used to eliminate the spinlock contention between producer and consumer. The conversion was straightforward: just introdce a tx skb array and use it instead of sk_receive_queue. A minor issue is to keep the tx_queue_len behaviour, since tun used to use it for the length of sk_receive_queue. This is done through: - add the
2016 Jun 30
10
[PATCH net-next V4 0/6] switch to use tx skb array in tun
Hi all: This series tries to switch to use skb array in tun. This is used to eliminate the spinlock contention between producer and consumer. The conversion was straightforward: just introdce a tx skb array and use it instead of sk_receive_queue. A minor issue is to keep the tx_queue_len behaviour, since tun used to use it for the length of sk_receive_queue. This is done through: - add the
2018 May 22
7
[PATCH net-next v11 0/5] Enable virtio_net to act as a standby for a passthru device
The main motivation for this patch is to enable cloud service providers to provide an accelerated datapath to virtio-net enabled VMs in a transparent manner with no/minimal guest userspace changes. This also enables hypervisor controlled live migration to be supported with VMs that have direct attached SR-IOV VF devices. Patch 1 introduces a failover module that provides a generic interface for
2006 Nov 06
3
HtmlWindow and friends
Hi Attached is a patch to add HtmlWindow and some of its friends, including HtmlEasyPrinting. Also a sample. I haven''t tried exposing the parsing and rendering API yet to allow custom tags etc - I just wanted to get basic HTML and the 0.6.0 compatibility classes first. There may well be some quite easy classes left. There''s one ugly kludge to get OnOpeningURL to compile -
2018 May 24
11
[PATCH net-next v12 0/5] Enable virtio_net to act as a standby for a passthru device
The main motivation for this patch is to enable cloud service providers to provide an accelerated datapath to virtio-net enabled VMs in a transparent manner with no/minimal guest userspace changes. This also enables hypervisor controlled live migration to be supported with VMs that have direct attached SR-IOV VF devices. Patch 1 introduces a failover module that provides a generic interface for
2006 Nov 12
0
[724] trunk/wxruby2: Initial commit of HtmlWindow functionality
...(&quot;&quot;, &quot;&quot;) (no link)) -&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp * \param const wxHtmlLinkInfo& -&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp*/ - </del><span class="cx"> void SetLink(const wxHtmlLinkInfo& link ) ; </span><del>-&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp/** -&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp * \brief Sets the next cell in the list. This shouldn''t be called by user - it...
2010 Jul 23
19
implementation of IEEE 802.1Qbg in lldpad
Hi, This set of patches contains the initial implementation of the IEEE 802.1Qbg standard: code for the exchange of EVB TLVs in LLDP frames to negotiate VSI capabalities as well as VDP VSI TLVs between a host with virtual machines and an adjacent switch. It supports setting the parameters of the TLV exchange from the command line using lldptool. VDP profiles consisting of