User Tools

Site Tools


software:openwrt

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
software:openwrt [2012/09/04 16:18] – external edit 127.0.0.1software:openwrt [2017/12/27 13:56] – [How-Tos] Michele Porelli
Line 9: Line 9:
   * [[http://wiki.openwrt.org/doc/howto/extroot|Boot from external flash/disk]]   * [[http://wiki.openwrt.org/doc/howto/extroot|Boot from external flash/disk]]
   * Multi-WAN Load Balancing - [[http://wiki.openwrt.org/doc/uci/multiwan|wiki]] and [[https://forum.openwrt.org/viewtopic.php?id=23904|forum topic]]   * Multi-WAN Load Balancing - [[http://wiki.openwrt.org/doc/uci/multiwan|wiki]] and [[https://forum.openwrt.org/viewtopic.php?id=23904|forum topic]]
 +  * [[https://forum.openwrt.org/viewtopic.php?id=29352|Announce multiple gateways via DHCP]]
 +  * Upgrade all the packages<code>#!/usr/bin/env sh
 +opkg update
 +for p in $(opkg list-upgradable); do
 +  if [ "$p" != "-" ]; then
 +    if [ "$(echo ${p:0:1} | sed -e 's/[0-9]//')" != "" ]; then
 +      echo "upgrading $p"
 +      opkg upgrade $p
 +    fi
 +  fi
 +done</code>
 ===== Fixes ===== ===== Fixes =====
   * [[https://dev.openwrt.org/ticket/7078|Error opening terminal:]] - libncurses, terminfo and alternate install destination   * [[https://dev.openwrt.org/ticket/7078|Error opening terminal:]] - libncurses, terminfo and alternate install destination
 +===== Guides =====
 +  * [[http://blog.philippklaus.de/2011/04/openwrt-on-a-tp-link-tl-wr1043nd-gigabit-router/|Quick dummies guide for OpenWRT by Philipp Klaus]]
 +
  
software/openwrt.txt · Last modified: 2020/07/05 06:36 by Michele Porelli