[OpenWrt-Devel] madwifi wds support

2010-12-02 Thread Daniel Golle
Hi!
From what I can judge, WDS support in madwifi r3314 is broken.
There is a ticket about that, see
http://madwifi-project.org/ticket/2395
However, it remained unanswered.

Anyone ever tried using madwifi to build a Layer-2 wireless bridge?

Would you recommend me to...
a) try to fix madwifi to do wds properly
b) replace madwifi with ath5k and fix even more things there
c) use batman-adv to build a simple bridge ;)


Cheers

Daniel
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] Fwd: madwifi wds support

2010-12-02 Thread Daniel Golle
Apparently the mail-body was broken on the first try. So I resend.

 Original Message 
Subject: madwifi wds support
Date: Thu, 02 Dec 2010 18:19:10 +0100
From: Daniel Golle daniel.go...@gmail.com
To: OpenWrt Development List openwrt-devel@lists.openwrt.org

Hi!
From what I can judge, WDS support in madwifi r3314 is broken.
There is a ticket about that, see
http://madwifi-project.org/ticket/2395
However, it remained unanswered.

Anyone ever tried using madwifi to build a Layer-2 wireless bridge?

Would you recommend me to...
a) try to fix madwifi to do wds properly
b) replace madwifi with ath5k and fix even more things there
c) use batman-adv to build a simple bridge ;)


Cheers

Daniel
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] madwifi wds support (strange list behaviour?)

2010-12-02 Thread Daniel Golle
Am I doing something wrong?
From what I can judge, WDS support in madwifi r3314 is broken.
There is a ticket about that, see
http://madwifi-project.org/ticket/2395
However, it remained unanswered.

Anyone ever tried using madwifi to build a Layer-2 wireless bridge?

Would you recommend me to...
a) try to fix madwifi to do wds properly
b) replace madwifi with ath5k and fix even more things there
c) use batman-adv to build a simple bridge ;)


Cheers

Daniel
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] madwifi wds support

2010-12-02 Thread Felix Fietkau
On 2010-12-02 6:19 PM, Daniel Golle wrote:
 Hi!
 From what I can judge, WDS support in madwifi r3314 is broken.
 There is a ticket about that, see
 http://madwifi-project.org/ticket/2395
 However, it remained unanswered.
 
 Anyone ever tried using madwifi to build a Layer-2 wireless bridge?
 
 Would you recommend me to...
 a) try to fix madwifi to do wds properly
 b) replace madwifi with ath5k and fix even more things there
 c) use batman-adv to build a simple bridge ;)
The WDS AP/STA implementation in the OpenWrt version of madwifi is
completely different from the one in the versions from
madwifi-project.org

As far as I know, it should be working in the OpenWrt madwifi package
(you need to configure it through /etc/config/wireless).

The WDS implementation based on wlanmode wds (used to set up a link
between two APs) is indeed broken, and it has been for a long time, so
just use the AP/STA based one.

Aside from that, mac80211 has an implementation that is compatible to
the one used in the OpenWrt madwifi, so maybe you should give ath5k a
try as well.

- Felix

___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] porting to Linksys E3000?

2010-12-02 Thread Gert Doering
Hi,

so far, I've only *used* OpenWRT and have been quite happy with it (and
have contributed a package :-) ).

Now I am considering actually *porting* OpenWRT and have no idea where
to start...

Target platform is Cisco/Linksys E3000 (identical to the WRT610Nv2), based
on Broadcom 4718 chips, and fully supported by DD-WRT with kernel 2.6.

Unfortunately, DD-WRT is not to my liking - everything is nvram set 
style config, no nice rc scripts to look at  tweak, etc. - OpenWRT is 
my style of doing things.

... so: given that OpenWRT has bcm47xx support, but not E3000/N610 - 
what are the usual problems in getting a certain platform to actually 
*work*?  Is there a howto or anything?

gert
-- 
USENET is *not* the non-clickable part of WWW!
   //www.muc.de/~gert/
Gert Doering - Munich, Germany g...@greenie.muc.de
fax: +49-89-35655025g...@net.informatik.tu-muenchen.de


pgpkrM2UGfdQ8.pgp
Description: PGP signature
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] [PATCH] Add support for channels in znc configuration

2010-12-02 Thread Timothy Redaelli
This adds support for channels in znc configuration:

Just put a list channel'#chan optional_password' in an user section of 
/etc/config/znc

Signed-off-by: Timothy Redaelli timo...@redaelli.eu

---

Index: net/znc/files/znc.init
===
--- net/znc/files/znc.init  (revisione 24213)
+++ net/znc/files/znc.init  (copia locale)
@@ -10,6 +10,14 @@
echo $1 = $2  $ZNC_CONFIG
 }
 
+add_chan() {
+   chan=${1% *}
+   pass=${1#* }
+   echo   Chan $chan  $ZNC_CONFIG
+   [ $chan != $pass ]  echo Key = $pass  
$ZNC_CONFIG
+   echo   /Chan  $ZNC_CONFIG
+}
+
 znc_global() {
local znc=$1
local anoniplimit
@@ -72,6 +80,7 @@
 
config_list_foreach $user server add_param \Server\
config_list_foreach $user module add_param \LoadModule\
+   config_list_foreach $user channel add_chan
echo /User  $ZNC_CONFIG
 }
 
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] [PATCH] Add support for channels in znc configuration

2010-12-02 Thread Outback Dingo
Committed revision 24218.


On Thu, Dec 2, 2010 at 5:01 PM, Timothy Redaelli timothy.redae...@gmail.com
 wrote:

 This adds support for channels in znc configuration:

 Just put a list channel'#chan optional_password' in an user section
 of
 /etc/config/znc

 Signed-off-by: Timothy Redaelli timo...@redaelli.eu

 ---

 Index: net/znc/files/znc.init
 ===
 --- net/znc/files/znc.init  (revisione 24213)
 +++ net/znc/files/znc.init  (copia locale)
 @@ -10,6 +10,14 @@
echo $1 = $2  $ZNC_CONFIG
  }

 +add_chan() {
 +   chan=${1% *}
 +   pass=${1#* }
 +   echo   Chan $chan  $ZNC_CONFIG
 +   [ $chan != $pass ]  echo Key = $pass 
 $ZNC_CONFIG
 +   echo   /Chan  $ZNC_CONFIG
 +}
 +
  znc_global() {
local znc=$1
local anoniplimit
 @@ -72,6 +80,7 @@

config_list_foreach $user server add_param \Server\
config_list_foreach $user module add_param \
  LoadModule\
 +   config_list_foreach $user channel add_chan
echo /User  $ZNC_CONFIG
  }

 ___
 openwrt-devel mailing list
 openwrt-devel@lists.openwrt.org
 https://lists.openwrt.org/mailman/listinfo/openwrt-devel

___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel