Re: ifenslave / ifupdown bonding support

2015-03-26 Thread Michael Sumulong
Ok that looks promising. So for pre-down I'd add right after the pre-up line?: pre-down ifenslave -d bond eth4 eth9 On Thu, Mar 26, 2015 at 11:43 AM, Bernhard Reutner-Fischer rep.dot@gmail.com wrote: On 26 March 2015 at 14:57, Michael Sumulong msumul...@gmail.com wrote: I am currently

Re: ifenslave / ifupdown bonding support

2015-03-26 Thread Bernhard Reutner-Fischer
Please do not top-post. On 26 March 2015 at 17:25, Michael Sumulong msumul...@gmail.com wrote: Ok that looks promising. So for pre-down I'd add right after the pre-up line?: pre-down ifenslave -d bond eth4 eth9 IIRC ifdown bond0 should release the slaves. me@there .../src/linux $ git grep

Re: ifenslave / ifupdown bonding support

2015-03-26 Thread Timo Teras
On Thu, 26 Mar 2015 09:57:31 -0400 Michael Sumulong msumul...@gmail.com wrote: I am currently using BusyBox 1.22.1 and would like to be able to setup network interface bonding via my /etc/network/interfaces file but I'm not sure if there's any support for bonding in ifupdown.c. Can anyone

ifenslave / ifupdown bonding support

2015-03-26 Thread Michael Sumulong
I am currently using BusyBox 1.22.1 and would like to be able to setup network interface bonding via my /etc/network/interfaces file but I'm not sure if there's any support for bonding in ifupdown.c. Can anyone confirm this is true or am I missing something?

Re: ifenslave / ifupdown bonding support

2015-03-26 Thread Bernhard Reutner-Fischer
this is true or am I missing something? I suggest you do that with pre-up and post-down Maybe something like this works already?: auto bond0 iface bond0 inet static address 10.0.0.77 netmask 255.255.255.0 gateway 10.0.0.1 pre-up ifenslave bond0 eth4 eth9 echo alias

[PATCH] ifenslave: Remove unused #include

2010-04-01 Thread Tobias Klauser
No symbols from net/if_arp.h are used inside ifenslave.c Signed-off-by: Tobias Klauser tklau...@distanz.ch --- networking/ifenslave.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/networking/ifenslave.c b/networking/ifenslave.c index 28f0c0b..27e4350 100644 ---

Re: [PATCH] ifenslave and 2.4 kernel

2009-09-24 Thread Matthew Stoltenberg
Argg, I want to hack gmail to automatically use reply-to-all when I respond to a mailing list... Does it work on 2.4? Yes. ___ busybox mailing list busybox@busybox.net http://lists.busybox.net/mailman/listinfo/busybox

Re: [PATCH] ifenslave and 2.4 kernel

2009-09-23 Thread Denys Vlasenko
On Wednesday 23 September 2009 01:03, Matthew Stoltenberg wrote: I've had this patch sitting around a couple of weeks. Got around to cleaning it up a bit and submitting it. The attached patch allows me to build the ifenslave applet in MontaVista CGE31 (xscale_be target) using gcc-3.3.1

[PATCH] ifenslave and 2.4 kernel

2009-09-22 Thread Matthew Stoltenberg
I've had this patch sitting around a couple of weeks. Got around to cleaning it up a bit and submitting it. The attached patch allows me to build the ifenslave applet in MontaVista CGE31 (xscale_be target) using gcc-3.3.1. I've also tested the modified applet quite a bit. Let me know if you

ifenslave

2008-07-09 Thread Richard Kojedzinszky
I found that this patch helps ifenslave to work correctly. Kojedzinszky Richard TvNetWork Nyrt. E-mail: krichy (at) tvnetwork [dot] hu PGP: 0x24E79141 Fingerprint = 6847 ECFF EF58 0C09 18A5 16CF 270F 0C6F 24E7 9141--- busybox-1.10.4/networking/ifenslave.c.orig 2008-07-09 16:51:58.0

Re: ifenslave

2008-07-09 Thread Denys Vlasenko
On Wednesday 09 July 2008 17:02, Richard Kojedzinszky wrote: I found that this patch helps ifenslave to work correctly. Kojedzinszky Richard TvNetWork Nyrt. E-mail: krichy (at) tvnetwork [dot] hu PGP: 0x24E79141 Fingerprint = 6847 ECFF EF58 0C09 18A5 16CF 270F 0C6F 24E7 9141

Re: ifenslave broken

2008-05-20 Thread Marc Leeman
The patch below (from my local 1.9.2 branch) still works, I still have to find out what in the re-write goes wrong. NAK. The code needs busybox'ification. Agreed, it's in essense the first patch I submitted combined with the feedback from the bug report list. I did busybox'ification

Re: ifenslave broken

2008-05-20 Thread Marc Leeman
on ifenslave. -- greetz, marc If he should ask for it, what body part are you willing to offer for it, your Eminence? Pilot - DNA Mad Scientist chiana 2.6.18-4-ixp4xx #1 Tue Mar 27 18:01:56 BST 2007 GNU/Linux --- networking/ifenslave.c |2 ++ 1 file changed, 2 insertions(+) Index

ifenslave broken

2008-05-19 Thread Marc Leeman
1. Good news, ifenslave finally made it into busybox, yy! 2. Bad news, the implementation seems broken: from what I quickly saw, it is due to the re-write of the main function that leads to a segfault in get_drv_info. The patch below (from my local 1.9.2 branch) still works, I still have

Re: ifenslave broken

2008-05-19 Thread Denys Vlasenko
On Monday 19 May 2008 17:52, Marc Leeman wrote: 1. Good news, ifenslave finally made it into busybox, yy! 2. Bad news, the implementation seems broken: from what I quickly saw, it is due to the re-write of the main function that leads to a segfault in get_drv_info. The patch below