n2n/packages/openwrt/README.md

40 lines
1.4 KiB
Markdown
Raw Normal View History

## Prerequisites
This instructions explain how to build an OpenWRT .ipk package for n2n.
Before going on, it is required to have a working cross-compiling build
environment for the OpenWRT version installed into your device. This usually
comes down to the following steps:
1. Download and extract the SDK toolchain for your device. The toolchain
must match the *exact* OpenWRT version installed in your device. Toolchain
for official OpenWRT images can be downloaded from https://downloads.openwrt.org
2. Build the toolchain: run `make menuconfig`, save the configuration, then
run `make` to build the cross compiling tools
3. Download the feeds with `./scripts/feeds update -a`
2019-07-07 04:16:25 +05:30
## Compilation
2019-07-06 22:10:23 +05:30
From the OpenWRT build directory:
```
2019-07-07 00:33:32 +05:30
git clone https://github.com/ntop/n2n n2n
2019-07-07 00:45:03 +05:30
cp -r n2n/packages/openwrt package/n2n
2019-07-06 22:10:23 +05:30
make menuconfig # select Network -> VPN -> n2n-edge and n2n-supernode
make package/n2n/compile V=s
```
2019-07-07 04:16:25 +05:30
If everything went fine, two ipk will be generated, one for the n2n-edge
and the other for n2n-supernode. They can be found with `find . -name "n2n*.ipk"`,
copied to the target device, and installed with `opkg install`.
2019-07-07 04:16:25 +05:30
## Configuration
The edge node can be started with `/etc/init.d/edge start`.
Its configuration file is `/etc/n2n/edge.conf`.
2019-07-07 04:16:25 +05:30
The supernode can be started with `/etc/init.d/supernode start`.
Its configuration file is `/etc/n2n/supernode.conf`.