Changes between Version 1 and Version 2 of RouterBoard260GSP
- Timestamp:
- Jun 4, 2017, 4:44:06 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
RouterBoard260GSP
v1 v2 1 1 == Firmware update using dnsmasq 2 2 3 I using using a Fedora 25 system and the RB260GSP port 1 is connected to my ethernet port (enp4s0). 4 3 5 {{{ 6 # Stopping firewall to allow DHCP/TFTP inbound 4 7 sudo systemctl stop firewalld 8 9 # Firmware file needs specific name 10 cp swos-rb260-1.17.lzb /tmp/fw.260 11 cd /tmp 12 13 # Starting dnsmasq with TFTP/bootp option 5 14 sudo dnsmasq --interface enp4s0 --bind-interfaces --no-daemon --port 0 --dhcp-range 192.168.1.100,192.168.1.200,12h --dhcp-authoritative \ 6 15 --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 7 23 }}} 24