Skip to content

Instantly share code, notes, and snippets.

@ahbanavi
ahbanavi / openwrt-setup.md
Last active February 3, 2026 06:11
My OpenWrt Initial Setup (Passwall2 + extroot + vnstat)

My OpenWrt Initial Setup

My Router Info

  • Model: Linksys EA8100
  • Memory: 256MB
  • Storage: Using 16GB thumb drive as extroot
  • OpenWrt Version: OpenWrt 23.05.3 r23809-234f1a2efa / LuCI openwrt-23.05 branch git-24.073.29889-cd7e519

Extroot

@dragonfire1119
dragonfire1119 / install-openwrt-on-proxmox.md
Last active April 10, 2026 11:02
Install OpenWRT on Proxmox
@hplc
hplc / monitor_ocserv.sh
Created June 13, 2017 12:13
Monitor service and restart it if down in OpenWrt.
#!/bin/sh
# Put this script run in crond.
service=ocserv
if test $(netstat -na | grep 0.0.0.0:443 | wc -l) = 2
then
echo "$service is running!"
else
/etc/init.d/$service start