search for: setageing

Displaying 20 results from an estimated 20 matches for "setageing".

2014 Nov 12
3
Put virbr0 in promiscusous
Hi , I have two virtual machines VM1 and VM2. Then I have added eth0 of my VM to 'default' network. Use case :- I want to monitor all traffic on virbr0('default' network). Steps followed :- 1. Add VM1 eth0 to virbr0 2. Add VM2 eth1 to virbr0 3. brctl setageing ovsbr0 0 ..(To put bridge in promiscuous) Now I am running tcpdump on eth1 of VM2 and trying to ping google.com(outside world) In VM2 (tcpdump -i eth1), I can see only ingress(incoming) traffic of VM1. I am not able see outgoing traffic of VM1. If I create another bridge and trying same scenario...
2014 Dec 30
2
ifcfg-br options
Hi, Does anyone know if there is an option for the ifcfg-br file that matches the brctl setageing parameter? I am using KVM and am running a DPI guest and need this parameter set to 0 to get mirrored span port data to cross the bridge to the guest vnet device. Thanks, -- Stephen Clark *NetWolves Managed Services, LLC.* Director of Technology Phone: 813-579-3200 Fax: 813-882-0209 Email: stev...
2011 Aug 26
0
R.oo inheritance with pass by reference
I thought I would post an example of using R.oo with inheritance and pass by reference for future searches. With PerMore I am inheriting Person. Then I am changing an object data memeber of an object of PerMore class using pass by reference ('mimiced' by R.oo) in an object of AgeMultiplier. I change a data member in the child class and the parent class for demonstration purposes. This is
2007 Sep 28
2
[Bridge] Flushing MAC-tables(?)
Dear list-members! I am using OpenWRT (www.openwrt.org) on two accesspoints. Within OpenWRT, the wireless interface and the ethernet interface are bridged to one interface (br0). Those two accesspoints are standing quite far from one another. Their WLAN-cells do not cross each other, meaning I have an area in between the two accesspoints, where there is no accesspoint of the two accessible: a
2014 Dec 30
0
ifcfg-br options
Hi Steve, On 30-12-14 14:32, Steve Clark wrote: > Hi, > > Does anyone know if there is an option for the ifcfg-br file that > matches the > brctl setageing parameter? I didn't see anything related in sysconfig.txt but there is https://bugs.centos.org/view.php?id=4675 HTH, Patrick
2011 May 11
0
KVM switch in promiscuous mode
Hi all, I am trying to enable promiscuous mode on a kvm switch due to sniff all traffic using snort installed on a kvm guest. I have found a partial solution configuring this bridge with "brctl setaging br0 0", but all vms sees all traffic. I think the soultion is using ebtables but I didn't found any doc about how can I do under kvm (and upstream recommends disable this
2011 Aug 23
1
R.oo modify an object inside another classes method
Can someone show me how to modify one (R.oo) class's object inside another (R.oo) class's method? Is that possible with the R.oo package? A quick example or reference to an example would be outstanding... Thanks, Ben [[alternative HTML version deleted]]
2011 Oct 27
0
R.oo package, inherit two classes
Hello, How do I inherit two classes using the R.oo package. Below is kind of a silly example, but I am trying to create class PerDog from classes Dog and Person. Error at bottom. I've tried a few other ways of using extend(), but nothing seems to get me what I want. Example: setConstructorS3("Person", function(age=NA) { this = extend(Object(), "Person", .age=age )
2014 Nov 24
0
Re: Put virbr0 in promiscusous
...wo virtual machines VM1 and VM2. Then I have added eth0 of my > VM to 'default' network. > > Use case :- > I want to monitor all traffic on virbr0('default' network). > > Steps followed :- > 1. Add VM1 eth0 to virbr0 > 2. Add VM2 eth1 to virbr0 > 3. brctl setageing ovsbr0 0 ..(To put bridge in promiscuous) > > Now I am running tcpdump on eth1 of VM2 and trying to ping google.com > <http://google.com>(outside world) > > In VM2 (tcpdump -i eth1), I can see only ingress(incoming) traffic of > VM1. I am not able see outgoing traffic of VM1...
2014 Nov 24
2
Re: Put virbr0 in promiscusous
...n I have added eth0 of my >> VM to 'default' network. >> >> Use case :- >> I want to monitor all traffic on virbr0('default' network). >> >> Steps followed :- >> 1. Add VM1 eth0 to virbr0 >> 2. Add VM2 eth1 to virbr0 >> 3. brctl setageing ovsbr0 0 ..(To put bridge in promiscuous) >> >> Now I am running tcpdump on eth1 of VM2 and trying to ping google.com >> <http://google.com>(outside world) >> >> In VM2 (tcpdump -i eth1), I can see only ingress(incoming) traffic of >> VM1. I am not able see...
2013 Mar 01
0
XCP 1.6 don’t pass throug all traffic to (tpcdump) snort
...from one server to the other but without success. I tried the tcpdump also on de XCP1.6 host ''tcpdump -n -i eth1 proto ICMP'' no success , also i tried this with the xenbr1 and vif2.5 but still not getting any ICMP packets through. So i tried the XEN bridge - promiscous mode brctl setageing xenbr1 0 ifconfig eth1 promisc Still not working. I tried this also on pif-param-set uuid=xxxxxxxx other-config:promiscous=´on´ and the vif-param-set uuid = xxxxxxx other-config:promiscous=´on´ still I can not see any ICMP packet getting through the XCP1.6 server. I plug in a laptop with Ubuntu...
2009 Aug 13
0
[Bridge] [PATCH] bridge-utils: Add 'hairpin' port forwarding mode
...t;device>\tadd interface to bridge" }, { 2, "delif", br_cmd_delif, "<bridge> <device>\tdelete interface from bridge" }, + { 3, "hairpin", br_cmd_hairpin, + "<bridge> <port> {on|off}\tturn hairpin on/off" }, { 2, "setageing", br_cmd_setageing, "<bridge> <time>\t\tset ageing time" }, { 2, "setbridgeprio", br_cmd_setbridgeprio, diff --git a/brctl/brctl_disp.c b/brctl/brctl_disp.c index 27ce6d2..3e81241 100644 --- a/brctl/brctl_disp.c +++ b/brctl/brctl_disp.c @@ -93,6 +93,8 @@ s...
2009 Aug 13
0
[Bridge] [PATCH] bridge-utils: Add 'hairpin' port forwarding mode
...t;device>\tadd interface to bridge" }, { 2, "delif", br_cmd_delif, "<bridge> <device>\tdelete interface from bridge" }, + { 3, "hairpin", br_cmd_hairpin, + "<bridge> <port> {on|off}\tturn hairpin on/off" }, { 2, "setageing", br_cmd_setageing, "<bridge> <time>\t\tset ageing time" }, { 2, "setbridgeprio", br_cmd_setbridgeprio, diff --git a/brctl/brctl_disp.c b/brctl/brctl_disp.c index 27ce6d2..3e81241 100644 --- a/brctl/brctl_disp.c +++ b/brctl/brctl_disp.c @@ -93,6 +93,8 @@ s...
2009 Aug 13
0
[Bridge] [PATCH] bridge-utils: Add 'hairpin' port forwarding mode
...t;device>\tadd interface to bridge" }, { 2, "delif", br_cmd_delif, "<bridge> <device>\tdelete interface from bridge" }, + { 3, "hairpin", br_cmd_hairpin, + "<bridge> <port> {on|off}\tturn hairpin on/off" }, { 2, "setageing", br_cmd_setageing, "<bridge> <time>\t\tset ageing time" }, { 2, "setbridgeprio", br_cmd_setbridgeprio, diff --git a/brctl/brctl_disp.c b/brctl/brctl_disp.c index 27ce6d2..3e81241 100644 --- a/brctl/brctl_disp.c +++ b/brctl/brctl_disp.c @@ -93,6 +93,8 @@ s...
2005 Mar 03
14
Serious performance issues
Hi. I have a Shuttle box with an AMD Athlon XP 2200+ and 1GB of RAM. I''m normally running it with Debian sarge/sid and kernel 2.6.10-1-k7, as built by Debian. I want to use Xen on it. I built a xen0 kernel which is as close to the Debian kernel as I can (no power management, no HPET timers, broken ISA drivers disabled), disabled /lib/tls, and booted with the new kernel. Everything works.
2009 Jun 15
0
[Bridge] [PATCH][RFC] bridge-utils: add basic VEPA support
...t;device>\tadd interface to bridge" }, { 2, "delif", br_cmd_delif, "<bridge> <device>\tdelete interface from bridge" }, + { 3, "hairpin", br_cmd_hairpin, + "<bridge> <port> {on|off}\tturn hairpin on/off" }, { 2, "setageing", br_cmd_setageing, "<bridge> <time>\t\tset ageing time" }, { 2, "setbridgeprio", br_cmd_setbridgeprio, @@ -423,6 +513,10 @@ static const struct command commands[] = { "<bridge>\t\tshow bridge stp info"}, { 2, "stp", br_cmd_...
2009 Jun 15
0
[Bridge] [PATCH][RFC] bridge-utils: add basic VEPA support
...t;device>\tadd interface to bridge" }, { 2, "delif", br_cmd_delif, "<bridge> <device>\tdelete interface from bridge" }, + { 3, "hairpin", br_cmd_hairpin, + "<bridge> <port> {on|off}\tturn hairpin on/off" }, { 2, "setageing", br_cmd_setageing, "<bridge> <time>\t\tset ageing time" }, { 2, "setbridgeprio", br_cmd_setbridgeprio, @@ -423,6 +513,10 @@ static const struct command commands[] = { "<bridge>\t\tshow bridge stp info"}, { 2, "stp", br_cmd_...
2009 Jun 15
0
[Bridge] [PATCH][RFC] bridge-utils: add basic VEPA support
...t;device>\tadd interface to bridge" }, { 2, "delif", br_cmd_delif, "<bridge> <device>\tdelete interface from bridge" }, + { 3, "hairpin", br_cmd_hairpin, + "<bridge> <port> {on|off}\tturn hairpin on/off" }, { 2, "setageing", br_cmd_setageing, "<bridge> <time>\t\tset ageing time" }, { 2, "setbridgeprio", br_cmd_setbridgeprio, @@ -423,6 +513,10 @@ static const struct command commands[] = { "<bridge>\t\tshow bridge stp info"}, { 2, "stp", br_cmd_...
2008 Jun 06
32
Dedicate Nic''s to DomU''s
Hey all I''m new to Linux and Virtualizing. I''m trying to dedicate my nic''s to each virtual server. For instance, virt server A would use nic1 and virt server B would use nic2 and so on. I''ve been reading some stuff for this list and to tell you the truth I''m a bit overwhelmed. We are going to run SLES10.1 and Xen. I would appreciate any assistance.
2013 Aug 23
1
[Bridge] challenge of year: connect to LAN using wireless-ap over bridge + unmanaged l2tpv3 tunnel + bridge? it's possible?
hi everyone, so,first it seemed a trivial question to me, but since I could not find anybody being neither able to answer this question nor giving a short config example. after a few sleepless nights and exhausting all the reading and research. here I am sharing my problem with all of you, in the hope of some possible solution/sugestion. or is it that this is impossible?? below my