複数のフラグ属性を持つパケットを構成するために Scapy を使用できる他の方法はありますか?
オプションの属性と推移的な属性の両方を使用して BGP レイヤーをセットアップしようとしています。この github ファイルを使用しています: https://github.com/levigross/Scapy/blob/master/scapy/contrib/bgp.py。107 行目は、追加しようとしているフラグです。
過去に失敗した試みは次のとおりです。
>>>a=BGPPathAttribute(flags=["Optional","Transitive"])
>>>send(a)
TypeError: unsupported operand type(s) for &: 'str' and 'int'
>>>a=BGPPathAttribute(flags=("Optional","Transitive"))
>>>send(a)
TypeError: unsupported operand type(s) for &: 'tuple' and 'int'
>>>a=BGPPathAttribute(flags="Optional")/BGPPathAttribute(flags="Transitive")
Creates 2 separate path attributes: One which is Optional and Non-Transitive and the other which is Well Known and Transitive.
>>>a=BGPPathAttribute(flags="Optional", flags="Transitive")
SyntaxError: keyword argument repeated
>>>a=BGPPathAttribute(flags="OT")
ValueError: ['OT'] is not in list