├── README.md ├── etc ├── config │ └── telegram_bot └── init.d │ └── telegram_bot └── usr └── lib └── telegram-bot ├── plugins ├── clients.sh ├── free.sh ├── functions │ ├── get_mac.sh │ └── ping.sh ├── memory.sh ├── netstat.sh ├── swports_list.sh ├── uptime.sh ├── wanip.sh ├── wifi_list.sh ├── wll_list.sh └── wol.sh └── telegram_bot /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixiumu/openwrt-telegram-bot/HEAD/README.md -------------------------------------------------------------------------------- /etc/config/telegram_bot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixiumu/openwrt-telegram-bot/HEAD/etc/config/telegram_bot -------------------------------------------------------------------------------- /etc/init.d/telegram_bot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixiumu/openwrt-telegram-bot/HEAD/etc/init.d/telegram_bot -------------------------------------------------------------------------------- /usr/lib/telegram-bot/plugins/clients.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixiumu/openwrt-telegram-bot/HEAD/usr/lib/telegram-bot/plugins/clients.sh -------------------------------------------------------------------------------- /usr/lib/telegram-bot/plugins/free.sh: -------------------------------------------------------------------------------- 1 | free -------------------------------------------------------------------------------- /usr/lib/telegram-bot/plugins/functions/get_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixiumu/openwrt-telegram-bot/HEAD/usr/lib/telegram-bot/plugins/functions/get_mac.sh -------------------------------------------------------------------------------- /usr/lib/telegram-bot/plugins/functions/ping.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixiumu/openwrt-telegram-bot/HEAD/usr/lib/telegram-bot/plugins/functions/ping.sh -------------------------------------------------------------------------------- /usr/lib/telegram-bot/plugins/memory.sh: -------------------------------------------------------------------------------- 1 | cat /proc/meminfo | sed -n '1,5p' 2 | -------------------------------------------------------------------------------- /usr/lib/telegram-bot/plugins/netstat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixiumu/openwrt-telegram-bot/HEAD/usr/lib/telegram-bot/plugins/netstat.sh -------------------------------------------------------------------------------- /usr/lib/telegram-bot/plugins/swports_list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixiumu/openwrt-telegram-bot/HEAD/usr/lib/telegram-bot/plugins/swports_list.sh -------------------------------------------------------------------------------- /usr/lib/telegram-bot/plugins/uptime.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | uptime -------------------------------------------------------------------------------- /usr/lib/telegram-bot/plugins/wanip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixiumu/openwrt-telegram-bot/HEAD/usr/lib/telegram-bot/plugins/wanip.sh -------------------------------------------------------------------------------- /usr/lib/telegram-bot/plugins/wifi_list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixiumu/openwrt-telegram-bot/HEAD/usr/lib/telegram-bot/plugins/wifi_list.sh -------------------------------------------------------------------------------- /usr/lib/telegram-bot/plugins/wll_list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixiumu/openwrt-telegram-bot/HEAD/usr/lib/telegram-bot/plugins/wll_list.sh -------------------------------------------------------------------------------- /usr/lib/telegram-bot/plugins/wol.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixiumu/openwrt-telegram-bot/HEAD/usr/lib/telegram-bot/plugins/wol.sh -------------------------------------------------------------------------------- /usr/lib/telegram-bot/telegram_bot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixiumu/openwrt-telegram-bot/HEAD/usr/lib/telegram-bot/telegram_bot --------------------------------------------------------------------------------