mirror of https://github.com/hak5/openwrt-owl.git
parent
35078a6a52
commit
d1049f535a
|
@ -218,6 +218,16 @@ fw_rule() {
|
|||
config_get target $1 target
|
||||
config_get ruleset $1 ruleset
|
||||
|
||||
src_port_first=${src_port%-*}
|
||||
src_port_last=${src_port#*-}
|
||||
[ "$src_port_first" -ne "$src_port_last" ] && { \
|
||||
src_port="$src_port_first:$src_port_last"; }
|
||||
|
||||
dest_port_first=${dest_port%-*}
|
||||
dest_port_last=${dest_port#*-}
|
||||
[ "$dest_port_first" -ne "$dest_port_last" ] && { \
|
||||
dest_port="$dest_port_first:$dest_port_last"; }
|
||||
|
||||
ZONE=input
|
||||
TARGET=$target
|
||||
[ -z "$target" ] && target=DROP
|
||||
|
|
Loading…
Reference in New Issue