OXIESEC PANEL
- Current Dir:
/
/
opt
/
alt
/
python37
/
lib
/
python3.7
/
site-packages
/
exabgp
/
bgp
/
message
/
update
/
attribute
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.11 KB
03/13/2021 04:30:48 PM
rw-r--r--
📁
__pycache__
-
03/16/2023 12:55:54 PM
rwxr-xr-x
📄
aggregator.py
2.29 KB
03/13/2021 04:30:48 PM
rw-r--r--
📄
aigp.py
2.96 KB
03/13/2021 04:30:48 PM
rw-r--r--
📄
aspath.py
7.64 KB
03/13/2021 04:30:48 PM
rw-r--r--
📄
atomicaggregate.py
1.24 KB
03/13/2021 04:30:48 PM
rw-r--r--
📄
attribute.py
9.04 KB
03/13/2021 04:30:48 PM
rw-r--r--
📄
attributes.py
17.79 KB
03/13/2021 04:30:48 PM
rw-r--r--
📁
bgpls
-
03/16/2023 12:55:54 PM
rwxr-xr-x
📄
clusterlist.py
1.65 KB
03/13/2021 04:30:48 PM
rw-r--r--
📁
community
-
03/16/2023 12:55:54 PM
rwxr-xr-x
📄
generic.py
1.67 KB
03/13/2021 04:30:48 PM
rw-r--r--
📄
localpref.py
1.21 KB
03/13/2021 04:30:48 PM
rw-r--r--
📄
med.py
1.18 KB
03/13/2021 04:30:48 PM
rw-r--r--
📄
mprnlri.py
7.88 KB
03/13/2021 04:30:48 PM
rw-r--r--
📄
mpurnlri.py
3.58 KB
03/13/2021 04:30:48 PM
rw-r--r--
📄
nexthop.py
1.84 KB
03/13/2021 04:30:48 PM
rw-r--r--
📄
origin.py
1.78 KB
03/13/2021 04:30:48 PM
rw-r--r--
📄
originatorid.py
890 bytes
03/13/2021 04:30:48 PM
rw-r--r--
📄
pmsi.py
4.97 KB
03/13/2021 04:30:48 PM
rw-r--r--
📁
sr
-
03/16/2023 12:55:54 PM
rwxr-xr-x
Editing: __init__.py
Close
# encoding: utf-8 """ attribute/__init__.py Created by Thomas Mangin on 2009-11-05. Copyright (c) 2009-2017 Exa Networks. All rights reserved. License: 3-clause BSD. (See the COPYRIGHT file) """ # Every Attribute should be imported from this file # as it makes sure that all the registering decorator are run from exabgp.bgp.message.update.attribute.attribute import Attribute from exabgp.bgp.message.update.attribute.attributes import Attributes from exabgp.bgp.message.update.attribute.generic import GenericAttribute from exabgp.bgp.message.update.attribute.origin import Origin from exabgp.bgp.message.update.attribute.aspath import ASPath from exabgp.bgp.message.update.attribute.aspath import AS4Path from exabgp.bgp.message.update.attribute.nexthop import NextHop from exabgp.bgp.message.update.attribute.nexthop import NextHopSelf from exabgp.bgp.message.update.attribute.med import MED from exabgp.bgp.message.update.attribute.localpref import LocalPreference from exabgp.bgp.message.update.attribute.atomicaggregate import AtomicAggregate from exabgp.bgp.message.update.attribute.aggregator import Aggregator from exabgp.bgp.message.update.attribute.aggregator import Aggregator4 from exabgp.bgp.message.update.attribute.community import Communities from exabgp.bgp.message.update.attribute.community import LargeCommunities from exabgp.bgp.message.update.attribute.community import ExtendedCommunities from exabgp.bgp.message.update.attribute.originatorid import OriginatorID from exabgp.bgp.message.update.attribute.clusterlist import ClusterList from exabgp.bgp.message.update.attribute.clusterlist import ClusterID from exabgp.bgp.message.update.attribute.mprnlri import MPRNLRI from exabgp.bgp.message.update.attribute.mprnlri import EMPTY_MPRNLRI from exabgp.bgp.message.update.attribute.mpurnlri import MPURNLRI from exabgp.bgp.message.update.attribute.mpurnlri import EMPTY_MPURNLRI from exabgp.bgp.message.update.attribute.pmsi import PMSI from exabgp.bgp.message.update.attribute.aigp import AIGP from exabgp.bgp.message.update.attribute.bgpls.linkstate import LINKSTATE from exabgp.bgp.message.update.attribute.sr.prefixsid import PrefixSid