diff options
Diffstat (limited to 'files/etc')
-rw-r--r-- | files/etc/config/network | 34 | ||||
-rw-r--r-- | files/etc/config/splash_users | 1 | ||||
-rw-r--r-- | files/etc/config/uhttpd | 39 | ||||
-rw-r--r-- | files/etc/crontabs/root | 1 |
4 files changed, 57 insertions, 18 deletions
diff --git a/files/etc/config/network b/files/etc/config/network index c2cd550..3d73ebc 100644 --- a/files/etc/config/network +++ b/files/etc/config/network @@ -1,19 +1,21 @@ + config 'interface' 'loopback' - option 'ifname' 'lo' - option 'proto' 'static' - option 'ipaddr' '127.0.0.1' - option 'netmask' '255.0.0.0' + option 'ifname' 'lo' + option 'proto' 'static' + option 'ipaddr' '127.0.0.1' + option 'netmask' '255.0.0.0' + config 'interface' 'mesh' - option 'type' 'bridge' - option 'ifname' 'bat0 ath0 eth0.1' + option 'type' 'bridge' + option 'ifname' 'bat0 ath0' config 'interface' 'lan' option 'type' 'bridge' option 'proto' 'static' - option 'ipaddr' '192.168.1.1' + option 'ipaddr' '10.17.200.1' option 'netmask' '255.255.255.0' - option 'ifname' 'eth0.2' - + option 'ifname' 'eth0.1' + config 'switch' 'eth0' option 'name' 'eth0' option 'reset' '1' @@ -22,19 +24,15 @@ config 'switch' 'eth0' config 'switch_vlan' 'eth0_1' option 'device' 'eth0' option 'vlan' '1' - option 'ports' '2 3 5t' - + option 'ports' '0 1 2 3 5t' + config 'switch_vlan' 'eth0_2' - option 'device' 'eth0' - option 'vlan' '2' - option 'ports' '0 1 5t' - -config 'switch_vlan' 'eth0_3' option 'device' 'eth0' - option 'vlan' '3' + option 'vlan' '2' option 'ports' '4 5t' config 'interface' 'wan' - option 'ifname' 'eth0.3' + option 'ifname' 'eth0.2' option 'proto' 'dhcp' option 'dns' '217.11.48.200 217.11.49.200 8.8.8.8' + diff --git a/files/etc/config/splash_users b/files/etc/config/splash_users new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/files/etc/config/splash_users @@ -0,0 +1 @@ + diff --git a/files/etc/config/uhttpd b/files/etc/config/uhttpd new file mode 100644 index 0000000..a424463 --- /dev/null +++ b/files/etc/config/uhttpd @@ -0,0 +1,39 @@ +# Server configuration +config uhttpd main + + # HTTP listen addresses, multiple allowed + list listen_http 0.0.0.0:80 + # Server document root + option home /www + option error_page /splash.html + option index_page splash.html + # Reject requests from RFC1918 IP addresses + # directed to the servers public IP(s). + # This is a DNS rebinding countermeasure. + option rfc1918_filter 1 + + # CGI url prefix, will be searched in docroot. + # Default is /cgi-bin + option cgi_prefix /cgi-bin + + # CGI/Lua timeout, if the called script does not + # write data within the given amount of seconds, + # the server will terminate the request with + # 504 Gateway Timeout response. + option script_timeout 60 + + # Network timeout, if the current connection is + # blocked for the specified amount of seconds, + # the server will terminate the associated + # request process. + option network_timeout 30 + + # TCP Keep-Alive, send periodic keep-alive probes + # over established connections to detect dead peers. + # The value is given in seconds to specify the + # interval between subsequent probes. + # Setting this to 0 will disable TCP keep-alive. + option tcp_keepalive 1 + + + diff --git a/files/etc/crontabs/root b/files/etc/crontabs/root index cfac6b1..bf3cb9e 100644 --- a/files/etc/crontabs/root +++ b/files/etc/crontabs/root @@ -1 +1,2 @@ * * * * * /sbin/test_gateway > /dev/null +* * * * * /sbin/splash_sync > /dev/null |