What's new
  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

Install ipkg, opkg or optware on default ASUSWrt

Wallace

Occasional Visitor
Hi Everyone,

I would like to install curl on ASUS Lyra Trio with default ASUSwrt firmware (3.0.0.4.382_20096)
I have used Asuswrt-Merlin firmware on RT-AC87U before.
Unfortunately, Asuswrt-Merlin does not support ASUS Lyra Trio.

Is it possible to install packages on default ASUSWrt firmware?

Thanks!
 
Just realised that wget is available.
And could create a 'curl' alias to get my public IP address.

Code:
# wget -O - --no-check-certificate --quiet https://checkip.amazonaws.com/
# alias curl="wget -O - --no-check-certificate --quiet"
# curl https://checkip.amazonaws.com/
 
You can also retrieve your public IP locally via ...

publicIP=$(/usr/sbin/ip addr show eth0 | awk '$1 == "inet" {gsub(/\/.*$/, "", $2); print $2}')
 

Latest threads

Support SNBForums w/ Amazon

If you'd like to support SNBForums, just use this link and buy anything on Amazon. Thanks!

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Back
Top