Changes between Version 1 and Version 2 of RouterBoard260GSP


Ignore:
Timestamp:
06/04/17 16:44:06 (7 years ago)
Author:
Rick van der Zwet
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • RouterBoard260GSP

    v1 v2  
    11== Firmware update using dnsmasq
    22
     3I using using a Fedora 25 system and the RB260GSP port 1 is connected to my ethernet port (enp4s0).
     4
    35{{{
     6# Stopping firewall to allow DHCP/TFTP inbound
    47sudo systemctl stop firewalld
     8
     9# Firmware file needs specific name
     10cp swos-rb260-1.17.lzb /tmp/fw.260
     11cd /tmp
     12
     13# Starting dnsmasq with TFTP/bootp option
    514sudo dnsmasq --interface enp4s0 --bind-interfaces --no-daemon --port 0 --dhcp-range 192.168.1.100,192.168.1.200,12h  --dhcp-authoritative \
    615  --dhcp-host=00:00:00:00:01:01,192.168.1.101 --enable-tftp --tftp-root=`pwd` --log-queries --log-dhcp
     16
     17# Start firmware upgrade:
     18- Power-off RB260GSP
     19- Press-and-hold reset button
     20- Power-on RB260GSP
     21- Wait till ACT led starts flashing very fast (it first flashes slowly).
     22
    723}}}
     24