2008-06-08 08:14:31 +00:00
--[[
LuCI - Lua Configuration Interface
Copyright 2008 Steven Barth < steven @ midlink.org >
2011-06-25 21:51:12 +00:00
Copyright 2008 - 2011 Jo - Philipp Wich < xm @ subsignal.org >
2008-06-08 08:14:31 +00:00
Licensed under the Apache License , Version 2.0 ( the " License " ) ;
you may not use this file except in compliance with the License .
You may obtain a copy of the License at
http : // www.apache . org / licenses / LICENSE - 2.0
$ Id $
] ] --
2008-10-23 18:19:27 +00:00
2009-07-19 00:24:58 +00:00
local fs = require " nixio.fs "
2010-10-31 22:01:38 +00:00
local ut = require " luci.util "
2009-10-08 10:31:31 +00:00
local nw = require " luci.model.network "
2009-10-08 00:36:22 +00:00
local fw = require " luci.model.firewall "
2009-07-19 00:24:58 +00:00
2008-08-13 01:24:44 +00:00
arg [ 1 ] = arg [ 1 ] or " "
2008-10-23 18:19:27 +00:00
2010-11-23 00:11:00 +00:00
local has_dnsmasq = fs.access ( " /etc/config/dhcp " )
local has_firewall = fs.access ( " /etc/config/firewall " )
2011-02-26 01:37:29 +00:00
local has_radvd = fs.access ( " /etc/config/radvd " )
2010-11-23 00:11:00 +00:00
2010-10-20 22:42:15 +00:00
local has_3g = fs.access ( " /usr/bin/gcom " )
local has_pptp = fs.access ( " /usr/sbin/pptp " )
local has_pppd = fs.access ( " /usr/sbin/pppd " )
local has_pppoe = fs.glob ( " /usr/lib/pppd/*/rp-pppoe.so " ) ( )
local has_pppoa = fs.glob ( " /usr/lib/pppd/*/pppoatm.so " ) ( )
local has_ipv6 = fs.access ( " /proc/net/ipv6_route " )
local has_6in4 = fs.access ( " /lib/network/6in4.sh " )
2010-11-15 12:31:41 +00:00
local has_6to4 = fs.access ( " /lib/network/6to4.sh " )
2011-02-26 01:37:29 +00:00
local has_relay = fs.access ( " /lib/network/relay.sh " )
2011-06-10 14:15:10 +00:00
local has_ahcp = fs.access ( " /lib/network/ahcp.sh " )
2008-10-23 18:19:27 +00:00
2009-11-08 02:36:20 +00:00
m = Map ( " network " , translate ( " Interfaces " ) .. " - " .. arg [ 1 ] : upper ( ) , translate ( " On this page you can configure the network interfaces. You can bridge several interfaces by ticking the \" bridge interfaces \" field and enter the names of several network interfaces separated by spaces. You can also use <abbr title= \" Virtual Local Area Network \" >VLAN</abbr> notation <samp>INTERFACE.VLANNR</samp> (<abbr title= \" for example \" >e.g.</abbr>: <samp>eth0.1</samp>). " ) )
2009-10-27 21:41:18 +00:00
m : chain ( " wireless " )
2009-10-08 00:36:22 +00:00
2010-11-23 00:11:00 +00:00
if has_firewall then
m : chain ( " firewall " )
end
2011-02-21 12:46:03 +00:00
if has_radvd then
m : chain ( " radvd " )
end
2009-10-08 10:31:31 +00:00
nw.init ( m.uci )
2009-10-08 00:36:22 +00:00
fw.init ( m.uci )
2008-08-07 19:03:25 +00:00
2010-10-31 22:01:38 +00:00
local net = nw : get_network ( arg [ 1 ] )
-- redirect to overview page if network does not exist anymore (e.g. after a revert)
if not net then
luci.http . redirect ( luci.dispatcher . build_url ( " admin/network/network " ) )
return
end
local ifc = net : get_interfaces ( ) [ 1 ]
2010-10-30 00:45:43 +00:00
2009-11-09 00:34:31 +00:00
s = m : section ( NamedSection , arg [ 1 ] , " interface " , translate ( " Common Configuration " ) )
2009-10-10 18:50:24 +00:00
s.addremove = false
2008-04-11 19:03:30 +00:00
2009-10-31 15:54:11 +00:00
s : tab ( " general " , translate ( " General Setup " ) )
2010-10-20 22:42:15 +00:00
if has_ipv6 then s : tab ( " ipv6 " , translate ( " IPv6 Setup " ) ) end
if has_pppd then s : tab ( " ppp " , translate ( " PPP Settings " ) ) end
if has_pppoa then s : tab ( " atm " , translate ( " ATM Settings " ) ) end
2010-11-15 12:31:41 +00:00
if has_6in4 or has_6to4 then s : tab ( " tunnel " , translate ( " Tunnel Settings " ) ) end
2011-02-26 01:37:29 +00:00
if has_relay then s : tab ( " relay " , translate ( " Relay Settings " ) ) end
2011-06-10 14:15:10 +00:00
if has_ahcp then s : tab ( " ahcp " , translate ( " AHCP Settings " ) ) end
2009-10-31 15:54:11 +00:00
s : tab ( " physical " , translate ( " Physical Settings " ) )
2010-11-23 00:11:00 +00:00
if has_firewall then s : tab ( " firewall " , translate ( " Firewall Settings " ) ) end
2009-09-29 23:10:04 +00:00
2010-10-25 22:26:08 +00:00
st = s : taboption ( " general " , DummyValue , " __status " , translate ( " Status " ) )
st.template = " admin_network/iface_status "
st.network = arg [ 1 ]
2009-09-29 23:10:04 +00:00
--[[
2009-10-31 15:54:11 +00:00
back = s : taboption ( " general " , DummyValue , " _overview " , translate ( " Overview " ) )
2008-10-03 16:55:06 +00:00
back.value = " "
back.titleref = luci.dispatcher . build_url ( " admin " , " network " , " network " )
2009-09-29 23:10:04 +00:00
] ]
2008-10-03 16:55:06 +00:00
2009-10-31 15:54:11 +00:00
p = s : taboption ( " general " , ListValue , " proto " , translate ( " Protocol " ) )
2008-10-23 18:19:27 +00:00
p.override_scheme = true
p.default = " static "
2008-06-09 10:10:29 +00:00
p : value ( " static " , translate ( " static " ) )
2008-04-11 19:03:30 +00:00
p : value ( " dhcp " , " DHCP " )
2008-10-23 18:19:27 +00:00
if has_pppd then p : value ( " ppp " , " PPP " ) end
if has_pppoe then p : value ( " pppoe " , " PPPoE " ) end
if has_pppoa then p : value ( " pppoa " , " PPPoA " ) end
if has_3g then p : value ( " 3g " , " UMTS/3G " ) end
if has_pptp then p : value ( " pptp " , " PPTP " ) end
2010-10-21 20:52:37 +00:00
if has_6in4 then p : value ( " 6in4 " , " 6in4 " ) end
2010-11-15 12:31:41 +00:00
if has_6to4 then p : value ( " 6to4 " , " 6to4 " ) end
2011-02-26 01:37:29 +00:00
if has_relay then p : value ( " relay " , " Relay " ) end
2011-06-10 14:15:10 +00:00
if has_ahcp then p : value ( " ahcp " , " AHCP " ) end
2008-12-23 16:48:48 +00:00
p : value ( " none " , translate ( " none " ) )
2008-10-23 18:19:27 +00:00
if not ( has_pppd and has_pppoe and has_pppoa and has_3g and has_pptp ) then
2009-10-31 15:54:11 +00:00
p.description = translate ( " You need to install \" comgt \" for UMTS/GPRS, \" ppp-mod-pppoe \" for PPPoE, \" ppp-mod-pppoa \" for PPPoA or \" pptp \" for PPtP support " )
2008-10-23 18:19:27 +00:00
end
2008-04-11 19:03:30 +00:00
2011-06-25 23:24:23 +00:00
auto = s : taboption ( " physical " , Flag , " auto " , translate ( " Bring up on boot " ) )
auto.default = ( m.uci : get ( " network " , arg [ 1 ] , " proto " ) == " none " ) and auto.disabled or auto.enabled
2009-10-31 15:54:11 +00:00
br = s : taboption ( " physical " , Flag , " type " , translate ( " Bridge interfaces " ) , translate ( " creates a bridge over specified interface(s) " ) )
2008-04-11 19:03:30 +00:00
br.enabled = " bridge "
br.rmempty = true
2010-10-21 20:52:37 +00:00
br : depends ( " proto " , " static " )
br : depends ( " proto " , " dhcp " )
br : depends ( " proto " , " none " )
2008-04-11 19:03:30 +00:00
2009-10-31 15:54:11 +00:00
stp = s : taboption ( " physical " , Flag , " stp " , translate ( " Enable <abbr title= \" Spanning Tree Protocol \" >STP</abbr> " ) ,
translate ( " Enables the Spanning Tree Protocol on this bridge " ) )
2010-10-31 22:01:38 +00:00
stp : depends ( " type " , " bridge " )
2009-05-29 22:32:42 +00:00
stp.rmempty = true
2009-10-31 15:54:11 +00:00
ifname_single = s : taboption ( " physical " , Value , " ifname_single " , translate ( " Interface " ) )
2009-10-08 10:31:31 +00:00
ifname_single.template = " cbi/network_ifacelist "
ifname_single.widget = " radio "
ifname_single.nobridges = true
2009-10-27 21:41:18 +00:00
ifname_single.network = arg [ 1 ]
2009-09-29 23:10:04 +00:00
ifname_single.rmempty = true
2010-10-21 20:52:37 +00:00
ifname_single : depends ( { type = " " , proto = " static " } )
ifname_single : depends ( { type = " " , proto = " dhcp " } )
ifname_single : depends ( { type = " " , proto = " pppoe " } )
ifname_single : depends ( { type = " " , proto = " pppoa " } )
2011-06-10 14:15:10 +00:00
ifname_single : depends ( { type = " " , proto = " ahcp " } )
2010-10-21 20:52:37 +00:00
ifname_single : depends ( { type = " " , proto = " none " } )
2009-09-29 23:10:04 +00:00
function ifname_single . cfgvalue ( self , s )
return self.map . uci : get ( " network " , s , " ifname " )
end
function ifname_single . write ( self , s , val )
2009-10-08 10:31:31 +00:00
local n = nw : get_network ( s )
2009-10-27 21:41:18 +00:00
if n then
local i
for _ , i in ipairs ( n : get_interfaces ( ) ) do
n : del_interface ( i )
end
2010-10-30 00:45:43 +00:00
2010-10-31 22:01:38 +00:00
for i in ut.imatch ( val ) do
2010-10-30 00:45:43 +00:00
n : add_interface ( i )
-- if this is not a bridge, only assign first interface
if self.option == " ifname_single " then
break
end
end
2009-10-27 21:41:18 +00:00
end
2009-09-29 23:10:04 +00:00
end
2010-10-31 22:01:38 +00:00
ifname_multi = s : taboption ( " physical " , Value , " ifname_multi " , translate ( " Interface " ) )
2009-10-08 10:31:31 +00:00
ifname_multi.template = " cbi/network_ifacelist "
ifname_multi.nobridges = true
2009-10-27 21:41:18 +00:00
ifname_multi.network = arg [ 1 ]
2009-09-29 23:10:04 +00:00
ifname_multi.widget = " checkbox "
2010-10-31 22:01:38 +00:00
ifname_multi : depends ( " type " , " bridge " )
2009-09-29 23:10:04 +00:00
ifname_multi.cfgvalue = ifname_single.cfgvalue
ifname_multi.write = ifname_single.write
2009-10-27 21:41:18 +00:00
2010-11-23 00:11:00 +00:00
if has_firewall then
fwzone = s : taboption ( " firewall " , Value , " _fwzone " ,
translate ( " Create / Assign firewall-zone " ) ,
translate ( " Choose the firewall zone you want to assign to this interface. Select <em>unspecified</em> to remove the interface from the associated zone or fill out the <em>create</em> field to define a new zone and attach the interface to it. " ) )
2009-10-27 21:41:18 +00:00
2010-11-23 00:11:00 +00:00
fwzone.template = " cbi/firewall_zonelist "
fwzone.network = arg [ 1 ]
fwzone.rmempty = false
2009-10-08 00:36:22 +00:00
2010-11-23 00:11:00 +00:00
function fwzone . cfgvalue ( self , section )
self.iface = section
local z = fw : get_zone_by_network ( section )
return z and z : name ( )
end
2009-10-08 00:36:22 +00:00
2010-11-23 00:11:00 +00:00
function fwzone . write ( self , section , value )
local zone = fw : get_zone ( value )
2009-10-08 00:36:22 +00:00
2010-11-23 00:11:00 +00:00
if not zone and value == ' - ' then
value = m : formvalue ( self : cbid ( section ) .. " .newzone " )
if value and # value > 0 then
zone = fw : add_zone ( value )
else
fw : del_network ( section )
end
end
2009-10-08 00:36:22 +00:00
2010-11-23 00:11:00 +00:00
if zone then
2009-10-08 01:24:37 +00:00
fw : del_network ( section )
2010-11-23 00:11:00 +00:00
zone : add_network ( section )
2008-08-13 22:54:38 +00:00
end
end
end
2008-08-07 20:21:38 +00:00
2009-10-31 15:54:11 +00:00
ipaddr = s : taboption ( " general " , Value , " ipaddr " , translate ( " <abbr title= \" Internet Protocol Version 4 \" >IPv4</abbr>-Address " ) )
2010-10-25 22:26:08 +00:00
ipaddr.optional = true
2010-10-21 20:52:37 +00:00
ipaddr.datatype = " ip4addr "
2008-08-07 17:23:36 +00:00
ipaddr : depends ( " proto " , " static " )
2008-04-11 19:03:30 +00:00
2009-10-31 15:54:11 +00:00
nm = s : taboption ( " general " , Value , " netmask " , translate ( " <abbr title= \" Internet Protocol Version 4 \" >IPv4</abbr>-Netmask " ) )
2010-10-25 22:26:08 +00:00
nm.optional = true
2010-10-21 20:52:37 +00:00
nm.datatype = " ip4addr "
2008-08-06 10:41:47 +00:00
nm : depends ( " proto " , " static " )
nm : value ( " 255.255.255.0 " )
nm : value ( " 255.255.0.0 " )
nm : value ( " 255.0.0.0 " )
2008-04-11 19:03:30 +00:00
2009-10-31 15:54:11 +00:00
gw = s : taboption ( " general " , Value , " gateway " , translate ( " <abbr title= \" Internet Protocol Version 4 \" >IPv4</abbr>-Gateway " ) )
2010-10-21 20:52:37 +00:00
gw.optional = true
gw.datatype = " ip4addr "
2008-04-11 19:03:30 +00:00
gw : depends ( " proto " , " static " )
2011-01-09 22:52:49 +00:00
bcast = s : taboption ( " general " , Value , " broadcast " , translate ( " <abbr title= \" Internet Protocol Version 4 \" >IPv4</abbr>-Broadcast " ) )
2010-10-21 20:52:37 +00:00
bcast.optional = true
bcast.datatype = " ip4addr "
2008-08-07 20:21:38 +00:00
bcast : depends ( " proto " , " static " )
2009-10-02 01:34:54 +00:00
if has_ipv6 then
2009-10-31 15:54:11 +00:00
ip6addr = s : taboption ( " ipv6 " , Value , " ip6addr " , translate ( " <abbr title= \" Internet Protocol Version 6 \" >IPv6</abbr>-Address " ) , translate ( " <abbr title= \" Classless Inter-Domain Routing \" >CIDR</abbr>-Notation: address/prefix " ) )
2010-10-25 22:26:08 +00:00
ip6addr.optional = true
2010-10-21 20:52:37 +00:00
ip6addr.datatype = " ip6addr "
2009-10-02 01:34:54 +00:00
ip6addr : depends ( " proto " , " static " )
2010-10-21 20:52:37 +00:00
ip6addr : depends ( " proto " , " 6in4 " )
2008-08-07 17:23:36 +00:00
2009-10-31 15:54:11 +00:00
ip6gw = s : taboption ( " ipv6 " , Value , " ip6gw " , translate ( " <abbr title= \" Internet Protocol Version 6 \" >IPv6</abbr>-Gateway " ) )
2010-10-21 20:52:37 +00:00
ip6gw.optional = true
ip6gw.datatype = " ip6addr "
2009-10-02 01:34:54 +00:00
ip6gw : depends ( " proto " , " static " )
2011-02-26 01:37:29 +00:00
ra = s : taboption ( " ipv6 " , Flag , " accept_ra " , translate ( " Accept Router Advertisements " ) )
ra.default = m.uci : get ( " network " , arg [ 1 ] , " proto " ) == " dhcp " and ra.enabled or ra.disabled
ra : depends ( " proto " , " static " )
ra : depends ( " proto " , " dhcp " )
ra : depends ( " proto " , " none " )
rs = s : taboption ( " ipv6 " , Flag , " send_rs " , translate ( " Send Router Solicitiations " ) )
rs.default = m.uci : get ( " network " , arg [ 1 ] , " proto " ) ~= " dhcp " and rs.enabled or rs.disabled
rs : depends ( " proto " , " static " )
rs : depends ( " proto " , " dhcp " )
rs : depends ( " proto " , " none " )
2009-10-02 01:34:54 +00:00
end
2008-08-07 17:23:36 +00:00
2010-10-25 22:26:08 +00:00
dns = s : taboption ( " general " , DynamicList , " dns " , translate ( " <abbr title= \" Domain Name System \" >DNS</abbr>-Server " ) ,
translate ( " You can specify multiple DNS servers here, press enter to add a new entry. Servers entered here will override " ..
2009-11-09 00:34:31 +00:00
" automatically assigned ones. " ) )
2010-10-21 20:52:37 +00:00
dns.optional = true
2010-10-25 22:26:08 +00:00
dns.cast = " string "
2010-10-21 20:52:37 +00:00
dns.datatype = " ipaddr "
2010-11-15 12:31:41 +00:00
dns : depends ( { peerdns = " " , proto = " static " } )
dns : depends ( { peerdns = " " , proto = " dhcp " } )
dns : depends ( { peerdns = " " , proto = " pppoe " } )
dns : depends ( { peerdns = " " , proto = " pppoa " } )
dns : depends ( { peerdns = " " , proto = " none " } )
2008-04-11 19:03:30 +00:00
2009-09-29 23:10:04 +00:00
mtu = s : taboption ( " physical " , Value , " mtu " , " MTU " )
2010-10-21 20:52:37 +00:00
mtu.optional = true
mtu.datatype = " uinteger "
2010-10-31 22:01:38 +00:00
mtu.placeholder = 1500
2011-02-26 01:37:29 +00:00
mtu : depends ( " proto " , " static " )
mtu : depends ( " proto " , " dhcp " )
mtu : depends ( " proto " , " pppoe " )
mtu : depends ( " proto " , " pppoa " )
mtu : depends ( " proto " , " 6in4 " )
mtu : depends ( " proto " , " 6to4 " )
mtu : depends ( " proto " , " none " )
2008-08-14 11:50:44 +00:00
2009-10-31 15:54:11 +00:00
srv = s : taboption ( " general " , Value , " server " , translate ( " <abbr title= \" Point-to-Point Tunneling Protocol \" >PPTP</abbr>-Server " ) )
2008-08-14 11:50:44 +00:00
srv : depends ( " proto " , " pptp " )
2010-10-21 20:52:37 +00:00
srv.optional = false
2011-01-19 18:42:06 +00:00
srv.datatype = " host "
2010-10-21 20:52:37 +00:00
if has_6in4 then
peer = s : taboption ( " general " , Value , " peeraddr " , translate ( " Server IPv4-Address " ) )
peer.optional = false
peer.datatype = " ip4addr "
peer : depends ( " proto " , " 6in4 " )
2010-11-15 12:31:41 +00:00
end
2010-10-21 20:52:37 +00:00
2010-11-15 12:31:41 +00:00
if has_6in4 or has_6to4 then
2010-10-21 20:52:37 +00:00
ttl = s : taboption ( " physical " , Value , " ttl " , translate ( " TTL " ) )
ttl.default = " 64 "
ttl.optional = true
ttl.datatype = " uinteger "
ttl : depends ( " proto " , " 6in4 " )
2010-11-15 12:31:41 +00:00
ttl : depends ( " proto " , " 6to4 " )
2010-11-15 12:42:24 +00:00
end
2010-11-15 12:31:41 +00:00
2010-11-15 12:42:24 +00:00
if has_6to4 then
2010-11-15 12:31:41 +00:00
advi = s : taboption ( " general " , Value , " adv_interface " , translate ( " Advertise IPv6 on network " ) )
2010-12-03 22:24:08 +00:00
advi.widget = " checkbox "
2010-11-15 12:31:41 +00:00
advi.exclude = arg [ 1 ]
advi.default = " lan "
advi.template = " cbi/network_netlist "
advi.nocreate = true
advi.nobridges = true
2010-11-15 12:42:24 +00:00
advi : depends ( " proto " , " 6to4 " )
2010-11-15 12:31:41 +00:00
advn = s : taboption ( " general " , Value , " adv_subnet " , translate ( " Advertised network ID " ) , translate ( " Allowed range is 1 to FFFF " ) )
advn.default = " 1 "
2010-11-15 12:42:24 +00:00
advn : depends ( " proto " , " 6to4 " )
2010-11-15 12:31:41 +00:00
function advn . write ( self , section , value )
value = tonumber ( value , 16 ) or 1
if value > 65535 then value = 65535
elseif value < 1 then value = 1 end
Value.write ( self , section , " %X " % value )
end
2010-10-21 20:52:37 +00:00
end
2011-02-26 01:37:29 +00:00
if has_relay then
rnet = s : taboption ( " general " , Value , " network " , translate ( " Relay between networks " ) )
rnet.widget = " checkbox "
rnet.exclude = arg [ 1 ]
rnet.template = " cbi/network_netlist "
rnet.nocreate = true
rnet.nobridges = true
rnet : depends ( " proto " , " relay " )
end
2010-10-21 20:52:37 +00:00
mac = s : taboption ( " physical " , Value , " macaddr " , translate ( " <abbr title= \" Media Access Control \" >MAC</abbr>-Address " ) )
mac : depends ( " proto " , " none " )
mac : depends ( " proto " , " static " )
mac : depends ( " proto " , " dhcp " )
2010-10-31 22:01:38 +00:00
mac.placeholder = ifc and ifc : mac ( ) : upper ( )
2008-08-14 11:50:44 +00:00
2008-11-29 22:06:29 +00:00
if has_3g then
2009-10-31 15:54:11 +00:00
service = s : taboption ( " general " , ListValue , " service " , translate ( " Service type " ) )
service : value ( " " , translate ( " -- Please choose -- " ) )
2008-11-29 22:06:29 +00:00
service : value ( " umts " , " UMTS/GPRS " )
service : value ( " cdma " , " CDMA " )
service : value ( " evdo " , " EV-DO " )
service : depends ( " proto " , " 3g " )
service.rmempty = true
2009-10-31 15:54:11 +00:00
apn = s : taboption ( " general " , Value , " apn " , translate ( " Access point (APN) " ) )
2008-11-29 22:06:29 +00:00
apn : depends ( " proto " , " 3g " )
2009-09-29 23:10:04 +00:00
pincode = s : taboption ( " general " , Value , " pincode " ,
2009-10-31 15:54:11 +00:00
translate ( " PIN code " ) ,
translate ( " Make sure that you provide the correct pin code here or you might lock your sim card! " )
2008-11-29 22:06:29 +00:00
)
pincode : depends ( " proto " , " 3g " )
end
2010-10-21 20:52:37 +00:00
if has_6in4 then
tunid = s : taboption ( " general " , Value , " tunnelid " , translate ( " HE.net Tunnel ID " ) )
tunid.optional = true
tunid.datatype = " uinteger "
tunid : depends ( " proto " , " 6in4 " )
end
if has_pppd or has_pppoe or has_pppoa or has_3g or has_pptp or has_6in4 then
2009-10-31 15:54:11 +00:00
user = s : taboption ( " general " , Value , " username " , translate ( " Username " ) )
2008-11-29 22:06:29 +00:00
user.rmempty = true
user : depends ( " proto " , " pptp " )
user : depends ( " proto " , " pppoe " )
2009-01-25 12:15:39 +00:00
user : depends ( " proto " , " pppoa " )
2008-11-29 22:06:29 +00:00
user : depends ( " proto " , " ppp " )
user : depends ( " proto " , " 3g " )
2010-10-21 20:52:37 +00:00
user : depends ( " proto " , " 6in4 " )
2008-11-29 22:06:29 +00:00
2009-10-31 15:54:11 +00:00
pass = s : taboption ( " general " , Value , " password " , translate ( " Password " ) )
2008-11-29 22:06:29 +00:00
pass.rmempty = true
pass.password = true
pass : depends ( " proto " , " pptp " )
pass : depends ( " proto " , " pppoe " )
2009-01-25 12:15:39 +00:00
pass : depends ( " proto " , " pppoa " )
2008-11-29 22:06:29 +00:00
pass : depends ( " proto " , " ppp " )
pass : depends ( " proto " , " 3g " )
2010-10-21 20:52:37 +00:00
pass : depends ( " proto " , " 6in4 " )
2010-10-25 17:06:56 +00:00
end
2008-11-29 22:06:29 +00:00
2010-10-25 17:06:56 +00:00
if has_pppd or has_pppoe or has_pppoa or has_3g or has_pptp then
2009-10-10 04:44:03 +00:00
ka = s : taboption ( " ppp " , Value , " keepalive " ,
2009-10-31 15:54:11 +00:00
translate ( " Keep-Alive " ) ,
translate ( " Number of failed connection tests to initiate automatic reconnect " )
2008-11-29 22:06:29 +00:00
)
ka : depends ( " proto " , " pptp " )
ka : depends ( " proto " , " pppoe " )
2009-01-25 12:15:39 +00:00
ka : depends ( " proto " , " pppoa " )
2008-11-29 22:06:29 +00:00
ka : depends ( " proto " , " ppp " )
ka : depends ( " proto " , " 3g " )
2009-10-10 04:44:03 +00:00
demand = s : taboption ( " ppp " , Value , " demand " ,
2009-10-31 15:54:11 +00:00
translate ( " Automatic Disconnect " ) ,
translate ( " Time (in seconds) after which an unused connection will be closed " )
2008-11-29 22:06:29 +00:00
)
2010-10-21 20:52:37 +00:00
demand.optional = true
demand.datatype = " uinteger "
2008-11-29 22:06:29 +00:00
demand : depends ( " proto " , " pptp " )
demand : depends ( " proto " , " pppoe " )
2009-01-25 12:15:39 +00:00
demand : depends ( " proto " , " pppoa " )
2008-11-29 22:06:29 +00:00
demand : depends ( " proto " , " ppp " )
demand : depends ( " proto " , " 3g " )
end
2008-08-07 20:21:38 +00:00
2009-01-25 12:15:39 +00:00
if has_pppoa then
2010-10-20 22:42:15 +00:00
encaps = s : taboption ( " atm " , ListValue , " encaps " , translate ( " PPPoA Encapsulation " ) )
2009-01-25 12:15:39 +00:00
encaps : depends ( " proto " , " pppoa " )
2010-10-20 22:42:15 +00:00
encaps : value ( " vc " , " VC-Mux " )
2009-01-25 12:15:39 +00:00
encaps : value ( " llc " , " LLC " )
2010-10-20 22:42:15 +00:00
atmdev = s : taboption ( " atm " , Value , " atmdev " , translate ( " ATM device number " ) )
atmdev : depends ( " proto " , " pppoa " )
atmdev.default = " 0 "
2010-10-21 20:52:37 +00:00
atmdev.datatype = " uinteger "
2009-01-25 12:15:39 +00:00
2010-10-20 22:42:15 +00:00
vci = s : taboption ( " atm " , Value , " vci " , translate ( " ATM Virtual Channel Identifier (VCI) " ) )
2009-01-25 12:15:39 +00:00
vci : depends ( " proto " , " pppoa " )
2010-10-20 22:42:15 +00:00
vci.default = " 35 "
2010-10-21 20:52:37 +00:00
vci.datatype = " uinteger "
2010-10-20 22:42:15 +00:00
vpi = s : taboption ( " atm " , Value , " vpi " , translate ( " ATM Virtual Path Identifier (VPI) " ) )
vpi : depends ( " proto " , " pppoa " )
vpi.default = " 8 "
2010-10-21 20:52:37 +00:00
vpi.datatype = " uinteger "
2009-01-25 12:15:39 +00:00
end
if has_pptp or has_pppd or has_pppoe or has_pppoa or has_3g then
2009-09-29 23:10:04 +00:00
device = s : taboption ( " general " , Value , " device " ,
2009-10-31 15:54:11 +00:00
translate ( " Modem device " ) ,
translate ( " The device node of your modem, e.g. /dev/ttyUSB0 " )
2008-11-29 22:06:29 +00:00
)
device : depends ( " proto " , " ppp " )
device : depends ( " proto " , " 3g " )
2009-10-10 04:44:03 +00:00
defaultroute = s : taboption ( " ppp " , Flag , " defaultroute " ,
2009-10-31 15:54:11 +00:00
translate ( " Replace default route " ) ,
translate ( " Let pppd replace the current default route to use the PPP interface after successful connect " )
2008-11-29 22:06:29 +00:00
)
defaultroute : depends ( " proto " , " ppp " )
2009-01-25 12:15:39 +00:00
defaultroute : depends ( " proto " , " pppoa " )
defaultroute : depends ( " proto " , " pppoe " )
defaultroute : depends ( " proto " , " pptp " )
2008-11-29 22:06:29 +00:00
defaultroute : depends ( " proto " , " 3g " )
2011-01-29 17:58:22 +00:00
defaultroute.default = defaultroute.enabled
2008-11-29 22:06:29 +00:00
2009-10-10 04:44:03 +00:00
peerdns = s : taboption ( " ppp " , Flag , " peerdns " ,
2009-10-31 15:54:11 +00:00
translate ( " Use peer DNS " ) ,
translate ( " Configure the local DNS server to use the name servers adverticed by the PPP peer " )
2008-11-29 22:06:29 +00:00
)
peerdns : depends ( " proto " , " ppp " )
2009-01-25 12:15:39 +00:00
peerdns : depends ( " proto " , " pppoa " )
peerdns : depends ( " proto " , " pppoe " )
peerdns : depends ( " proto " , " pptp " )
peerdns : depends ( " proto " , " 3g " )
2011-01-29 17:58:22 +00:00
peerdns.default = peerdns.enabled
2008-11-29 22:06:29 +00:00
2009-10-02 01:34:54 +00:00
if has_ipv6 then
2009-10-31 15:54:11 +00:00
ipv6 = s : taboption ( " ppp " , Flag , " ipv6 " , translate ( " Enable IPv6 on PPP link " ) )
2009-10-02 01:34:54 +00:00
ipv6 : depends ( " proto " , " ppp " )
ipv6 : depends ( " proto " , " pppoa " )
ipv6 : depends ( " proto " , " pppoe " )
ipv6 : depends ( " proto " , " pptp " )
ipv6 : depends ( " proto " , " 3g " )
end
2008-11-29 22:06:29 +00:00
2009-10-10 04:44:03 +00:00
connect = s : taboption ( " ppp " , Value , " connect " ,
2009-10-31 15:54:11 +00:00
translate ( " Connect script " ) ,
translate ( " Let pppd run this script after establishing the PPP link " )
2008-11-29 22:06:29 +00:00
)
connect : depends ( " proto " , " ppp " )
2009-01-25 12:15:39 +00:00
connect : depends ( " proto " , " pppoe " )
connect : depends ( " proto " , " pppoa " )
connect : depends ( " proto " , " pptp " )
2008-11-29 22:06:29 +00:00
connect : depends ( " proto " , " 3g " )
2009-10-10 04:44:03 +00:00
disconnect = s : taboption ( " ppp " , Value , " disconnect " ,
2009-10-31 15:54:11 +00:00
translate ( " Disconnect script " ) ,
translate ( " Let pppd run this script before tearing down the PPP link " )
2008-11-29 22:06:29 +00:00
)
disconnect : depends ( " proto " , " ppp " )
2009-01-25 12:15:39 +00:00
disconnect : depends ( " proto " , " pppoe " )
disconnect : depends ( " proto " , " pppoa " )
disconnect : depends ( " proto " , " pptp " )
2008-11-29 22:06:29 +00:00
disconnect : depends ( " proto " , " 3g " )
2009-10-10 04:44:03 +00:00
pppd_options = s : taboption ( " ppp " , Value , " pppd_options " ,
2009-10-31 15:54:11 +00:00
translate ( " Additional pppd options " ) ,
translate ( " Specify additional command line arguments for pppd here " )
2008-11-29 22:06:29 +00:00
)
pppd_options : depends ( " proto " , " ppp " )
2009-01-25 12:15:39 +00:00
pppd_options : depends ( " proto " , " pppoa " )
pppd_options : depends ( " proto " , " pppoe " )
pppd_options : depends ( " proto " , " pptp " )
2008-11-29 22:06:29 +00:00
pppd_options : depends ( " proto " , " 3g " )
2009-10-10 04:44:03 +00:00
maxwait = s : taboption ( " ppp " , Value , " maxwait " ,
2009-10-31 15:54:11 +00:00
translate ( " Setup wait time " ) ,
translate ( " Seconds to wait for the modem to become ready before attempting to connect " )
2008-11-29 22:06:29 +00:00
)
maxwait : depends ( " proto " , " 3g " )
2010-10-21 20:52:37 +00:00
maxwait.default = " 0 "
maxwait.optional = true
maxwait.datatype = " uinteger "
2008-11-29 22:06:29 +00:00
end
2008-08-07 20:21:38 +00:00
2011-02-26 01:37:29 +00:00
if has_relay then
fb = s : taboption ( " relay " , Flag , " forward_bcast " , translate ( " Forward broadcasts " ) )
fb.default = fb.enabled
2011-03-13 19:07:27 +00:00
fb : depends ( " proto " , " relay " )
2008-08-07 20:21:38 +00:00
2011-02-26 01:37:29 +00:00
fd = s : taboption ( " relay " , Flag , " forward_dhcp " , translate ( " Forward DHCP " ) )
fd.default = fd.enabled
2011-03-13 19:07:27 +00:00
fd : depends ( " proto " , " relay " )
2008-08-07 20:21:38 +00:00
2011-03-13 19:07:27 +00:00
gw = s : taboption ( " relay " , Value , " relay_gateway " , translate ( " Override Gateway " ) )
2011-02-26 01:37:29 +00:00
gw.optional = true
gw.placeholder = " 0.0.0.0 "
gw.datatype = " ip4addr "
2011-03-13 19:07:27 +00:00
gw : depends ( " proto " , " relay " )
function gw . cfgvalue ( self , section )
return m.uci : get ( " network " , section , " gateway " )
end
function gw . write ( self , section , value )
return m.uci : set ( " network " , section , " gateway " , value )
end
function gw . delete ( self , section )
return m.uci : delete ( " network " , section , " gateway " )
end
2008-08-07 20:21:38 +00:00
2011-02-26 01:37:29 +00:00
expiry = s : taboption ( " relay " , Value , " expiry " , translate ( " Host expiry timeout " ) )
expiry.optional = true
expiry.placeholder = 30
expiry.datatype = " uinteger "
2011-03-13 19:07:27 +00:00
expiry : depends ( " proto " , " relay " )
2008-08-07 20:21:38 +00:00
2011-02-26 01:37:29 +00:00
retry = s : taboption ( " relay " , Value , " retry " , translate ( " ARP ping retries " ) )
retry.optional = true
retry.placeholder = 5
retry.datatype = " uinteger "
2011-03-13 19:07:27 +00:00
retry : depends ( " proto " , " relay " )
2008-08-07 20:21:38 +00:00
2011-02-26 01:37:29 +00:00
table = s : taboption ( " relay " , Value , " table " , translate ( " Routing table ID " ) )
table.optional = true
table.placeholder = 16800
table.datatype = " uinteger "
2011-03-13 19:07:27 +00:00
table : depends ( " proto " , " relay " )
2011-02-26 01:37:29 +00:00
end
2008-08-07 20:21:38 +00:00
2011-06-10 14:15:10 +00:00
if has_ahcp then
mca = s : taboption ( " ahcp " , Value , " multicast_address " , translate ( " Multicast address " ) )
mca.optional = true
mca.placeholder = " ff02::cca6:c0f9:e182:5359 "
mca.datatype = " ip6addr "
mca : depends ( " proto " , " ahcp " )
port = s : taboption ( " ahcp " , Value , " port " , translate ( " Port " ) )
port.optional = true
port.placeholder = 5359
port.datatype = " port "
port : depends ( " proto " , " ahcp " )
fam = s : taboption ( " ahcp " , ListValue , " _family " , translate ( " Protocol family " ) )
fam : value ( " " , translate ( " IPv4 and IPv6 " ) )
fam : value ( " ipv4 " , translate ( " IPv4 only " ) )
fam : value ( " ipv6 " , translate ( " IPv6 only " ) )
fam : depends ( " proto " , " ahcp " )
function fam . cfgvalue ( self , section )
local v4 = m.uci : get_bool ( " network " , section , " ipv4_only " )
local v6 = m.uci : get_bool ( " network " , section , " ipv6_only " )
if v4 then
return " ipv4 "
elseif v6 then
return " ipv6 "
end
return " "
end
function fam . write ( self , section , value )
if value == " ipv4 " then
m.uci : set ( " network " , section , " ipv4_only " , " true " )
m.uci : delete ( " network " , section , " ipv6_only " )
elseif value == " ipv6 " then
m.uci : set ( " network " , section , " ipv6_only " , " true " )
m.uci : delete ( " network " , section , " ipv4_only " )
end
end
function fam . remove ( self , section )
m.uci : delete ( " network " , section , " ipv4_only " )
m.uci : delete ( " network " , section , " ipv6_only " )
end
nodns = s : taboption ( " ahcp " , Flag , " no_dns " , translate ( " Disable DNS setup " ) )
nodns.optional = true
nodns.enabled = " true "
nodns.disabled = " false "
nodns.default = nodns.disabled
nodns : depends ( " proto " , " ahcp " )
ltime = s : taboption ( " ahcp " , Value , " lease_time " , translate ( " Lease validity time " ) )
ltime.optional = true
ltime.placeholder = 3666
ltime.datatype = " uinteger "
ltime : depends ( " proto " , " ahcp " )
end
2010-10-21 20:52:37 +00:00
2011-02-26 01:37:29 +00:00
if net : proto ( ) ~= " relay " then
s2 = m : section ( TypedSection , " alias " , translate ( " IP-Aliases " ) )
s2.addremove = true
2010-10-21 20:52:37 +00:00
2011-02-26 01:37:29 +00:00
s2 : depends ( " interface " , arg [ 1 ] )
s2.defaults . interface = arg [ 1 ]
2008-08-07 20:21:38 +00:00
2011-02-26 01:37:29 +00:00
s2 : tab ( " general " , translate ( " General Setup " ) )
s2.defaults . proto = " static "
2010-10-21 20:52:37 +00:00
2011-02-26 01:37:29 +00:00
ip = s2 : taboption ( " general " , Value , " ipaddr " , translate ( " <abbr title= \" Internet Protocol Version 4 \" >IPv4</abbr>-Address " ) )
ip.optional = true
ip.datatype = " ip4addr "
2010-10-21 20:52:37 +00:00
2011-02-26 01:37:29 +00:00
nm = s2 : taboption ( " general " , Value , " netmask " , translate ( " <abbr title= \" Internet Protocol Version 4 \" >IPv4</abbr>-Netmask " ) )
nm.optional = true
nm.datatype = " ip4addr "
nm : value ( " 255.255.255.0 " )
nm : value ( " 255.255.0.0 " )
nm : value ( " 255.0.0.0 " )
gw = s2 : taboption ( " general " , Value , " gateway " , translate ( " <abbr title= \" Internet Protocol Version 4 \" >IPv4</abbr>-Gateway " ) )
gw.optional = true
gw.datatype = " ip4addr "
if has_ipv6 then
s2 : tab ( " ipv6 " , translate ( " IPv6 Setup " ) )
ip6 = s2 : taboption ( " ipv6 " , Value , " ip6addr " , translate ( " <abbr title= \" Internet Protocol Version 6 \" >IPv6</abbr>-Address " ) , translate ( " <abbr title= \" Classless Inter-Domain Routing \" >CIDR</abbr>-Notation: address/prefix " ) )
ip6.optional = true
ip6.datatype = " ip6addr "
gw6 = s2 : taboption ( " ipv6 " , Value , " ip6gw " , translate ( " <abbr title= \" Internet Protocol Version 6 \" >IPv6</abbr>-Gateway " ) )
gw6.optional = true
gw6.datatype = " ip6addr "
end
s2 : tab ( " advanced " , translate ( " Advanced Settings " ) )
bcast = s2 : taboption ( " advanced " , Value , " bcast " , translate ( " <abbr title= \" Internet Protocol Version 4 \" >IPv4</abbr>-Broadcast " ) )
bcast.optional = true
bcast.datatype = " ip4addr "
dns = s2 : taboption ( " advanced " , Value , " dns " , translate ( " <abbr title= \" Domain Name System \" >DNS</abbr>-Server " ) )
dns.optional = true
dns.datatype = " ip4addr "
end
2009-12-25 00:44:38 +00:00
2009-11-09 00:34:31 +00:00
2010-11-23 00:11:00 +00:00
--
-- Display DNS settings if dnsmasq is available
--
2009-11-09 00:34:31 +00:00
2011-02-26 01:37:29 +00:00
if has_dnsmasq and net : proto ( ) == " static " then
2010-11-23 00:11:00 +00:00
m2 = Map ( " dhcp " , " " , " " )
2011-06-25 21:51:12 +00:00
2011-07-01 01:23:02 +00:00
local section_id
2011-06-25 21:51:12 +00:00
function m2 . on_parse ( )
2010-11-23 00:11:00 +00:00
m2.uci : foreach ( " dhcp " , " dhcp " , function ( s )
if s.interface == arg [ 1 ] then
2011-06-25 21:51:12 +00:00
section_id = s [ ' .name ' ]
2010-11-23 00:11:00 +00:00
return false
end
end )
2011-07-01 01:23:02 +00:00
if not section_id then
local c = 1
section_id = arg [ 1 ]
while m2.uci : get ( " dhcp " , section_id ) do
section_id = arg [ 1 ] .. c
c = c + 1
end
end
2009-11-09 00:34:31 +00:00
end
2010-11-23 00:11:00 +00:00
s = m2 : section ( TypedSection , " dhcp " , translate ( " DHCP Server " ) )
s.addremove = false
s.anonymous = true
s : tab ( " general " , translate ( " General Setup " ) )
s : tab ( " advanced " , translate ( " Advanced Settings " ) )
2009-11-09 00:34:31 +00:00
2011-06-25 21:51:12 +00:00
function s . cfgsections ( self )
return { section_id }
2010-11-23 00:11:00 +00:00
end
2009-11-09 00:34:31 +00:00
2010-11-23 00:11:00 +00:00
local ignore = s : taboption ( " general " , Flag , " ignore " ,
translate ( " Ignore interface " ) ,
translate ( " Disable <abbr title= \" Dynamic Host Configuration Protocol \" >DHCP</abbr> for " ..
" this interface. " ) )
ignore.rmempty = false
2011-07-01 01:23:02 +00:00
ignore.default = ignore.enabled
2011-06-25 21:51:12 +00:00
function ignore . write ( self , section , value )
2011-07-01 01:23:02 +00:00
if m2.uci : get ( " dhcp " , section ) ~= " dhcp " then
m2.uci : section ( " dhcp " , " dhcp " , section , {
interface = arg [ 1 ]
} )
end
m2.uci : set ( " dhcp " , section , " ignore " , ( value == " 1 " ) and " 1 " or " 0 " )
end
2011-06-25 21:51:12 +00:00
2010-11-23 00:11:00 +00:00
local start = s : taboption ( " general " , Value , " start " , translate ( " Start " ) ,
translate ( " Lowest leased address as offset from the network address. " ) )
start.optional = true
start.datatype = " uinteger "
start.default = " 100 "
local limit = s : taboption ( " general " , Value , " limit " , translate ( " Limit " ) ,
translate ( " Maximum number of leased addresses. " ) )
limit.optional = true
limit.datatype = " uinteger "
limit.default = " 150 "
local ltime = s : taboption ( " general " , Value , " leasetime " , translate ( " Leasetime " ) ,
translate ( " Expiry time of leased addresses, minimum is 2 Minutes (<code>2m</code>). " ) )
ltime.rmempty = true
ltime.default = " 12h "
local dd = s : taboption ( " advanced " , Flag , " dynamicdhcp " ,
translate ( " Dynamic <abbr title= \" Dynamic Host Configuration Protocol \" >DHCP</abbr> " ) ,
translate ( " Dynamically allocate DHCP addresses for clients. If disabled, only " ..
" clients having static leases will be served. " ) )
2011-01-29 17:58:22 +00:00
dd.default = dd.enabled
2009-11-09 00:34:31 +00:00
2010-11-23 00:11:00 +00:00
s : taboption ( " advanced " , Flag , " force " , translate ( " Force " ) ,
translate ( " Force DHCP on this network even if another server is detected. " ) )
2009-11-09 00:34:31 +00:00
2010-11-23 00:11:00 +00:00
-- XXX: is this actually useful?
--s:taboption("advanced", Value, "name", translate("Name"),
-- translate("Define a name for this network."))
2009-11-09 00:34:31 +00:00
2010-11-23 00:11:00 +00:00
mask = s : taboption ( " advanced " , Value , " netmask " ,
translate ( " <abbr title= \" Internet Protocol Version 4 \" >IPv4</abbr>-Netmask " ) ,
translate ( " Override the netmask sent to clients. Normally it is calculated " ..
" from the subnet that is served. " ) )
2009-11-09 00:34:31 +00:00
2010-11-23 00:11:00 +00:00
mask.optional = true
mask.datatype = " ip4addr "
2010-10-21 20:52:37 +00:00
2010-11-23 00:11:00 +00:00
s : taboption ( " advanced " , DynamicList , " dhcp_option " , translate ( " DHCP-Options " ) ,
translate ( " Define additional DHCP options, for example \" <code>6,192.168.2.1, " ..
" 192.168.2.2</code> \" which advertises different DNS servers to clients. " ) )
2009-11-09 00:34:31 +00:00
2011-06-25 21:51:12 +00:00
2010-11-23 00:11:00 +00:00
for i , n in ipairs ( s.children ) do
if n ~= ignore then
n : depends ( " ignore " , " " )
end
2009-11-09 00:34:31 +00:00
end
end
return m , m2