Packet handling the (FlowSpec) "redirect AS-2byte" extended community (RFC 7674). References: RFC 7674
| 1647 | |
| 1648 | |
| 1649 | class BGPPAExtCommRedirectAS2Byte(Packet): |
| 1650 | """ |
| 1651 | Packet handling the (FlowSpec) "redirect AS-2byte" extended community |
| 1652 | (RFC 7674). |
| 1653 | References: RFC 7674 |
| 1654 | """ |
| 1655 | |
| 1656 | name = "FlowSpec redirect AS-2byte extended community" |
| 1657 | fields_desc = [ |
| 1658 | ShortField("asn", 0), |
| 1659 | IntField("value", 0) |
| 1660 | ] |
| 1661 | |
| 1662 | |
| 1663 | class BGPPAExtCommRedirectIPv4(Packet): |
no test coverage detected
searching dependent graphs…