You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123 lines
5.7 KiB

  1. # travelmate, a wlan connection manager for travel router
  2. ## Description
  3. If you’re planning an upcoming vacation or a business trip, taking your laptop, tablet or smartphone give you the ability to connect with friends or complete work on the go. But many hotels don’t have a secure wireless network setup or you’re limited on using a single device at once. Investing in a portable, mini travel router is a great way to connect all of your devices at once while having total control over your own personalized wireless network.
  4. A logical combination of AP+STA mode on one physical radio allows most of OpenWrt/LEDE supported router devices to connect to a wireless hotspot/station (STA) and provide a wireless access point (AP) from that hotspot at the same time. Downside of this solution: whenever the STA interface looses the connection it will go into an active scan cycle which renders the radio unusable for AP mode operation, therefore the AP is taken down if the STA looses its association.
  5. To avoid these kind of deadlocks, travelmate set all station interfaces in an "always off" mode and connects automatically to available/configured hotspots.
  6. ## Main Features
  7. * STA interfaces operating in an "always off" mode, to make sure that the AP is always accessible
  8. * easy setup within normal OpenWrt/LEDE environment
  9. * fast uplink connections
  10. * "active mode" support, where travelmate will be restarted every n seconds (default 60) and checks the existing uplink connection regardless of ifdown event trigger
  11. * support of devices with multiple radios
  12. * procd init system support
  13. * procd based hotplug support, the travelmate start will be triggered by interface triggers
  14. * status & debug logging to syslog
  15. ## Prerequisites
  16. * [OpenWrt](https://openwrt.org) or [LEDE](https://www.lede-project.org) trunk
  17. * iw (default) or iwinfo for wlan scanning
  18. ## OpenWrt / LEDE trunk Installation & Usage
  19. * download the package [here](https://downloads.lede-project.org/snapshots/packages/x86_64/packages)
  20. * install 'travelmate' (_opkg install travelmate_)
  21. * configure your network to support (multiple) wlan uplinks and set travelmate config options (see below)
  22. * set 'trm\_enabled' option in travelmate config to '1'
  23. * travelmate starts automatically during boot and will be triggered by procd interface triggers
  24. ## LuCI travelmate companion package
  25. * download the package [here](https://downloads.lede-project.org/snapshots/packages/x86_64/luci)
  26. * install 'luci-app-travelmate' (_opkg install luci-app-travelmate_)
  27. * the application is located in LuCI under 'Services' menu
  28. * _Thanks to Hannu Nyman for this great LuCI frontend!_
  29. ## Chaos Calmer installation notes
  30. * 'travelmate' and 'luci-app-travelmate' are _not_ available as ipk packages in the Chaos Calmer download repository
  31. * download the packages from a development snapshot directory (see download links above)
  32. * manually transfer the packages to your routers temp directory (with tools like _sshfs_ or _winscp_)
  33. * install the packages as described above
  34. ## Travelmate config options
  35. * travelmate config options:
  36. * trm\_enabled => main switch to enable/disable the travelmate service (default: '0', disabled)
  37. * trm\_debug => enable/disable debug logging (default: '0', disabled)
  38. * trm\_active => keep travelmate in an active state (default: '0', disabled)
  39. * trm\_maxwait => how long (in seconds) should travelmate wait for wlan interface reload action (default: '20')
  40. * trm\_maxretry => how many times should travelmate try to find an uplink after a trigger event (default: '3')
  41. * trm\_timeout => timeout in seconds for "active mode" (default: '60')
  42. * trm\_iw => set this option to '0' to use iwinfo for wlan scanning (default: '1', use iw)
  43. * trm\_radio => limit travelmate to a dedicated radio, e.g. 'radio0' (default: not set, use all radios)
  44. * trm\_iface => restrict the procd interface trigger to a (list of) certain wan interface(s) or disable it at all (default: not set, disabled)
  45. ## Setup
  46. **1. configure a wwan interface in /etc/config/network:**
  47. <pre><code>
  48. [...]
  49. config interface 'wwan'
  50. option proto 'dhcp'
  51. [...]
  52. </code></pre>
  53. **2. add this interface to your firewall configuration in /etc/config/firewall:**
  54. <pre><code>
  55. [...]
  56. config zone
  57. option name 'wan'
  58. option network 'wan wan6 wwan'
  59. [...]
  60. </code></pre>
  61. **3. add required ap and wwan stations to your wireless configuration in etc/config/wireless:**
  62. <pre><code>
  63. [...]
  64. config wifi-iface
  65. option device 'radio0'
  66. option network 'lan'
  67. option mode 'ap'
  68. option ssid 'example_ap'
  69. option encryption 'psk2+ccmp'
  70. option key 'abc'
  71. option disabled '0'
  72. [...]
  73. config wifi-iface
  74. option device 'radio0'
  75. option network 'wwan'
  76. option mode 'sta'
  77. option ssid 'example_01'
  78. option encryption 'psk2+ccmp'
  79. option key 'abc'
  80. option disabled '1'
  81. config wifi-iface
  82. option device 'radio0'
  83. option network 'wwan'
  84. option mode 'sta'
  85. option ssid 'example_02'
  86. option encryption 'psk2+ccmp'
  87. option key 'xyz'
  88. option disabled '1'
  89. config wifi-iface
  90. option device 'radio0'
  91. option network 'wwan'
  92. option mode 'sta'
  93. option ssid 'example_03'
  94. option encryption 'none'
  95. option disabled '1'
  96. [...]
  97. </code></pre>
  98. **4. reload network configuration & start travelmate:**
  99. <pre><code>
  100. /etc/init.d/network reload
  101. /etc/init.d/travelmate start
  102. </code></pre>
  103. ## Support
  104. Please join the travelmate discussion in this [forum thread](https://forum.openwrt.org/viewtopic.php?id=67697) or contact me by [mail](mailto:dev@brenken.org)
  105. ## Removal
  106. * stop the travelmate daemon with _/etc/init.d/travelmate stop_
  107. * optional: remove the travelmate package (_opkg remove travelmate_)
  108. Have fun!
  109. Dirk