summaryrefslogtreecommitdiffstats
path: root/packer/templates/builder.json
blob: bd227be506197b62f37dcd7037a31763d97606f7 (plain)
1
../common-packer/templates/builder.json
> 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222
# Copyright (c) 2024 Cisco and/or its affiliates.
# Copyright (c) 2024 PANTHEON.tech s.r.o.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

"""IPsec utilities library."""

from enum import Enum, IntEnum
from io import open, TextIOWrapper
from ipaddress import ip_network, ip_address, IPv4Address, IPv6Address
from random import choice
from string import ascii_letters
from typing import Iterable, List, Optional, Sequence, Tuple, Union

from robot.libraries.BuiltIn import BuiltIn

from resources.libraries.python.Constants import Constants
from resources.libraries.python.IncrementUtil import ObjIncrement
from resources.libraries.python.InterfaceUtil import (
    InterfaceUtil,
    InterfaceStatusFlags,
)
from resources.libraries.python.IPAddress import IPAddress
from resources.libraries.python.IPUtil import (
    IPUtil,
    IpDscp,
    MPLS_LABEL_INVALID,
    NetworkIncrement,
)
from resources.libraries.python.PapiExecutor import PapiSocketExecutor
from resources.libraries.python.ssh import scp_node
from resources.libraries.python.topology import Topology, NodeType
from resources.libraries.python.VPPUtil import VPPUtil
from resources.libraries.python.FlowUtil import FlowUtil


IPSEC_UDP_PORT_DEFAULT = 4500
IPSEC_REPLAY_WINDOW_DEFAULT = 64


def gen_key(length: int) -> bytes:
    """Generate random string as a key.

    :param length: Length of generated payload.
    :type length: int
    :returns: The generated payload.
    :rtype: bytes
    """
    return "".join(choice(ascii_letters) for _ in range(length)).encode(
        encoding="utf-8"
    )


class PolicyAction(Enum):
    """Policy actions."""

    BYPASS = ("bypass", 0)
    DISCARD = ("discard", 1)
    PROTECT = ("protect", 3)

    def __init__(self, policy_name: str, policy_int_repr: int):
        self.policy_name = policy_name
        self.policy_int_repr = policy_int_repr

    def __str__(self) -> str:
        return self.policy_name

    def __int__(self) -> int:
        return self.policy_int_repr


class CryptoAlg(Enum):
    """Encryption algorithms."""

    AES_CBC_128 = ("aes-cbc-128", 1, "AES-CBC", 16)
    AES_CBC_256 = ("aes-cbc-256", 3, "AES-CBC", 32)
    AES_GCM_128 = ("aes-gcm-128", 7, "AES-GCM", 16)
    AES_GCM_256 = ("aes-gcm-256", 9, "AES-GCM", 32)

    def __init__(
        self, alg_name: str, alg_int_repr: int, scapy_name: str, key_len: int
    ):
        self.alg_name = alg_name
        self.alg_int_repr = alg_int_repr
        self.scapy_name = scapy_name
        self.key_len = key_len


class IntegAlg(Enum):
    """Integrity algorithm."""

    SHA_256_128 = ("sha-256-128", 4, "SHA2-256-128", 32)
    SHA_512_256 = ("sha-512-256", 6, "SHA2-512-256", 64)

    def __init__(
        self, alg_name: str, alg_int_repr: int, scapy_name: str, key_len: int
    ):
        self.alg_name = alg_name
        self.alg_int_repr = alg_int_repr
        self.scapy_name = scapy_name
        self.key_len = key_len


class IPsecProto(IntEnum):
    """IPsec protocol."""

    IPSEC_API_PROTO_ESP = 50
    IPSEC_API_PROTO_AH = 51


class IPsecSadFlags(IntEnum):
    """IPsec Security Association Database flags."""

    IPSEC_API_SAD_FLAG_NONE = 0
    # Enable extended sequence numbers
    IPSEC_API_SAD_FLAG_USE_ESN = 0x01
    # Enable Anti - replay
    IPSEC_API_SAD_FLAG_USE_ANTI_REPLAY = 0x02
    # IPsec tunnel mode if non-zero, else transport mode
    IPSEC_API_SAD_FLAG_IS_TUNNEL = 0x04
    # IPsec tunnel mode is IPv6 if non-zero, else IPv4 tunnel
    # only valid if is_tunnel is non-zero
    IPSEC_API_SAD_FLAG_IS_TUNNEL_V6 = 0x08
    # Enable UDP encapsulation for NAT traversal
    IPSEC_API_SAD_FLAG_UDP_ENCAP = 0x10
    # IPsec SA is or inbound traffic
    IPSEC_API_SAD_FLAG_IS_INBOUND = 0x40


class TunnelEncpaDecapFlags(IntEnum):
    """Flags controlling tunnel behaviour."""

    TUNNEL_API_ENCAP_DECAP_FLAG_NONE = 0
    # at encap, copy the DF bit of the payload into the tunnel header
    TUNNEL_API_ENCAP_DECAP_FLAG_ENCAP_COPY_DF = 1
    # at encap, set the DF bit in the tunnel header
    TUNNEL_API_ENCAP_DECAP_FLAG_ENCAP_SET_DF = 2
    # at encap, copy the DSCP bits of the payload into the tunnel header
    TUNNEL_API_ENCAP_DECAP_FLAG_ENCAP_COPY_DSCP = 4
    # at encap, copy the ECN bit of the payload into the tunnel header
    TUNNEL_API_ENCAP_DECAP_FLAG_ENCAP_COPY_ECN = 8
    # at decap, copy the ECN bit of the tunnel header into the payload
    TUNNEL_API_ENCAP_DECAP_FLAG_ENCAP_SET_ECN = 16


class TunnelMode(IntEnum):
    """Tunnel modes."""

    # point-to-point
    TUNNEL_API_MODE_P2P = 0
    # multi-point
    TUNNEL_API_MODE_MP = 1


class IPsecUtil:
    """IPsec utilities."""

    @staticmethod
    def policy_action_bypass() -> PolicyAction:
        """Return policy action bypass.

        :returns: PolicyAction enum BYPASS object.
        :rtype: PolicyAction
        """
        return PolicyAction.BYPASS

    @staticmethod
    def policy_action_discard() -> PolicyAction:
        """Return policy action discard.

        :returns: PolicyAction enum DISCARD object.
        :rtype: PolicyAction
        """
        return PolicyAction.DISCARD

    @staticmethod
    def policy_action_protect() -> PolicyAction:
        """Return policy action protect.

        :returns: PolicyAction enum PROTECT object.
        :rtype: PolicyAction
        """
        return PolicyAction.PROTECT

    @staticmethod
    def crypto_alg_aes_cbc_128() -> CryptoAlg:
        """Return encryption algorithm aes-cbc-128.

        :returns: CryptoAlg enum AES_CBC_128 object.
        :rtype: CryptoAlg
        """
        return CryptoAlg.AES_CBC_128

    @staticmethod
    def crypto_alg_aes_cbc_256() -> CryptoAlg:
        """Return encryption algorithm aes-cbc-256.

        :returns: CryptoAlg enum AES_CBC_256 object.
        :rtype: CryptoAlg
        """
        return CryptoAlg.AES_CBC_256

    @staticmethod
    def crypto_alg_aes_gcm_128() -> CryptoAlg:
        """Return encryption algorithm aes-gcm-128.

        :returns: CryptoAlg enum AES_GCM_128 object.
        :rtype: CryptoAlg
        """
        return CryptoAlg.AES_GCM_128

    @staticmethod
    def crypto_alg_aes_gcm_256() -> CryptoAlg:
        """Return encryption algorithm aes-gcm-256.

        :returns: CryptoAlg enum AES_GCM_128 object.
        :rtype: CryptoAlg
        """
        return CryptoAlg.AES_GCM_256

    @staticmethod
    def get_crypto_alg_key_len(crypto_alg: CryptoAlg) -> int:
        """Return encryption algorithm key length.

        :param crypto_alg: Encryption algorithm.
        :type crypto_alg: CryptoAlg
        :returns: Key length.
        :rtype: int
        """
        return crypto_alg.key_len

    @staticmethod
    def get_crypto_alg_scapy_name(crypto_alg: CryptoAlg) -> str:
        """Return encryption algorithm scapy name.

        :param crypto_alg: Encryption algorithm.
        :type crypto_alg: CryptoAlg
        :returns: Algorithm scapy name.
        :rtype: str
        """
        return crypto_alg.scapy_name

    @staticmethod
    def integ_alg_sha_256_128() -> IntegAlg:
        """Return integrity algorithm SHA-256-128.

        :returns: IntegAlg enum SHA_256_128 object.
        :rtype: IntegAlg
        """
        return IntegAlg.SHA_256_128

    @staticmethod
    def integ_alg_sha_512_256() -> IntegAlg:
        """Return integrity algorithm SHA-512-256.

        :returns: IntegAlg enum SHA_512_256 object.
        :rtype: IntegAlg
        """
        return IntegAlg.SHA_512_256

    @staticmethod
    def get_integ_alg_key_len(integ_alg: Optional[IntegAlg]) -> int:
        """Return integrity algorithm key length.

        None argument is accepted, returning zero.

        :param integ_alg: Integrity algorithm.
        :type integ_alg: Optional[IntegAlg]
        :returns: Key length.
        :rtype: int
        """
        return 0 if integ_alg is None else integ_alg.key_len

    @staticmethod
    def get_integ_alg_scapy_name(integ_alg: Optional[IntegAlg]) -> str:
        """Return integrity algorithm scapy name.

        :param integ_alg: Integrity algorithm.
        :type integ_alg: IntegAlg
        :returns: Algorithm scapy name.
        :rtype: str
        """
        return integ_alg.scapy_name

    @staticmethod
    def ipsec_proto_esp() -> int:
        """Return IPSec protocol ESP.

        :returns: IPsecProto enum ESP object.
        :rtype: IPsecProto
        """
        return int(IPsecProto.IPSEC_API_PROTO_ESP)

    @staticmethod
    def ipsec_proto_ah() -> int:
        """Return IPSec protocol AH.

        :returns: IPsecProto enum AH object.
        :rtype: IPsecProto
        """
        return int(IPsecProto.IPSEC_API_PROTO_AH)

    @staticmethod
    def vpp_ipsec_select_backend(
        node: dict, protocol: int, index: int = 1
    ) -> None:
        """Select IPsec backend.

        :param node: VPP node to select IPsec backend on.
        :param protocol: IPsec protocol.
        :param index: Backend index.
        :type node: dict
        :type protocol: IPsecProto
        :type index: int
        :raises RuntimeError: If failed to select IPsec backend or if no API
            reply received.
        """
        cmd = "ipsec_select_backend"
        err_msg = f"Failed to select IPsec backend on host {node['host']}"
        args = dict(protocol=protocol, index=index)
        with PapiSocketExecutor(node) as papi_exec:
            papi_exec.add(cmd, **args).get_reply(err_msg)

    @staticmethod
    def vpp_ipsec_set_async_mode(node: dict, async_enable: int = 1) -> None:
        """Set IPsec async mode on|off.

        Unconditionally, attempt to switch crypto dispatch into polling mode.

        :param node: VPP node to set IPsec async mode.
        :param async_enable: Async mode on or off.
        :type node: dict
        :type async_enable: int
        :raises RuntimeError: If failed to set IPsec async mode or if no API
            reply received.
        """
        with PapiSocketExecutor(node) as papi_exec:
            cmd = "ipsec_set_async_mode"
            err_msg = f"Failed to set IPsec async mode on host {node['host']}"
            args = dict(async_enable=async_enable)
            papi_exec.add(cmd, **args).get_reply(err_msg)
            cmd = "crypto_set_async_dispatch_v2"
            err_msg = "Failed to set dispatch mode."
            args = dict(mode=0, adaptive=False)
            try:
                papi_exec.add(cmd, **args).get_reply(err_msg)
            except (AttributeError, RuntimeError):
                # Expected when VPP build does not have the _v2 yet
                # (after and before the first CRC check).
                # TODO: Fail here when testing of pre-23.10 builds is over.
                pass

    @staticmethod
    def vpp_ipsec_crypto_sw_scheduler_set_worker(
        node: dict, workers: Iterable[int], crypto_enable: bool = False
    ) -> None:
        """Enable or disable crypto on specific vpp worker threads.

        :param node: VPP node to enable or disable crypto for worker threads.
        :param workers: List of VPP thread numbers.
        :param crypto_enable: Disable or enable crypto work.
        :type node: dict
        :type workers: Iterable[int]
        :type crypto_enable: bool
        :raises RuntimeError: If failed to enable or disable crypto for worker
            thread or if no API reply received.
        """
        for worker in workers:
            cmd = "crypto_sw_scheduler_set_worker"
            err_msg = (
                "Failed to disable/enable crypto for worker thread"
                f" on host {node['host']}"
            )
            args = dict(worker_index=worker - 1, crypto_enable=crypto_enable)
            with PapiSocketExecutor(node) as papi_exec:
                papi_exec.add(cmd, **args).get_reply(err_msg)

    @staticmethod
    def vpp_ipsec_crypto_sw_scheduler_set_worker_on_all_duts(
        nodes: dict, crypto_enable: bool = False
    ) -> None:
        """Enable or disable crypto on specific vpp worker threads.

        :param node: VPP node to enable or disable crypto for worker threads.
        :param crypto_enable: Disable or enable crypto work.
        :type node: dict
        :type crypto_enable: bool
        :raises RuntimeError: If failed to enable or disable crypto for worker
            thread or if no API reply received.
        """
        for node_name, node in nodes.items():
            if node["type"] == NodeType.DUT:
                thread_data = VPPUtil.vpp_show_threads(node)
                worker_cnt = len(thread_data) - 1
                if not worker_cnt:
                    return
                worker_ids = list()
                workers = BuiltIn().get_variable_value(
                    f"${{{node_name}_cpu_dp}}"
                )
                for item in thread_data:
                    if str(item.cpu_id) in workers.split(","):
                        worker_ids.append(item.id)

                IPsecUtil.vpp_ipsec_crypto_sw_scheduler_set_worker(
                    node, workers=worker_ids, crypto_enable=crypto_enable
                )

    @staticmethod
    def vpp_ipsec_add_sad_entry(
        node: dict,
        sad_id: int,
        spi: int,
        crypto_alg: CryptoAlg,
        crypto_key: str,
        integ_alg: Optional[IntegAlg] = None,
        integ_key: str = "",
        tunnel_src: Optional[str] = None,
        tunnel_dst: Optional[str] = None,
    ) -> None:
        """Create Security Association Database entry on the VPP node.

        :param node: VPP node to add SAD entry on.
        :param sad_id: SAD entry ID.
        :param spi: Security Parameter Index of this SAD entry.
        :param crypto_alg: The encryption algorithm name.
        :param crypto_key: The encryption key string.
        :param integ_alg: The integrity algorithm name.
        :param integ_key: The integrity key string.
        :param tunnel_src: Tunnel header source IPv4 or IPv6 address. If not
            specified ESP transport mode is used.
        :param tunnel_dst: Tunnel header destination IPv4 or IPv6 address. If
            not specified ESP transport mode is used.
        :type node: dict
        :type sad_id: int
        :type spi: int
        :type crypto_alg: CryptoAlg
        :type crypto_key: str
        :type integ_alg: Optional[IntegAlg]
        :type integ_key: str
        :type tunnel_src: Optional[str]
        :type tunnel_dst: Optional[str]
        """
        if isinstance(crypto_key, str):
            crypto_key = crypto_key.encode(encoding="utf-8")
        if isinstance(integ_key, str):
            integ_key = integ_key.encode(encoding="utf-8")
        ckey = dict(length=len(crypto_key), data=crypto_key)
        ikey = dict(length=len(integ_key), data=integ_key if integ_key else 0)

        flags = int(IPsecSadFlags.IPSEC_API_SAD_FLAG_NONE)
        if tunnel_src and tunnel_dst:
            flags = flags | int(IPsecSadFlags.IPSEC_API_SAD_FLAG_IS_TUNNEL)
            src_addr = ip_address(tunnel_src)
            dst_addr = ip_address(tunnel_dst)
            if src_addr.version == 6:
                flags = flags | int(
                    IPsecSadFlags.IPSEC_API_SAD_FLAG_IS_TUNNEL_V6
                )
        else:
            src_addr = ""
            dst_addr = ""

        cmd = "ipsec_sad_entry_add_v2"
        err_msg = (
            "Failed to add Security Association Database entry"
            f" on host {node['host']}"
        )
        sad_entry = dict(
            sad_id=int(sad_id),
            spi=int(spi),
            crypto_algorithm=crypto_alg.alg_int_repr,
            crypto_key=ckey,
            integrity_algorithm=integ_alg.alg_int_repr if integ_alg else 0,
            integrity_key=ikey,
            flags=flags,
            tunnel=dict(
                src=str(src_addr),
                dst=str(dst_addr),
                table_id=0,
                encap_decap_flags=int(
                    TunnelEncpaDecapFlags.TUNNEL_API_ENCAP_DECAP_FLAG_NONE
                ),
                dscp=int(IpDscp.IP_API_DSCP_CS0),
            ),
            protocol=int(IPsecProto.IPSEC_API_PROTO_ESP),
            udp_src_port=IPSEC_UDP_PORT_DEFAULT,
            udp_dst_port=IPSEC_UDP_PORT_DEFAULT,
            anti_replay_window_size=IPSEC_REPLAY_WINDOW_DEFAULT,
        )
        args = dict(entry=sad_entry)
        with PapiSocketExecutor(node) as papi_exec:
            papi_exec.add(cmd, **args).get_reply(err_msg)

    @staticmethod
    def vpp_ipsec_add_sad_entries(
        node: dict,
        n_entries: int,
        sad_id: int,
        spi: int,
        crypto_alg: CryptoAlg,
        crypto_key: str,
        integ_alg: Optional[IntegAlg] = None,
        integ_key: str = "",
        tunnel_src: Optional[str] = None,
        tunnel_dst: Optional[str] = None,
        tunnel_addr_incr: bool = True,
    ) -> None:
        """Create multiple Security Association Database entries on VPP node.

        :param node: VPP node to add SAD entry on.
        :param n_entries: Number of SAD entries to be created.
        :param sad_id: First SAD entry ID. All subsequent SAD entries will have
            id incremented by 1.
        :param spi: Security Parameter Index of first SAD entry. All subsequent
            SAD entries will have spi incremented by 1.
        :param crypto_alg: The encryption algorithm name.
        :param crypto_key: The encryption key string.
        :param integ_alg: The integrity algorithm name.
        :param integ_key: The integrity key string.
        :param tunnel_src: Tunnel header source IPv4 or IPv6 address. If not
            specified ESP transport mode is used.
        :param tunnel_dst: Tunnel header destination IPv4 or IPv6 address. If
            not specified ESP transport mode is used.
        :param tunnel_addr_incr: Enable or disable tunnel IP address
            incremental step.
        :type node: dict
        :type n_entries: int
        :type sad_id: int
        :type spi: int
        :type crypto_alg: CryptoAlg
        :type crypto_key: str
        :type integ_alg: Optional[IntegAlg]
        :type integ_key: str
        :type tunnel_src: Optional[str]
        :type tunnel_dst: Optional[str]
        :type tunnel_addr_incr: bool
        """
        if isinstance(crypto_key, str):
            crypto_key = crypto_key.encode(encoding="utf-8")
        if isinstance(integ_key, str):
            integ_key = integ_key.encode(encoding="utf-8")
        if tunnel_src and tunnel_dst:
            src_addr = ip_address(tunnel_src)
            dst_addr = ip_address(tunnel_dst)
        else:
            src_addr = ""
            dst_addr = ""

        if tunnel_addr_incr:
            addr_incr = (
                1 << (128 - 96) if src_addr.version == 6 else 1 << (32 - 24)
            )
        else:
            addr_incr = 0

        ckey = dict(length=len(crypto_key), data=crypto_key)
        ikey = dict(length=len(integ_key), data=integ_key if integ_key else 0)

        flags = int(IPsecSadFlags.IPSEC_API_SAD_FLAG_NONE)
        if tunnel_src and tunnel_dst:
            flags = flags | int(IPsecSadFlags.IPSEC_API_SAD_FLAG_IS_TUNNEL)
            if src_addr.version == 6:
                flags = flags | int(
                    IPsecSadFlags.IPSEC_API_SAD_FLAG_IS_TUNNEL_V6
                )

        cmd = "ipsec_sad_entry_add_v2"
        err_msg = (
            "Failed to add Security Association Database entry"
            f" on host {node['host']}"
        )

        sad_entry = dict(
            sad_id=int(sad_id),
            spi=int(spi),
            crypto_algorithm=crypto_alg.alg_int_repr,
            crypto_key=ckey,
            integrity_algorithm=integ_alg.alg_int_repr if integ_alg else 0,
            integrity_key=ikey,
            flags=flags,
            tunnel=dict(
                src=str(src_addr),
                dst=str(dst_addr),
                table_id=0,
                encap_decap_flags=int(
                    TunnelEncpaDecapFlags.TUNNEL_API_ENCAP_DECAP_FLAG_NONE
                ),
                dscp=int(IpDscp.IP_API_DSCP_CS0),
            ),
            protocol=int(IPsecProto.IPSEC_API_PROTO_ESP),
            udp_src_port=IPSEC_UDP_PORT_DEFAULT,
            udp_dst_port=IPSEC_UDP_PORT_DEFAULT,
            anti_replay_window_size=IPSEC_REPLAY_WINDOW_DEFAULT,
        )
        args = dict(entry=sad_entry)
        with PapiSocketExecutor(node, is_async=True) as papi_exec:
            for i in range(n_entries):
                args["entry"]["sad_id"] = int(sad_id) + i
                args["entry"]["spi"] = int(spi) + i
                args["entry"]["tunnel"]["src"] = (
                    str(src_addr + i * addr_incr)
                    if tunnel_src and tunnel_dst
                    else src_addr
                )
                args["entry"]["tunnel"]["dst"] = (
                    str(dst_addr + i * addr_incr)
                    if tunnel_src and tunnel_dst
                    else dst_addr
                )
                history = bool(not 1 < i < n_entries - 2)
                papi_exec.add(cmd, history=history, **args)
            papi_exec.get_replies(err_msg)

    @staticmethod
    def vpp_ipsec_set_ip_route(
        node: dict,
        n_tunnels: int,
        tunnel_src: str,
        traffic_addr: str,
        tunnel_dst: str,
        interface: str,
        raddr_range: int,
        dst_mac: Optional[str] = None,
    ) -> None:
        """Set IP address and route on interface.

        :param node: VPP node to add config on.
        :param n_tunnels: Number of tunnels to create.
        :param tunnel_src: Tunnel header source IPv4 or IPv6 address.
        :param traffic_addr: Traffic destination IP address to route.
        :param tunnel_dst: Tunnel header destination IPv4 or IPv6 address.
        :param interface: Interface key on node 1.
        :param raddr_range: Mask specifying range of Policy selector Remote IP
            addresses. Valid values are from 1 to 32 in case of IPv4 and to 128
            in case of IPv6.
        :param dst_mac: The MAC address of destination tunnels.
        :type node: dict
        :type n_tunnels: int
        :type tunnel_src: str
        :type traffic_addr: str
        :type tunnel_dst: str
        :type interface: str
        :type raddr_range: int
        :type dst_mac: Optional[str]
        """
        tunnel_src = ip_address(tunnel_src)
        tunnel_dst = ip_address(tunnel_dst)
        traffic_addr = ip_address(traffic_addr)
        tunnel_dst_prefix = 128 if tunnel_dst.version == 6 else 32
        addr_incr = (
            1 << (128 - raddr_range)
            if tunnel_src.version == 6
            else 1 << (32 - raddr_range)
        )

        cmd1 = "sw_interface_add_del_address"
        args1 = dict(
            sw_if_index=InterfaceUtil.get_interface_index(node, interface),
            is_add=True,
            del_all=False,
            prefix=None,
        )
        cmd2 = "ip_route_add_del"
        args2 = dict(is_add=1, is_multipath=0, route=None)
        cmd3 = "ip_neighbor_add_del"
        args3 = dict(
            is_add=True,
            neighbor=dict(
                sw_if_index=Topology.get_interface_sw_index(node, interface),
                flags=0,
                mac_address=str(dst_mac),
                ip_address=None,
            ),
        )
        err_msg = (
            "Failed to configure IP addresses, IP routes and"
            f" IP neighbor on interface {interface} on host {node['host']}"
            if dst_mac
            else "Failed to configure IP addresses and IP routes"
            f" on interface {interface} on host {node['host']}"
        )

        with PapiSocketExecutor(node, is_async=True) as papi_exec:
            for i in range(n_tunnels):
                tunnel_dst_addr = tunnel_dst + i * addr_incr
                args1["prefix"] = IPUtil.create_prefix_object(
                    tunnel_src + i * addr_incr, raddr_range
                )
                args2["route"] = IPUtil.compose_vpp_route_structure(
                    node,
                    traffic_addr + i,
                    prefix_len=tunnel_dst_prefix,
                    interface=interface,
                    gateway=tunnel_dst_addr,
                )
                history = bool(not 1 < i < n_tunnels - 2)
                papi_exec.add(cmd1, history=history, **args1)
                papi_exec.add(cmd2, history=history, **args2)

                args2["route"] = IPUtil.compose_vpp_route_structure(
                    node,
                    tunnel_dst_addr,
                    prefix_len=tunnel_dst_prefix,
                    interface=interface,
                    gateway=tunnel_dst_addr,
                )
                papi_exec.add(cmd2, history=history, **args2)

                if dst_mac:
                    args3["neighbor"]["ip_address"] = ip_address(
                        tunnel_dst_addr
                    )
                    papi_exec.add(cmd3, history=history, **args3)
            papi_exec.get_replies(err_msg)

    @staticmethod
    def vpp_ipsec_add_spd(node: dict, spd_id: int) -> None:
        """Create Security Policy Database on the VPP node.

        :param node: VPP node to add SPD on.
        :param spd_id: SPD ID.
        :type node: dict
        :type spd_id: int
        """
        cmd = "ipsec_spd_add_del"
        err_msg = (
            f"Failed to add Security Policy Database on host {node['host']}"
        )
        args = dict(is_add=True, spd_id=int(spd_id))
        with PapiSocketExecutor(node) as papi_exec:
            papi_exec.add(cmd, **args).get_reply(err_msg)

    @staticmethod
    def vpp_ipsec_spd_add_if(
        node: dict, spd_id: int, interface: Union[str, int]
    ) -> None:
        """Add interface to the Security Policy Database.

        :param node: VPP node.
        :param spd_id: SPD ID to add interface on.
        :param interface: Interface name or sw_if_index.
        :type node: dict
        :type spd_id: int
        :type interface: str or int
        """
        cmd = "ipsec_interface_add_del_spd"
        err_msg = (
            f"Failed to add interface {interface} to Security Policy"
            f" Database {spd_id} on host {node['host']}"
        )
        args = dict(
            is_add=True,
            sw_if_index=InterfaceUtil.get_interface_index(node, interface),
            spd_id=int(spd_id),
        )
        with PapiSocketExecutor(node) as papi_exec:
            papi_exec.add(cmd, **args).get_reply(err_msg)

    @staticmethod
    def vpp_ipsec_create_spds_match_nth_entry(
        node: dict,
        dir1_interface: Union[str, int],
        dir2_interface: Union[str, int],
        entry_amount: int,
        local_addr_range: Union[str, IPv4Address, IPv6Address],
        remote_addr_range: Union[str, IPv4Address, IPv6Address],
        action: PolicyAction = PolicyAction.BYPASS,
        inbound: bool = False,
        bidirectional: bool = True,
    ) -> None:
        """Create one matching SPD entry for inbound or outbound traffic on
        a DUT for each traffic direction and also create entry_amount - 1
        non-matching SPD entries. Create a Security Policy Database on each
        outbound interface where these entries will be configured.
        The matching SPD entry will have the lowest priority, input action and
        will be configured to match the IP flow. The non-matching entries will
        be the same, except with higher priority and non-matching IP flows.

        Action Protect is currently not supported.

        :param node: VPP node to configured the SPDs and their entries.
        :param dir1_interface: The interface in direction 1 where the entries
            will be checked.
        :param dir2_interface: The interface in direction 2 where the entries
            will be checked.
        :param entry_amount: The number of SPD entries to configure. If
            entry_amount == 1, no non-matching entries will be configured.
        :param local_addr_range: Matching local address range in direction 1
            in format IP/prefix or IP/mask. If no mask is provided, it's
            considered to be /32.
        :param remote_addr_range: Matching remote address range in
            direction 1 in format IP/prefix or IP/mask. If no mask is
            provided, it's considered to be /32.
        :param action: Policy action.
        :param inbound: If True policy is for inbound traffic, otherwise
            outbound.
        :param bidirectional: When True, will create SPDs in both directions
            of traffic. When False, only in one direction.
        :type node: dict
        :type dir1_interface: Union[str, int]
        :type dir2_interface: Union[str, int]
        :type entry_amount: int
        :type local_addr_range:
            Union[str, IPv4Address, IPv6Address]
        :type remote_addr_range:
            Union[str, IPv4Address, IPv6Address]
        :type action: PolicyAction
        :type inbound: bool
        :type bidirectional: bool
        :raises NotImplementedError: When the action is PolicyAction.PROTECT.
        """

        if action == PolicyAction.PROTECT:
            raise NotImplementedError("Policy action PROTECT is not supported.")

        spd_id_dir1 = 1
        spd_id_dir2 = 2
        matching_priority = 1

        IPsecUtil.vpp_ipsec_add_spd(node, spd_id_dir1)
        IPsecUtil.vpp_ipsec_spd_add_if(node, spd_id_dir1, dir1_interface)
        # matching entry direction 1
        IPsecUtil.vpp_ipsec_add_spd_entry(
            node,
            spd_id_dir1,
            matching_priority,
            action,
            inbound=inbound,
            laddr_range=local_addr_range,
            raddr_range=remote_addr_range,
        )

        if bidirectional:
            IPsecUtil.vpp_ipsec_add_spd(node, spd_id_dir2)
            IPsecUtil.vpp_ipsec_spd_add_if(node, spd_id_dir2, dir2_interface)

            # matching entry direction 2, the address ranges are switched
            IPsecUtil.vpp_ipsec_add_spd_entry(
                node,
                spd_id_dir2,
                matching_priority,
                action,
                inbound=inbound,
                laddr_range=remote_addr_range,
                raddr_range=local_addr_range,
            )

        # non-matching entries
        no_match_entry_amount = entry_amount - 1
        if no_match_entry_amount > 0:
            # create a NetworkIncrement representation of the network,
            # then skip the matching network
            no_match_local_addr_range = NetworkIncrement(
                ip_network(local_addr_range)
            )
            next(no_match_local_addr_range)

            no_match_remote_addr_range = NetworkIncrement(
                ip_network(remote_addr_range)
            )
            next(no_match_remote_addr_range)

            # non-matching entries direction 1
            IPsecUtil.vpp_ipsec_add_spd_entries(
                node,
                no_match_entry_amount,
                spd_id_dir1,
                ObjIncrement(matching_priority + 1, 1),
                action,
                inbound=inbound,
                laddr_range=no_match_local_addr_range,
                raddr_range=no_match_remote_addr_range,
            )

            if bidirectional:
                # reset the networks so that we're using a unified config
                # the address ranges are switched
                no_match_remote_addr_range = NetworkIncrement(
                    ip_network(local_addr_range)
                )
                next(no_match_remote_addr_range)

                no_match_local_addr_range = NetworkIncrement(
                    ip_network(remote_addr_range)
                )
                next(no_match_local_addr_range)
                # non-matching entries direction 2
                IPsecUtil.vpp_ipsec_add_spd_entries(
                    node,
                    no_match_entry_amount,
                    spd_id_dir2,
                    ObjIncrement(matching_priority + 1, 1),
                    action,
                    inbound=inbound,
                    laddr_range=no_match_local_addr_range,
                    raddr_range=no_match_remote_addr_range,
                )

        IPsecUtil.vpp_ipsec_show_all(node)

    @staticmethod
    def _vpp_ipsec_add_spd_entry_internal(
        executor: PapiSocketExecutor,
        spd_id: int,
        priority: int,
        action: PolicyAction,
        inbound: bool = True,
        sa_id: Optional[int] = None,
        proto: Optional[int] = None,
        laddr_range: Optional[str] = None,
        raddr_range: Optional[str] = None,
        lport_range: Optional[str] = None,
        rport_range: Optional[str] = None,
        is_ipv6: bool = False,
    ) -> None:
        """Prepare to create Security Policy Database entry on the VPP node.

        This just adds one more command to the executor.
        The call site shall get replies once all entries are added,
        to get speed benefit from async PAPI.

        :param executor: Open PAPI executor (async handling) to add commands to.
        :param spd_id: SPD ID to add entry on.
        :param priority: SPD entry priority, higher number = higher priority.
        :param action: Policy action.
        :param inbound: If True policy is for inbound traffic, otherwise
            outbound.
        :param sa_id: SAD entry ID for action PolicyAction.PROTECT.
        :param proto: Policy selector next layer protocol number.
        :param laddr_range: Policy selector local IPv4 or IPv6 address range
            in format IP/prefix or IP/mask. If no mask is provided,
            it's considered to be /32.
        :param raddr_range: Policy selector remote IPv4 or IPv6 address range
            in format IP/prefix or IP/mask. If no mask is provided,
            it's considered to be /32.
        :param lport_range: Policy selector local TCP/UDP port range in format
            <port_start>-<port_end>.
        :param rport_range: Policy selector remote TCP/UDP port range in format
            <port_start>-<port_end>.
        :param is_ipv6: True in case of IPv6 policy when IPv6 address range is
            not defined so it will default to address ::/0, otherwise False.
        :type executor: PapiSocketExecutor
        :type spd_id: int
        :type priority: int
        :type action: PolicyAction
        :type inbound: bool
        :type sa_id: Optional[int]
        :type proto: Optional[int]
        :type laddr_range: Optional[str]
        :type raddr_range: Optional[str]
        :type lport_range: Optional[str]
        :type rport_range: Optional[str]
        :type is_ipv6: bool
        """
        if laddr_range is None:
            laddr_range = "::/0" if is_ipv6 else "0.0.0.0/0"

        if raddr_range is None:
            raddr_range = "::/0" if is_ipv6 else "0.0.0.0/0"

        local_net = ip_network(laddr_range, strict=False)
        remote_net = ip_network(raddr_range, strict=False)

        cmd = "ipsec_spd_entry_add_del_v2"

        spd_entry = dict(
            spd_id=int(spd_id),
            priority=int(priority),
            is_outbound=not inbound,
            sa_id=int(sa_id) if sa_id else 0,
            policy=int(action),
            protocol=255 if proto is None else int(proto),
            remote_address_start=IPAddress.create_ip_address_object(
                remote_net.network_address
            ),
            remote_address_stop=IPAddress.create_ip_address_object(
                remote_net.broadcast_address
            ),
            local_address_start=IPAddress.create_ip_address_object(
                local_net.network_address
            ),
            local_address_stop=IPAddress.create_ip_address_object(
                local_net.broadcast_address
            ),
            remote_port_start=(
                int(rport_range.split("-")[0]) if rport_range else 0
            ),
            remote_port_stop=(
                int(rport_range.split("-")[1]) if rport_range else 65535
            ),
            local_port_start=(
                int(lport_range.split("-")[0]) if lport_range else 0
            ),
            local_port_stop=(
                int(lport_range.split("-")[1]) if rport_range else 65535
            ),
        )
        args = dict(is_add=True, entry=spd_entry)
        executor.add(cmd, **args)

    @staticmethod
    def vpp_ipsec_add_spd_entry(
        node: dict,
        spd_id: int,
        priority: int,
        action: PolicyAction,
        inbound: bool = True,
        sa_id: Optional[int] = None,
        proto: Optional[int] = None,
        laddr_range: Optional[str] = None,
        raddr_range: Optional[str] = None,
        lport_range: Optional[str] = None,
        rport_range: Optional[str] = None,
        is_ipv6: bool = False,
    ) -> None:
        """Create Security Policy Database entry on the VPP node.

        :param node: VPP node to add SPD entry on.
        :param spd_id: SPD ID to add entry on.
        :param priority: SPD entry priority, higher number = higher priority.
        :param action: Policy action.
        :param inbound: If True policy is for inbound traffic, otherwise
            outbound.
        :param sa_id: SAD entry ID for action PolicyAction.PROTECT.
        :param proto: Policy selector next layer protocol number.
        :param laddr_range: Policy selector local IPv4 or IPv6 address range
            in format IP/prefix or IP/mask. If no mask is provided,
            it's considered to be /32.
        :param raddr_range: Policy selector remote IPv4 or IPv6 address range
            in format IP/prefix or IP/mask. If no mask is provided,
            it's considered to be /32.
        :param lport_range: Policy selector local TCP/UDP port range in format
            <port_start>-<port_end>.
        :param rport_range: Policy selector remote TCP/UDP port range in format
            <port_start>-<port_end>.
        :param is_ipv6: True in case of IPv6 policy when IPv6 address range is
            not defined so it will default to address ::/0, otherwise False.
        :type node: dict
        :type spd_id: int
        :type priority: int
        :type action: PolicyAction
        :type inbound: bool
        :type sa_id: Optional[int]
        :type proto: Optional[int]
        :type laddr_range: Optional[str]
        :type raddr_range: Optional[str]
        :type lport_range: Optional[str]
        :type rport_range: Optional[str]
        :type is_ipv6: bool
        """
        err_msg = (
            "Failed to add entry to Security Policy Database"
            f" {spd_id} on host {node['host']}"
        )
        with PapiSocketExecutor(node, is_async=True) as papi_exec:
            IPsecUtil._vpp_ipsec_add_spd_entry_internal(
                papi_exec,
                spd_id,
                priority,
                action,
                inbound,
                sa_id,
                proto,
                laddr_range,
                raddr_range,
                lport_range,
                rport_range,
                is_ipv6,
            )
            papi_exec.get_replies(err_msg)

    @staticmethod
    def vpp_ipsec_add_spd_entries(
        node: dict,
        n_entries: int,
        spd_id: int,
        priority: Optional[ObjIncrement],
        action: PolicyAction,
        inbound: bool,
        sa_id: Optional[ObjIncrement] = None,
        proto: Optional[int] = None,
        laddr_range: Optional[NetworkIncrement] = None,
        raddr_range: Optional[NetworkIncrement] = None,
        lport_range: Optional[str] = None,
        rport_range: Optional[str] = None,
        is_ipv6: bool = False,
    ) -> None:
        """Create multiple Security Policy Database entries on the VPP node.

        :param node: VPP node to add SPD entries on.
        :param n_entries: Number of SPD entries to be added.
        :param spd_id: SPD ID to add entries on.
        :param priority: SPD entries priority, higher number = higher priority.
        :param action: Policy action.
        :param inbound: If True policy is for inbound traffic, otherwise
            outbound.
        :param sa_id: SAD entry ID for action PolicyAction.PROTECT.
        :param proto: Policy selector next layer protocol number.
        :param laddr_range: Policy selector local IPv4 or IPv6 address range
            in format IP/prefix or IP/mask. If no mask is provided,
            it's considered to be /32.
        :param raddr_range: Policy selector remote IPv4 or IPv6 address range
            in format IP/prefix or IP/mask. If no mask is provided,
            it's considered to be /32.
        :param lport_range: Policy selector local TCP/UDP port range in format
            <port_start>-<port_end>.
        :param rport_range: Policy selector remote TCP/UDP port range in format
            <port_start>-<port_end>.
        :param is_ipv6: True in case of IPv6 policy when IPv6 address range is
            not defined so it will default to address ::/0, otherwise False.
        :type node: dict
        :type n_entries: int
        :type spd_id: int
        :type priority: Optional[ObjIncrement]
        :type action: PolicyAction
        :type inbound: bool
        :type sa_id: Optional[ObjIncrement]
        :type proto: Optional[int]
        :type laddr_range: Optional[NetworkIncrement]
        :type raddr_range: Optional[NetworkIncrement]
        :type lport_range: Optional[str]
        :type rport_range: Optional[str]
        :type is_ipv6: bool
        """
        if laddr_range is None:
            laddr_range = "::/0" if is_ipv6 else "0.0.0.0/0"
            laddr_range = NetworkIncrement(ip_network(laddr_range), 0)

        if raddr_range is None:
            raddr_range = "::/0" if is_ipv6 else "0.0.0.0/0"
            raddr_range = NetworkIncrement(ip_network(raddr_range), 0)

        err_msg = (
            "Failed to add entry to Security Policy Database"
            f" {spd_id} on host {node['host']}"
        )
        with PapiSocketExecutor(node, is_async=True) as papi_exec:
            for _ in range(n_entries):
                IPsecUtil._vpp_ipsec_add_spd_entry_internal(
                    papi_exec,
                    spd_id,
                    next(priority),
                    action,
                    inbound,
                    next(sa_id) if sa_id is not None else sa_id,
                    proto,
                    next(laddr_range),
                    next(raddr_range),
                    lport_range,
                    rport_range,
                    is_ipv6,
                )
            papi_exec.get_replies(err_msg)

    @staticmethod
    def _ipsec_create_loopback_dut1_papi(
        nodes: dict, tun_ips: dict, if1_key: str, if2_key: str
    ) -> int:
        """Create loopback interface and set IP address on VPP node 1 interface
        using PAPI.

        :param nodes: VPP nodes to create tunnel interfaces.
        :param tun_ips: Dictionary with VPP node 1 ipsec tunnel interface
            IPv4/IPv6 address (ip1) and VPP node 2 ipsec tunnel interface
            IPv4/IPv6 address (ip2).
        :param if1_key: VPP node 1 interface key from topology file.
        :param if2_key: VPP node 2 / TG node (in case of 2-node topology)
            interface key from topology file.
        :type nodes: dict
        :type tun_ips: dict
        :type if1_key: str
        :type if2_key: str
        :returns: sw_if_idx Of the created loopback interface.
        :rtype: int
        """
        with PapiSocketExecutor(nodes["DUT1"]) as papi_exec:
            # Create loopback interface on DUT1, set it to up state
            cmd = "create_loopback_instance"
            args = dict(
                mac_address=0,
                is_specified=False,
                user_instance=0,
            )
            err_msg = (
                "Failed to create loopback interface"
                f" on host {nodes['DUT1']['host']}"
            )
            papi_exec.add(cmd, **args)
            loop_sw_if_idx = papi_exec.get_sw_if_index(err_msg)
            cmd = "sw_interface_set_flags"
            args = dict(
                sw_if_index=loop_sw_if_idx,
                flags=InterfaceStatusFlags.IF_STATUS_API_FLAG_ADMIN_UP.value,
            )
            err_msg = (
                "Failed to set loopback interface state up"
                f" on host {nodes['DUT1']['host']}"
            )
            papi_exec.add(cmd, **args).get_reply(err_msg)
            # Set IP address on VPP node 1 interface
            cmd = "sw_interface_add_del_address"
            args = dict(
                sw_if_index=InterfaceUtil.get_interface_index(
                    nodes["DUT1"], if1_key
                ),
                is_add=True,
                del_all=False,
                prefix=IPUtil.create_prefix_object(
                    tun_ips["ip2"] - 1,
                    96 if tun_ips["ip2"].version == 6 else 24,
                ),
            )
            err_msg = (
                f"Failed to set IP address on interface {if1_key}"
                f" on host {nodes['DUT1']['host']}"
            )
            papi_exec.add(cmd, **args).get_reply(err_msg)
            cmd2 = "ip_neighbor_add_del"
            args2 = dict(
                is_add=1,
                neighbor=dict(
                    sw_if_index=Topology.get_interface_sw_index(
                        nodes["DUT1"], if1_key
                    ),
                    flags=1,
                    mac_address=str(
                        Topology.get_interface_mac(nodes["DUT2"], if2_key)
                        if "DUT2" in nodes.keys()
                        else Topology.get_interface_mac(nodes["TG"], if2_key)
                    ),
                    ip_address=tun_ips["ip2"].compressed,
                ),
            )
            err_msg = f"Failed to add IP neighbor on interface {if1_key}"
            papi_exec.add(cmd2, **args2).get_reply(err_msg)

            return loop_sw_if_idx

    @staticmethod
    def _ipsec_create_tunnel_interfaces_dut1_papi(
        nodes: dict,
        tun_ips: dict,
        if1_key: str,
        if2_key: str,
        n_tunnels: int,
        crypto_alg: CryptoAlg,
        integ_alg: Optional[IntegAlg],
        raddr_ip2: Union[IPv4Address, IPv6Address],
        addr_incr: int,
        spi_d: dict,
        existing_tunnels: int = 0,
    ) -> Tuple[List[bytes], List[bytes]]:
        """Create multiple IPsec tunnel interfaces on DUT1 node using PAPI.

        Generate random keys and return them (so DUT2 or TG can decrypt).

        :param nodes: VPP nodes to create tunnel interfaces.
        :param tun_ips: Dictionary with VPP node 1 ipsec tunnel interface
            IPv4/IPv6 address (ip1) and VPP node 2 ipsec tunnel interface
            IPv4/IPv6 address (ip2).
        :param if1_key: VPP node 1 interface key from topology file.
        :param if2_key: VPP node 2 / TG node (in case of 2-node topology)
            interface key from topology file.
        :param n_tunnels: Number of tunnel interfaces to be there at the end.
        :param crypto_alg: The encryption algorithm name.
        :param integ_alg: The integrity algorithm name.
        :param raddr_ip2: Policy selector remote IPv4/IPv6 start address for the
            first tunnel in direction node2->node1.
        :param spi_d: Dictionary with SPIs for VPP node 1 and VPP node 2.
        :param addr_incr: IP / IPv6 address incremental step.
        :param existing_tunnels: Number of tunnel interfaces before creation.
            Useful mainly for reconf tests. Default 0.
        :type nodes: dict
        :type tun_ips: dict
        :type if1_key: str
        :type if2_key: str
        :type n_tunnels: int
        :type crypto_alg: CryptoAlg
        :type integ_alg: Optional[IntegAlg]
        :type raddr_ip2: Union[IPv4Address, IPv6Address]
        :type addr_incr: int
        :type spi_d: dict
        :type existing_tunnels: int
        :returns: Generated ckeys and ikeys.
        :rtype: List[bytes], List[bytes]
        """
        if not existing_tunnels:
            loop_sw_if_idx = IPsecUtil._ipsec_create_loopback_dut1_papi(
                nodes, tun_ips, if1_key, if2_key
            )
        else:
            loop_sw_if_idx = InterfaceUtil.vpp_get_interface_sw_index(
                nodes["DUT1"], "loop0"
            )
        with PapiSocketExecutor(nodes["DUT1"], is_async=True) as papi_exec:
            # Configure IP addresses on loop0 interface
            cmd = "sw_interface_add_del_address"
            args = dict(
                sw_if_index=loop_sw_if_idx,
                is_add=True,
                del_all=False,
                prefix=None,
            )
            for i in range(existing_tunnels, n_tunnels):
                args["prefix"] = IPUtil.create_prefix_object(
                    tun_ips["ip1"] + i * addr_incr,
                    128 if tun_ips["ip1"].version == 6 else 32,
                )
                papi_exec.add(
                    cmd, history=bool(not 1 < i < n_tunnels - 2), **args
                )
            # Configure IPIP tunnel interfaces
            cmd = "ipip_add_tunnel"
            ipip_tunnel = dict(
                instance=Constants.BITWISE_NON_ZERO,
                src=None,
                dst=None,
                table_id=0,
                flags=int(
                    TunnelEncpaDecapFlags.TUNNEL_API_ENCAP_DECAP_FLAG_NONE
                ),
                mode=int(TunnelMode.TUNNEL_API_MODE_P2P),
                dscp=int(IpDscp.IP_API_DSCP_CS0),
            )
            args = dict(tunnel=ipip_tunnel)
            ipip_tunnels = [None] * existing_tunnels
            for i in range(existing_tunnels, n_tunnels):
                ipip_tunnel["src"] = IPAddress.create_ip_address_object(
                    tun_ips["ip1"] + i * addr_incr
                )
                ipip_tunnel["dst"] = IPAddress.create_ip_address_object(
                    tun_ips["ip2"]
                )
                papi_exec.add(
                    cmd, history=bool(not 1 < i < n_tunnels - 2), **args
                )
            err_msg = (
                "Failed to add IPIP tunnel interfaces on host"
                f" {nodes['DUT1']['host']}"
            )
            ipip_tunnels.extend(
                [
                    reply["sw_if_index"]
                    for reply in papi_exec.get_replies(err_msg)
                    if "sw_if_index" in reply
                ]
            )
            # Configure IPSec SAD entries
            ckeys = [bytes()] * existing_tunnels
            ikeys = [bytes()] * existing_tunnels
            cmd = "ipsec_sad_entry_add_v2"
            c_key = dict(length=0, data=None)
            i_key = dict(length=0, data=None)
            common_flags = IPsecSadFlags.IPSEC_API_SAD_FLAG_NONE
            sad_entry = dict(
                sad_id=None,
                spi=None,
                protocol=int(IPsecProto.IPSEC_API_PROTO_ESP),
                crypto_algorithm=crypto_alg.alg_int_repr,
                crypto_key=c_key,
                integrity_algorithm=integ_alg.alg_int_repr if integ_alg else 0,
                integrity_key=i_key,
                flags=common_flags,
                tunnel=dict(
                    src=0,
                    dst=0,
                    table_id=0,
                    encap_decap_flags=int(
                        TunnelEncpaDecapFlags.TUNNEL_API_ENCAP_DECAP_FLAG_NONE
                    ),
                    dscp=int(IpDscp.IP_API_DSCP_CS0),
                ),
                salt=0,
                udp_src_port=IPSEC_UDP_PORT_DEFAULT,
                udp_dst_port=IPSEC_UDP_PORT_DEFAULT,
                anti_replay_window_size=IPSEC_REPLAY_WINDOW_DEFAULT,
            )
            args = dict(entry=sad_entry)
            for i in range(existing_tunnels, n_tunnels):
                ckeys.append(
                    gen_key(IPsecUtil.get_crypto_alg_key_len(crypto_alg))
                )
                ikeys.append(
                    gen_key(IPsecUtil.get_integ_alg_key_len(integ_alg))
                )
                # SAD entry for outband / tx path
                sad_entry["sad_id"] = i
                sad_entry["spi"] = spi_d["spi_1"] + i

                sad_entry["crypto_key"]["length"] = len(ckeys[i])
                sad_entry["crypto_key"]["data"] = ckeys[i]
                if integ_alg:
                    sad_entry["integrity_key"]["length"] = len(ikeys[i])
                    sad_entry["integrity_key"]["data"] = ikeys[i]
                papi_exec.add(
                    cmd, history=bool(not 1 < i < n_tunnels - 2), **args
                )
            sad_entry["flags"] |= IPsecSadFlags.IPSEC_API_SAD_FLAG_IS_INBOUND
            for i in range(existing_tunnels, n_tunnels):
                # SAD entry for inband / rx path
                sad_entry["sad_id"] = 100000 + i
                sad_entry["spi"] = spi_d["spi_2"] + i

                sad_entry["crypto_key"]["length"] = len(ckeys[i])
                sad_entry["crypto_key"]["data"] = ckeys[i]
                if integ_alg:
                    sad_entry["integrity_key"]["length"] = len(ikeys[i])
                    sad_entry["integrity_key"]["data"] = ikeys[i]
                papi_exec.add(
                    cmd, history=bool(not 1 < i < n_tunnels - 2), **args
                )
            err_msg = (
                "Failed to add IPsec SAD entries on host"
                f" {nodes['DUT1']['host']}"
            )
            papi_exec.get_replies(err_msg)
            # Add protection for tunnels with IPSEC
            cmd = "ipsec_tunnel_protect_update"
            n_hop = dict(
                address=0,
                via_label=MPLS_LABEL_INVALID,
                obj_id=Constants.BITWISE_NON_ZERO,
            )
            ipsec_tunnel_protect = dict(
                sw_if_index=None, nh=n_hop, sa_out=None, n_sa_in=1, sa_in=None
            )
            args = dict(tunnel=ipsec_tunnel_protect)
            for i in range(existing_tunnels, n_tunnels):
                args["tunnel"]["sw_if_index"] = ipip_tunnels[i]
                args["tunnel"]["sa_out"] = i
                args["tunnel"]["sa_in"] = [100000 + i]
                papi_exec.add(
                    cmd, history=bool(not 1 < i < n_tunnels - 2), **args
                )
            err_msg = (
                "Failed to add protection for tunnels with IPSEC"
                f" on host {nodes['DUT1']['host']}"
            )
            papi_exec.get_replies(err_msg)

            # Configure unnumbered interfaces
            cmd = "sw_interface_set_unnumbered"
            args = dict(
                is_add=True,
                sw_if_index=InterfaceUtil.get_interface_index(
                    nodes["DUT1"], if1_key
                ),
                unnumbered_sw_if_index=0,
            )
            for i in range(existing_tunnels, n_tunnels):
                args["unnumbered_sw_if_index"] = ipip_tunnels[i]
                papi_exec.add(
                    cmd, history=bool(not 1 < i < n_tunnels - 2), **args
                )
            # Set interfaces up
            cmd = "sw_interface_set_flags"
            args = dict(
                sw_if_index=0,
                flags=InterfaceStatusFlags.IF_STATUS_API_FLAG_ADMIN_UP.value,
            )
            for i in range(existing_tunnels, n_tunnels):
                args["sw_if_index"] = ipip_tunnels[i]
                papi_exec.add(
                    cmd, history=bool(not 1 < i < n_tunnels - 2), **args
                )
            # Configure IP routes
            cmd = "ip_route_add_del"
            args = dict(is_add=1, is_multipath=0, route=None)
            for i in range(existing_tunnels, n_tunnels):
                args["route"] = IPUtil.compose_vpp_route_structure(
                    nodes["DUT1"],
                    (raddr_ip2 + i).compressed,
                    prefix_len=128 if raddr_ip2.version == 6 else 32,
                    interface=ipip_tunnels[i],
                )
                papi_exec.add(
                    cmd, history=bool(not 1 < i < n_tunnels - 2), **args
                )
            err_msg = f"Failed to add IP routes on host {nodes['DUT1']['host']}"
            papi_exec.get_replies(err_msg)

        return ckeys, ikeys

    @staticmethod
    def _ipsec_create_tunnel_interfaces_dut2_papi(
        nodes: dict,
        tun_ips: dict,
        if2_key: str,
        n_tunnels: int,
        crypto_alg: CryptoAlg,
        ckeys: Sequence[bytes],
        integ_alg: Optional[IntegAlg],
        ikeys: Sequence[bytes],
        raddr_ip1: Union[IPv4Address, IPv6Address],
        addr_incr: int,
        spi_d: dict,
        existing_tunnels: int = 0,
    ) -> None:
        """Create multiple IPsec tunnel interfaces on DUT2 node using PAPI.

        This method accesses keys generated by DUT1 method
        and does not return anything.

        :param nodes: VPP nodes to create tunnel interfaces.
        :param tun_ips: Dictionary with VPP node 1 ipsec tunnel interface
            IPv4/IPv6 address (ip1) and VPP node 2 ipsec tunnel interface
            IPv4/IPv6 address (ip2).
        :param if2_key: VPP node 2 / TG node (in case of 2-node topology)
            interface key from topology file.
        :param n_tunnels: Number of tunnel interfaces to be there at the end.
        :param crypto_alg: The encryption algorithm name.
        :param ckeys: List of encryption keys.
        :param integ_alg: The integrity algorithm name.
        :param ikeys: List of integrity keys.
        :param raddr_ip1: Policy selector remote IPv4/IPv6 start address for the
            first tunnel in direction node1->node2.
        :param spi_d: Dictionary with SPIs for VPP node 1 and VPP node 2.
        :param addr_incr: IP / IPv6 address incremental step.
        :param existing_tunnels: Number of tunnel interfaces before creation.
            Useful mainly for reconf tests. Default 0.
        :type nodes: dict
        :type tun_ips: dict
        :type if2_key: str
        :type n_tunnels: int
        :type crypto_alg: CryptoAlg
        :type ckeys: Sequence[bytes]
        :type integ_alg: Optional[IntegAlg]
        :type ikeys: Sequence[bytes]
        :type raddr_ip1: Union[IPv4Address, IPv6Address]
        :type addr_incr: int
        :type spi_d: dict
        :type existing_tunnels: int
        """
        with PapiSocketExecutor(nodes["DUT2"], is_async=True) as papi_exec:
            if not existing_tunnels:
                # Set IP address on VPP node 2 interface
                cmd = "sw_interface_add_del_address"
                args = dict(
                    sw_if_index=InterfaceUtil.get_interface_index(
                        nodes["DUT2"], if2_key
                    ),
                    is_add=True,
                    del_all=False,
                    prefix=IPUtil.create_prefix_object(
                        tun_ips["ip2"],
                        96 if tun_ips["ip2"].version == 6 else 24,
                    ),
                )
                err_msg = (
                    f"Failed to set IP address on interface {if2_key}"
                    f" on host {nodes['DUT2']['host']}"
                )
                papi_exec.add(cmd, **args).get_replies(err_msg)
            # Configure IPIP tunnel interfaces
            cmd = "ipip_add_tunnel"
            ipip_tunnel = dict(
                instance=Constants.BITWISE_NON_ZERO,
                src=None,
                dst=None,
                table_id=0,
                flags=int(
                    TunnelEncpaDecapFlags.TUNNEL_API_ENCAP_DECAP_FLAG_NONE
                ),
                mode=int(TunnelMode.TUNNEL_API_MODE_P2P),
                dscp=int(IpDscp.IP_API_DSCP_CS0),
            )
            args = dict(tunnel=ipip_tunnel)
            ipip_tunnels = [None] * existing_tunnels
            for i in range(existing_tunnels, n_tunnels):
                ipip_tunnel["src"] = IPAddress.create_ip_address_object(
                    tun_ips["ip2"]
                )
                ipip_tunnel["dst"] = IPAddress.create_ip_address_object(
                    tun_ips["ip1"] + i * addr_incr
                )
                papi_exec.add(
                    cmd, history=bool(not 1 < i < n_tunnels - 2), **args
                )
            err_msg = (
                "Failed to add IPIP tunnel interfaces on host"
                f" {nodes['DUT2']['host']}"
            )
            ipip_tunnels.extend(
                [
                    reply["sw_if_index"]
                    for reply in papi_exec.get_replies(err_msg)
                    if "sw_if_index" in reply
                ]
            )
            # Configure IPSec SAD entries
            cmd = "ipsec_sad_entry_add_v2"
            c_key = dict(length=0, data=None)
            i_key = dict(length=0, data=None)
            common_flags = IPsecSadFlags.IPSEC_API_SAD_FLAG_NONE
            sad_entry = dict(
                sad_id=None,
                spi=None,
                protocol=int(IPsecProto.IPSEC_API_PROTO_ESP),
                crypto_algorithm=crypto_alg.alg_int_repr,
                crypto_key=c_key,
                integrity_algorithm=integ_alg.alg_int_repr if integ_alg else 0,
                integrity_key=i_key,
                flags=common_flags,
                tunnel=dict(
                    src=0,
                    dst=0,
                    table_id=0,
                    encap_decap_flags=int(
                        TunnelEncpaDecapFlags.TUNNEL_API_ENCAP_DECAP_FLAG_NONE
                    ),
                    dscp=int(IpDscp.IP_API_DSCP_CS0),
                ),
                salt=0,
                udp_src_port=IPSEC_UDP_PORT_DEFAULT,
                udp_dst_port=IPSEC_UDP_PORT_DEFAULT,
                anti_replay_window_size=IPSEC_REPLAY_WINDOW_DEFAULT,
            )
            args = dict(entry=sad_entry)
            for i in range(existing_tunnels, n_tunnels):
                ckeys.append(
                    gen_key(IPsecUtil.get_crypto_alg_key_len(crypto_alg))
                )
                ikeys.append(
                    gen_key(IPsecUtil.get_integ_alg_key_len(integ_alg))
                )
                # SAD entry for outband / tx path
                sad_entry["sad_id"] = 100000 + i
                sad_entry["spi"] = spi_d["spi_2"] + i

                sad_entry["crypto_key"]["length"] = len(ckeys[i])
                sad_entry["crypto_key"]["data"] = ckeys[i]
                if integ_alg:
                    sad_entry["integrity_key"]["length"] = len(ikeys[i])
                    sad_entry["integrity_key"]["data"] = ikeys[i]
                papi_exec.add(
                    cmd, history=bool(not 1 < i < n_tunnels - 2), **args
                )
            sad_entry["flags"] |= IPsecSadFlags.IPSEC_API_SAD_FLAG_IS_INBOUND
            for i in range(existing_tunnels, n_tunnels):
                # SAD entry for inband / rx path
                sad_entry["sad_id"] = i
                sad_entry["spi"] = spi_d["spi_1"] + i

                sad_entry["crypto_key"]["length"] = len(ckeys[i])
                sad_entry["crypto_key"]["data"] = ckeys[i]
                if integ_alg:
                    sad_entry["integrity_key"]["length"] = len(ikeys[i])
                    sad_entry["integrity_key"]["data"] = ikeys[i]
                papi_exec.add(
                    cmd, history=bool(not 1 < i < n_tunnels - 2), **args
                )
            err_msg = (
                f"Failed to add IPsec SAD entries on host"
                f" {nodes['DUT2']['host']}"
            )
            papi_exec.get_replies(err_msg)
            # Add protection for tunnels with IPSEC
            cmd = "ipsec_tunnel_protect_update"
            n_hop = dict(
                address=0,
                via_label=MPLS_LABEL_INVALID,
                obj_id=Constants.BITWISE_NON_ZERO,
            )
            ipsec_tunnel_protect = dict(
                sw_if_index=None, nh=n_hop, sa_out=None, n_sa_in=1, sa_in=None
            )
            args = dict(tunnel=ipsec_tunnel_protect)
            for i in range(existing_tunnels, n_tunnels):
                args["tunnel"]["sw_if_index"] = ipip_tunnels[i]
                args["tunnel"]["sa_out"] = 100000 + i
                args["tunnel"]["sa_in"] = [i]
                papi_exec.add(
                    cmd, history=bool(not 1 < i < n_tunnels - 2), **args
                )
            err_msg = (
                "Failed to add protection for tunnels with IPSEC"
                f" on host {nodes['DUT2']['host']}"
            )
            papi_exec.get_replies(err_msg)

            if not existing_tunnels:
                # Configure IP route
                cmd = "ip_route_add_del"
                route = IPUtil.compose_vpp_route_structure(
                    nodes["DUT2"],
                    tun_ips["ip1"].compressed,
                    prefix_len=32 if tun_ips["ip1"].version == 6 else 8,
                    interface=if2_key,
                    gateway=(tun_ips["ip2"] - 1).compressed,
                )
                args = dict(is_add=1, is_multipath=0, route=route)
                papi_exec.add(cmd, **args)
            # Configure unnumbered interfaces
            cmd = "sw_interface_set_unnumbered"
            args = dict(
                is_add=True,
                sw_if_index=InterfaceUtil.get_interface_index(
                    nodes["DUT2"], if2_key
                ),
                unnumbered_sw_if_index=0,
            )
            for i in range(existing_tunnels, n_tunnels):
                args["unnumbered_sw_if_index"] = ipip_tunnels[i]
                papi_exec.add(
                    cmd, history=bool(not 1 < i < n_tunnels - 2), **args
                )
            # Set interfaces up
            cmd = "sw_interface_set_flags"
            args = dict(
                sw_if_index=0,
                flags=InterfaceStatusFlags.IF_STATUS_API_FLAG_ADMIN_UP.value,
            )
            for i in range(existing_tunnels, n_tunnels):
                args["sw_if_index"] = ipip_tunnels[i]
                papi_exec.add(
                    cmd, history=bool(not 1 < i < n_tunnels - 2), **args
                )
            # Configure IP routes
            cmd = "ip_route_add_del"
            args = dict(is_add=1, is_multipath=0, route=None)
            for i in range(existing_tunnels, n_tunnels):
                args["route"] = IPUtil.compose_vpp_route_structure(
                    nodes["DUT1"],
                    (raddr_ip1 + i).compressed,
                    prefix_len=128 if raddr_ip1.version == 6 else 32,
                    interface=ipip_tunnels[i],
                )
                papi_exec.add(
                    cmd, history=bool(not 1 < i < n_tunnels - 2), **args
                )
            err_msg = f"Failed to add IP routes on host {nodes['DUT2']['host']}"
            papi_exec.get_replies(err_msg)

    @staticmethod
    def vpp_ipsec_create_tunnel_interfaces(
        nodes: dict,
        tun_if1_ip_addr: str,
        tun_if2_ip_addr: str,
        if1_key: str,
        if2_key: str,
        n_tunnels: int,
        crypto_alg: CryptoAlg,
        integ_alg: Optional[IntegAlg],
        raddr_ip1: str,
        raddr_ip2: str,
        raddr_range: int,
        existing_tunnels: int = 0,
        return_keys: bool = False,
    ) -> Optional[Tuple[List[bytes], List[bytes], int, int]]:
        """Create multiple IPsec tunnel interfaces between two VPP nodes.

        Some deployments (e.g. devicetest) need to know the generated keys.
        But other deployments (e.g. scale perf test) would get spammed
        if we returned keys every time.

        :param nodes: VPP nodes to create tunnel interfaces.
        :param tun_if1_ip_addr: VPP node 1 ipsec tunnel interface IPv4/IPv6
            address.
        :param tun_if2_ip_addr: VPP node 2 ipsec tunnel interface IPv4/IPv6
            address.
        :param if1_key: VPP node 1 interface key from topology file.
        :param if2_key: VPP node 2 / TG node (in case of 2-node topology)
            interface key from topology file.
        :param n_tunnels: Number of tunnel interfaces to be there at the end.
        :param crypto_alg: The encryption algorithm name.
        :param integ_alg: The integrity algorithm name.
        :param raddr_ip1: Policy selector remote IPv4/IPv6 start address for the
            first tunnel in direction node1->node2.
        :param raddr_ip2: Policy selector remote IPv4/IPv6 start address for the
            first tunnel in direction node2->node1.
        :param raddr_range: Mask specifying range of Policy selector Remote
            IPv4/IPv6 addresses. Valid values are from 1 to 32 in case of IPv4
            and to 128 in case of IPv6.
        :param existing_tunnels: Number of tunnel interfaces before creation.
            Useful mainly for reconf tests. Default 0.
        :param return_keys: Whether generated keys should be returned.
        :type nodes: dict
        :type tun_if1_ip_addr: str
        :type tun_if2_ip_addr: str
        :type if1_key: str
        :type if2_key: str
        :type n_tunnels: int
        :type crypto_alg: CryptoAlg
        :type integ_alg: Optional[IntegAlg]
        :type raddr_ip1: str
        :type raddr_ip2: str
        :type raddr_range: int
        :type existing_tunnels: int
        :type return_keys: bool
        :returns: Ckeys, ikeys, spi_1, spi_2.
        :rtype: Optional[Tuple[List[bytes], List[bytes], int, int]]
        """
        n_tunnels = int(n_tunnels)
        existing_tunnels = int(existing_tunnels)
        spi_d = dict(spi_1=100000, spi_2=200000)
        tun_ips = dict(
            ip1=ip_address(tun_if1_ip_addr), ip2=ip_address(tun_if2_ip_addr)
        )
        raddr_ip1 = ip_address(raddr_ip1)
        raddr_ip2 = ip_address(raddr_ip2)
        addr_incr = (
            1 << (128 - raddr_range)
            if tun_ips["ip1"].version == 6
            else 1 << (32 - raddr_range)
        )

        ckeys, ikeys = IPsecUtil._ipsec_create_tunnel_interfaces_dut1_papi(
            nodes,
            tun_ips,
            if1_key,
            if2_key,
            n_tunnels,
            crypto_alg,
            integ_alg,
            raddr_ip2,
            addr_incr,
            spi_d,
            existing_tunnels,
        )
        if "DUT2" in nodes.keys():
            IPsecUtil._ipsec_create_tunnel_interfaces_dut2_papi(
                nodes,
                tun_ips,
                if2_key,
                n_tunnels,
                crypto_alg,
                ckeys,
                integ_alg,
                ikeys,
                raddr_ip1,
                addr_incr,
                spi_d,
                existing_tunnels,
            )

        if return_keys:
            return ckeys, ikeys, spi_d["spi_1"], spi_d["spi_2"]
        return None

    @staticmethod
    def _create_ipsec_script_files(
        dut: str, instances: int
    ) -> List[TextIOWrapper]:
        """Create script files for configuring IPsec in containers

        :param dut: DUT node on which to create the script files
        :param instances: number of containers on DUT node
        :type dut: str
        :type instances: int
        :returns: Created opened file handles.
        :rtype: List[TextIOWrapper]
        """
        scripts = []
        for cnf in range(0, instances):
            script_filename = (
                f"/tmp/ipsec_create_tunnel_cnf_{dut}_{cnf + 1}.config"
            )
            scripts.append(open(script_filename, "w", encoding="utf-8"))
        return scripts

    @staticmethod
    def _close_and_copy_ipsec_script_files(
        dut: str, nodes: dict, instances: int, scripts: Sequence[TextIOWrapper]
    ) -> None:
        """Close created scripts and copy them to containers

        :param dut: DUT node on which to create the script files
        :param nodes: VPP nodes
        :param instances: number of containers on DUT node
        :param scripts: dictionary holding the script files
        :type dut: str
        :type nodes: dict
        :type instances: int
        :type scripts: dict
        """
        for cnf in range(0, instances):
            scripts[cnf].close()
            script_filename = (
                f"/tmp/ipsec_create_tunnel_cnf_{dut}_{cnf + 1}.config"
            )
            scp_node(nodes[dut], script_filename, script_filename)

    @staticmethod
    def vpp_ipsec_add_multiple_tunnels(
        nodes: dict,
        interface1: Union[str, int],
        interface2: Union[str, int],
        n_tunnels: int,
        crypto_alg: CryptoAlg,
        integ_alg: Optional[IntegAlg],
        tunnel_ip1: str,
        tunnel_ip2: str,
        raddr_ip1: str,
        raddr_ip2: str,
        raddr_range: int,
        tunnel_addr_incr: bool = True,
    ) -> None:
        """Create multiple IPsec tunnels between two VPP nodes.

        :param nodes: VPP nodes to create tunnels.
        :param interface1: Interface name or sw_if_index on node 1.
        :param interface2: Interface name or sw_if_index on node 2.
        :param n_tunnels: Number of tunnels to create.
        :param crypto_alg: The encryption algorithm name.
        :param integ_alg: The integrity algorithm name.
        :param tunnel_ip1: Tunnel node1 IPv4 address.
        :param tunnel_ip2: Tunnel node2 IPv4 address.
        :param raddr_ip1: Policy selector remote IPv4 start address for the
            first tunnel in direction node1->node2.
        :param raddr_ip2: Policy selector remote IPv4 start address for the
            first tunnel in direction node2->node1.
        :param raddr_range: Mask specifying range of Policy selector Remote
            IPv4 addresses. Valid values are from 1 to 32.
        :param tunnel_addr_incr: Enable or disable tunnel IP address
            incremental step.
        :type nodes: dict
        :type interface1: Union[str, int]
        :type interface2: Union[str, int]
        :type n_tunnels: int
        :type crypto_alg: CryptoAlg
        :type integ_alg: Optional[IntegAlg]
        :type tunnel_ip1: str
        :type tunnel_ip2: str
        :type raddr_ip1: str
        :type raddr_ip2: str
        :type raddr_range: int
        :type tunnel_addr_incr: bool
        """
        spd_id = 1
        p_hi = 100
        p_lo = 10
        sa_id_1 = 100000
        sa_id_2 = 200000
        spi_1 = 300000
        spi_2 = 400000

        crypto_key = gen_key(
            IPsecUtil.get_crypto_alg_key_len(crypto_alg)
        ).decode()
        integ_key = (
            gen_key(IPsecUtil.get_integ_alg_key_len(integ_alg)).decode()
            if integ_alg
            else ""
        )

        rmac = (
            Topology.get_interface_mac(nodes["DUT2"], interface2)
            if "DUT2" in nodes.keys()
            else Topology.get_interface_mac(nodes["TG"], interface2)
        )
        IPsecUtil.vpp_ipsec_set_ip_route(
            nodes["DUT1"],
            n_tunnels,
            tunnel_ip1,
            raddr_ip2,
            tunnel_ip2,
            interface1,
            raddr_range,
            rmac,
        )

        IPsecUtil.vpp_ipsec_add_spd(nodes["DUT1"], spd_id)
        IPsecUtil.vpp_ipsec_spd_add_if(nodes["DUT1"], spd_id, interface1)

        addr_incr = (
            1 << (128 - 96)
            if ip_address(tunnel_ip1).version == 6
            else 1 << (32 - 24)
        )
        for i in range(n_tunnels // (addr_incr**2) + 1):
            dut1_local_outbound_range = ip_network(
                f"{ip_address(tunnel_ip1) + i*(addr_incr**3)}/8", False
            ).with_prefixlen
            dut1_remote_outbound_range = ip_network(
                f"{ip_address(tunnel_ip2) + i*(addr_incr**3)}/8", False
            ).with_prefixlen

            IPsecUtil.vpp_ipsec_add_spd_entry(
                nodes["DUT1"],
                spd_id,
                p_hi,
                PolicyAction.BYPASS,
                inbound=False,
                proto=50,
                laddr_range=dut1_local_outbound_range,
                raddr_range=dut1_remote_outbound_range,
            )
            IPsecUtil.vpp_ipsec_add_spd_entry(
                nodes["DUT1"],
                spd_id,
                p_hi,
                PolicyAction.BYPASS,
                inbound=True,
                proto=50,
                laddr_range=dut1_remote_outbound_range,
                raddr_range=dut1_local_outbound_range,
            )

        IPsecUtil.vpp_ipsec_add_sad_entries(
            nodes["DUT1"],
            n_tunnels,
            sa_id_1,
            spi_1,
            crypto_alg,
            crypto_key,
            integ_alg,
            integ_key,
            tunnel_ip1,
            tunnel_ip2,
            tunnel_addr_incr,
        )

        IPsecUtil.vpp_ipsec_add_spd_entries(
            nodes["DUT1"],
            n_tunnels,
            spd_id,
            priority=ObjIncrement(p_lo, 0),
            action=PolicyAction.PROTECT,
            inbound=False,
            sa_id=ObjIncrement(sa_id_1, 1),
            raddr_range=NetworkIncrement(ip_network(raddr_ip2)),
        )

        IPsecUtil.vpp_ipsec_add_sad_entries(
            nodes["DUT1"],
            n_tunnels,
            sa_id_2,
            spi_2,
            crypto_alg,
            crypto_key,
            integ_alg,
            integ_key,
            tunnel_ip2,
            tunnel_ip1,
            tunnel_addr_incr,
        )
        IPsecUtil.vpp_ipsec_add_spd_entries(
            nodes["DUT1"],
            n_tunnels,
            spd_id,
            priority=ObjIncrement(p_lo, 0),
            action=PolicyAction.PROTECT,
            inbound=True,
            sa_id=ObjIncrement(sa_id_2, 1),
            raddr_range=NetworkIncrement(ip_network(raddr_ip1)),
        )

        if "DUT2" in nodes.keys():
            rmac = Topology.get_interface_mac(nodes["DUT1"], interface1)
            IPsecUtil.vpp_ipsec_set_ip_route(
                nodes["DUT2"],
                n_tunnels,
                tunnel_ip2,
                raddr_ip1,
                tunnel_ip1,
                interface2,
                raddr_range,
                rmac,
            )

            IPsecUtil.vpp_ipsec_add_spd(nodes["DUT2"], spd_id)
            IPsecUtil.vpp_ipsec_spd_add_if(nodes["DUT2"], spd_id, interface2)
            for i in range(n_tunnels // (addr_incr**2) + 1):
                dut2_local_outbound_range = ip_network(
                    f"{ip_address(tunnel_ip1) + i*(addr_incr**3)}/8", False
                ).with_prefixlen
                dut2_remote_outbound_range = ip_network(
                    f"{ip_address(tunnel_ip2) + i*(addr_incr**3)}/8", False
                ).with_prefixlen

                IPsecUtil.vpp_ipsec_add_spd_entry(
                    nodes["DUT2"],
                    spd_id,
                    p_hi,
                    PolicyAction.BYPASS,
                    inbound=False,
                    proto=50,
                    laddr_range=dut2_remote_outbound_range,
                    raddr_range=dut2_local_outbound_range,
                )
                IPsecUtil.vpp_ipsec_add_spd_entry(
                    nodes["DUT2"],
                    spd_id,
                    p_hi,
                    PolicyAction.BYPASS,
                    inbound=True,
                    proto=50,
                    laddr_range=dut2_local_outbound_range,
                    raddr_range=dut2_remote_outbound_range,
                )

            IPsecUtil.vpp_ipsec_add_sad_entries(
                nodes["DUT2"],
                n_tunnels,
                sa_id_1,
                spi_1,
                crypto_alg,
                crypto_key,
                integ_alg,
                integ_key,
                tunnel_ip1,
                tunnel_ip2,
                tunnel_addr_incr,
            )
            IPsecUtil.vpp_ipsec_add_spd_entries(
                nodes["DUT2"],
                n_tunnels,
                spd_id,
                priority=ObjIncrement(p_lo, 0),
                action=PolicyAction.PROTECT,
                inbound=True,
                sa_id=ObjIncrement(sa_id_1, 1),
                raddr_range=NetworkIncrement(ip_network(raddr_ip2)),
            )

            IPsecUtil.vpp_ipsec_add_sad_entries(
                nodes["DUT2"],
                n_tunnels,
                sa_id_2,
                spi_2,
                crypto_alg,
                crypto_key,
                integ_alg,
                integ_key,
                tunnel_ip2,
                tunnel_ip1,
                tunnel_addr_incr,
            )
            IPsecUtil.vpp_ipsec_add_spd_entries(
                nodes["DUT2"],
                n_tunnels,
                spd_id,
                priority=ObjIncrement(p_lo, 0),
                action=PolicyAction.PROTECT,
                inbound=False,
                sa_id=ObjIncrement(sa_id_2, 1),
                raddr_range=NetworkIncrement(ip_network(raddr_ip1)),
            )

    @staticmethod
    def vpp_ipsec_show_all(node: dict) -> None:
        """Run "show ipsec all" debug CLI command.

        :param node: Node to run command on.
        :type node: dict
        """
        PapiSocketExecutor.run_cli_cmd(node, "show ipsec all")

    @staticmethod
    def show_ipsec_security_association(node: dict) -> None:
        """Show IPSec security association.

        :param node: DUT node.
        :type node: dict
        """
        cmd = "ipsec_sa_v5_dump"
        PapiSocketExecutor.dump_and_log(node, [cmd])

    @staticmethod
    def vpp_ipsec_flow_enable_rss(
        node: dict, proto: str, rss_type: str, function: str = "default"
    ) -> int:
        """Ipsec flow enable rss action.

        :param node: DUT node.
        :param proto: The flow protocol.
        :param rss_type: RSS type.
        :param function: RSS function.

        :type node: dict
        :type proto: str
        :type rss_type: str
        :type function: str
        :returns: flow_index.
        :rtype: int
        """
        # TODO: to be fixed to use full PAPI when it is ready in VPP
        cmd = (
            f"test flow add src-ip any proto {proto} rss function"
            f" {function} rss types {rss_type}"
        )
        stdout = PapiSocketExecutor.run_cli_cmd(node, cmd)
        flow_index = stdout.split()[1]

        return flow_index

    @staticmethod
    def vpp_create_ipsec_flows_on_dut(
        node: dict, n_flows: int, rx_queues: int, spi_start: int, interface: str
    ) -> None:
        """Create mutiple ipsec flows and enable flows onto interface.

        :param node: DUT node.
        :param n_flows: Number of flows to create.
        :param rx_queues: NUmber of RX queues.
        :param spi_start: The start spi.
        :param interface: Name of the interface.

        :type node: dict
        :type n_flows: int
        :type rx_queues: int
        :type spi_start: int
        :type interface: str
        """

        for i in range(0, n_flows):
            rx_queue = i % rx_queues
            spi = spi_start + i
            flow_index = FlowUtil.vpp_create_ip4_ipsec_flow(
                node, "ESP", spi, "redirect-to-queue", value=rx_queue
            )
            FlowUtil.vpp_flow_enable(node, interface, flow_index)