Packet handling the (FlowSpec) "redirect AS-4byte" extended community. (RFC 7674). References: RFC 7674
| 1675 | |
| 1676 | |
| 1677 | class BGPPAExtCommRedirectAS4Byte(Packet): |
| 1678 | """ |
| 1679 | Packet handling the (FlowSpec) "redirect AS-4byte" extended community. |
| 1680 | (RFC 7674). |
| 1681 | References: RFC 7674 |
| 1682 | """ |
| 1683 | |
| 1684 | name = "FlowSpec redirect AS-4byte extended community" |
| 1685 | fields_desc = [ |
| 1686 | IntField("asn", 0), |
| 1687 | ShortField("value", 0) |
| 1688 | ] |
| 1689 | |
| 1690 | |
| 1691 | class BGPPAExtCommTrafficMarking(Packet): |
no test coverage detected
searching dependent graphs…