I want to use dhcp server.
but do not run function.
[/etc/config/network]
config 'interface' 'loopback'
option 'ifname' 'lo'
option 'proto' 'static'
option 'ipaddr' '127.0.0.1'
option 'netmask' '255.0.0.0'
config 'interface' 'lan_l'
option 'type' 'bridge'
option 'ifname' 'eth0.0'
option 'proto' 'static'
option 'ipaddr' '192.168.200.11'
option 'netmask' '255.255.255.0'
option 'gateway' '192.168.200.1'
option 'defaultroute' '0'
option 'peerdns' '0'
config 'interface' 'lan_r'
option 'type' 'bridge'
option 'ifname' 'eth0.1'
option 'proto' 'dhcp'
option 'ipaddr' '192.168.200.11'
option 'netmask' '255.255.255.0'
option 'dns' ''
[/etc/config/dhcp]
config 'dnsmasq'
option 'domainneeded' '1'
option 'boguspriv' '1'
option 'localise_queries' '1'
option 'domain' 'lan'
option 'expandhosts' '1'
option 'authoritative' '1'
option 'readethers' '1'
option 'leasefile' '/tmp/dhcp.leases'
option 'resolvfile' '/tmp/resolv.conf.auto'
option 'local' '/lan_l/'
config 'dhcp'
option 'interface' 'lan_l'
option 'start' '100'
option 'limit' '150'
option 'leasetime' '12h'
option 'dynamicdhcp' '1'