mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-27 10:31:38 +08:00
14 lines
200 B
Bash
14 lines
200 B
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2006-2011 OpenWrt.org
|
|
|
|
START=95
|
|
|
|
start() {
|
|
echo debug=3 >/dev/natflow_ctl
|
|
echo disabled=0 >/dev/natflow_ctl
|
|
}
|
|
|
|
stop() {
|
|
echo disabled=1 >/dev/natflow_ctl
|
|
}
|