This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
content:meshextender:prototyping_on_mp2 [14/05/2013 23:18] 127.0.0.1 external edit |
content:meshextender:prototyping_on_mp2 [14/07/2015 01:01] Nathan Fowler Added New firmware update Instructions |
||
---|---|---|---|
Line 13: | Line 13: | ||
The TL-WR703N is well supported by OpenWRT: http:// | The TL-WR703N is well supported by OpenWRT: http:// | ||
- | ===== Installing base OpenWRT on the WR703N ===== | + | ======Installing Serval on the WR703N (New way)====== |
+ | Perform the following steps on a Linux box, but first ... | ||
+ | |||
+ | ===== SYSADMIN GENERAL' | ||
+ | |||
+ | Because of the inherent risk of human error when instructing the scripts to format and repartition memory sticks, we recommend that you use an old laptop or similar, and dedicate it to this process, so that you do not endanger your data. | ||
+ | |||
+ | ===== WR703N Instructions ===== | ||
+ | - Make sure you have git, csh and expect installed | ||
+ | Depending on your Linux distribution, | ||
+ | < | ||
+ | $ sudo yum install csh expect git | ||
+ | </ | ||
+ | Alternatively you may need to use | ||
+ | < | ||
+ | $ sudo apt-get install csh expect git | ||
+ | </ | ||
+ | - Download the Mesh Extender Builder software. | ||
+ | < | ||
+ | $ git clone --quiet https:// | ||
+ | </ | ||
+ | - Allow Edits to the files in the folder | ||
+ | < | ||
+ | $ chmod 777 703n-builder | ||
+ | $ cd 703n-builder | ||
+ | </ | ||
+ | - Edit the files that get the openwrt images to get the right images.(make_image, | ||
+ | make_image | ||
+ | < | ||
+ | # Download and unpack OpenWRT 12.09 image builder (if required). | ||
+ | if [ ! -e OpenWrt-ImageBuilder-ar71xx_generic-for-linux-i486 ]; then | ||
+ | if [ ! -e OpenWrt-ImageBuilder-ar71xx_generic-for-linux-i486.tar.bz2 ]; then | ||
+ | wget http:// | ||
+ | fi; | ||
+ | tar jxvf OpenWrt-ImageBuilder-ar71xx_generic-for-linux-i486.tar.bz2 | ||
+ | fi; | ||
+ | |||
+ | # Build image with all the right packages, and the extra configuration files we need. | ||
+ | cd OpenWrt-ImageBuilder-ar71xx_generic-for-linux-i486 | ||
+ | make image PROFILE=TLWR703 " | ||
+ | |||
+ | # Copy build image to here, and show the user | ||
+ | cp bin/ | ||
+ | cd .. | ||
+ | |||
+ | echo "Mesh Extender firmware image built:" | ||
+ | ls -l openwrt-ar71xx-generic-tl-wr703n-v1-squashfs-factory.bin | ||
+ | </ | ||
+ | gather-image-files | ||
+ | - change line 71 as follows | ||
+ | < | ||
+ | cp ../ | ||
+ | </ | ||
+ | flash-virgin-mr3020 | ||
+ | - Change line 12 as follows | ||
+ | < | ||
+ | firmware=openwrt-ar71xx-generic-tl-wr703n-v1-squashfs-factory.bin | ||
+ | </ | ||
+ | - Build the OpenWRT image (this will download a lot of stuff the first time you run it, but you can re-run it quickly there after if you change something). | ||
+ | < | ||
+ | $ ./ | ||
+ | </ | ||
+ | - Build the serval.up file | ||
+ | < | ||
+ | $ ./ | ||
+ | </ | ||
+ | - Insert the USB memory stick into the installation computer, noting its device name(can be found by typing " | ||
+ | < | ||
+ | $ umount / | ||
+ | $ ./ | ||
+ | </ | ||
+ | - Remove and reinsert the USB memory stick so that the kernel notices the new partition table. | ||
+ | - Unmount the USB partitons again | ||
+ | - Populate the USB memory stick, again replacing deviceid with the right device, e.g., sdf. MAKE SURE YOU GIVE IT THE RIGHT DEVICE OR IT MIGHT ERASE THE PARTITIONS ON YOUR HARD DRIVE! | ||
+ | < | ||
+ | $ ./ | ||
+ | </ | ||
+ | - Unplug the USB memory stick and insert it into the MR3020 that is to become a mesh extender. | ||
+ | - Power up the MR3020, and connect it via ethernet to the installation machine, and wait a couple of minutes for it to boot up. | ||
+ | - If the MR3020 is still running the stock firmware, flash it this way: | ||
+ | < | ||
+ | $ ./ | ||
+ | </ | ||
+ | You may need to specify the IP address on the command line if the script doesn' | ||
+ | - If the MR3020 already has OpenWRT, flash it this way. (You might need to boot the Mesh Extender into fail-safe mode first.) | ||
+ | < | ||
+ | $ ./ | ||
+ | </ | ||
+ | You may need to specify the IP address on the command line if the script doesn' | ||
+ | < | ||
+ | $ ./ | ||
+ | </ | ||
+ | |||
+ | The WR703N should reboot as a fully functional Mesh Extender. | ||
+ | ===== Configuration===== | ||
+ | ==== SSH access ==== | ||
+ | First thing to make sure of is that the noroot | ||
+ | < | ||
+ | $ ssh root@192.168.2.1 | ||
+ | </ | ||
+ | If this works you should be greeted by a splash screen showing serval version and some other details.\ | ||
+ | |||
+ | From this you can check if the serval node is functioning properly by using | ||
+ | < | ||
+ | root@192.168.2.1 $ servald status | ||
+ | </ | ||
+ | this will return either a few lines saying the status and should contain a line saying whether it is running or it will return a message saying servald is not found. If the latter is what is displayed delete noroot and reboot the mesh node with | ||
+ | < | ||
+ | $ rm / | ||
+ | $ reboot | ||
+ | </ | ||
+ | The serval node should reboot and work once it has rebooted. | ||
+ | |||
+ | ====Changing name of the device==== | ||
+ | This is useful as it allows you to identify specific nodes if a few different ones are within range of each other rather than using sid or the phone number. | ||
+ | < | ||
+ | servald keyring set did `servald id self | tail -1` "Phone number" | ||
+ | </ | ||
+ | This line allows the user to set the phone number and the name of the device for easy identification. | ||
+ | |||
+ | ====Disabling noroot lockout==== | ||
+ | WARNING! THIS CAN ALLOW ANYONE ROOT ACCESS IF NECESSARY PRECAUTIONS AREN'T TAKEN WHICH MIGHT INCLUDE CHANGING THE ROOT PASSWORD. | ||
+ | |||
+ | ssh into the node using the above method. Once you have access use the following to navigate to the folder which contains the script that produces the noroot file.Then open the script in Vi | ||
+ | < | ||
+ | $ cd / | ||
+ | $vi dropbear | ||
+ | </ | ||
+ | |||
+ | Find the two lines in this script that are as follows | ||
+ | < | ||
+ | passwd -l root # lock | ||
+ | [ -e /dos/noroot ] && return 1 | ||
+ | </ | ||
+ | and comment them out by adding a # to the front as follows | ||
+ | < | ||
+ | # passwd -l root # lock | ||
+ | # [ -e /dos/noroot ] && return 1 | ||
+ | </ | ||
+ | |||
+ | Once this has been done you will have root access at all times without having to delete noroot However it is a good idea to change the root password after doing this to discourage unauthorized access. this is achieved by using | ||
+ | < | ||
+ | $ passwd | ||
+ | </ | ||
+ | ===== Enabling SSH on a Mesh Extender ===== | ||
+ | |||
+ | Remember if you wish to ssh to the Mesh Extender to power it down, remove the USB memory stick and insert it into any computer, and delete the NOROOT file from the FAT file system partition, and reinsert it into the Mesh Extender. | ||
+ | |||
+ | =====Troubleshooting==== | ||
+ | ====Sysupgrade not found==== | ||
+ | This means that the openwrt currently on the router cannot find the sysupgrade file | ||
+ | - Download the sysupgrade image for the router you are flashing from this list [[http:// | ||
+ | - navigate to the folder where the image is located | ||
+ | - use the following to get the image onto the routers RAM | ||
+ | < | ||
+ | $ scp openwrt-ar71xx-generic-tl-wr703n-v1-squashfs-sysupgrade.bin root@192.168.1.1:/ | ||
+ | </code | ||
+ | - ssh into the router then use the following command to flash the sysupgrade image | ||
+ | < | ||
+ | # sysupgrade -v / | ||
+ | sysupgrade.bin | ||
+ | </ | ||
+ | - Follow the serval instructions for your device to reflash serval to the device | ||
+ | |||
+ | ====Cannot ssh into the device==== | ||
+ | There can be a few diffferent causes for this issue. | ||
+ | ===Telnet=== | ||
+ | This occurs when a root password hasn't been set on the device | ||
+ | - Telnet into the device | ||
+ | - set the root password | ||
+ | < | ||
+ | $ telnet 192.168.1.1 | ||
+ | # passwd | ||
+ | </ | ||
+ | - after this reboot the device and check if the ssh is working if not try the failsafe route | ||
+ | |||
+ | ===Failsafe=== | ||
+ | - change your computer from DHCP to static ip with an address of 192.168.1.2 and subnet 255.255.255.0 | ||
+ | - boot your router into failsafe mode e.g. TP-Link models can be booted into failsafe by holding the reset button once the light starts blinking on boot | ||
+ | - telnet into the router | ||
+ | < | ||
+ | $ telnet 192.168.1.1 | ||
+ | </ | ||
+ | - mount the JFSS2 partition to allow you to edit the password or other files that could be causing the issues with | ||
+ | < | ||
+ | # mount_root | ||
+ | </ | ||
+ | - set the passwd if you forgot your password | ||
+ | < | ||
+ | # passwd | ||
+ | </ | ||
+ | - Reset the router to stock openwrt if issue is not password related by using | ||
+ | < | ||
+ | # firstboot | ||
+ | </ | ||
+ | - Once this is done reboot the router into normal mode using | ||
+ | < | ||
+ | # reboot -f | ||
+ | </ | ||
+ | |||
+ | After this you will need to change your network settings back to dhcp to connect to the router through telnet/ | ||
+ | |||
+ | ====== Installing base OpenWRT on the WR703N | ||
WARNING: The following can brick newer WR703Ns (Firmware 1.7, Ver:1.6 or Ver:1.7 etc on the bottom of the unit. Ver:1.2 is known to be safe). | WARNING: The following can brick newer WR703Ns (Firmware 1.7, Ver:1.6 or Ver:1.7 etc on the bottom of the unit. Ver:1.2 is known to be safe). |