Some work on the next-node anycast address

This commit is contained in:
Matthias Schiffer 2013-09-28 21:24:13 +02:00
parent fea85d3c29
commit cd7c703b99
2 changed files with 61 additions and 0 deletions

View File

@ -0,0 +1,36 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=gluon-next-node
PKG_VERSION:=0.3.2.99
PKG_RELEASE:=1
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
include $(INCLUDE_DIR)/package.mk
define Package/gluon-next-node
SECTION:=gluon
CATEGORY:=Gluon
TITLE:=Next-node anycast address
DEPENDS:=+gluon-core +gluon-mesh-batman-adv +iproute2 +kmod-macvlan
endef
define Package/gluon-next-node/description
Gluon community wifi mesh firmware framework: next-node anycast address
endef
define Build/Prepare
mkdir -p $(PKG_BUILD_DIR)
endef
define Build/Configure
endef
define Build/Compile
endef
define Package/gluon-next-node/install
$(GLUON_GENERATE) ./generate/* $(1)/
endef
$(eval $(call BuildPackage,gluon-next-node))

View File

@ -0,0 +1,25 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2013 Project Gluon
START=95
start() {
ip link add link br-mesh name local-node type macvlan
ip link set local-node address @next_node.mac@
ip address add @next_node.ip4@/32 dev local-node
ip route add @next_node.prefix4@ dev br-freifunk
ip address add @next_node.ip6@/128 dev local-node
ip route add @next_node.prefix6@ dev br-freifunk
ip link set local-node up
}
stop() {
ip route del @next_node.prefix4@ dev br-freifunk
ip route del @next_node.prefix6@ dev br-freifunk
ip link set local-node down
ip link del local-node
}