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.
 
 
 
 
 
 
Dirk Brenken bf6636517a travelmate: maintenance update 0.7.4 7 years ago
..
README.md travelmate: update 0.7.2 8 years ago
travelmate.conf travelmate: update 0.7.2 8 years ago
travelmate.init travelmate: maintenance update 0.7.4 7 years ago
travelmate.sh travelmate: maintenance update 0.7.4 7 years ago

README.md

travelmate, a wlan connection manager for travel router

Description

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.
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.
To avoid these kind of deadlocks, travelmate set all station interfaces in an "always off" mode and connects automatically to available/configured hotspots.

Main Features

  • STA interfaces operating in an "always off" mode, to make sure that the AP is always accessible
  • easy setup within normal OpenWrt/LEDE environment
  • strong LuCI-Support to simplify the interface setup
  • fast uplink connections
  • manual / automatic mode support, the latter one checks the existing uplink connection regardless of ifdown event trigger every n seconds
  • support of devices with multiple radios
  • procd init and hotplug support
  • runtime information available via LuCI & via 'status' init command
  • status & debug logging to syslog

Prerequisites

  • LEDE 17.01 or latest snapshot
  • iw for wlan scanning

LEDE trunk Installation & Usage

  • download the package here
  • install 'travelmate' (opkg install travelmate)
  • configure your network:
    • automatic: use the LuCI frontend with automatic interface setup, that's the recommended way
    • manual: see detailed configure steps below

LuCI travelmate companion package

  • download the package here
  • install 'luci-app-travelmate' (opkg install luci-app-travelmate)
  • the application is located in LuCI under 'Services' menu

Travelmate config options

  • travelmate config options:
    • trm_enabled => main switch to enable/disable the travelmate service (default: '0', disabled)
    • trm_debug => enable/disable debug logging (default: '0', disabled)
    • trm_automatic => keep travelmate in an active state (default: '1', enabled)
    • trm_maxwait => how long (in seconds) should travelmate wait for a successful wlan interface reload action (default: '30')
    • trm_maxretry => how many times should travelmate try to find an uplink after a trigger event (default: '3')
    • trm_timeout => timeout in seconds for "automatic mode" (default: '60')
    • trm_radio => limit travelmate to a dedicated radio, e.g. 'radio0' (default: not set, use all radios)
    • trm_iface => restrict the procd interface trigger to a (list of) certain wan interface(s) or disable it at all (default: trm_wwan)
    • trm_triggerdelay => additional trigger delay in seconds before travelmate processing starts (default: '1')

Runtime information

receive travelmate runtime information:


root@adb2go:~# /etc/init.d/travelmate status
::: travelmate runtime information
 travelmate_version : 0.7.2
 station_connection : true
 station_ssid       : blackhole
 station_interface  : trm_wwan
 station_radio      : radio1
 last_rundate       : 06.05.2017 06:58:22
 system             : LEDE Reboot SNAPSHOT r4051-3ddc1914ba

Setup

1. configure the travelmate wwan interface in /etc/config/network:


[...]
config interface 'trm_wwan'
        option proto 'dhcp'
[...]

2. add this interface to your firewall configuration in /etc/config/firewall:


[...]
config zone
        option name 'wan'
        option network 'wan wan6 trm_wwan'
[...]

3. add required ap and wwan stations to your wireless configuration in etc/config/wireless:


[...]
config wifi-iface
        option device 'radio0'
        option network 'lan'
        option mode 'ap'
        option ssid 'example_ap'
        option encryption 'psk2+ccmp'
        option key 'abc'
        option disabled '0'
[...]
config wifi-iface
        option device 'radio0'
        option network 'trm_wwan'
        option mode 'sta'
        option ssid 'example_01'
        option encryption 'psk2+ccmp'
        option key 'abc'
        option disabled '1'
config wifi-iface
        option device 'radio0'
        option network 'trm_wwan'
        option mode 'sta'
        option ssid 'example_02'
        option encryption 'psk2+ccmp'
        option key 'xyz'
        option disabled '1'
config wifi-iface
        option device 'radio0'
        option network 'trm_wwan'
        option mode 'sta'
        option ssid 'example_03'
        option encryption 'none'
        option disabled '1'
[...]

4. reload network configuration & start travelmate:


/etc/init.d/network reload
/etc/init.d/travelmate start

Support

Please join the travelmate discussion in this forum thread or contact me by mail

Removal

  • stop the travelmate daemon with /etc/init.d/travelmate stop
  • optional: remove the travelmate package (opkg remove travelmate)

Have fun!
Dirk