Login  Register

Re: Update script (fw_upgrade)

Posted by Roadrunnere42 on Apr 17, 2016; 6:26pm
URL: https://itus.accessinnov.com/Update-script-fw-upgrade-tp43p722.html

breda

lust looked at your posted etc/config/network file and compared with my spare shield which has not been modified and running sp1.51 and found that you have
option proto 'dhcp'  where as i don't have this.

my file is as follows

config interface 'loopback'
        option ifname 'lo'
        option proto 'static'
        option ipaddr '127.0.0.1'
        option netmask '255.0.0.0'

config globals 'globals'
        option ula_prefix 'fd30:1d37:4e69::/48'

config interface 'wan'
        option ifname 'eth0'
        option proto 'none'
        option enable '1'
        option auto '1'

config interface 'wan6'
        option ifname 'eth2'
        option proto 'none'
        option enable '1'
        option auto '1'

config interface 'lan'
        option ifname 'eth1'
        option type 'bridge'
        option enable '1'
        option proto 'static'
        option ipaddr '192.168.2.111'
        option netmask '255.255.255.0'
        option gateway '192.168.2.1'
        option broadcast '192.168.2.255'
        option dns '192.168.2.1'

config interface 'blockdomain'
        option ifname 'br-lan'
        option proto 'static'
        option ipaddr '192.168.2.112'
        option netmask '255.255.255.0'

hope this helps

roadrunnere42