Skip to content
Snippets Groups Projects
Unverified Commit 09c2e60c authored by Matthias Schiffer's avatar Matthias Schiffer
Browse files

gluon-core: upgrade/110-network: fix formatting

parent 61371691
No related branches found
No related tags found
No related merge requests found
...@@ -5,78 +5,66 @@ local sysctl = require 'gluon.sysctl' ...@@ -5,78 +5,66 @@ local sysctl = require 'gluon.sysctl'
local sysconfig = require 'gluon.sysconfig' local sysconfig = require 'gluon.sysconfig'
uci:section('network', 'interface', 'wan', uci:section('network', 'interface', 'wan', {
{ ifname = sysconfig.wan_ifname,
ifname = sysconfig.wan_ifname, type = 'bridge',
type = 'bridge', igmp_snooping = true,
igmp_snooping = true, multicast_querier = false,
multicast_querier = false, peerdns = false,
peerdns = false, auto = true,
auto = true, })
}
)
if not uci:get('network', 'wan', 'proto') then if not uci:get('network', 'wan', 'proto') then
uci:set('network', 'wan', 'proto', 'dhcp') uci:set('network', 'wan', 'proto', 'dhcp')
end end
uci:section('network', 'interface', 'wan6', uci:section('network', 'interface', 'wan6', {
{ ifname = 'br-wan',
ifname = 'br-wan', peerdns = false,
peerdns = false, ip6table = 1,
ip6table = 1, sourcefilter = false,
sourcefilter = false, })
}
)
if not uci:get('network', 'wan6', 'proto') then if not uci:get('network', 'wan6', 'proto') then
uci:set('network', 'wan6', 'proto', 'dhcpv6') uci:set('network', 'wan6', 'proto', 'dhcpv6')
end end
uci:section('network', 'rule6', 'wan6_lookup', uci:section('network', 'rule6', 'wan6_lookup', {
{ mark = '0x01/0x01',
mark = '0x01/0x01', lookup = 1,
lookup = 1, })
}
) uci:section('network', 'route6', 'wan6_unreachable', {
type = 'unreachable',
uci:section('network', 'route6', 'wan6_unreachable', interface = 'loopback',
{ target = '::/0',
type = 'unreachable', gateway = '::',
interface = 'loopback', table = 1,
target = '::/0', metric = 65535,
gateway = '::', })
table = 1,
metric = 65535,
}
)
uci:save('network') uci:save('network')
uci:section('firewall', 'rule', 'wan_igmp', uci:section('firewall', 'rule', 'wan_igmp', {
{ name = 'Allow-IGMP',
name = 'Allow-IGMP', src = 'wan',
src = 'wan', proto = 'igmp',
proto = 'igmp', family = 'ipv4',
family = 'ipv4', target = 'ACCEPT',
target = 'ACCEPT', })
}
) uci:section('firewall', 'rule', 'wan_mld', {
name = 'Allow-MLD',
uci:section('firewall', 'rule', 'wan_mld', src = 'wan',
{ proto = 'icmp',
name = 'Allow-MLD', src_ip = 'fe80::/10',
src = 'wan', icmp_type = { '130/0', '131/0', '132/0', '143/0', },
proto = 'icmp', family = 'ipv6',
src_ip = 'fe80::/10', target = 'ACCEPT',
icmp_type = { '130/0', '131/0', '132/0', '143/0', }, })
family = 'ipv6',
target = 'ACCEPT',
}
)
uci:save('firewall') uci:save('firewall')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment