mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
qosmngr: fix port related config issue
Bug found in specifying input port as classification criteria, fixed with this change.
This commit is contained in:
parent
56273668d6
commit
ef4570dd83
1 changed files with 5 additions and 1 deletions
|
|
@ -117,7 +117,11 @@ handle_ebtables_rules() {
|
|||
init_broute_rule
|
||||
|
||||
config_get src_if "$sid" "ifname"
|
||||
[ -n "$src_if" ] && broute_filter_on_src_if $src_if
|
||||
if [ -n "$src_if" ]; then
|
||||
src_if="$src_if+"
|
||||
broute_filter_on_src_if $src_if
|
||||
fi
|
||||
|
||||
config_get src_mac "$sid" "src_mac"
|
||||
[ -n "$src_mac" ] && broute_filter_on_src_mac $src_mac
|
||||
config_get dst_mac "$sid" "dst_mac"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue