Silently Apply TGID ACL to outbound as well as inbound traffic
when the target is an OpenBridge
This commit is contained in:
parent
e40a020b13
commit
423bb3e5cd
@ -45,7 +45,7 @@ from twisted.protocols.basic import NetstringReceiver
|
|||||||
from twisted.internet import reactor, task
|
from twisted.internet import reactor, task
|
||||||
|
|
||||||
# Things we import from the main hblink module
|
# Things we import from the main hblink module
|
||||||
from hblink import HBSYSTEM, OPENBRIDGE, systems, hblink_handler, reportFactory, REPORT_OPCODES, mk_aliases
|
from hblink import HBSYSTEM, OPENBRIDGE, systems, hblink_handler, reportFactory, REPORT_OPCODES, mk_aliases, acl_check
|
||||||
from dmr_utils3.utils import bytes_3, int_id, get_alias, bytes_4
|
from dmr_utils3.utils import bytes_3, int_id, get_alias, bytes_4
|
||||||
from dmr_utils3 import decode, bptc, const
|
from dmr_utils3 import decode, bptc, const
|
||||||
import config
|
import config
|
||||||
@ -1194,6 +1194,16 @@ class routerOBP(OPENBRIDGE):
|
|||||||
if _target_system['ENHANCED_OBP'] and ('_bcka' not in _target_system or _target_system['_bcka'] < pkt_time - 60):
|
if _target_system['ENHANCED_OBP'] and ('_bcka' not in _target_system or _target_system['_bcka'] < pkt_time - 60):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
#If talkgroup is prohibited by ACL
|
||||||
|
if self._CONFIG['GLOBAL']['USE_ACL']:
|
||||||
|
if not acl_check(_target['TGID'], self._CONFIG['GLOBAL']['TG1_ACL']):
|
||||||
|
#logger.info('(%s) TGID prohibited by ACL, not sending', _target['SYSTEM'], int_id(_dst_id))
|
||||||
|
continue
|
||||||
|
|
||||||
|
if not acl_check(_target['TGID'],_target_system['TG1_ACL']):
|
||||||
|
#logger.info('(%s) TGID prohibited by ACL, not sending', _target['SYSTEM'])
|
||||||
|
continue
|
||||||
|
|
||||||
|
|
||||||
# Is this a new call stream on the target?
|
# Is this a new call stream on the target?
|
||||||
if (_stream_id not in _target_status):
|
if (_stream_id not in _target_status):
|
||||||
@ -1562,6 +1572,18 @@ class routerHBP(HBSYSTEM):
|
|||||||
if _target_system['ENHANCED_OBP'] and '_bcka' in _target_system and _target_system['_bcka'] < pkt_time - 60:
|
if _target_system['ENHANCED_OBP'] and '_bcka' in _target_system and _target_system['_bcka'] < pkt_time - 60:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
#If talkgroup is prohibited by ACL
|
||||||
|
if self._CONFIG['GLOBAL']['USE_ACL']:
|
||||||
|
if not acl_check(_target['TGID'],self._CONFIG['GLOBAL']['TG1_ACL']):
|
||||||
|
#logger.info('(%s) TGID prohibited by ACL, not sending', _target['SYSTEM'])
|
||||||
|
continue
|
||||||
|
|
||||||
|
if _target_system['USE_ACL']:
|
||||||
|
if not acl_check(_target['TGID'],_target_system['TG1_ACL']):
|
||||||
|
#logger.info('(%s) TGID prohibited by ACL, not sending', _target['SYSTEM'])
|
||||||
|
continue
|
||||||
|
|
||||||
|
|
||||||
# Is this a new call stream on the target?
|
# Is this a new call stream on the target?
|
||||||
if (_stream_id not in _target_status):
|
if (_stream_id not in _target_status):
|
||||||
# This is a new call stream on the target
|
# This is a new call stream on the target
|
||||||
|
Loading…
Reference in New Issue
Block a user