OpenWRT - various useful commands

Published on Author admin

Various useful commands for OpenWRT/LEDE devices: Show ethernet switch information: swconfig list swconfig dev switch0 show Updating packages: opkg update opkg list-upgradable opkg list-upgradable | awk '{ print $1 }' | xargs opkg upgrade Installing OpenVPN (with Easy-RSA) software: opkg install openvpn-openssl opkg install openvpn-easy-rsa Installing DynamicDNS client (with HTTPS nad LuCI support): opkg install… Continue reading OpenWRT - various useful commands

LEDE (Linux Embedded Development Environment) - first steps

Published on Author admin

First steps with LEDE - Linux Embedded Development Environment. Setting MAC address cloning for WAN network interface. config file: /etc/config/network config device 'wan_dev'     option name 'eth0.2'     option macaddr 'XX:XX:XX:XX:XX:XX' Setting port forwarding (Destination NAT). config file: /etc/config/firewall config redirect     option target 'DNAT'     option src 'wan'    … Continue reading LEDE (Linux Embedded Development Environment) - first steps