Skip to content

Connecting to the router

via web browser

At the default anygw FQDN http://thisnode.info.

These addresses are available as well:

  • http://10.13.0.1 - default anygw ipv4
  • http://10.13.x.x - node default LAN br-lan ipv4 address
  • http://meuno.info - other anygw FQDN
  • http://minodo.info - other anygw FQDN
  • http://<hostname> - device hostname
  • http://<hostname>.thisnode.info - device FQDN
  • http://[fd0d:fe46:8ce8::1] - default anygw ipv6
  • http://[fd0d:fe46:8ce8::x:xx/64] - node default LAN br-lan ipv6 address

lime-app

via SSH

The following bash aliases are recommended:

  • +ssh-rsa - (optional) Required if the node runs an openwrt older than the branch 23.05
  • ussh - an alias to:
    • Ignore KnownHost files, useful when connecting to the Anygw address 10.13.0.1 or the anygw FQDN thisnode.info
    • Disable StrictHostKeyChecking, useful to reconnect after ugrading to a newer OpenWrt version without keeping settings.
sh
cat << EOF >> ~/.bashrc
alias ssh="ssh -o HostKeyAlgorithms=+ssh-rsa -o PubkeyAcceptedKeyTypes=+ssh-rsa"
alias ussh="ssh -o UserKnownHostsFile=/dev/null -o GlobalKnownHostsFile=/dev/null -o StrictHostKeyChecking=no"
EOF
source ~/.bashrc

Connect to the device

sh
ussh root@thisnode.info

Once the connection is established the default banners will be printed to the console:

BusyBox v1.36.1 (2025-12-30 22:05:19 UTC) built-in shell (ash)

  _______                     ________        __
 |       |.-----.-----.-----.|  |  |  |.----.|  |_
 |   -   ||  _  |  -__|     ||  |  |  ||   _||   _|
 |_______||   __|_____|__|__||________||__|  |____|
          |__| W I R E L E S S   F R E E D O M
 -----------------------------------------------------
 OpenWrt 24.10.5, r29087-d9c5716d1d
 -----------------------------------------------------
  __    __ __                _______             __
 |  |  |__|  |--.----.-----.|   |   |-----.-----|  |--.
 |  |__|  |  _  |   _|  -__||       |  -__|__ --|     |
 |_____|__|_____|__| |_____||__|_|__|_____|_____|__|__|
 ------------------------------------------------------
 LiMe master development (master rev. 94aa82c 20260105_1030)
 ------------------------------------------------------
 https://libremesh.org
 ------------------------------------------------------

 === System Notes =================================================

 = edit via http://thisnode.info/app/#/notes or /etc/banner.notes =

=== WARNING! =====================================
There is no root password defined on this device!
Use the "passwd" command to set up a new password
in order to prevent unauthorized SSH logins.
--------------------------------------------------
root@openwrt:~#