Changes between Version 2 and Version 3 of RouterBoard260GSP


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

--

Legend:

Unmodified
Added
Removed
Modified
  • RouterBoard260GSP

    v2 v3  
    33I using using a Fedora 25 system and the RB260GSP port 1 is connected to my ethernet port (enp4s0).
    44
     5Stopping firewall to allow DHCP/TFTP inbound
    56{{{
    6 # Stopping firewall to allow DHCP/TFTP inbound
    77sudo systemctl stop firewalld
     8}}}
    89
    9 # Firmware file needs specific name
     10Firmware file needs specific name
     11{{{
    1012cp swos-rb260-1.17.lzb /tmp/fw.260
    1113cd /tmp
     14}}}
    1215
    13 # Starting dnsmasq with TFTP/bootp option
     16Starting dnsmasq with TFTP/bootp option
     17{{{
    1418sudo dnsmasq --interface enp4s0 --bind-interfaces --no-daemon --port 0 --dhcp-range 192.168.1.100,192.168.1.200,12h  --dhcp-authoritative \
    1519  --dhcp-host=00:00:00:00:01:01,192.168.1.101 --enable-tftp --tftp-root=`pwd` --log-queries --log-dhcp
     20}}}
    1621
    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).
     22Start firmware upgrade:
     23 1. Power-off RB260GSP
     24 1. Press-and-hold reset button
     25 1. Power-on RB260GSP
     26 1. Wait till ACT led starts flashing very fast (it first flashes slowly).
    2227
    2328}}}