search for: bridgenam

Displaying 16 results from an estimated 16 matches for "bridgenam".

Did you mean: bridgename
2009 Sep 09
1
oVirt Appliance / Single Machine Install
The following two patches fixes / reimplements the oVirt appliance project, installing the entire oVirt stack including all server and node components on one machine. These patches are intended to be checked out and used to build the appliance rpm, after which it is installed provides the /usr/sbin/ovirt-appliance-ctrl script to install/uninstall the appliance. The first patch merely removes
2009 Jun 15
0
[Bridge] [PATCH] bridge-utils: fix sysfs path for setting bridge configuration parameters
Under newer kernels the bridge configuration parameters are located under /sys/class/net/$bridgename/bridge/$param, while the current bridge-utils code is trying to access them under /sys/class/net/$bridgename/$param. This patch fixes this issue in the bridge-utils code and so allows setting of bridge configuration parameters using sysfs under newer kernel versions. Signed-off-by: Anna Fischer...
2009 Jun 15
0
[Bridge] [PATCH] bridge-utils: fix sysfs path for setting bridge configuration parameters
Under newer kernels the bridge configuration parameters are located under /sys/class/net/$bridgename/bridge/$param, while the current bridge-utils code is trying to access them under /sys/class/net/$bridgename/$param. This patch fixes this issue in the bridge-utils code and so allows setting of bridge configuration parameters using sysfs under newer kernel versions. Signed-off-by: Anna Fischer...
2009 Jun 15
0
[Bridge] [PATCH] bridge-utils: fix sysfs path for setting bridge configuration parameters
Under newer kernels the bridge configuration parameters are located under /sys/class/net/$bridgename/bridge/$param, while the current bridge-utils code is trying to access them under /sys/class/net/$bridgename/$param. This patch fixes this issue in the bridge-utils code and so allows setting of bridge configuration parameters using sysfs under newer kernel versions. Signed-off-by: Anna Fischer...
2009 Jul 05
2
[PATCH node-image] Fix create-ovirt-iso-nodes to allow manual specification of network bridge to use
...100755 --- a/create-ovirt-iso-nodes +++ b/create-ovirt-iso-nodes @@ -24,7 +24,7 @@ warn() { printf '%s: %s\n' "$ME" "$*" >&2; } try_h() { printf "Try \`$ME -h' for more information.\n" >&2; } die() { warn "$@"; try_h; exit 1; } -BRIDGENAME=ovirtbr0 +NET_DEFAULT=network:default IMGDIR_DEFAULT=/var/lib/libvirt/images imgdir=$IMGDIR_DEFAULT NODEIMG_DEFAULT=/usr/share/ovirt-node-image/ovirt-node-image.iso @@ -66,7 +66,7 @@ gen_fake_managed_node() { # that just defines the VM w/o starting it. virt-install --name=node$num --r...
2010 Jan 08
2
Virtio ballooning support for Lguest
Hi, I am doing working on enabling Transcendent Memory(OLS '09) support on lguest. For the same, I need ballooning support for lguest. Is there an implmentation of Virtio Balloon driver, that I can use for my purpose? Could someone give me an insight, as to how to go about, for implementing this myself, incase I dont find this patch... Thankyou. -- Gaurav Kukreja +91 997 030 1257
2010 Jan 08
2
Virtio ballooning support for Lguest
Hi, I am doing working on enabling Transcendent Memory(OLS '09) support on lguest. For the same, I need ballooning support for lguest. Is there an implmentation of Virtio Balloon driver, that I can use for my purpose? Could someone give me an insight, as to how to go about, for implementing this myself, incase I dont find this patch... Thankyou. -- Gaurav Kukreja +91 997 030 1257
2016 May 13
4
Bridge not forwarding multicast traffic to the tap interface
I have a Debian 8 64-bit machine set up as a server and apt-got the tinc package. I configured tinc as a bridge and everything seems normal except that the tunnel does not forward multicast traffic. I used tcpdump to examine the br0, eth0 and tap interfaces. I could see multicast packets on both br0 and eth0, but there is no such packet present on the tap interface. I don't quite know why
2007 May 09
0
[patch 9/9] lguest: the documentation, example launcher
...{ "tunnet", 1, NULL, 't' }, + { "block", 1, NULL, 'b' }, + { "initrd", 1, NULL, 'i' }, +}; +static void usage(void) +{ + errx(1, "Usage: lguest [--verbose] " + "[--sharenet=<filename>|--tunnet=(<ipaddr>|bridge:<bridgename>)\n" + "|--block=<filename>|--initrd=<filename>]...\n" + "<mem-in-mb> vmlinux [args...]"); +} + +int main(int argc, char *argv[]) +{ + unsigned long mem, pgdir, start, page_offset, initrd_size = 0; + int c, lguest_fd, waker_fd; + struct devic...
2007 May 09
0
[patch 9/9] lguest: the documentation, example launcher
...{ "tunnet", 1, NULL, 't' }, + { "block", 1, NULL, 'b' }, + { "initrd", 1, NULL, 'i' }, +}; +static void usage(void) +{ + errx(1, "Usage: lguest [--verbose] " + "[--sharenet=<filename>|--tunnet=(<ipaddr>|bridge:<bridgename>)\n" + "|--block=<filename>|--initrd=<filename>]...\n" + "<mem-in-mb> vmlinux [args...]"); +} + +int main(int argc, char *argv[]) +{ + unsigned long mem, pgdir, start, page_offset, initrd_size = 0; + int c, lguest_fd, waker_fd; + struct devic...
2009 Sep 23
2
[PATCH node] Introduces the virtual network administration functions.
....setField(Label(network.name()), 1, 0, anchorLeft = 1) + grid.setField(Label("Autostart:"), 0, 1, anchorRight = 1) + label = "No" + if network.autostart(): label = "Yes" + grid.setField(Label(label), 1, 1, anchorLeft = 1) + if network.bridgeName() is not "": + grid.setField(Label("Bridge:"), 0, 2, anchorRight = 1) + grid.setField(Label(network.bridgeName()), 1, 2, anchorLeft = 1) + return [Label("Network Interface Details"), + grid] + +def ListNetworks(): + scree...
2005 Jun 20
8
Help? Router/Bandwidth throttle needed.
I hope this list is still active. I''m an experienced Linux Sysadmin, but I haven''t done much in the way of routing. Due to a decision made by my higherups, I need to jam a computer between my ISP and my LAN to do bandwidth throttling. My current setup: 1 Crappy Cable Modem (7Mb/768Kb connection) with a static IP. 4 servers (all have static, routable IPs) - One of which is
2007 Apr 18
0
[RFC/PATCH LGUEST X86_64 07/13] lguest64 loader
...igned long *); + + if (argv[1] && strcmp(argv[1], "--verbose") == 0) { + verbose = true; + argv++; + argc--; + } + + if (argc < 4) + errx(1, "Usage: lguest [--verbose] <mem> vmlinux " + "[--sharenet=<filename>|--tunnet=(<ipaddr>|bridge:<bridgename>)" + "|--block=<filename>|--initrd=<filename>]... [args...]"); + + zero_fd = open("/dev/zero", O_RDONLY, 0); + if (zero_fd < 0) + err(1, "Opening /dev/zero"); + + mem = memparse(argv[1]); + kern_fd = open(argv[2], O_RDONLY, 0); + if (kern_fd...
2007 Apr 18
0
[RFC/PATCH LGUEST X86_64 07/13] lguest64 loader
...igned long *); + + if (argv[1] && strcmp(argv[1], "--verbose") == 0) { + verbose = true; + argv++; + argc--; + } + + if (argc < 4) + errx(1, "Usage: lguest [--verbose] <mem> vmlinux " + "[--sharenet=<filename>|--tunnet=(<ipaddr>|bridge:<bridgename>)" + "|--block=<filename>|--initrd=<filename>]... [args...]"); + + zero_fd = open("/dev/zero", O_RDONLY, 0); + if (zero_fd < 0) + err(1, "Opening /dev/zero"); + + mem = memparse(argv[1]); + kern_fd = open(argv[2], O_RDONLY, 0); + if (kern_fd...
2007 Sep 25
50
[patch 00/43] lguest: Patches for 2.6.24 (and patchbomb test)
Hi all, These are the patches I'm planning to submit for 2.6.24. Comments gratefully accepted. Along with the usual cleanups and improvements are Jes' de-i386-ification patches, and a new "virtio" mechanism designed to be shared with KVM (and hopefully other hypervisors). Cheers, Rusty. Documentation/lguest/Makefile | 30 Documentation/lguest/lguest.c
2007 Sep 25
50
[patch 00/43] lguest: Patches for 2.6.24 (and patchbomb test)
Hi all, These are the patches I'm planning to submit for 2.6.24. Comments gratefully accepted. Along with the usual cleanups and improvements are Jes' de-i386-ification patches, and a new "virtio" mechanism designed to be shared with KVM (and hopefully other hypervisors). Cheers, Rusty. Documentation/lguest/Makefile | 30 Documentation/lguest/lguest.c