OXIESEC PANEL
- Current Dir:
/
/
opt
/
alt
/
python37
/
lib
/
python3.7
/
site-packages
/
exabgp
/
configuration
/
flow
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/16/2023 12:55:54 PM
rwxr-xr-x
📄
__init__.py
2.35 KB
03/13/2021 04:30:48 PM
rw-r--r--
📁
__pycache__
-
03/16/2023 12:55:54 PM
rwxr-xr-x
📄
match.py
3.43 KB
03/13/2021 04:30:48 PM
rw-r--r--
📄
parser.py
12.84 KB
03/13/2021 04:30:48 PM
rw-r--r--
📄
route.py
2.07 KB
03/13/2021 04:30:48 PM
rw-r--r--
📄
scope.py
778 bytes
03/13/2021 04:30:48 PM
rw-r--r--
📄
then.py
2.51 KB
03/13/2021 04:30:48 PM
rw-r--r--
Editing: scope.py
Close
# encoding: utf-8 """ scope.py Created by Stephane Litkowski on 2017-02-24. """ from exabgp.configuration.core import Section from exabgp.configuration.flow.parser import interface_set class ParseFlowScope(Section): definition = ['interface-set transitive:input:1234:1234'] syntax = 'scope {\n' ' %s;\n' '}' % ';\n '.join(definition) known = { 'interface-set': interface_set, } # 'community','extended-community' action = { 'interface-set': 'attribute-add', } name = 'flow/scope' def __init__(self, tokeniser, scope, error, logger): Section.__init__(self, tokeniser, scope, error, logger) def clear(self): pass def pre(self): return True def post(self): return True