Changes between Version 2 and Version 3 of RouterBoard260GSP
- Timestamp:
- Jun 4, 2017, 4:45:38 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
RouterBoard260GSP
v2 v3 3 3 I using using a Fedora 25 system and the RB260GSP port 1 is connected to my ethernet port (enp4s0). 4 4 5 Stopping firewall to allow DHCP/TFTP inbound 5 6 {{{ 6 # Stopping firewall to allow DHCP/TFTP inbound7 7 sudo systemctl stop firewalld 8 }}} 8 9 9 # Firmware file needs specific name 10 Firmware file needs specific name 11 {{{ 10 12 cp swos-rb260-1.17.lzb /tmp/fw.260 11 13 cd /tmp 14 }}} 12 15 13 # Starting dnsmasq with TFTP/bootp option 16 Starting dnsmasq with TFTP/bootp option 17 {{{ 14 18 sudo dnsmasq --interface enp4s0 --bind-interfaces --no-daemon --port 0 --dhcp-range 192.168.1.100,192.168.1.200,12h --dhcp-authoritative \ 15 19 --dhcp-host=00:00:00:00:01:01,192.168.1.101 --enable-tftp --tftp-root=`pwd` --log-queries --log-dhcp 20 }}} 16 21 17 #Start firmware upgrade:18 -Power-off RB260GSP19 -Press-and-hold reset button20 -Power-on RB260GSP21 -Wait till ACT led starts flashing very fast (it first flashes slowly).22 Start 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). 22 27 23 28 }}}