Milí majitelé routerů Turris,
toto fórum bylo 9. 12. 2016 zmrazeno a nahrazeno naším novým Turris fórem. Ještě chvíli bude dostupné k prohlížení, ale již zde není možné přispívat. Více informací naleznete v oznámení o uzavření fóra.
Dear Turris routers users,
this forum has been frozen on Dec 9th, 2016 and replaced by our new Turris forum. It will be read-only accessible for some time after. For more information, read the announcement about closing the forum.
#!/bin/sh /etc/rc.common
# Copyright (C) 2006-2011 OpenWrt.org
START=50
start_instance () {
local section="$1"
config_get address "$section" 'address'
config_get port "$section" 'port'
config_get password "$section" 'password'
config_get tunnelip "$section" 'tunnelip'
config_get tld "$section" 'tld'
service_start /usr/sbin/iodined -p "$port" -l "$address" -P "$password" "$tunnelip" "$tld"
}
start() {
config_load 'iodined'
config_foreach start_instance 'iodined'
}
config iodined
option address 'lokalni_ip_turrisu'
option port '53536'
option password 'heslo'
option tunnelip 'lokalni_ip_tunelu'
option tld 'domena'
Powered by mwForum 2.29.3 © 1999-2013 Markus Wichitill