* [B.A.T.M.A.N.] [PATCH] openwrt-feed-batman-adv: enable batadv_vlan protocol
@ 2014-05-19 8:52 Antonio Quartulli
2014-06-02 16:20 ` Marek Lindner
0 siblings, 1 reply; 3+ messages in thread
From: Antonio Quartulli @ 2014-05-19 8:52 UTC (permalink / raw)
To: b.a.t.m.a.n; +Cc: Antonio Quartulli
From: Antonio Quartulli <antonio@open-mesh.com>
This protocol can be used to change VLAN-specific settings
of a batman-adv soft-interface.
At the moment only ap_isolation is available, but new ones
can be easily added as soon as batman-adv get to support more.
Interface configuration example:
config interface 'bat0vlan1'
option protocol 'batadv_vlan'
option ifname 'bat0.1'
option ap_isolation '1'
Cc: Bastian Bittorf <bittorf@bluebottle.com>
Signed-off-by: Antonio Quartulli <antonio@open-mesh.com>
---
**this patch has been tested only with the stable package in openwrt-routing**
batman-adv-devel/Makefile | 1 +
.../files/lib/netifd/proto/batadv_vlan.sh | 29 ++++++++++++++++++++++
2 files changed, 30 insertions(+)
create mode 100644 batman-adv-devel/files/lib/netifd/proto/batadv_vlan.sh
diff --git a/batman-adv-devel/Makefile b/batman-adv-devel/Makefile
index e8b0881..76f5861 100644
--- a/batman-adv-devel/Makefile
+++ b/batman-adv-devel/Makefile
@@ -78,6 +78,7 @@ define KernelPackage/batman-adv-devel/install
$(INSTALL_DATA) ./files/lib/batman-adv/config.sh $(1)/lib/batman-adv
$(INSTALL_BIN) ./files/etc/hotplug.d/net/99-batman-adv $(1)/etc/hotplug.d/net
$(INSTALL_BIN) ./files/lib/netifd/proto/batadv.sh $(1)/lib/netifd/proto
+ $(INSTALL_BIN) ./files/lib/netifd/proto/batadv_vlan.sh $(1)/lib/netifd/proto
endef
$(eval $(call KernelPackage,batman-adv-devel))
diff --git a/batman-adv-devel/files/lib/netifd/proto/batadv_vlan.sh b/batman-adv-devel/files/lib/netifd/proto/batadv_vlan.sh
new file mode 100644
index 0000000..85002c3
--- /dev/null
+++ b/batman-adv-devel/files/lib/netifd/proto/batadv_vlan.sh
@@ -0,0 +1,29 @@
+#!/bin/sh
+
+. /lib/functions.sh
+. ../netifd-proto.sh
+init_proto "$@"
+
+proto_batadv_vlan_init_config() {
+ proto_config_add_string "ap_isolation"
+}
+
+proto_batadv_vlan_setup() {
+ local config="$1"
+ local iface="$2"
+
+ # VLAN specific variables
+ local device="${iface%.*}"
+ local vid="${iface#*.}"
+
+ # batadv_vlan options
+ local ap_isolation
+
+ json_get_vars ap_isolation
+
+ echo "$ap_isolation" > "/sys/class/net/${device}/mesh/vlan${vid}/ap_isolation"
+ proto_init_update "$iface" 1
+ proto_send_update "$config"
+}
+
+add_protocol batadv_vlan
--
1.8.5.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [B.A.T.M.A.N.] [PATCH] openwrt-feed-batman-adv: enable batadv_vlan protocol
2014-05-19 8:52 [B.A.T.M.A.N.] [PATCH] openwrt-feed-batman-adv: enable batadv_vlan protocol Antonio Quartulli
@ 2014-06-02 16:20 ` Marek Lindner
2014-06-02 19:14 ` Antonio Quartulli
0 siblings, 1 reply; 3+ messages in thread
From: Marek Lindner @ 2014-06-02 16:20 UTC (permalink / raw)
To: b.a.t.m.a.n; +Cc: Antonio Quartulli, Antonio Quartulli
[-- Attachment #1: Type: text/plain, Size: 687 bytes --]
On Monday 19 May 2014 10:52:01 Antonio Quartulli wrote:
> From: Antonio Quartulli <antonio@open-mesh.com>
>
> This protocol can be used to change VLAN-specific settings
> of a batman-adv soft-interface.
> At the moment only ap_isolation is available, but new ones
> can be easily added as soon as batman-adv get to support more.
>
> Interface configuration example:
>
> config interface 'bat0vlan1'
> option protocol 'batadv_vlan'
> option ifname 'bat0.1'
> option ap_isolation '1'
Applied in revision 26284d3.
How about moving this documentation to the OpenWrt config page in our wiki ?
http://www.open-mesh.org/projects/batman-adv/wiki/Batman-adv-openwrt-config
Thanks,
Marek
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 490 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [B.A.T.M.A.N.] [PATCH] openwrt-feed-batman-adv: enable batadv_vlan protocol
2014-06-02 16:20 ` Marek Lindner
@ 2014-06-02 19:14 ` Antonio Quartulli
0 siblings, 0 replies; 3+ messages in thread
From: Antonio Quartulli @ 2014-06-02 19:14 UTC (permalink / raw)
To: Marek Lindner, b.a.t.m.a.n
[-- Attachment #1: Type: text/plain, Size: 286 bytes --]
On 02/06/14 18:20, Marek Lindner wrote:
> How about moving this documentation to the OpenWrt config page in our wiki ?
> http://www.open-mesh.org/projects/batman-adv/wiki/Batman-adv-openwrt-config
>
Yeah, good suggestion. I'll do it soon.
Cheers,
--
Antonio Quartulli
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 901 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-06-02 19:14 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-19 8:52 [B.A.T.M.A.N.] [PATCH] openwrt-feed-batman-adv: enable batadv_vlan protocol Antonio Quartulli
2014-06-02 16:20 ` Marek Lindner
2014-06-02 19:14 ` Antonio Quartulli
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox