example_sysctls.txt 63.7 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 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
abi.vsyscall32 = 1
crypto.fips_enabled = 0
crypto.fips_name = Linux Kernel Cryptographic API
crypto.fips_version = 6.4.8-200.fc38.x86_64
debug.exception-trace = 1
debug.kprobes-optimization = 1
dev.cdrom.autoclose = 1
dev.cdrom.autoeject = 0
dev.cdrom.check_media = 0
dev.cdrom.debug = 0
dev.cdrom.info = CD-ROM information, Id: cdrom.c 3.20 2003/12/17
dev.cdrom.info = 
dev.cdrom.info = drive name:	
dev.cdrom.info = drive speed:	
dev.cdrom.info = drive # of slots:
dev.cdrom.info = Can close tray:	
dev.cdrom.info = Can open tray:	
dev.cdrom.info = Can lock tray:	
dev.cdrom.info = Can change speed:
dev.cdrom.info = Can select disk:
dev.cdrom.info = Can read multisession:
dev.cdrom.info = Can read MCN:	
dev.cdrom.info = Reports media changed:
dev.cdrom.info = Can play audio:	
dev.cdrom.info = Can write CD-R:	
dev.cdrom.info = Can write CD-RW:
dev.cdrom.info = Can read DVD:	
dev.cdrom.info = Can write DVD-R:
dev.cdrom.info = Can write DVD-RAM:
dev.cdrom.info = Can read MRW:	
dev.cdrom.info = Can write MRW:	
dev.cdrom.info = Can write RAM:	
dev.cdrom.info = 
dev.cdrom.info = 
dev.cdrom.lock = 1
dev.hpet.max-user-freq = 64
dev.i915.oa_max_sample_rate = 100000
dev.i915.perf_stream_paranoid = 1
dev.mac_hid.mouse_button2_keycode = 97
dev.mac_hid.mouse_button3_keycode = 100
dev.mac_hid.mouse_button_emulation = 0
dev.raid.speed_limit_max = 200000
dev.raid.speed_limit_min = 1000
dev.scsi.logging_level = 0
dev.tty.ldisc_autoload = 1
dev.tty.legacy_tiocsti = 0
fs.aio-max-nr = 1048576
fs.aio-nr = 0
fs.binfmt_misc.qemu-xtensaeb = enabled
fs.binfmt_misc.qemu-xtensaeb = interpreter /usr/bin/qemu-xtensaeb-static
fs.binfmt_misc.qemu-xtensaeb = flags: F
fs.binfmt_misc.qemu-xtensaeb = offset 0
fs.binfmt_misc.qemu-xtensaeb = magic 7f454c460102010000000000000000000002005e
fs.binfmt_misc.qemu-xtensaeb = mask ffffffffffffff00fffffffffffffffffffeffff
fs.binfmt_misc.qemu-xtensa = enabled
fs.binfmt_misc.qemu-xtensa = interpreter /usr/bin/qemu-xtensa-static
fs.binfmt_misc.qemu-xtensa = flags: F
fs.binfmt_misc.qemu-xtensa = offset 0
fs.binfmt_misc.qemu-xtensa = magic 7f454c4601010100000000000000000002005e00
fs.binfmt_misc.qemu-xtensa = mask ffffffffffffff00fffffffffffffffffeffffff
fs.binfmt_misc.qemu-sparc64 = enabled
fs.binfmt_misc.qemu-sparc64 = interpreter /usr/bin/qemu-sparc64-static
fs.binfmt_misc.qemu-sparc64 = flags: F
fs.binfmt_misc.qemu-sparc64 = offset 0
fs.binfmt_misc.qemu-sparc64 = magic 7f454c460202010000000000000000000002002b
fs.binfmt_misc.qemu-sparc64 = mask ffffffffffffff00fffffffffffffffffffeffff
fs.binfmt_misc.qemu-sparc32plus = enabled
fs.binfmt_misc.qemu-sparc32plus = interpreter /usr/bin/qemu-sparc32plus-static
fs.binfmt_misc.qemu-sparc32plus = flags: F
fs.binfmt_misc.qemu-sparc32plus = offset 0
fs.binfmt_misc.qemu-sparc32plus = magic 7f454c4601020100000000000000000000020012
fs.binfmt_misc.qemu-sparc32plus = mask ffffffffffffff00fffffffffffffffffffeffff
fs.binfmt_misc.qemu-sparc = enabled
fs.binfmt_misc.qemu-sparc = interpreter /usr/bin/qemu-sparc-static
fs.binfmt_misc.qemu-sparc = flags: F
fs.binfmt_misc.qemu-sparc = offset 0
fs.binfmt_misc.qemu-sparc = magic 7f454c4601020100000000000000000000020002
fs.binfmt_misc.qemu-sparc = mask ffffffffffffff00fffffffffffffffffffeffff
fs.binfmt_misc.qemu-sh4eb = enabled
fs.binfmt_misc.qemu-sh4eb = interpreter /usr/bin/qemu-sh4eb-static
fs.binfmt_misc.qemu-sh4eb = flags: F
fs.binfmt_misc.qemu-sh4eb = offset 0
fs.binfmt_misc.qemu-sh4eb = magic 7f454c460102010000000000000000000002002a
fs.binfmt_misc.qemu-sh4eb = mask ffffffffffffff00fffffffffffffffffffeffff
fs.binfmt_misc.qemu-sh4 = enabled
fs.binfmt_misc.qemu-sh4 = interpreter /usr/bin/qemu-sh4-static
fs.binfmt_misc.qemu-sh4 = flags: F
fs.binfmt_misc.qemu-sh4 = offset 0
fs.binfmt_misc.qemu-sh4 = magic 7f454c4601010100000000000000000002002a00
fs.binfmt_misc.qemu-sh4 = mask ffffffffffffff00fffffffffffffffffeffffff
fs.binfmt_misc.qemu-s390x = enabled
fs.binfmt_misc.qemu-s390x = interpreter /usr/bin/qemu-s390x-static
fs.binfmt_misc.qemu-s390x = flags: F
fs.binfmt_misc.qemu-s390x = offset 0
fs.binfmt_misc.qemu-s390x = magic 7f454c4602020100000000000000000000020016
fs.binfmt_misc.qemu-s390x = mask ffffffffffffff00fffffffffffffffffffeffff
fs.binfmt_misc.qemu-riscv64 = enabled
fs.binfmt_misc.qemu-riscv64 = interpreter /usr/bin/qemu-riscv64-static
fs.binfmt_misc.qemu-riscv64 = flags: F
fs.binfmt_misc.qemu-riscv64 = offset 0
fs.binfmt_misc.qemu-riscv64 = magic 7f454c460201010000000000000000000200f300
fs.binfmt_misc.qemu-riscv64 = mask ffffffffffffff00fffffffffffffffffeffffff
fs.binfmt_misc.qemu-riscv32 = enabled
fs.binfmt_misc.qemu-riscv32 = interpreter /usr/bin/qemu-riscv32-static
fs.binfmt_misc.qemu-riscv32 = flags: F
fs.binfmt_misc.qemu-riscv32 = offset 0
fs.binfmt_misc.qemu-riscv32 = magic 7f454c460101010000000000000000000200f300
fs.binfmt_misc.qemu-riscv32 = mask ffffffffffffff00fffffffffffffffffeffffff
fs.binfmt_misc.qemu-ppc64le = enabled
fs.binfmt_misc.qemu-ppc64le = interpreter /usr/bin/qemu-ppc64le-static
fs.binfmt_misc.qemu-ppc64le = flags: F
fs.binfmt_misc.qemu-ppc64le = offset 0
fs.binfmt_misc.qemu-ppc64le = magic 7f454c4602010100000000000000000002001500
fs.binfmt_misc.qemu-ppc64le = mask ffffffffffffff00fffffffffffffffffeffff00
fs.binfmt_misc.qemu-ppc64 = enabled
fs.binfmt_misc.qemu-ppc64 = interpreter /usr/bin/qemu-ppc64-static
fs.binfmt_misc.qemu-ppc64 = flags: F
fs.binfmt_misc.qemu-ppc64 = offset 0
fs.binfmt_misc.qemu-ppc64 = magic 7f454c4602020100000000000000000000020015
fs.binfmt_misc.qemu-ppc64 = mask ffffffffffffff00fffffffffffffffffffeffff
fs.binfmt_misc.qemu-ppc = enabled
fs.binfmt_misc.qemu-ppc = interpreter /usr/bin/qemu-ppc-static
fs.binfmt_misc.qemu-ppc = flags: F
fs.binfmt_misc.qemu-ppc = offset 0
fs.binfmt_misc.qemu-ppc = magic 7f454c4601020100000000000000000000020014
fs.binfmt_misc.qemu-ppc = mask ffffffffffffff00fffffffffffffffffffeffff
fs.binfmt_misc.qemu-or1k = enabled
fs.binfmt_misc.qemu-or1k = interpreter /usr/bin/qemu-or1k-static
fs.binfmt_misc.qemu-or1k = flags: F
fs.binfmt_misc.qemu-or1k = offset 0
fs.binfmt_misc.qemu-or1k = magic 7f454c460102010000000000000000000002005c
fs.binfmt_misc.qemu-or1k = mask ffffffffffffff00fffffffffffffffffffeffff
fs.binfmt_misc.qemu-mipsn32el = enabled
fs.binfmt_misc.qemu-mipsn32el = interpreter /usr/bin/qemu-mipsn32el-static
fs.binfmt_misc.qemu-mipsn32el = flags: F
fs.binfmt_misc.qemu-mipsn32el = offset 0
fs.binfmt_misc.qemu-mipsn32el = magic 7f454c46010101000000000000000000020008000100000000000000000000000000000020000000
fs.binfmt_misc.qemu-mipsn32el = mask ffffffffffffff0000fffffffffffffffeffffffffffffff00000000000000000000000020000000
fs.binfmt_misc.qemu-mipsn32 = enabled
fs.binfmt_misc.qemu-mipsn32 = interpreter /usr/bin/qemu-mipsn32-static
fs.binfmt_misc.qemu-mipsn32 = flags: F
fs.binfmt_misc.qemu-mipsn32 = offset 0
fs.binfmt_misc.qemu-mipsn32 = magic 7f454c46010201000000000000000000000200080000000100000000000000000000000000000020
fs.binfmt_misc.qemu-mipsn32 = mask ffffffffffffff0000fffffffffffffffffeffffffffffff00000000000000000000000000000020
fs.binfmt_misc.qemu-mipsel = enabled
fs.binfmt_misc.qemu-mipsel = interpreter /usr/bin/qemu-mipsel-static
fs.binfmt_misc.qemu-mipsel = flags: F
fs.binfmt_misc.qemu-mipsel = offset 0
fs.binfmt_misc.qemu-mipsel = magic 7f454c46010101000000000000000000020008000100000000000000000000000000000000000000
fs.binfmt_misc.qemu-mipsel = mask ffffffffffffff0000fffffffffffffffeffffffffffffff00000000000000000000000020000000
fs.binfmt_misc.qemu-mips64el = enabled
fs.binfmt_misc.qemu-mips64el = interpreter /usr/bin/qemu-mips64el-static
fs.binfmt_misc.qemu-mips64el = flags: F
fs.binfmt_misc.qemu-mips64el = offset 0
fs.binfmt_misc.qemu-mips64el = magic 7f454c4602010100000000000000000002000800
fs.binfmt_misc.qemu-mips64el = mask ffffffffffffff0000fffffffffffffffeffffff
fs.binfmt_misc.qemu-mips64 = enabled
fs.binfmt_misc.qemu-mips64 = interpreter /usr/bin/qemu-mips64-static
fs.binfmt_misc.qemu-mips64 = flags: F
fs.binfmt_misc.qemu-mips64 = offset 0
fs.binfmt_misc.qemu-mips64 = magic 7f454c4602020100000000000000000000020008
fs.binfmt_misc.qemu-mips64 = mask ffffffffffffff0000fffffffffffffffffeffff
fs.binfmt_misc.qemu-mips = enabled
fs.binfmt_misc.qemu-mips = interpreter /usr/bin/qemu-mips-static
fs.binfmt_misc.qemu-mips = flags: F
fs.binfmt_misc.qemu-mips = offset 0
fs.binfmt_misc.qemu-mips = magic 7f454c46010201000000000000000000000200080000000100000000000000000000000000000000
fs.binfmt_misc.qemu-mips = mask ffffffffffffff0000fffffffffffffffffeffffffffffff00000000000000000000000000000020
fs.binfmt_misc.qemu-microblazeel = enabled
fs.binfmt_misc.qemu-microblazeel = interpreter /usr/bin/qemu-microblazeel-static
fs.binfmt_misc.qemu-microblazeel = flags: F
fs.binfmt_misc.qemu-microblazeel = offset 0
fs.binfmt_misc.qemu-microblazeel = magic 7f454c460101010000000000000000000200abba
fs.binfmt_misc.qemu-microblazeel = mask ffffffffffffff00fffffffffffffffffeffffff
fs.binfmt_misc.qemu-microblaze = enabled
fs.binfmt_misc.qemu-microblaze = interpreter /usr/bin/qemu-microblaze-static
fs.binfmt_misc.qemu-microblaze = flags: F
fs.binfmt_misc.qemu-microblaze = offset 0
fs.binfmt_misc.qemu-microblaze = magic 7f454c460102010000000000000000000200baab
fs.binfmt_misc.qemu-microblaze = mask ffffffffffffff00fffffffffffffffffeffffff
fs.binfmt_misc.qemu-m68k = enabled
fs.binfmt_misc.qemu-m68k = interpreter /usr/bin/qemu-m68k-static
fs.binfmt_misc.qemu-m68k = flags: F
fs.binfmt_misc.qemu-m68k = offset 0
fs.binfmt_misc.qemu-m68k = magic 7f454c4601020100000000000000000000020004
fs.binfmt_misc.qemu-m68k = mask fffffffffffffe00fffffffffffffffffffeffff
fs.binfmt_misc.qemu-loongarch64 = enabled
fs.binfmt_misc.qemu-loongarch64 = interpreter /usr/bin/qemu-loongarch64-static
fs.binfmt_misc.qemu-loongarch64 = flags: F
fs.binfmt_misc.qemu-loongarch64 = offset 0
fs.binfmt_misc.qemu-loongarch64 = magic 7f454c4602010100000000000000000002000201
fs.binfmt_misc.qemu-loongarch64 = mask fffffffffffffffc00fffffffffffffffeffffff
fs.binfmt_misc.qemu-hppa = enabled
fs.binfmt_misc.qemu-hppa = interpreter /usr/bin/qemu-hppa-static
fs.binfmt_misc.qemu-hppa = flags: F
fs.binfmt_misc.qemu-hppa = offset 0
fs.binfmt_misc.qemu-hppa = magic 7f454c460102010000000000000000000002000f
fs.binfmt_misc.qemu-hppa = mask ffffffffffffff00fffffffffffffffffffeffff
fs.binfmt_misc.qemu-hexagon = enabled
fs.binfmt_misc.qemu-hexagon = interpreter /usr/bin/qemu-hexagon-static
fs.binfmt_misc.qemu-hexagon = flags: F
fs.binfmt_misc.qemu-hexagon = offset 0
fs.binfmt_misc.qemu-hexagon = magic 7f454c460101010000000000000000000200a400
fs.binfmt_misc.qemu-hexagon = mask ffffffffffffff00fffffffffffffffffeffffff
fs.binfmt_misc.qemu-armeb = enabled
fs.binfmt_misc.qemu-armeb = interpreter /usr/bin/qemu-armeb-static
fs.binfmt_misc.qemu-armeb = flags: F
fs.binfmt_misc.qemu-armeb = offset 0
fs.binfmt_misc.qemu-armeb = magic 7f454c4601020100000000000000000000020028
fs.binfmt_misc.qemu-armeb = mask ffffffffffffff00fffffffffffffffffffeffff
fs.binfmt_misc.qemu-arm = enabled
fs.binfmt_misc.qemu-arm = interpreter /usr/bin/qemu-arm-static
fs.binfmt_misc.qemu-arm = flags: F
fs.binfmt_misc.qemu-arm = offset 0
fs.binfmt_misc.qemu-arm = magic 7f454c4601010100000000000000000002002800
fs.binfmt_misc.qemu-arm = mask ffffffffffffff00fffffffffffffffffeffffff
fs.binfmt_misc.qemu-alpha = enabled
fs.binfmt_misc.qemu-alpha = interpreter /usr/bin/qemu-alpha-static
fs.binfmt_misc.qemu-alpha = flags: F
fs.binfmt_misc.qemu-alpha = offset 0
fs.binfmt_misc.qemu-alpha = magic 7f454c4602010100000000000000000002002690
fs.binfmt_misc.qemu-alpha = mask fffffffffffefe00fffffffffffffffffeffffff
fs.binfmt_misc.qemu-aarch64_be = enabled
fs.binfmt_misc.qemu-aarch64_be = interpreter /usr/bin/qemu-aarch64_be-static
fs.binfmt_misc.qemu-aarch64_be = flags: F
fs.binfmt_misc.qemu-aarch64_be = offset 0
fs.binfmt_misc.qemu-aarch64_be = magic 7f454c46020201000000000000000000000200b7
fs.binfmt_misc.qemu-aarch64_be = mask ffffffffffffff00fffffffffffffffffffeffff
fs.binfmt_misc.qemu-aarch64 = enabled
fs.binfmt_misc.qemu-aarch64 = interpreter /usr/bin/qemu-aarch64-static
fs.binfmt_misc.qemu-aarch64 = flags: F
fs.binfmt_misc.qemu-aarch64 = offset 0
fs.binfmt_misc.qemu-aarch64 = magic 7f454c460201010000000000000000000200b700
fs.binfmt_misc.qemu-aarch64 = mask ffffffffffffff00fffffffffffffffffeffffff
fs.binfmt_misc.status = enabled
fs.dentry-state = 96160	60449	45	0	18216	0
fs.dir-notify-enable = 1
fs.epoll.max_user_watches = 1767869
fs.fanotify.max_queued_events = 16384
fs.fanotify.max_user_groups = 128
fs.fanotify.max_user_marks = 64337
fs.file-max = 9223372036854775807
fs.file-nr = 16182	0	9223372036854775807
fs.inode-nr = 78029	667
fs.inode-state = 78029	667	0	0	0	0	0
fs.inotify.max_queued_events = 16384
fs.inotify.max_user_instances = 128
fs.inotify.max_user_watches = 60507
fs.lease-break-time = 45
fs.leases-enable = 1
fs.mount-max = 100000
fs.mqueue.msg_default = 10
fs.mqueue.msg_max = 10
fs.mqueue.msgsize_default = 8192
fs.mqueue.msgsize_max = 8192
fs.mqueue.queues_max = 256
fs.nr_open = 1073741816
fs.overflowgid = 65534
fs.overflowuid = 65534
fs.pipe-max-size = 1048576
fs.pipe-user-pages-hard = 0
fs.pipe-user-pages-soft = 16384
fs.protected_fifos = 1
fs.protected_hardlinks = 1
fs.protected_regular = 1
fs.protected_symlinks = 1
fs.quota.allocated_dquots = 0
fs.quota.cache_hits = 0
fs.quota.drops = 0
fs.quota.free_dquots = 0
fs.quota.lookups = 0
fs.quota.reads = 0
fs.quota.syncs = 28
fs.quota.writes = 0
fs.suid_dumpable = 2
kernel.acct = 4	2	30
kernel.acpi_video_flags = 0
kernel.arch = x86_64
kernel.auto_msgmni = 0
kernel.bootloader_type = 6
kernel.bootloader_version = 38
kernel.bpf_stats_enabled = 0
kernel.cad_pid = 1
kernel.cap_last_cap = 40
kernel.core_pattern = |/usr/lib/systemd/systemd-coredump %P %u %g %s %t %c %h
kernel.core_pipe_limit = 16
kernel.core_uses_pid = 1
kernel.ctrl-alt-del = 0
kernel.dmesg_restrict = 0
kernel.domainname = (none)
kernel.firmware_config.force_sysfs_fallback = 0
kernel.firmware_config.ignore_sysfs_fallback = 0
kernel.ftrace_dump_on_oops = 0
kernel.ftrace_enabled = 1
kernel.hardlockup_all_cpu_backtrace = 0
kernel.hardlockup_panic = 0
kernel.hostname = hackbase
kernel.io_delay_type = 0
kernel.kexec_load_disabled = 0
kernel.kexec_load_limit_panic = -1
kernel.kexec_load_limit_reboot = -1
kernel.keys.gc_delay = 300
kernel.keys.maxbytes = 20000
kernel.keys.maxkeys = 200
kernel.keys.persistent_keyring_expiry = 259200
kernel.keys.root_maxbytes = 25000000
kernel.keys.root_maxkeys = 1000000
kernel.kptr_restrict = 0
kernel.latencytop = 0
kernel.max_lock_depth = 1024
kernel.max_rcu_stall_to_panic = 0
kernel.modprobe = /usr/sbin/modprobe
kernel.modules_disabled = 0
kernel.msg_next_id = -1
kernel.msgmax = 8192
kernel.msgmnb = 16384
kernel.msgmni = 32000
kernel.ngroups_max = 65536
kernel.nmi_watchdog = 0
kernel.ns_last_pid = 48542
kernel.numa_balancing = 0
kernel.numa_balancing_promote_rate_limit_MBps = 65536
kernel.oops_all_cpu_backtrace = 0
kernel.oops_limit = 10000
kernel.osrelease = 6.4.8-200.fc38.x86_64
kernel.ostype = Linux
kernel.overflowgid = 65534
kernel.overflowuid = 65534
kernel.panic = 0
kernel.panic_on_io_nmi = 0
kernel.panic_on_oops = 0
kernel.panic_on_rcu_stall = 0
kernel.panic_on_unrecovered_nmi = 0
kernel.panic_on_warn = 0
kernel.panic_print = 0
kernel.perf_cpu_time_max_percent = 25
kernel.perf_event_max_contexts_per_stack = 8
kernel.perf_event_max_sample_rate = 100000
kernel.perf_event_max_stack = 127
kernel.perf_event_mlock_kb = 516
kernel.perf_event_paranoid = 2
kernel.pid_max = 4194304
kernel.poweroff_cmd = /sbin/poweroff
kernel.print-fatal-signals = 0
kernel.printk = 3	4	1	7
kernel.printk_delay = 0
kernel.printk_devkmsg = on
kernel.printk_ratelimit = 5
kernel.printk_ratelimit_burst = 10
kernel.pty.max = 4096
kernel.pty.nr = 3
kernel.pty.reserve = 1024
kernel.random.boot_id = a3fc96e7-cd1a-4216-ac1f-99485abfbaac
kernel.random.entropy_avail = 256
kernel.random.poolsize = 256
kernel.random.urandom_min_reseed_secs = 60
kernel.random.uuid = 9f8b5443-1ebf-4bbe-b291-3765969e3049
kernel.random.write_wakeup_threshold = 256
kernel.randomize_va_space = 2
kernel.real-root-dev = 0
kernel.sched_autogroup_enabled = 1
kernel.sched_cfs_bandwidth_slice_us = 5000
kernel.sched_child_runs_first = 0
kernel.sched_deadline_period_max_us = 4194304
kernel.sched_deadline_period_min_us = 100
kernel.sched_energy_aware = 1
kernel.sched_rr_timeslice_ms = 100
kernel.sched_rt_period_us = 1000000
kernel.sched_rt_runtime_us = 950000
kernel.sched_schedstats = 0
kernel.seccomp.actions_avail = kill_process kill_thread trap errno user_notif trace log allow
kernel.seccomp.actions_logged = kill_process kill_thread trap errno user_notif trace log
kernel.sem = 32000	1024000000	500	32000
kernel.sem_next_id = -1
kernel.shm_next_id = -1
kernel.shm_rmid_forced = 0
kernel.shmall = 18446744073692774399
kernel.shmmax = 18446744073692774399
kernel.shmmni = 4096
kernel.soft_watchdog = 1
kernel.softlockup_all_cpu_backtrace = 0
kernel.softlockup_panic = 0
kernel.split_lock_mitigate = 1
kernel.stack_tracer_enabled = 0
kernel.sysctl_writes_strict = 1
kernel.sysrq = 16
kernel.tainted = 0
kernel.task_delayacct = 0
kernel.threads-max = 62043
kernel.timer_migration = 1
kernel.traceoff_on_warning = 0
kernel.tracepoint_printk = 0
kernel.unknown_nmi_panic = 0
kernel.unprivileged_bpf_disabled = 1
kernel.usermodehelper.bset = 4294967295	511
kernel.usermodehelper.inheritable = 4294967295	511
kernel.version = #1 SMP PREEMPT_DYNAMIC Thu Aug  3 21:44:06 UTC 2023
kernel.warn_limit = 0
kernel.watchdog = 1
kernel.watchdog_cpumask = 0-3
kernel.watchdog_thresh = 10
kernel.yama.ptrace_scope = 0
net.core.bpf_jit_enable = 1
net.core.bpf_jit_harden = 0
net.core.bpf_jit_kallsyms = 1
net.core.bpf_jit_limit = 528482304
net.core.busy_poll = 0
net.core.busy_read = 0
net.core.default_qdisc = fq_codel
net.core.dev_weight = 64
net.core.dev_weight_rx_bias = 1
net.core.dev_weight_tx_bias = 1
net.core.devconf_inherit_init_net = 0
net.core.fb_tunnels_only_for_init_net = 0
net.core.flow_limit_cpu_bitmap = 0
net.core.flow_limit_table_len = 4096
net.core.gro_normal_batch = 8
net.core.high_order_alloc_disable = 0
net.core.max_skb_frags = 17
net.core.message_burst = 10
net.core.message_cost = 5
net.core.netdev_budget = 300
net.core.netdev_budget_usecs = 2000
net.core.netdev_max_backlog = 1000
net.core.netdev_rss_key = 07:7f:94:66:b3:d5:a3:4d:3a:9a:25:9a:b7:19:93:8d:25:ea:b3:83:32:1f:13:87:5d:f9:f9:14:60:ec:0b:1c:b8:d3:b0:a9:e7:70:97:a1:ce:c8:ef:82:9c:f3:a2:18:fc:4f:4c:24
net.core.netdev_tstamp_prequeue = 1
net.core.netdev_unregister_timeout_secs = 10
net.core.optmem_max = 81920
net.core.rmem_default = 212992
net.core.rmem_max = 212992
net.core.rps_default_mask = 0
net.core.rps_sock_flow_entries = 0
net.core.skb_defer_max = 64
net.core.somaxconn = 4096
net.core.tstamp_allow_data = 1
net.core.txrehash = 1
net.core.warnings = 0
net.core.wmem_default = 212992
net.core.wmem_max = 212992
net.core.xfrm_acq_expires = 30
net.core.xfrm_aevent_etime = 10
net.core.xfrm_aevent_rseqth = 2
net.core.xfrm_larval_drop = 1
net.ipv4.cipso_cache_bucket_size = 10
net.ipv4.cipso_cache_enable = 1
net.ipv4.cipso_rbm_optfmt = 0
net.ipv4.cipso_rbm_strictvalid = 1
net.ipv4.conf.all.accept_local = 0
net.ipv4.conf.all.accept_redirects = 0
net.ipv4.conf.all.accept_source_route = 0
net.ipv4.conf.all.arp_accept = 0
net.ipv4.conf.all.arp_announce = 0
net.ipv4.conf.all.arp_evict_nocarrier = 1
net.ipv4.conf.all.arp_filter = 0
net.ipv4.conf.all.arp_ignore = 0
net.ipv4.conf.all.arp_notify = 0
net.ipv4.conf.all.bc_forwarding = 0
net.ipv4.conf.all.bootp_relay = 0
net.ipv4.conf.all.disable_policy = 0
net.ipv4.conf.all.disable_xfrm = 0
net.ipv4.conf.all.drop_gratuitous_arp = 0
net.ipv4.conf.all.drop_unicast_in_l2_multicast = 0
net.ipv4.conf.all.force_igmp_version = 0
net.ipv4.conf.all.forwarding = 1
net.ipv4.conf.all.igmpv2_unsolicited_report_interval = 10000
net.ipv4.conf.all.igmpv3_unsolicited_report_interval = 1000
net.ipv4.conf.all.ignore_routes_with_linkdown = 0
net.ipv4.conf.all.log_martians = 0
net.ipv4.conf.all.mc_forwarding = 0
net.ipv4.conf.all.medium_id = 0
net.ipv4.conf.all.promote_secondaries = 0
net.ipv4.conf.all.proxy_arp = 0
net.ipv4.conf.all.proxy_arp_pvlan = 0
net.ipv4.conf.all.route_localnet = 0
net.ipv4.conf.all.rp_filter = 0
net.ipv4.conf.all.secure_redirects = 1
net.ipv4.conf.all.send_redirects = 1
net.ipv4.conf.all.shared_media = 1
net.ipv4.conf.all.src_valid_mark = 0
net.ipv4.conf.all.tag = 0
net.ipv4.conf.default.accept_local = 0
net.ipv4.conf.default.accept_redirects = 1
net.ipv4.conf.default.accept_source_route = 0
net.ipv4.conf.default.arp_accept = 0
net.ipv4.conf.default.arp_announce = 0
net.ipv4.conf.default.arp_evict_nocarrier = 1
net.ipv4.conf.default.arp_filter = 0
net.ipv4.conf.default.arp_ignore = 0
net.ipv4.conf.default.arp_notify = 0
net.ipv4.conf.default.bc_forwarding = 0
net.ipv4.conf.default.bootp_relay = 0
net.ipv4.conf.default.disable_policy = 0
net.ipv4.conf.default.disable_xfrm = 0
net.ipv4.conf.default.drop_gratuitous_arp = 0
net.ipv4.conf.default.drop_unicast_in_l2_multicast = 0
net.ipv4.conf.default.force_igmp_version = 0
net.ipv4.conf.default.forwarding = 1
net.ipv4.conf.default.igmpv2_unsolicited_report_interval = 10000
net.ipv4.conf.default.igmpv3_unsolicited_report_interval = 1000
net.ipv4.conf.default.ignore_routes_with_linkdown = 0
net.ipv4.conf.default.log_martians = 0
net.ipv4.conf.default.mc_forwarding = 0
net.ipv4.conf.default.medium_id = 0
net.ipv4.conf.default.promote_secondaries = 1
net.ipv4.conf.default.proxy_arp = 0
net.ipv4.conf.default.proxy_arp_pvlan = 0
net.ipv4.conf.default.route_localnet = 0
net.ipv4.conf.default.rp_filter = 2
net.ipv4.conf.default.secure_redirects = 1
net.ipv4.conf.default.send_redirects = 1
net.ipv4.conf.default.shared_media = 1
net.ipv4.conf.default.src_valid_mark = 0
net.ipv4.conf.default.tag = 0
net.ipv4.conf.enp0s31f6.accept_local = 0
net.ipv4.conf.enp0s31f6.accept_redirects = 1
net.ipv4.conf.enp0s31f6.accept_source_route = 0
net.ipv4.conf.enp0s31f6.arp_accept = 0
net.ipv4.conf.enp0s31f6.arp_announce = 0
net.ipv4.conf.enp0s31f6.arp_evict_nocarrier = 1
net.ipv4.conf.enp0s31f6.arp_filter = 0
net.ipv4.conf.enp0s31f6.arp_ignore = 0
net.ipv4.conf.enp0s31f6.arp_notify = 0
net.ipv4.conf.enp0s31f6.bc_forwarding = 0
net.ipv4.conf.enp0s31f6.bootp_relay = 0
net.ipv4.conf.enp0s31f6.disable_policy = 0
net.ipv4.conf.enp0s31f6.disable_xfrm = 0
net.ipv4.conf.enp0s31f6.drop_gratuitous_arp = 0
net.ipv4.conf.enp0s31f6.drop_unicast_in_l2_multicast = 0
net.ipv4.conf.enp0s31f6.force_igmp_version = 0
net.ipv4.conf.enp0s31f6.forwarding = 1
net.ipv4.conf.enp0s31f6.igmpv2_unsolicited_report_interval = 10000
net.ipv4.conf.enp0s31f6.igmpv3_unsolicited_report_interval = 1000
net.ipv4.conf.enp0s31f6.ignore_routes_with_linkdown = 0
net.ipv4.conf.enp0s31f6.log_martians = 0
net.ipv4.conf.enp0s31f6.mc_forwarding = 0
net.ipv4.conf.enp0s31f6.medium_id = 0
net.ipv4.conf.enp0s31f6.promote_secondaries = 1
net.ipv4.conf.enp0s31f6.proxy_arp = 0
net.ipv4.conf.enp0s31f6.proxy_arp_pvlan = 0
net.ipv4.conf.enp0s31f6.route_localnet = 0
net.ipv4.conf.enp0s31f6.rp_filter = 2
net.ipv4.conf.enp0s31f6.secure_redirects = 1
net.ipv4.conf.enp0s31f6.send_redirects = 1
net.ipv4.conf.enp0s31f6.shared_media = 1
net.ipv4.conf.enp0s31f6.src_valid_mark = 0
net.ipv4.conf.enp0s31f6.tag = 0
net.ipv4.conf.lo.accept_local = 0
net.ipv4.conf.lo.accept_redirects = 1
net.ipv4.conf.lo.accept_source_route = 0
net.ipv4.conf.lo.arp_accept = 0
net.ipv4.conf.lo.arp_announce = 0
net.ipv4.conf.lo.arp_evict_nocarrier = 1
net.ipv4.conf.lo.arp_filter = 0
net.ipv4.conf.lo.arp_ignore = 0
net.ipv4.conf.lo.arp_notify = 0
net.ipv4.conf.lo.bc_forwarding = 0
net.ipv4.conf.lo.bootp_relay = 0
net.ipv4.conf.lo.disable_policy = 1
net.ipv4.conf.lo.disable_xfrm = 1
net.ipv4.conf.lo.drop_gratuitous_arp = 0
net.ipv4.conf.lo.drop_unicast_in_l2_multicast = 0
net.ipv4.conf.lo.force_igmp_version = 0
net.ipv4.conf.lo.forwarding = 1
net.ipv4.conf.lo.igmpv2_unsolicited_report_interval = 10000
net.ipv4.conf.lo.igmpv3_unsolicited_report_interval = 1000
net.ipv4.conf.lo.ignore_routes_with_linkdown = 0
net.ipv4.conf.lo.log_martians = 0
net.ipv4.conf.lo.mc_forwarding = 0
net.ipv4.conf.lo.medium_id = 0
net.ipv4.conf.lo.promote_secondaries = 1
net.ipv4.conf.lo.proxy_arp = 0
net.ipv4.conf.lo.proxy_arp_pvlan = 0
net.ipv4.conf.lo.route_localnet = 0
net.ipv4.conf.lo.rp_filter = 2
net.ipv4.conf.lo.secure_redirects = 1
net.ipv4.conf.lo.send_redirects = 1
net.ipv4.conf.lo.shared_media = 1
net.ipv4.conf.lo.src_valid_mark = 0
net.ipv4.conf.lo.tag = 0
net.ipv4.conf.tun0.accept_local = 0
net.ipv4.conf.tun0.accept_redirects = 1
net.ipv4.conf.tun0.accept_source_route = 0
net.ipv4.conf.tun0.arp_accept = 0
net.ipv4.conf.tun0.arp_announce = 0
net.ipv4.conf.tun0.arp_evict_nocarrier = 1
net.ipv4.conf.tun0.arp_filter = 0
net.ipv4.conf.tun0.arp_ignore = 0
net.ipv4.conf.tun0.arp_notify = 0
net.ipv4.conf.tun0.bc_forwarding = 0
net.ipv4.conf.tun0.bootp_relay = 0
net.ipv4.conf.tun0.disable_policy = 0
net.ipv4.conf.tun0.disable_xfrm = 0
net.ipv4.conf.tun0.drop_gratuitous_arp = 0
net.ipv4.conf.tun0.drop_unicast_in_l2_multicast = 0
net.ipv4.conf.tun0.force_igmp_version = 0
net.ipv4.conf.tun0.forwarding = 1
net.ipv4.conf.tun0.igmpv2_unsolicited_report_interval = 10000
net.ipv4.conf.tun0.igmpv3_unsolicited_report_interval = 1000
net.ipv4.conf.tun0.ignore_routes_with_linkdown = 0
net.ipv4.conf.tun0.log_martians = 0
net.ipv4.conf.tun0.mc_forwarding = 0
net.ipv4.conf.tun0.medium_id = 0
net.ipv4.conf.tun0.promote_secondaries = 1
net.ipv4.conf.tun0.proxy_arp = 0
net.ipv4.conf.tun0.proxy_arp_pvlan = 0
net.ipv4.conf.tun0.route_localnet = 0
net.ipv4.conf.tun0.rp_filter = 2
net.ipv4.conf.tun0.secure_redirects = 1
net.ipv4.conf.tun0.send_redirects = 1
net.ipv4.conf.tun0.shared_media = 1
net.ipv4.conf.tun0.src_valid_mark = 0
net.ipv4.conf.tun0.tag = 0
net.ipv4.conf.virbr0.accept_local = 0
net.ipv4.conf.virbr0.accept_redirects = 1
net.ipv4.conf.virbr0.accept_source_route = 0
net.ipv4.conf.virbr0.arp_accept = 0
net.ipv4.conf.virbr0.arp_announce = 0
net.ipv4.conf.virbr0.arp_evict_nocarrier = 1
net.ipv4.conf.virbr0.arp_filter = 0
net.ipv4.conf.virbr0.arp_ignore = 0
net.ipv4.conf.virbr0.arp_notify = 0
net.ipv4.conf.virbr0.bc_forwarding = 0
net.ipv4.conf.virbr0.bootp_relay = 0
net.ipv4.conf.virbr0.disable_policy = 0
net.ipv4.conf.virbr0.disable_xfrm = 0
net.ipv4.conf.virbr0.drop_gratuitous_arp = 0
net.ipv4.conf.virbr0.drop_unicast_in_l2_multicast = 0
net.ipv4.conf.virbr0.force_igmp_version = 0
net.ipv4.conf.virbr0.forwarding = 1
net.ipv4.conf.virbr0.igmpv2_unsolicited_report_interval = 10000
net.ipv4.conf.virbr0.igmpv3_unsolicited_report_interval = 1000
net.ipv4.conf.virbr0.ignore_routes_with_linkdown = 0
net.ipv4.conf.virbr0.log_martians = 0
net.ipv4.conf.virbr0.mc_forwarding = 0
net.ipv4.conf.virbr0.medium_id = 0
net.ipv4.conf.virbr0.promote_secondaries = 1
net.ipv4.conf.virbr0.proxy_arp = 0
net.ipv4.conf.virbr0.proxy_arp_pvlan = 0
net.ipv4.conf.virbr0.route_localnet = 0
net.ipv4.conf.virbr0.rp_filter = 2
net.ipv4.conf.virbr0.secure_redirects = 1
net.ipv4.conf.virbr0.send_redirects = 1
net.ipv4.conf.virbr0.shared_media = 1
net.ipv4.conf.virbr0.src_valid_mark = 0
net.ipv4.conf.virbr0.tag = 0
net.ipv4.conf.wlp4s0.accept_local = 0
net.ipv4.conf.wlp4s0.accept_redirects = 1
net.ipv4.conf.wlp4s0.accept_source_route = 0
net.ipv4.conf.wlp4s0.arp_accept = 0
net.ipv4.conf.wlp4s0.arp_announce = 0
net.ipv4.conf.wlp4s0.arp_evict_nocarrier = 1
net.ipv4.conf.wlp4s0.arp_filter = 0
net.ipv4.conf.wlp4s0.arp_ignore = 0
net.ipv4.conf.wlp4s0.arp_notify = 0
net.ipv4.conf.wlp4s0.bc_forwarding = 0
net.ipv4.conf.wlp4s0.bootp_relay = 0
net.ipv4.conf.wlp4s0.disable_policy = 0
net.ipv4.conf.wlp4s0.disable_xfrm = 0
net.ipv4.conf.wlp4s0.drop_gratuitous_arp = 0
net.ipv4.conf.wlp4s0.drop_unicast_in_l2_multicast = 0
net.ipv4.conf.wlp4s0.force_igmp_version = 0
net.ipv4.conf.wlp4s0.forwarding = 1
net.ipv4.conf.wlp4s0.igmpv2_unsolicited_report_interval = 10000
net.ipv4.conf.wlp4s0.igmpv3_unsolicited_report_interval = 1000
net.ipv4.conf.wlp4s0.ignore_routes_with_linkdown = 0
net.ipv4.conf.wlp4s0.log_martians = 0
net.ipv4.conf.wlp4s0.mc_forwarding = 0
net.ipv4.conf.wlp4s0.medium_id = 0
net.ipv4.conf.wlp4s0.promote_secondaries = 1
net.ipv4.conf.wlp4s0.proxy_arp = 0
net.ipv4.conf.wlp4s0.proxy_arp_pvlan = 0
net.ipv4.conf.wlp4s0.route_localnet = 0
net.ipv4.conf.wlp4s0.rp_filter = 2
net.ipv4.conf.wlp4s0.secure_redirects = 1
net.ipv4.conf.wlp4s0.send_redirects = 1
net.ipv4.conf.wlp4s0.shared_media = 1
net.ipv4.conf.wlp4s0.src_valid_mark = 0
net.ipv4.conf.wlp4s0.tag = 0
net.ipv4.fib_multipath_hash_fields = 7
net.ipv4.fib_multipath_hash_policy = 0
net.ipv4.fib_multipath_use_neigh = 0
net.ipv4.fib_notify_on_flag_change = 0
net.ipv4.fib_sync_mem = 524288
net.ipv4.fwmark_reflect = 0
net.ipv4.icmp_echo_enable_probe = 0
net.ipv4.icmp_echo_ignore_all = 0
net.ipv4.icmp_echo_ignore_broadcasts = 1
net.ipv4.icmp_errors_use_inbound_ifaddr = 0
net.ipv4.icmp_ignore_bogus_error_responses = 1
net.ipv4.icmp_msgs_burst = 50
net.ipv4.icmp_msgs_per_sec = 1000
net.ipv4.icmp_ratelimit = 1000
net.ipv4.icmp_ratemask = 6168
net.ipv4.igmp_link_local_mcast_reports = 1
net.ipv4.igmp_max_memberships = 20
net.ipv4.igmp_max_msf = 10
net.ipv4.igmp_qrv = 2
net.ipv4.inet_peer_maxttl = 600
net.ipv4.inet_peer_minttl = 120
net.ipv4.inet_peer_threshold = 65664
net.ipv4.ip_autobind_reuse = 0
net.ipv4.ip_default_ttl = 64
net.ipv4.ip_dynaddr = 0
net.ipv4.ip_early_demux = 1
net.ipv4.ip_forward = 1
net.ipv4.ip_forward_update_priority = 1
net.ipv4.ip_forward_use_pmtu = 0
net.ipv4.ip_local_port_range = 32768	60999
net.ipv4.ip_local_reserved_ports = 
net.ipv4.ip_no_pmtu_disc = 0
net.ipv4.ip_nonlocal_bind = 0
net.ipv4.ip_unprivileged_port_start = 1024
net.ipv4.ipfrag_high_thresh = 4194304
net.ipv4.ipfrag_low_thresh = 3145728
net.ipv4.ipfrag_max_dist = 64
net.ipv4.ipfrag_secret_interval = 0
net.ipv4.ipfrag_time = 30
net.ipv4.neigh.default.anycast_delay = 100
net.ipv4.neigh.default.app_solicit = 0
net.ipv4.neigh.default.base_reachable_time_ms = 30000
net.ipv4.neigh.default.delay_first_probe_time = 5
net.ipv4.neigh.default.gc_interval = 30
net.ipv4.neigh.default.gc_stale_time = 60
net.ipv4.neigh.default.gc_thresh1 = 128
net.ipv4.neigh.default.gc_thresh2 = 512
net.ipv4.neigh.default.gc_thresh3 = 1024
net.ipv4.neigh.default.interval_probe_time_ms = 5000
net.ipv4.neigh.default.locktime = 100
net.ipv4.neigh.default.mcast_resolicit = 0
net.ipv4.neigh.default.mcast_solicit = 3
net.ipv4.neigh.default.proxy_delay = 80
net.ipv4.neigh.default.proxy_qlen = 64
net.ipv4.neigh.default.retrans_time_ms = 1000
net.ipv4.neigh.default.ucast_solicit = 3
net.ipv4.neigh.default.unres_qlen = 101
net.ipv4.neigh.default.unres_qlen_bytes = 212992
net.ipv4.neigh.enp0s31f6.anycast_delay = 100
net.ipv4.neigh.enp0s31f6.app_solicit = 0
net.ipv4.neigh.enp0s31f6.base_reachable_time_ms = 30000
net.ipv4.neigh.enp0s31f6.delay_first_probe_time = 5
net.ipv4.neigh.enp0s31f6.gc_stale_time = 60
net.ipv4.neigh.enp0s31f6.interval_probe_time_ms = 5000
net.ipv4.neigh.enp0s31f6.locktime = 100
net.ipv4.neigh.enp0s31f6.mcast_resolicit = 0
net.ipv4.neigh.enp0s31f6.mcast_solicit = 3
net.ipv4.neigh.enp0s31f6.proxy_delay = 80
net.ipv4.neigh.enp0s31f6.proxy_qlen = 64
net.ipv4.neigh.enp0s31f6.retrans_time_ms = 1000
net.ipv4.neigh.enp0s31f6.ucast_solicit = 3
net.ipv4.neigh.enp0s31f6.unres_qlen = 101
net.ipv4.neigh.enp0s31f6.unres_qlen_bytes = 212992
net.ipv4.neigh.lo.anycast_delay = 100
net.ipv4.neigh.lo.app_solicit = 0
net.ipv4.neigh.lo.base_reachable_time_ms = 30000
net.ipv4.neigh.lo.delay_first_probe_time = 5
net.ipv4.neigh.lo.gc_stale_time = 60
net.ipv4.neigh.lo.interval_probe_time_ms = 5000
net.ipv4.neigh.lo.locktime = 100
net.ipv4.neigh.lo.mcast_resolicit = 0
net.ipv4.neigh.lo.mcast_solicit = 3
net.ipv4.neigh.lo.proxy_delay = 80
net.ipv4.neigh.lo.proxy_qlen = 64
net.ipv4.neigh.lo.retrans_time_ms = 1000
net.ipv4.neigh.lo.ucast_solicit = 3
net.ipv4.neigh.lo.unres_qlen = 101
net.ipv4.neigh.lo.unres_qlen_bytes = 212992
net.ipv4.neigh.tun0.anycast_delay = 100
net.ipv4.neigh.tun0.app_solicit = 0
net.ipv4.neigh.tun0.base_reachable_time_ms = 30000
net.ipv4.neigh.tun0.delay_first_probe_time = 5
net.ipv4.neigh.tun0.gc_stale_time = 60
net.ipv4.neigh.tun0.interval_probe_time_ms = 5000
net.ipv4.neigh.tun0.locktime = 100
net.ipv4.neigh.tun0.mcast_resolicit = 0
net.ipv4.neigh.tun0.mcast_solicit = 3
net.ipv4.neigh.tun0.proxy_delay = 80
net.ipv4.neigh.tun0.proxy_qlen = 64
net.ipv4.neigh.tun0.retrans_time_ms = 1000
net.ipv4.neigh.tun0.ucast_solicit = 3
net.ipv4.neigh.tun0.unres_qlen = 101
net.ipv4.neigh.tun0.unres_qlen_bytes = 212992
net.ipv4.neigh.virbr0.anycast_delay = 100
net.ipv4.neigh.virbr0.app_solicit = 0
net.ipv4.neigh.virbr0.base_reachable_time_ms = 30000
net.ipv4.neigh.virbr0.delay_first_probe_time = 5
net.ipv4.neigh.virbr0.gc_stale_time = 60
net.ipv4.neigh.virbr0.interval_probe_time_ms = 5000
net.ipv4.neigh.virbr0.locktime = 100
net.ipv4.neigh.virbr0.mcast_resolicit = 0
net.ipv4.neigh.virbr0.mcast_solicit = 3
net.ipv4.neigh.virbr0.proxy_delay = 80
net.ipv4.neigh.virbr0.proxy_qlen = 64
net.ipv4.neigh.virbr0.retrans_time_ms = 1000
net.ipv4.neigh.virbr0.ucast_solicit = 3
net.ipv4.neigh.virbr0.unres_qlen = 101
net.ipv4.neigh.virbr0.unres_qlen_bytes = 212992
net.ipv4.neigh.wlp4s0.anycast_delay = 100
net.ipv4.neigh.wlp4s0.app_solicit = 0
net.ipv4.neigh.wlp4s0.base_reachable_time_ms = 30000
net.ipv4.neigh.wlp4s0.delay_first_probe_time = 5
net.ipv4.neigh.wlp4s0.gc_stale_time = 60
net.ipv4.neigh.wlp4s0.interval_probe_time_ms = 5000
net.ipv4.neigh.wlp4s0.locktime = 100
net.ipv4.neigh.wlp4s0.mcast_resolicit = 0
net.ipv4.neigh.wlp4s0.mcast_solicit = 3
net.ipv4.neigh.wlp4s0.proxy_delay = 80
net.ipv4.neigh.wlp4s0.proxy_qlen = 64
net.ipv4.neigh.wlp4s0.retrans_time_ms = 1000
net.ipv4.neigh.wlp4s0.ucast_solicit = 3
net.ipv4.neigh.wlp4s0.unres_qlen = 101
net.ipv4.neigh.wlp4s0.unres_qlen_bytes = 212992
net.ipv4.nexthop_compat_mode = 1
net.ipv4.ping_group_range = 0	2147483647
net.ipv4.raw_l3mdev_accept = 1
net.ipv4.route.error_burst = 5000
net.ipv4.route.error_cost = 1000
net.ipv4.route.gc_elasticity = 8
net.ipv4.route.gc_interval = 60
net.ipv4.route.gc_min_interval = 0
net.ipv4.route.gc_min_interval_ms = 500
net.ipv4.route.gc_thresh = -1
net.ipv4.route.gc_timeout = 300
net.ipv4.route.max_size = 2147483647
net.ipv4.route.min_adv_mss = 256
net.ipv4.route.min_pmtu = 552
net.ipv4.route.mtu_expires = 600
net.ipv4.route.redirect_load = 20
net.ipv4.route.redirect_number = 9
net.ipv4.route.redirect_silence = 20480
net.ipv4.tcp_abort_on_overflow = 0
net.ipv4.tcp_adv_win_scale = 1
net.ipv4.tcp_allowed_congestion_control = reno cubic
net.ipv4.tcp_app_win = 31
net.ipv4.tcp_autocorking = 1
net.ipv4.tcp_available_congestion_control = reno cubic
net.ipv4.tcp_available_ulp = espintcp mptcp
net.ipv4.tcp_base_mss = 1024
net.ipv4.tcp_challenge_ack_limit = 2147483647
net.ipv4.tcp_child_ehash_entries = 0
net.ipv4.tcp_comp_sack_delay_ns = 1000000
net.ipv4.tcp_comp_sack_nr = 44
net.ipv4.tcp_comp_sack_slack_ns = 100000
net.ipv4.tcp_congestion_control = cubic
net.ipv4.tcp_dsack = 1
net.ipv4.tcp_early_demux = 1
net.ipv4.tcp_early_retrans = 3
net.ipv4.tcp_ecn = 2
net.ipv4.tcp_ecn_fallback = 1
net.ipv4.tcp_ehash_entries = 65536
net.ipv4.tcp_fack = 0
net.ipv4.tcp_fastopen = 1
net.ipv4.tcp_fastopen_blackhole_timeout_sec = 0
net.ipv4.tcp_fastopen_key = 5b768f20-7ae5f60c-35336305-fe5cb91e
net.ipv4.tcp_fin_timeout = 60
net.ipv4.tcp_frto = 2
net.ipv4.tcp_fwmark_accept = 0
net.ipv4.tcp_invalid_ratelimit = 500
net.ipv4.tcp_keepalive_intvl = 75
net.ipv4.tcp_keepalive_probes = 9
net.ipv4.tcp_keepalive_time = 7200
net.ipv4.tcp_l3mdev_accept = 0
net.ipv4.tcp_limit_output_bytes = 1048576
net.ipv4.tcp_low_latency = 0
net.ipv4.tcp_max_orphans = 32768
net.ipv4.tcp_max_reordering = 300
net.ipv4.tcp_max_syn_backlog = 512
net.ipv4.tcp_max_tw_buckets = 32768
net.ipv4.tcp_mem = 91878	122504	183756
net.ipv4.tcp_migrate_req = 0
net.ipv4.tcp_min_rtt_wlen = 300
net.ipv4.tcp_min_snd_mss = 48
net.ipv4.tcp_min_tso_segs = 2
net.ipv4.tcp_moderate_rcvbuf = 1
net.ipv4.tcp_mtu_probe_floor = 48
net.ipv4.tcp_mtu_probing = 0
net.ipv4.tcp_no_metrics_save = 0
net.ipv4.tcp_no_ssthresh_metrics_save = 1
net.ipv4.tcp_notsent_lowat = 4294967295
net.ipv4.tcp_orphan_retries = 0
net.ipv4.tcp_pacing_ca_ratio = 120
net.ipv4.tcp_pacing_ss_ratio = 200
net.ipv4.tcp_plb_cong_thresh = 128
net.ipv4.tcp_plb_enabled = 0
net.ipv4.tcp_plb_idle_rehash_rounds = 3
net.ipv4.tcp_plb_rehash_rounds = 12
net.ipv4.tcp_plb_suspend_rto_sec = 60
net.ipv4.tcp_probe_interval = 600
net.ipv4.tcp_probe_threshold = 8
net.ipv4.tcp_recovery = 1
net.ipv4.tcp_reflect_tos = 0
net.ipv4.tcp_reordering = 3
net.ipv4.tcp_retrans_collapse = 1
net.ipv4.tcp_retries1 = 3
net.ipv4.tcp_retries2 = 15
net.ipv4.tcp_rfc1337 = 0
net.ipv4.tcp_rmem = 4096	131072	6291456
net.ipv4.tcp_sack = 1
net.ipv4.tcp_slow_start_after_idle = 1
net.ipv4.tcp_stdurg = 0
net.ipv4.tcp_syn_retries = 6
net.ipv4.tcp_synack_retries = 5
net.ipv4.tcp_syncookies = 1
net.ipv4.tcp_thin_linear_timeouts = 0
net.ipv4.tcp_timestamps = 1
net.ipv4.tcp_tso_rtt_log = 9
net.ipv4.tcp_tso_win_divisor = 3
net.ipv4.tcp_tw_reuse = 2
net.ipv4.tcp_window_scaling = 1
net.ipv4.tcp_wmem = 4096	16384	4194304
net.ipv4.tcp_workaround_signed_windows = 0
net.ipv4.udp_child_hash_entries = 0
net.ipv4.udp_early_demux = 1
net.ipv4.udp_hash_entries = 4096
net.ipv4.udp_l3mdev_accept = 0
net.ipv4.udp_mem = 183756	245008	367512
net.ipv4.udp_rmem_min = 4096
net.ipv4.udp_wmem_min = 4096
net.ipv4.xfrm4_gc_thresh = 32768
net.ipv6.anycast_src_echo_reply = 0
net.ipv6.auto_flowlabels = 1
net.ipv6.bindv6only = 0
net.ipv6.calipso_cache_bucket_size = 10
net.ipv6.calipso_cache_enable = 1
net.ipv6.conf.all.accept_dad = 0
net.ipv6.conf.all.accept_ra = 1
net.ipv6.conf.all.accept_ra_defrtr = 1
net.ipv6.conf.all.accept_ra_from_local = 0
net.ipv6.conf.all.accept_ra_min_hop_limit = 1
net.ipv6.conf.all.accept_ra_mtu = 1
net.ipv6.conf.all.accept_ra_pinfo = 1
net.ipv6.conf.all.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.all.accept_ra_rt_info_min_plen = 0
net.ipv6.conf.all.accept_ra_rtr_pref = 1
net.ipv6.conf.all.accept_redirects = 1
net.ipv6.conf.all.accept_source_route = 0
net.ipv6.conf.all.accept_untracked_na = 0
net.ipv6.conf.all.addr_gen_mode = 0
net.ipv6.conf.all.autoconf = 1
net.ipv6.conf.all.dad_transmits = 1
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.all.disable_policy = 0
net.ipv6.conf.all.drop_unicast_in_l2_multicast = 0
net.ipv6.conf.all.drop_unsolicited_na = 0
net.ipv6.conf.all.enhanced_dad = 1
net.ipv6.conf.all.force_mld_version = 0
net.ipv6.conf.all.force_tllao = 0
net.ipv6.conf.all.forwarding = 0
net.ipv6.conf.all.hop_limit = 64
net.ipv6.conf.all.ignore_routes_with_linkdown = 0
net.ipv6.conf.all.ioam6_enabled = 0
net.ipv6.conf.all.ioam6_id = 65535
net.ipv6.conf.all.ioam6_id_wide = 4294967295
net.ipv6.conf.all.keep_addr_on_down = 0
net.ipv6.conf.all.max_addresses = 16
net.ipv6.conf.all.max_desync_factor = 600
net.ipv6.conf.all.mc_forwarding = 0
net.ipv6.conf.all.mldv1_unsolicited_report_interval = 10000
net.ipv6.conf.all.mldv2_unsolicited_report_interval = 1000
net.ipv6.conf.all.mtu = 1280
net.ipv6.conf.all.ndisc_evict_nocarrier = 1
net.ipv6.conf.all.ndisc_notify = 0
net.ipv6.conf.all.ndisc_tclass = 0
net.ipv6.conf.all.optimistic_dad = 0
net.ipv6.conf.all.proxy_ndp = 0
net.ipv6.conf.all.ra_defrtr_metric = 1024
net.ipv6.conf.all.regen_max_retry = 3
net.ipv6.conf.all.router_probe_interval = 60
net.ipv6.conf.all.router_solicitation_delay = 1
net.ipv6.conf.all.router_solicitation_interval = 4
net.ipv6.conf.all.router_solicitation_max_interval = 3600
net.ipv6.conf.all.router_solicitations = -1
net.ipv6.conf.all.rpl_seg_enabled = 0
net.ipv6.conf.all.seg6_enabled = 0
net.ipv6.conf.all.seg6_require_hmac = 0
net.ipv6.conf.all.suppress_frag_ndisc = 1
net.ipv6.conf.all.temp_prefered_lft = 86400
net.ipv6.conf.all.temp_valid_lft = 604800
net.ipv6.conf.all.use_oif_addrs_only = 0
net.ipv6.conf.all.use_optimistic = 0
net.ipv6.conf.all.use_tempaddr = 0
net.ipv6.conf.default.accept_dad = 1
net.ipv6.conf.default.accept_ra = 1
net.ipv6.conf.default.accept_ra_defrtr = 1
net.ipv6.conf.default.accept_ra_from_local = 0
net.ipv6.conf.default.accept_ra_min_hop_limit = 1
net.ipv6.conf.default.accept_ra_mtu = 1
net.ipv6.conf.default.accept_ra_pinfo = 1
net.ipv6.conf.default.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.default.accept_ra_rt_info_min_plen = 0
net.ipv6.conf.default.accept_ra_rtr_pref = 1
net.ipv6.conf.default.accept_redirects = 1
net.ipv6.conf.default.accept_source_route = 0
net.ipv6.conf.default.accept_untracked_na = 0
net.ipv6.conf.default.addr_gen_mode = 0
net.ipv6.conf.default.autoconf = 1
net.ipv6.conf.default.dad_transmits = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.default.disable_policy = 0
net.ipv6.conf.default.drop_unicast_in_l2_multicast = 0
net.ipv6.conf.default.drop_unsolicited_na = 0
net.ipv6.conf.default.enhanced_dad = 1
net.ipv6.conf.default.force_mld_version = 0
net.ipv6.conf.default.force_tllao = 0
net.ipv6.conf.default.forwarding = 0
net.ipv6.conf.default.hop_limit = 64
net.ipv6.conf.default.ignore_routes_with_linkdown = 0
net.ipv6.conf.default.ioam6_enabled = 0
net.ipv6.conf.default.ioam6_id = 65535
net.ipv6.conf.default.ioam6_id_wide = 4294967295
net.ipv6.conf.default.keep_addr_on_down = 0
net.ipv6.conf.default.max_addresses = 16
net.ipv6.conf.default.max_desync_factor = 600
net.ipv6.conf.default.mc_forwarding = 0
net.ipv6.conf.default.mldv1_unsolicited_report_interval = 10000
net.ipv6.conf.default.mldv2_unsolicited_report_interval = 1000
net.ipv6.conf.default.mtu = 1280
net.ipv6.conf.default.ndisc_evict_nocarrier = 1
net.ipv6.conf.default.ndisc_notify = 0
net.ipv6.conf.default.ndisc_tclass = 0
net.ipv6.conf.default.optimistic_dad = 0
net.ipv6.conf.default.proxy_ndp = 0
net.ipv6.conf.default.ra_defrtr_metric = 1024
net.ipv6.conf.default.regen_max_retry = 3
net.ipv6.conf.default.router_probe_interval = 60
net.ipv6.conf.default.router_solicitation_delay = 1
net.ipv6.conf.default.router_solicitation_interval = 4
net.ipv6.conf.default.router_solicitation_max_interval = 3600
net.ipv6.conf.default.router_solicitations = -1
net.ipv6.conf.default.rpl_seg_enabled = 0
net.ipv6.conf.default.seg6_enabled = 0
net.ipv6.conf.default.seg6_require_hmac = 0
net.ipv6.conf.default.suppress_frag_ndisc = 1
net.ipv6.conf.default.temp_prefered_lft = 86400
net.ipv6.conf.default.temp_valid_lft = 604800
net.ipv6.conf.default.use_oif_addrs_only = 0
net.ipv6.conf.default.use_optimistic = 0
net.ipv6.conf.default.use_tempaddr = 0
net.ipv6.conf.enp0s31f6.accept_dad = 1
net.ipv6.conf.enp0s31f6.accept_ra = 0
net.ipv6.conf.enp0s31f6.accept_ra_defrtr = 1
net.ipv6.conf.enp0s31f6.accept_ra_from_local = 0
net.ipv6.conf.enp0s31f6.accept_ra_min_hop_limit = 1
net.ipv6.conf.enp0s31f6.accept_ra_mtu = 1
net.ipv6.conf.enp0s31f6.accept_ra_pinfo = 1
net.ipv6.conf.enp0s31f6.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.enp0s31f6.accept_ra_rt_info_min_plen = 0
net.ipv6.conf.enp0s31f6.accept_ra_rtr_pref = 1
net.ipv6.conf.enp0s31f6.accept_redirects = 1
net.ipv6.conf.enp0s31f6.accept_source_route = 0
net.ipv6.conf.enp0s31f6.accept_untracked_na = 0
net.ipv6.conf.enp0s31f6.addr_gen_mode = 1
net.ipv6.conf.enp0s31f6.autoconf = 1
net.ipv6.conf.enp0s31f6.dad_transmits = 1
net.ipv6.conf.enp0s31f6.disable_ipv6 = 0
net.ipv6.conf.enp0s31f6.disable_policy = 0
net.ipv6.conf.enp0s31f6.drop_unicast_in_l2_multicast = 0
net.ipv6.conf.enp0s31f6.drop_unsolicited_na = 0
net.ipv6.conf.enp0s31f6.enhanced_dad = 1
net.ipv6.conf.enp0s31f6.force_mld_version = 0
net.ipv6.conf.enp0s31f6.force_tllao = 0
net.ipv6.conf.enp0s31f6.forwarding = 0
net.ipv6.conf.enp0s31f6.hop_limit = 64
net.ipv6.conf.enp0s31f6.ignore_routes_with_linkdown = 0
net.ipv6.conf.enp0s31f6.ioam6_enabled = 0
net.ipv6.conf.enp0s31f6.ioam6_id = 65535
net.ipv6.conf.enp0s31f6.ioam6_id_wide = 4294967295
net.ipv6.conf.enp0s31f6.keep_addr_on_down = 0
net.ipv6.conf.enp0s31f6.max_addresses = 16
net.ipv6.conf.enp0s31f6.max_desync_factor = 600
net.ipv6.conf.enp0s31f6.mc_forwarding = 0
net.ipv6.conf.enp0s31f6.mldv1_unsolicited_report_interval = 10000
net.ipv6.conf.enp0s31f6.mldv2_unsolicited_report_interval = 1000
net.ipv6.conf.enp0s31f6.mtu = 1500
net.ipv6.conf.enp0s31f6.ndisc_evict_nocarrier = 1
net.ipv6.conf.enp0s31f6.ndisc_notify = 0
net.ipv6.conf.enp0s31f6.ndisc_tclass = 0
net.ipv6.conf.enp0s31f6.optimistic_dad = 0
net.ipv6.conf.enp0s31f6.proxy_ndp = 0
net.ipv6.conf.enp0s31f6.ra_defrtr_metric = 1024
net.ipv6.conf.enp0s31f6.regen_max_retry = 3
net.ipv6.conf.enp0s31f6.router_probe_interval = 60
net.ipv6.conf.enp0s31f6.router_solicitation_delay = 1
net.ipv6.conf.enp0s31f6.router_solicitation_interval = 4
net.ipv6.conf.enp0s31f6.router_solicitation_max_interval = 3600
net.ipv6.conf.enp0s31f6.router_solicitations = -1
net.ipv6.conf.enp0s31f6.rpl_seg_enabled = 0
net.ipv6.conf.enp0s31f6.seg6_enabled = 0
net.ipv6.conf.enp0s31f6.seg6_require_hmac = 0
net.ipv6.conf.enp0s31f6.suppress_frag_ndisc = 1
net.ipv6.conf.enp0s31f6.temp_prefered_lft = 86400
net.ipv6.conf.enp0s31f6.temp_valid_lft = 604800
net.ipv6.conf.enp0s31f6.use_oif_addrs_only = 0
net.ipv6.conf.enp0s31f6.use_optimistic = 0
net.ipv6.conf.enp0s31f6.use_tempaddr = 0
net.ipv6.conf.lo.accept_dad = -1
net.ipv6.conf.lo.accept_ra = 0
net.ipv6.conf.lo.accept_ra_defrtr = 1
net.ipv6.conf.lo.accept_ra_from_local = 0
net.ipv6.conf.lo.accept_ra_min_hop_limit = 1
net.ipv6.conf.lo.accept_ra_mtu = 1
net.ipv6.conf.lo.accept_ra_pinfo = 1
net.ipv6.conf.lo.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.lo.accept_ra_rt_info_min_plen = 0
net.ipv6.conf.lo.accept_ra_rtr_pref = 1
net.ipv6.conf.lo.accept_redirects = 1
net.ipv6.conf.lo.accept_source_route = 0
net.ipv6.conf.lo.accept_untracked_na = 0
net.ipv6.conf.lo.addr_gen_mode = 1
net.ipv6.conf.lo.autoconf = 1
net.ipv6.conf.lo.dad_transmits = 1
net.ipv6.conf.lo.disable_ipv6 = 0
net.ipv6.conf.lo.disable_policy = 0
net.ipv6.conf.lo.drop_unicast_in_l2_multicast = 0
net.ipv6.conf.lo.drop_unsolicited_na = 0
net.ipv6.conf.lo.enhanced_dad = 1
net.ipv6.conf.lo.force_mld_version = 0
net.ipv6.conf.lo.force_tllao = 0
net.ipv6.conf.lo.forwarding = 0
net.ipv6.conf.lo.hop_limit = 64
net.ipv6.conf.lo.ignore_routes_with_linkdown = 0
net.ipv6.conf.lo.ioam6_enabled = 0
net.ipv6.conf.lo.ioam6_id = 65535
net.ipv6.conf.lo.ioam6_id_wide = 4294967295
net.ipv6.conf.lo.keep_addr_on_down = 0
net.ipv6.conf.lo.max_addresses = 16
net.ipv6.conf.lo.max_desync_factor = 600
net.ipv6.conf.lo.mc_forwarding = 0
net.ipv6.conf.lo.mldv1_unsolicited_report_interval = 10000
net.ipv6.conf.lo.mldv2_unsolicited_report_interval = 1000
net.ipv6.conf.lo.mtu = 65536
net.ipv6.conf.lo.ndisc_evict_nocarrier = 1
net.ipv6.conf.lo.ndisc_notify = 0
net.ipv6.conf.lo.ndisc_tclass = 0
net.ipv6.conf.lo.optimistic_dad = 0
net.ipv6.conf.lo.proxy_ndp = 0
net.ipv6.conf.lo.ra_defrtr_metric = 1024
net.ipv6.conf.lo.regen_max_retry = 3
net.ipv6.conf.lo.router_probe_interval = 60
net.ipv6.conf.lo.router_solicitation_delay = 1
net.ipv6.conf.lo.router_solicitation_interval = 4
net.ipv6.conf.lo.router_solicitation_max_interval = 3600
net.ipv6.conf.lo.router_solicitations = -1
net.ipv6.conf.lo.rpl_seg_enabled = 0
net.ipv6.conf.lo.seg6_enabled = 0
net.ipv6.conf.lo.seg6_require_hmac = 0
net.ipv6.conf.lo.suppress_frag_ndisc = 1
net.ipv6.conf.lo.temp_prefered_lft = 86400
net.ipv6.conf.lo.temp_valid_lft = 604800
net.ipv6.conf.lo.use_oif_addrs_only = 0
net.ipv6.conf.lo.use_optimistic = 0
net.ipv6.conf.lo.use_tempaddr = 0
net.ipv6.conf.tun0.accept_dad = -1
net.ipv6.conf.tun0.accept_ra = 1
net.ipv6.conf.tun0.accept_ra_defrtr = 1
net.ipv6.conf.tun0.accept_ra_from_local = 0
net.ipv6.conf.tun0.accept_ra_min_hop_limit = 1
net.ipv6.conf.tun0.accept_ra_mtu = 1
net.ipv6.conf.tun0.accept_ra_pinfo = 1
net.ipv6.conf.tun0.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.tun0.accept_ra_rt_info_min_plen = 0
net.ipv6.conf.tun0.accept_ra_rtr_pref = 1
net.ipv6.conf.tun0.accept_redirects = 1
net.ipv6.conf.tun0.accept_source_route = 0
net.ipv6.conf.tun0.accept_untracked_na = 0
net.ipv6.conf.tun0.addr_gen_mode = 0
net.ipv6.conf.tun0.autoconf = 1
net.ipv6.conf.tun0.dad_transmits = 1
net.ipv6.conf.tun0.disable_ipv6 = 1
net.ipv6.conf.tun0.disable_policy = 0
net.ipv6.conf.tun0.drop_unicast_in_l2_multicast = 0
net.ipv6.conf.tun0.drop_unsolicited_na = 0
net.ipv6.conf.tun0.enhanced_dad = 1
net.ipv6.conf.tun0.force_mld_version = 0
net.ipv6.conf.tun0.force_tllao = 0
net.ipv6.conf.tun0.forwarding = 0
net.ipv6.conf.tun0.hop_limit = 64
net.ipv6.conf.tun0.ignore_routes_with_linkdown = 0
net.ipv6.conf.tun0.ioam6_enabled = 0
net.ipv6.conf.tun0.ioam6_id = 65535
net.ipv6.conf.tun0.ioam6_id_wide = 4294967295
net.ipv6.conf.tun0.keep_addr_on_down = 0
net.ipv6.conf.tun0.max_addresses = 16
net.ipv6.conf.tun0.max_desync_factor = 600
net.ipv6.conf.tun0.mc_forwarding = 0
net.ipv6.conf.tun0.mldv1_unsolicited_report_interval = 10000
net.ipv6.conf.tun0.mldv2_unsolicited_report_interval = 1000
net.ipv6.conf.tun0.mtu = 1500
net.ipv6.conf.tun0.ndisc_evict_nocarrier = 1
net.ipv6.conf.tun0.ndisc_notify = 0
net.ipv6.conf.tun0.ndisc_tclass = 0
net.ipv6.conf.tun0.optimistic_dad = 0
net.ipv6.conf.tun0.proxy_ndp = 0
net.ipv6.conf.tun0.ra_defrtr_metric = 1024
net.ipv6.conf.tun0.regen_max_retry = 3
net.ipv6.conf.tun0.router_probe_interval = 60
net.ipv6.conf.tun0.router_solicitation_delay = 1
net.ipv6.conf.tun0.router_solicitation_interval = 4
net.ipv6.conf.tun0.router_solicitation_max_interval = 3600
net.ipv6.conf.tun0.router_solicitations = -1
net.ipv6.conf.tun0.rpl_seg_enabled = 0
net.ipv6.conf.tun0.seg6_enabled = 0
net.ipv6.conf.tun0.seg6_require_hmac = 0
net.ipv6.conf.tun0.suppress_frag_ndisc = 1
net.ipv6.conf.tun0.temp_prefered_lft = 86400
net.ipv6.conf.tun0.temp_valid_lft = 604800
net.ipv6.conf.tun0.use_oif_addrs_only = 0
net.ipv6.conf.tun0.use_optimistic = 0
net.ipv6.conf.tun0.use_tempaddr = -1
net.ipv6.conf.virbr0.accept_dad = 1
net.ipv6.conf.virbr0.accept_ra = 0
net.ipv6.conf.virbr0.accept_ra_defrtr = 1
net.ipv6.conf.virbr0.accept_ra_from_local = 0
net.ipv6.conf.virbr0.accept_ra_min_hop_limit = 1
net.ipv6.conf.virbr0.accept_ra_mtu = 1
net.ipv6.conf.virbr0.accept_ra_pinfo = 1
net.ipv6.conf.virbr0.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.virbr0.accept_ra_rt_info_min_plen = 0
net.ipv6.conf.virbr0.accept_ra_rtr_pref = 1
net.ipv6.conf.virbr0.accept_redirects = 1
net.ipv6.conf.virbr0.accept_source_route = 0
net.ipv6.conf.virbr0.accept_untracked_na = 0
net.ipv6.conf.virbr0.addr_gen_mode = 0
net.ipv6.conf.virbr0.autoconf = 0
net.ipv6.conf.virbr0.dad_transmits = 1
net.ipv6.conf.virbr0.disable_ipv6 = 1
net.ipv6.conf.virbr0.disable_policy = 0
net.ipv6.conf.virbr0.drop_unicast_in_l2_multicast = 0
net.ipv6.conf.virbr0.drop_unsolicited_na = 0
net.ipv6.conf.virbr0.enhanced_dad = 1
net.ipv6.conf.virbr0.force_mld_version = 0
net.ipv6.conf.virbr0.force_tllao = 0
net.ipv6.conf.virbr0.forwarding = 0
net.ipv6.conf.virbr0.hop_limit = 64
net.ipv6.conf.virbr0.ignore_routes_with_linkdown = 0
net.ipv6.conf.virbr0.ioam6_enabled = 0
net.ipv6.conf.virbr0.ioam6_id = 65535
net.ipv6.conf.virbr0.ioam6_id_wide = 4294967295
net.ipv6.conf.virbr0.keep_addr_on_down = 0
net.ipv6.conf.virbr0.max_addresses = 16
net.ipv6.conf.virbr0.max_desync_factor = 600
net.ipv6.conf.virbr0.mc_forwarding = 0
net.ipv6.conf.virbr0.mldv1_unsolicited_report_interval = 10000
net.ipv6.conf.virbr0.mldv2_unsolicited_report_interval = 1000
net.ipv6.conf.virbr0.mtu = 1500
net.ipv6.conf.virbr0.ndisc_evict_nocarrier = 1
net.ipv6.conf.virbr0.ndisc_notify = 0
net.ipv6.conf.virbr0.ndisc_tclass = 0
net.ipv6.conf.virbr0.optimistic_dad = 0
net.ipv6.conf.virbr0.proxy_ndp = 0
net.ipv6.conf.virbr0.ra_defrtr_metric = 1024
net.ipv6.conf.virbr0.regen_max_retry = 3
net.ipv6.conf.virbr0.router_probe_interval = 60
net.ipv6.conf.virbr0.router_solicitation_delay = 1
net.ipv6.conf.virbr0.router_solicitation_interval = 4
net.ipv6.conf.virbr0.router_solicitation_max_interval = 3600
net.ipv6.conf.virbr0.router_solicitations = -1
net.ipv6.conf.virbr0.rpl_seg_enabled = 0
net.ipv6.conf.virbr0.seg6_enabled = 0
net.ipv6.conf.virbr0.seg6_require_hmac = 0
net.ipv6.conf.virbr0.suppress_frag_ndisc = 1
net.ipv6.conf.virbr0.temp_prefered_lft = 86400
net.ipv6.conf.virbr0.temp_valid_lft = 604800
net.ipv6.conf.virbr0.use_oif_addrs_only = 0
net.ipv6.conf.virbr0.use_optimistic = 0
net.ipv6.conf.virbr0.use_tempaddr = 0
net.ipv6.conf.wlp4s0.accept_dad = 1
net.ipv6.conf.wlp4s0.accept_ra = 0
net.ipv6.conf.wlp4s0.accept_ra_defrtr = 1
net.ipv6.conf.wlp4s0.accept_ra_from_local = 0
net.ipv6.conf.wlp4s0.accept_ra_min_hop_limit = 1
net.ipv6.conf.wlp4s0.accept_ra_mtu = 1
net.ipv6.conf.wlp4s0.accept_ra_pinfo = 1
net.ipv6.conf.wlp4s0.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.wlp4s0.accept_ra_rt_info_min_plen = 0
net.ipv6.conf.wlp4s0.accept_ra_rtr_pref = 1
net.ipv6.conf.wlp4s0.accept_redirects = 1
net.ipv6.conf.wlp4s0.accept_source_route = 0
net.ipv6.conf.wlp4s0.accept_untracked_na = 0
net.ipv6.conf.wlp4s0.addr_gen_mode = 1
net.ipv6.conf.wlp4s0.autoconf = 1
net.ipv6.conf.wlp4s0.dad_transmits = 1
net.ipv6.conf.wlp4s0.disable_ipv6 = 1
net.ipv6.conf.wlp4s0.disable_policy = 0
net.ipv6.conf.wlp4s0.drop_unicast_in_l2_multicast = 0
net.ipv6.conf.wlp4s0.drop_unsolicited_na = 0
net.ipv6.conf.wlp4s0.enhanced_dad = 1
net.ipv6.conf.wlp4s0.force_mld_version = 0
net.ipv6.conf.wlp4s0.force_tllao = 0
net.ipv6.conf.wlp4s0.forwarding = 0
net.ipv6.conf.wlp4s0.hop_limit = 64
net.ipv6.conf.wlp4s0.ignore_routes_with_linkdown = 0
net.ipv6.conf.wlp4s0.ioam6_enabled = 0
net.ipv6.conf.wlp4s0.ioam6_id = 65535
net.ipv6.conf.wlp4s0.ioam6_id_wide = 4294967295
net.ipv6.conf.wlp4s0.keep_addr_on_down = 0
net.ipv6.conf.wlp4s0.max_addresses = 16
net.ipv6.conf.wlp4s0.max_desync_factor = 600
net.ipv6.conf.wlp4s0.mc_forwarding = 0
net.ipv6.conf.wlp4s0.mldv1_unsolicited_report_interval = 10000
net.ipv6.conf.wlp4s0.mldv2_unsolicited_report_interval = 1000
net.ipv6.conf.wlp4s0.mtu = 1500
net.ipv6.conf.wlp4s0.ndisc_evict_nocarrier = 1
net.ipv6.conf.wlp4s0.ndisc_notify = 0
net.ipv6.conf.wlp4s0.ndisc_tclass = 0
net.ipv6.conf.wlp4s0.optimistic_dad = 0
net.ipv6.conf.wlp4s0.proxy_ndp = 0
net.ipv6.conf.wlp4s0.ra_defrtr_metric = 1024
net.ipv6.conf.wlp4s0.regen_max_retry = 3
net.ipv6.conf.wlp4s0.router_probe_interval = 60
net.ipv6.conf.wlp4s0.router_solicitation_delay = 1
net.ipv6.conf.wlp4s0.router_solicitation_interval = 4
net.ipv6.conf.wlp4s0.router_solicitation_max_interval = 3600
net.ipv6.conf.wlp4s0.router_solicitations = -1
net.ipv6.conf.wlp4s0.rpl_seg_enabled = 0
net.ipv6.conf.wlp4s0.seg6_enabled = 0
net.ipv6.conf.wlp4s0.seg6_require_hmac = 0
net.ipv6.conf.wlp4s0.suppress_frag_ndisc = 1
net.ipv6.conf.wlp4s0.temp_prefered_lft = 86400
net.ipv6.conf.wlp4s0.temp_valid_lft = 604800
net.ipv6.conf.wlp4s0.use_oif_addrs_only = 0
net.ipv6.conf.wlp4s0.use_optimistic = 0
net.ipv6.conf.wlp4s0.use_tempaddr = 0
net.ipv6.fib_multipath_hash_fields = 7
net.ipv6.fib_multipath_hash_policy = 0
net.ipv6.fib_notify_on_flag_change = 0
net.ipv6.flowlabel_consistency = 1
net.ipv6.flowlabel_reflect = 0
net.ipv6.flowlabel_state_ranges = 0
net.ipv6.fwmark_reflect = 0
net.ipv6.icmp.echo_ignore_all = 0
net.ipv6.icmp.echo_ignore_anycast = 0
net.ipv6.icmp.echo_ignore_multicast = 0
net.ipv6.icmp.error_anycast_as_unicast = 0
net.ipv6.icmp.ratelimit = 1000
net.ipv6.icmp.ratemask = 0-1,3-127
net.ipv6.idgen_delay = 1
net.ipv6.idgen_retries = 3
net.ipv6.ioam6_id = 16777215
net.ipv6.ioam6_id_wide = 72057594037927935
net.ipv6.ip6frag_high_thresh = 4194304
net.ipv6.ip6frag_low_thresh = 3145728
net.ipv6.ip6frag_secret_interval = 0
net.ipv6.ip6frag_time = 60
net.ipv6.ip_nonlocal_bind = 0
net.ipv6.max_dst_opts_length = 2147483647
net.ipv6.max_dst_opts_number = 8
net.ipv6.max_hbh_length = 2147483647
net.ipv6.max_hbh_opts_number = 8
net.ipv6.mld_max_msf = 64
net.ipv6.mld_qrv = 2
net.ipv6.neigh.default.anycast_delay = 100
net.ipv6.neigh.default.app_solicit = 0
net.ipv6.neigh.default.base_reachable_time_ms = 30000
net.ipv6.neigh.default.delay_first_probe_time = 5
net.ipv6.neigh.default.gc_interval = 30
net.ipv6.neigh.default.gc_stale_time = 60
net.ipv6.neigh.default.gc_thresh1 = 128
net.ipv6.neigh.default.gc_thresh2 = 512
net.ipv6.neigh.default.gc_thresh3 = 1024
net.ipv6.neigh.default.interval_probe_time_ms = 5000
net.ipv6.neigh.default.locktime = 0
net.ipv6.neigh.default.mcast_resolicit = 0
net.ipv6.neigh.default.mcast_solicit = 3
net.ipv6.neigh.default.proxy_delay = 80
net.ipv6.neigh.default.proxy_qlen = 64
net.ipv6.neigh.default.retrans_time_ms = 1000
net.ipv6.neigh.default.ucast_solicit = 3
net.ipv6.neigh.default.unres_qlen = 101
net.ipv6.neigh.default.unres_qlen_bytes = 212992
net.ipv6.neigh.enp0s31f6.anycast_delay = 100
net.ipv6.neigh.enp0s31f6.app_solicit = 0
net.ipv6.neigh.enp0s31f6.base_reachable_time_ms = 30000
net.ipv6.neigh.enp0s31f6.delay_first_probe_time = 5
net.ipv6.neigh.enp0s31f6.gc_stale_time = 60
net.ipv6.neigh.enp0s31f6.interval_probe_time_ms = 5000
net.ipv6.neigh.enp0s31f6.locktime = 0
net.ipv6.neigh.enp0s31f6.mcast_resolicit = 0
net.ipv6.neigh.enp0s31f6.mcast_solicit = 3
net.ipv6.neigh.enp0s31f6.proxy_delay = 80
net.ipv6.neigh.enp0s31f6.proxy_qlen = 64
net.ipv6.neigh.enp0s31f6.retrans_time_ms = 1000
net.ipv6.neigh.enp0s31f6.ucast_solicit = 3
net.ipv6.neigh.enp0s31f6.unres_qlen = 101
net.ipv6.neigh.enp0s31f6.unres_qlen_bytes = 212992
net.ipv6.neigh.lo.anycast_delay = 100
net.ipv6.neigh.lo.app_solicit = 0
net.ipv6.neigh.lo.base_reachable_time_ms = 30000
net.ipv6.neigh.lo.delay_first_probe_time = 5
net.ipv6.neigh.lo.gc_stale_time = 60
net.ipv6.neigh.lo.interval_probe_time_ms = 5000
net.ipv6.neigh.lo.locktime = 0
net.ipv6.neigh.lo.mcast_resolicit = 0
net.ipv6.neigh.lo.mcast_solicit = 3
net.ipv6.neigh.lo.proxy_delay = 80
net.ipv6.neigh.lo.proxy_qlen = 64
net.ipv6.neigh.lo.retrans_time_ms = 1000
net.ipv6.neigh.lo.ucast_solicit = 3
net.ipv6.neigh.lo.unres_qlen = 101
net.ipv6.neigh.lo.unres_qlen_bytes = 212992
net.ipv6.neigh.tun0.anycast_delay = 100
net.ipv6.neigh.tun0.app_solicit = 0
net.ipv6.neigh.tun0.base_reachable_time_ms = 30000
net.ipv6.neigh.tun0.delay_first_probe_time = 5
net.ipv6.neigh.tun0.gc_stale_time = 60
net.ipv6.neigh.tun0.interval_probe_time_ms = 5000
net.ipv6.neigh.tun0.locktime = 0
net.ipv6.neigh.tun0.mcast_resolicit = 0
net.ipv6.neigh.tun0.mcast_solicit = 3
net.ipv6.neigh.tun0.proxy_delay = 80
net.ipv6.neigh.tun0.proxy_qlen = 64
net.ipv6.neigh.tun0.retrans_time_ms = 1000
net.ipv6.neigh.tun0.ucast_solicit = 3
net.ipv6.neigh.tun0.unres_qlen = 101
net.ipv6.neigh.tun0.unres_qlen_bytes = 212992
net.ipv6.neigh.virbr0.anycast_delay = 100
net.ipv6.neigh.virbr0.app_solicit = 0
net.ipv6.neigh.virbr0.base_reachable_time_ms = 30000
net.ipv6.neigh.virbr0.delay_first_probe_time = 5
net.ipv6.neigh.virbr0.gc_stale_time = 60
net.ipv6.neigh.virbr0.interval_probe_time_ms = 5000
net.ipv6.neigh.virbr0.locktime = 0
net.ipv6.neigh.virbr0.mcast_resolicit = 0
net.ipv6.neigh.virbr0.mcast_solicit = 3
net.ipv6.neigh.virbr0.proxy_delay = 80
net.ipv6.neigh.virbr0.proxy_qlen = 64
net.ipv6.neigh.virbr0.retrans_time_ms = 1000
net.ipv6.neigh.virbr0.ucast_solicit = 3
net.ipv6.neigh.virbr0.unres_qlen = 101
net.ipv6.neigh.virbr0.unres_qlen_bytes = 212992
net.ipv6.neigh.wlp4s0.anycast_delay = 100
net.ipv6.neigh.wlp4s0.app_solicit = 0
net.ipv6.neigh.wlp4s0.base_reachable_time_ms = 30000
net.ipv6.neigh.wlp4s0.delay_first_probe_time = 5
net.ipv6.neigh.wlp4s0.gc_stale_time = 60
net.ipv6.neigh.wlp4s0.interval_probe_time_ms = 5000
net.ipv6.neigh.wlp4s0.locktime = 0
net.ipv6.neigh.wlp4s0.mcast_resolicit = 0
net.ipv6.neigh.wlp4s0.mcast_solicit = 3
net.ipv6.neigh.wlp4s0.proxy_delay = 80
net.ipv6.neigh.wlp4s0.proxy_qlen = 64
net.ipv6.neigh.wlp4s0.retrans_time_ms = 1000
net.ipv6.neigh.wlp4s0.ucast_solicit = 3
net.ipv6.neigh.wlp4s0.unres_qlen = 101
net.ipv6.neigh.wlp4s0.unres_qlen_bytes = 212992
net.ipv6.route.gc_elasticity = 9
net.ipv6.route.gc_interval = 30
net.ipv6.route.gc_min_interval = 0
net.ipv6.route.gc_min_interval_ms = 500
net.ipv6.route.gc_thresh = 1024
net.ipv6.route.gc_timeout = 60
net.ipv6.route.max_size = 2147483647
net.ipv6.route.min_adv_mss = 1220
net.ipv6.route.mtu_expires = 600
net.ipv6.route.skip_notify_on_dev_down = 0
net.ipv6.seg6_flowlabel = 0
net.ipv6.xfrm6_gc_thresh = 32768
net.mptcp.add_addr_timeout = 120
net.mptcp.allow_join_initial_addr_port = 1
net.mptcp.checksum_enabled = 0
net.mptcp.enabled = 1
net.mptcp.pm_type = 0
net.mptcp.stale_loss_cnt = 4
net.netfilter.nf_conntrack_acct = 0
net.netfilter.nf_conntrack_buckets = 262144
net.netfilter.nf_conntrack_checksum = 1
net.netfilter.nf_conntrack_count = 21
net.netfilter.nf_conntrack_dccp_loose = 1
net.netfilter.nf_conntrack_dccp_timeout_closereq = 64
net.netfilter.nf_conntrack_dccp_timeout_closing = 64
net.netfilter.nf_conntrack_dccp_timeout_open = 43200
net.netfilter.nf_conntrack_dccp_timeout_partopen = 480
net.netfilter.nf_conntrack_dccp_timeout_request = 240
net.netfilter.nf_conntrack_dccp_timeout_respond = 480
net.netfilter.nf_conntrack_dccp_timeout_timewait = 240
net.netfilter.nf_conntrack_events = 2
net.netfilter.nf_conntrack_expect_max = 4096
net.netfilter.nf_conntrack_frag6_high_thresh = 4194304
net.netfilter.nf_conntrack_frag6_low_thresh = 3145728
net.netfilter.nf_conntrack_frag6_timeout = 60
net.netfilter.nf_conntrack_generic_timeout = 600
net.netfilter.nf_conntrack_gre_timeout = 30
net.netfilter.nf_conntrack_gre_timeout_stream = 180
net.netfilter.nf_conntrack_icmp_timeout = 30
net.netfilter.nf_conntrack_icmpv6_timeout = 30
net.netfilter.nf_conntrack_log_invalid = 0
net.netfilter.nf_conntrack_max = 262144
net.netfilter.nf_conntrack_sctp_timeout_closed = 10
net.netfilter.nf_conntrack_sctp_timeout_cookie_echoed = 3
net.netfilter.nf_conntrack_sctp_timeout_cookie_wait = 3
net.netfilter.nf_conntrack_sctp_timeout_established = 210
net.netfilter.nf_conntrack_sctp_timeout_heartbeat_sent = 30
net.netfilter.nf_conntrack_sctp_timeout_shutdown_ack_sent = 3
net.netfilter.nf_conntrack_sctp_timeout_shutdown_recd = 0
net.netfilter.nf_conntrack_sctp_timeout_shutdown_sent = 0
net.netfilter.nf_conntrack_tcp_be_liberal = 0
net.netfilter.nf_conntrack_tcp_ignore_invalid_rst = 0
net.netfilter.nf_conntrack_tcp_loose = 1
net.netfilter.nf_conntrack_tcp_max_retrans = 3
net.netfilter.nf_conntrack_tcp_timeout_close = 10
net.netfilter.nf_conntrack_tcp_timeout_close_wait = 60
net.netfilter.nf_conntrack_tcp_timeout_established = 432000
net.netfilter.nf_conntrack_tcp_timeout_fin_wait = 120
net.netfilter.nf_conntrack_tcp_timeout_last_ack = 30
net.netfilter.nf_conntrack_tcp_timeout_max_retrans = 300
net.netfilter.nf_conntrack_tcp_timeout_syn_recv = 60
net.netfilter.nf_conntrack_tcp_timeout_syn_sent = 120
net.netfilter.nf_conntrack_tcp_timeout_time_wait = 120
net.netfilter.nf_conntrack_tcp_timeout_unacknowledged = 300
net.netfilter.nf_conntrack_timestamp = 0
net.netfilter.nf_conntrack_udp_timeout = 30
net.netfilter.nf_conntrack_udp_timeout_stream = 120
net.netfilter.nf_flowtable_tcp_timeout = 30
net.netfilter.nf_flowtable_udp_timeout = 30
net.netfilter.nf_hooks_lwtunnel = 0
net.netfilter.nf_log.0 = NONE
net.netfilter.nf_log.1 = NONE
net.netfilter.nf_log.10 = NONE
net.netfilter.nf_log.2 = NONE
net.netfilter.nf_log.3 = NONE
net.netfilter.nf_log.4 = NONE
net.netfilter.nf_log.5 = NONE
net.netfilter.nf_log.6 = NONE
net.netfilter.nf_log.7 = NONE
net.netfilter.nf_log.8 = NONE
net.netfilter.nf_log.9 = NONE
net.netfilter.nf_log_all_netns = 0
net.nf_conntrack_max = 262144
net.unix.max_dgram_qlen = 512
sunrpc.max_resvport = 1023
sunrpc.min_resvport = 665
sunrpc.nfs_debug = 0x0000
sunrpc.nfsd_debug = 0x0000
sunrpc.nlm_debug = 0x0000
sunrpc.rpc_debug = 0x0000
sunrpc.tcp_fin_timeout = 15
sunrpc.tcp_max_slot_table_entries = 65536
sunrpc.tcp_slot_table_entries = 2
sunrpc.transports = tcp 1048576
sunrpc.transports = udp 32768
sunrpc.udp_slot_table_entries = 16
user.max_cgroup_namespaces = 31021
user.max_fanotify_groups = 128
user.max_fanotify_marks = 64337
user.max_inotify_instances = 128
user.max_inotify_watches = 60507
user.max_ipc_namespaces = 31021
user.max_mnt_namespaces = 31021
user.max_net_namespaces = 31021
user.max_pid_namespaces = 31021
user.max_time_namespaces = 31021
user.max_user_namespaces = 31021
user.max_uts_namespaces = 31021
vm.admin_reserve_kbytes = 8192
vm.compact_unevictable_allowed = 1
vm.compaction_proactiveness = 20
vm.dirty_background_bytes = 0
vm.dirty_background_ratio = 10
vm.dirty_bytes = 0
vm.dirty_expire_centisecs = 6000
vm.dirty_ratio = 20
vm.dirty_writeback_centisecs = 6000
vm.dirtytime_expire_seconds = 43200
vm.extfrag_threshold = 500
vm.hugetlb_optimize_vmemmap = 0
vm.hugetlb_shm_group = 0
vm.laptop_mode = 2
vm.legacy_va_layout = 0
vm.lowmem_reserve_ratio = 256	256	32	0	0
vm.max_map_count = 65530
vm.memfd_noexec = 0
vm.memory_failure_early_kill = 0
vm.memory_failure_recovery = 1
vm.min_free_kbytes = 67584
vm.min_slab_ratio = 5
vm.min_unmapped_ratio = 1
vm.mmap_min_addr = 65536
vm.mmap_rnd_bits = 28
vm.mmap_rnd_compat_bits = 8
vm.nr_hugepages = 0
vm.nr_hugepages_mempolicy = 0
vm.nr_overcommit_hugepages = 0
vm.numa_stat = 1
vm.numa_zonelist_order = Node
vm.oom_dump_tasks = 1
vm.oom_kill_allocating_task = 0
vm.overcommit_kbytes = 0
vm.overcommit_memory = 0
vm.overcommit_ratio = 50
vm.page-cluster = 3
vm.page_lock_unfairness = 5
vm.panic_on_oom = 0
vm.percpu_pagelist_high_fraction = 0
vm.stat_interval = 1
vm.swappiness = 60
vm.unprivileged_userfaultfd = 1
vm.user_reserve_kbytes = 131072
vm.vfs_cache_pressure = 100
vm.watermark_boost_factor = 15000
vm.watermark_scale_factor = 10
vm.zone_reclaim_mode = 0