summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--NEWS4
-rw-r--r--docs/examples/tuntap5
-rwxr-xr-xscripts/netcfg2
-rw-r--r--src/connections/tuntap4
5 files changed, 15 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index bd1a88a..06f0282 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
DESTDIR=
-VERSION=2.6
+VERSION=2.6.1
VPATH = doc
.PHONY: install docs
diff --git a/NEWS b/NEWS
index 4cace18..ccfb79d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,7 @@
+version 2.6.1
+- fix missing mkdir for net-auto-wireless
+- add basic configuration capabilities to tun/tap interfaces
+
version 2.6
- add support for IPv6 configuration (FS#18699)
- add support for static routes configuration (FS#18700)
diff --git a/docs/examples/tuntap b/docs/examples/tuntap
index 2917875..1563520 100644
--- a/docs/examples/tuntap
+++ b/docs/examples/tuntap
@@ -4,3 +4,8 @@ MODE='tun'
USER='nobody'
GROUP='nobody'
+## Example IP configuration
+#IP='static'
+#SKIPNOCARRIER='yes'
+#ADDR='10.10.1.2'
+
diff --git a/scripts/netcfg b/scripts/netcfg
index e00794d..cb536b9 100755
--- a/scripts/netcfg
+++ b/scripts/netcfg
@@ -2,7 +2,7 @@
. /usr/lib/network/network
-NETCFG_VER=2.6
+NETCFG_VER=2.6.1
version()
{
diff --git a/src/connections/tuntap b/src/connections/tuntap
index e2c8c5d..27641e4 100644
--- a/src/connections/tuntap
+++ b/src/connections/tuntap
@@ -11,12 +11,16 @@ tuntap_up() {
ip tuntap add dev "$INTERFACE" mode "$MODE" \
user "$USER" group "$GROUP" &>/dev/null
fi
+ bring_interface up "$INTERFACE"
+ "$CONN_DIR/ethernet" up "$1"
return 0
}
tuntap_down() {
load_profile "$1"
+ "$CONN_DIR/ethernet" down "$1"
+ bring_interface down "$INTERFACE"
ip tuntap del "$INTERFACE" mode "$MODE" &>/dev/null
return 0
}