Differences

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

Link to this comparison view

Next revision
Previous revision
Next revisionBoth sides next revision
toh:tp-link:tl-features [2012/06/26 22:23] – created nilfredtoh:tp-link:tl-features [2019/03/22 12:23] – tags vgaetera
Line 1: Line 1:
 +====== TP-Link firmware features ======
 +
 +This guide will let you know the tools required to install, in order to mimic some original features you miss from the original firmware, when upgrade to OpenWrt. **TP-Link naming scheme** is, that numbers behind the comma, refer to changes in the firmware only, the hardware is identical.
 +
 +^ Marketing buzz-words ^ OEM firmware ^ Alternatives in OpenWrt ^
 +| Access WebUI on tplinklogin.net |  hosts  | [[#hosts]] |
 +| Bandwidth Control    |   qos    | [[docs:guide-user:network:traffic-shaping:qos-tomerge|luci-app-qos]], [[doc:uci:wshaper|luci-app-wshaper]], [[http://www.sonicspike.net/software/#dsl_qos_queue|dsl_qos_queue]] |
 +| Dynamic DNS          |    ?     | [[docs:guide-user:services:ddns:client-tomerge|luci-app-ddns]] |
 +| FTP Server            vsftpd?  | proftpd, [[docs:guide-user:services:nas:pure-ftpd|pure-ftpd]], uftpd, vsftpd, + search the OpenWrt archives for more available FTP servers |
 +| Hardware NAT            ?     | Unsupported |
 +| Media Server          ushare  | [[docs:guide-user:services:media_server:ushare|luci-app-ushare]], [[docs:guide-user:services:media_server:minidlna|luci-app-minidlna]] |
 +| Multiple WLAN        |    ?     | [[docs:guide-user:network:wifi:guestwifi:guest-wlan|Guest WLAN]] |
 +| Print server            ?     | [[docs:guide-user:services:print_server:p910nd|luci-app-p910nd]], [[docs:guide-user:services:usb.iptunnel|usbip]] |
 +| WPS (Not recommended) |   ?     | [[docs:guide-user:network:wifi:basic#wps_options]] |
 +| Storage Sharing      |  samba   | [[docs:guide-user:services:nas:samba|luci-app-samba]] |
 +| UPnP                    ?     | [[docs:guide-user:firewall:upnp:upnp_setup|luci-app-upnp]], [[docs:guide-user:firewall:upnp:miniupnpd|miniupnpd]] |
 +
 +==== hosts ====
 +Even if you didn't install LuCI is nice to have
 +<code bash>
 +ssh root@tplinklogin.net
 +</code>
 +This feature lets you access LuCI pointing your browser to http://tplinklogin.net
 +
 +=== Editing /etc/hosts file ===
 +Not recommended, because dnsmasq runs as **nobody** and /etc is reserved for **root** access.
 +<code bash>
 +echo 192.168.1.1 tplinklogin.net >> /etc/hosts
 +</code>
 +
 +=== Adding UCI domain ===
 +<code>
 +uci add dhcp domain
 +uci set dhcp.@domain[-1].name=tplinklogin.net
 +uci set dhcp.@domain[-1].ip=192.168.1.1
 +uci commit dhcp
 +</code>
 +
 +=== Using LuCI WebUI ===
 +  * Go to http://192.168.1.1/cgi-bin/luci/admin/network/hosts/
 +  * Click the [Add] button.
 +  * Complete the fields:
 +    * Hostname ''tplinklogin.net''
 +    * IP address ''192.168.1.1''
 +  * Click the [Save & Apply] button.
  
  • Last modified: 2024/12/03 12:35
  • by self-hosting-group