File size: 279,485 Bytes
65ecef2 422c8bf 65ecef2 422c8bf 65ecef2 422c8bf 65ecef2 422c8bf 65ecef2 422c8bf 65ecef2 | 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 | model_key,display_model,manufacturer,tech,eos,eol,ruggedization,modem_type,device_type,poe,wifi,wan_ports,lan_ports,ethernet_ports,serial_ports,missing_fields,source_docs
1002CMF4OUS,1002-CMF4-OUS,Digi,4G,2024,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
2100LE2SP,2100LE2-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2014,2019,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
2100LEVZF,2100LE-VZF,Ericsson Enterprise Wireless (Cradlepoint),4G,2014,2019,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
2100LP2EUF,2100LP2-EUF,Ericsson Enterprise Wireless (Cradlepoint),4G,2014,2019,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
2100LP2UKF,2100LP2-UKF,Ericsson Enterprise Wireless (Cradlepoint),4G,2014,2019,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
2100LP3AU,2100LP3-AU,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
2100LP3EU,2100LP3-EU,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
2100LP3UK,2100LP3-UK,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
2100LP5AU,2100LP5-AU,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
2100LP5UK,2100LP5-UK,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
2100LP6EU,2100LP6-EU,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
2100LP6NA,2100LP6-NA,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
2100LP6UK,2100LP6-UK,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
2100LPATF,2100LP-ATF,Ericsson Enterprise Wireless (Cradlepoint),4G,2014,2019,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
2100LPEAT,2100LPE-AT,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
2100LPEGN,2100LPE-GN,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
2100LPESP,2100LPE-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
2100LPEVZ,2100LPE-VZ,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
2100LPF,2100LP-F,Ericsson Enterprise Wireless (Cradlepoint),4G,2014,2019,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
3GHWIC,3GHWIC,Cisco,4G,2012,2017,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
3GHWIC4GLTE20EHWIC,3G HWIC & 4G LTE 2.0 EHWIC,Cisco,4G,2017,2024,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
4GLTE20EHWIC,4GLTE2.0EHWIC,Cisco,4G,2019,2024,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
4GLTEEHWICISRG2,4G LTE EHWIC (ISR G2),Cisco,4G,2019,2024,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
4GLTEEHWICMODULESISR,4G LTE EHWIC MODULES (ISR,Cisco,4G,2019,2024,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
6300CX,6300-CX,Digi (Accelerated Concepts),4G,2022,2024,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
6300DX,6300-DX,Digi (Accelerated Concepts),4G,2022,2024,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
6300MX,6300-MX,Digi (Accelerated Concepts),4G,2022,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
809HARDENDED,809 Hardended,Cisco,4G,2021,2025,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
819HARDENDEDHSPAEVDO,819 Hardended (HSPA+/EVDO),Cisco,4G,2016,2021,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
819INTEGRATEDROUTER4G,819 Integrated Router (4G),Cisco,4G,2019,2024,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
829INDUSTRIALROUTER,829 Industrial Router,Cisco,4G,2023,2028,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
881G,881G,Cisco,4G,2019,2024,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
887,887,Cisco,4G,2019,2024,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
896,896,Cisco,4G,2019,2024,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
897,897,Cisco,4G,2019,2024,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AANT060017,AANT060017,,,,,,"bluetooth antenna, X feet (Y meters)",Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
AANT100007,AANT100007,,,,,,"5 in 1 antenna, 2 Wi-Fi, 2 cellular and 1 GPS wiring cable X meter",Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACC00003,ACC00003,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACC00005,ACC00005,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACC00014,ACC00014,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACM5000,ACM5000 family (ACM5004-LR-E etc),,,,,Appliance for closets/cabinets; EOL family per Opengear notices,3G / 4G LTE (model dependent) for out-of-band access,Router,,none,Ethernet uplink (10/100 or 1GbE depends on SKU),Ethernet + console access ports (serial/USB),Ethernet uplink (10/100 or 1GbE depends on SKU),yes (serial console ports),poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
ACM5004LRE,ACM5004-LR-E,Opengear,4G,2016,2021,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
ACM5500,ACM5500 family (ACM5504-5-LR-I etc),,,,,Legacy appliance family listed as EOL by Opengear,4G LTE (carrier-certified variants existed) for out-of-band access,Router,,none,Ethernet uplink (varies) plus cellular backup,Ethernet plus serial console ports (varies by model),Ethernet uplink (varies) plus cellular backup,yes,poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
ACM55045LRI,ACM5504-5-LR-I,Opengear,4G,2016,2021,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
ACM70042LA,ACM7004-2-LA,Opengear,4G,2017,2021,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
ACM70042LR,ACM7004-2-LR,Opengear,4G,2017,2021,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
ACM70042LV,ACM7004-2-LV,Opengear,4G,2017,2021,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
ACM70042LX,ACM7004-2-Lx family (ACM7004-2-LA/LR/LV etc),,,,,Compact appliance for remote cabinets; supports Smart OOB features,4G LTE modem on -L variants (carrier-specific LA/LV/LR); some have 3G fallback,Router,,none,2x 1GbE Ethernet (NET1/NET2),2x 1GbE Ethernet (NET1/NET2),2x 1GbE Ethernet (NET1/NET2),yes (4 serial console ports),poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
ACW102,ACW-102,,,,,,,Unknown,yes,,,,,,"ruggedization, modem_type, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW107AU,ACW-107-AU,,,,,,,Unknown,yes,,,,,,"ruggedization, modem_type, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW107EU,ACW-107-EU,,,,,,,Unknown,yes,,,,,,"ruggedization, modem_type, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW107UK,ACW-107-UK,,,,,,,Unknown,yes,,,,,,"ruggedization, modem_type, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW107US,ACW-107-US,,,,,,,Unknown,yes,,,,,,"ruggedization, modem_type, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW109,ACW-109,,,,,,,Unknown,yes,,,,,,"ruggedization, modem_type, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW123,ACW-123,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW202,ACW-202,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW205,ACW-205,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW221,ACW-221,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW232,ACW-232,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW234,ACW-234,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW235,ACW-235,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW304,ACW-304,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW308,ACW-308,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW340,ACW-340,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW341,ACW-341,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW342,ACW-342,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW382,ACW-382,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW384,ACW-384,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW405,ACW-405,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW406,ACW-406,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW409,ACW-409,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW410,ACW-410,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW411,ACW-411,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW511,ACW-511,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW512,ACW-512,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW601AU,ACW-601-AU,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW601EU,ACW-601-EU,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW601UK,ACW-601-UK,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW601US,ACW-601-US,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW602AU,ACW-602-AU,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW602EU,ACW-602-EU,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW602UK,ACW-602-UK,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW602US,ACW-602-US,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW609AU,ACW-609-AU,,,,,,,Unknown,yes,,,,,,"ruggedization, modem_type, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW609EU,ACW-609-EU,,,,,,,Unknown,yes,,,,,,"ruggedization, modem_type, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW609UK,ACW-609-UK,,,,,,,Unknown,yes,,,,,,"ruggedization, modem_type, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW609US,ACW-609-US,,,,,,,Unknown,yes,,,,,,"ruggedization, modem_type, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW614AU,ACW-614-AU,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW614EU,ACW-614-EU,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW614UK,ACW-614-UK,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW614US,ACW-614-US,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW618AU,ACW-618-AU,,,,,,,Unknown,yes,,,,,,"ruggedization, modem_type, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW618EU,ACW-618-EU,,,,,,,Unknown,yes,,,,,,"ruggedization, modem_type, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW618UK,ACW-618-UK,,,,,,,Unknown,yes,,,,,,"ruggedization, modem_type, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW618US,ACW-618-US,,,,,,,Unknown,yes,,,,,,"ruggedization, modem_type, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW622AU,ACW-622-AU,,,,,,,Unknown,yes,,,,,,"ruggedization, modem_type, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW622EU,ACW-622-EU,,,,,,,Unknown,yes,,,,,,"ruggedization, modem_type, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW622UK,ACW-622-UK,,,,,,,Unknown,yes,,,,,,"ruggedization, modem_type, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW622US,ACW-622-US,,,,,,,Unknown,yes,,,,,,"ruggedization, modem_type, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW630AU,ACW-630-AU,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW630EU,ACW-630-EU,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW630UK,ACW-630-UK,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW630US,ACW-630-US,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW632AU,ACW-632-AU,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW632EU,ACW-632-EU,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW632UK,ACW-632-UK,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW632US,ACW-632-US,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW634,ACW-634,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW635AU,ACW-635-AU,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW635EU,ACW-635-EU,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW635UK,ACW-635-UK,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW635US,ACW-635-US,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW643,ACW-643,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW648,ACW-648,,,,,ip67,,Unknown,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW649,ACW-649,,,,,ip67,,Unknown,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW650,ACW-650,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW651,ACW-651,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW652,ACW-652,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW653,ACW-653,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW663AU,ACW-663-AU,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW663EU,ACW-663-EU,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW663UK,ACW-663-UK,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW663US,ACW-663-US,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW667,ACW-667,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW668,ACW-668,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW673US,ACW-673-US,,,,,,,Accessory,yes,,,,,,"ruggedization, modem_type, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW674US,ACW-674-US,,,,,,,Accessory,yes,,,,,,"ruggedization, modem_type, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW699EU,ACW-699-EU,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW699UK,ACW-699-UK,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW699US,ACW-699-US,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW721,ACW-721,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW722,ACW-722,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW724,ACW-724,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW731,ACW-731,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW736,ACW-736,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW739,ACW-739,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW741,ACW-741,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW743,ACW-743,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW748,ACW-748,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW749,ACW-749,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW782,ACW-782,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW791,ACW-791,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW801,ACW-801,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW808,ACW-808,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW813,ACW-813,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW815,ACW-815,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW816,ACW-816,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW825,ACW-825,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW835,ACW-835,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW853,ACW-853,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW854,ACW-854,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW881,ACW-881,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ACW882,ACW-882,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ADAPTER6001394,12V DC Vehicle Power Adapter,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ADAPTOR6001112,SharkFin Mag Mount Adaptor,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ADAPTOR6001113,Dome Mag Mount Adaptor,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ADAPTOR6001252,RV-GX Mounting bracket adaptor,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ADAPTOR6001456,XR-MG Mounting bracket adaptor,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ADAPTOR6001505,Dual Sharkfin Mag Mount Adaptor,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
AER1600LP4,AER1600LP4,Ericsson Enterprise Wireless (Cradlepoint),4G,2021,2026,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER1600LP5,AER1600LP5,Ericsson Enterprise Wireless (Cradlepoint),4G,2021,2026,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER1600LP6,AER1600LP6,Ericsson Enterprise Wireless (Cradlepoint),4G,2021,2026,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER1600LPEAT,AER1600LPE-AT,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER1600LPEGN,AER1600LPE-GN,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER1600LPESP,AER1600LPE-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER1600LPEVZ,AER1600LPE-VZ,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER1600NM,AER1600NM,Ericsson Enterprise Wireless (Cradlepoint),4G,2021,2026,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER1650LP4,AER1650LP4,Ericsson Enterprise Wireless (Cradlepoint),4G,2021,2026,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER1650LP5,AER1650LP5,Ericsson Enterprise Wireless (Cradlepoint),4G,2021,2026,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER1650LP6,AER1650LP6,Ericsson Enterprise Wireless (Cradlepoint),4G,2021,2026,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER1650LPEAT,AER1650LPE-AT,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER1650LPEGN,AER1650LPE-GN,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER1650LPESP,AER1650LPE-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER1650LPEVZ,AER1650LPE-VZ,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER1650NM,AER1650NM,Ericsson Enterprise Wireless (Cradlepoint),4G,2021,2026,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER2200,LTE Advanced Pro (1200Mbps) modem upgrade for Branch. Includes AER2200 doors and 4 black antennas,,,,,,Modems,Accessory,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
AER22001200M,AER2200-1200M,Ericsson Enterprise Wireless (Cradlepoint),4G,2020,2025,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER22001200MBAP,AER2200-1200M-B-AP,Ericsson Enterprise Wireless (Cradlepoint),4G,2022,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER22001200MBEU,AER2200-1200M-B-EU,Ericsson Enterprise Wireless (Cradlepoint),4G,2022,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER22001200MBNA,AER2200-1200M-B-NA,Ericsson Enterprise Wireless (Cradlepoint),4G,2022,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER2200600MAP,AER2200-600M-AP,Ericsson Enterprise Wireless (Cradlepoint),4G,2022,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER2200600MEU,AER2200-600M-EU,Ericsson Enterprise Wireless (Cradlepoint),4G,2022,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER2200600MNA,AER2200-600M-NA,Ericsson Enterprise Wireless (Cradlepoint),4G,2022,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER3100LP3AU,AER3100LP3-AU,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER3100LP3EU,AER3100LP3-EU,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER3100LP3UK,AER3100LP3-UK,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER3100LP5AU,AER3100LP5-AU,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER3100LP5UK,AER3100LP5-UK,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER3100LP6EU,AER3100LP6-EU,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER3100LP6NA,AER3100LP6-NA,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER3100LP6UK,AER3100LP6-UK,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER3100LPEAT,AER3100LPE-AT,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER3100LPEGN,AER3100LPE-GN,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER3100LPESP,AER3100LPE-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER3100LPEVZ,AER3100LPE-VZ,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER3150LP3AU,AER3150LP3-AU,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER3150LP3EU,AER3150LP3-EU,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER3150LP3UK,AER3150LP3-UK,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER3150LP5AU,AER3150LP5-AU,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER3150LP6EU,AER3150LP6-EU,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER3150LP6NA,AER3150LP6-NA,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER3150LP6UK,AER3150LP6-UK,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER3150LPEAT,AER3150LPE-AT,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER3150LPEGN,AER3150LPE-GN,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER3150LPESP,AER3150LPE-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AER3150LPEVZ,AER3150LPE-VZ,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
AMERICA1104071,NORTH AMERICA,,,,,,LTE-Advanced Pro / HSPA+,Unknown,,,,,LTE-Advanced Pro / HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
AMERICA1104073,NORTH AMERICA,,,,,,LTE-Advanced Pro / HSPA+,Unknown,,,,,LTE-Advanced Pro / HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
AMERICA1104302,NORTH AMERICA,,,,,,LTE-Advanced Pro / HSPA+,Unknown,,,,,LTE-Advanced Pro / HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
AMERICA1104303,NORTH AMERICA,,,,,,LTE-Advanced Pro / HSPA+,Unknown,,,,,LTE-Advanced Pro / HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
AMERICA1104335,NORTH AMERICA,,,,,,LTE/HSPA+,Unknown,,,,,LTE/HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
AMERICA1104493,NORTH AMERICA,,,,,,LTE/HSPA+,Unknown,,,,,LTE/HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
AMERICA1104572,NORTH AMERICA,,,,,,LTE/HSPA+,Unknown,,,,,LTE/HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
AMERICA1104573,NORTH AMERICA,,,,,,LTE/HSPA+,Unknown,,,,,LTE/HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
AMERICA1104579,NORTH AMERICA,,,,,,LTE/HSPA+,Unknown,,,,,LTE/HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
AMERICA1104580,NORTH AMERICA,,,,,,LTE/HSPA+,Unknown,,,,,LTE/HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
AMERICA1104927,NORTH AMERICA,,,,,,LTE-Advanced / HSPA+,Unknown,,,,,LTE-Advanced / HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
AMERICA1104928,NORTH AMERICA,,,,,,LTE-Advanced / HSPA+,Unknown,,,,,LTE-Advanced / HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
AMERICA1104934,NORTH AMERICA,,,,,,LTE-Advanced / HSPA+,Unknown,,,,,LTE-Advanced / HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
AMERICA1105213,NORTH AMERICA,,,,,,5G Sub-6/LTE,Unknown,,,,,5G Sub-6/LTE,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
AMERICA1105218,NORTH AMERICA,,,,,,5G Sub-6/LTE,Unknown,,,,,5G Sub-6/LTE,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
AMERICA1105223,NORTH AMERICA,,,,,,5G Sub-6/LTE,Unknown,,,,,5G Sub-6/LTE,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
ANT00036,ANT00036,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ANT00050,ANT00050,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ANTENNA6001110,Paddle 4G Cellular Antenna,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ANTENNA6001343,Paddle 5G/4G Cellular Antenna,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ANTENNA649496,ANTENNA649496,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
AP2600,"1-yr NetCloud Wi-Fi AP Essentials Plan, and AP2600 Wi-Fi 6 2x2 AP, no power supply, Global",,,,,,(blank),Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
APAC1103045,APAC,,,,,,LTE-Advanced / HSPA+,Unknown,,,,,LTE-Advanced / HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
APAC1104929,EMEA-APAC,,,,,,LTE-Advanced / HSPA+,Unknown,,,,,LTE-Advanced / HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
APAC1104930,EMEA-APAC,,,,,,LTE-Advanced / HSPA+,Unknown,,,,,LTE-Advanced / HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
APAC1104933,EMEA-APAC,,,,,,LTE-Advanced / HSPA+,Unknown,,,,,LTE-Advanced / HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
ARCXCI55AX,Verizon Internet Gateway ARC-XCI55AX,,,,,,5G gateway (web-sourced model index),Router,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ASBEX15WC18GLB,ASB-EX15-WC18-GLB,Digi,4G,2024,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
ASBEX15WX04OUS,ASB-EX15-WX04-OUS,Digi,4G,2024,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
ASBEX15WX06GLB,ASB-EX15-WX06-GLB,Digi,4G,2024,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
ASBEX15WX06OUS,ASB-EX15-WX06-OUS,Digi,4G,2024,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
ASBEX15WX11OUS,ASB-EX15-WX11-OUS,Digi,4G,2024,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
ASBEX15XX04OUS,ASB-EX15-XX04-OUS,Digi,4G,2024,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
ASBEX15XX06OUS,ASB-EX15-XX06-OUS,Digi,4G,2024,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
ASBEX15XX07OUS,ASB-EX15-XX07-OUS,Digi,4G,2024,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
ASBEX15XX11OUS,ASB-EX15-XX11-OUS,Digi,4G,2024,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
ASBEX15XX18OUS1,ASB-EX15-XX18-OUS-1,Digi,4G,2024,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
ASBEX15XXG4GLB,ASB-EX15-XXG4-GLB,Digi,4G,2024,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
ASKNCM1100,Verizon Home Internet Router ASK-NCM1100,,,,,,5G gateway (web-sourced model index),Router,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ASKNCM1100E,Verizon Business Internet Gateway ASK-NCM1100E (Crown),,,,,,5G gateway (web-sourced model index),Router,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ASKNCQ1338,Verizon Internet Gateway ASK-NCQ1338,,,,,,5G gateway (web-sourced model index),Router,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ASKNCQ1338E,Verizon Internet Gateway for Business ASK-NCQ1338E,,,,,,5G gateway (web-sourced model index),Router,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
ASKNCQ1338FA,Verizon Internet Gateway ASK-NCQ1338FA,,,,,,5G gateway (web-sourced model index),Router,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B011Y,ETC-B01-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B012Y,ETC-B01-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B014Y,ETC-B01-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B021Y,ETC-B02-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B022Y,ETC-B02-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B024Y,ETC-B02-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B031Y,ETC-B03-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B032Y,ETC-B03-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B034Y,ETC-B03-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B041Y,ETC-B04-1Y,,,,,ip67,,Unknown,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B042Y,ETC-B04-2Y,,,,,ip67,,Unknown,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B044Y,ETC-B04-4Y,,,,,ip67,,Unknown,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B051Y,ETC-B05-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B052Y,ETC-B05-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B054Y,ETC-B05-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B061Y,ETC-B06-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B062Y,ETC-B06-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B064Y,ETC-B06-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B071Y,ETC-B07-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B072Y,ETC-B07-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B074Y,ETC-B07-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B07US,MTE-LAT6-B07-US,,,,,Indoor / light cabinet,LTE Cat 4 bridge (carrier-specific model variants),Router,,none,Cellular WAN; 1x Ethernet handoff (10/100),1x Ethernet (10/100),Cellular WAN; 1x Ethernet handoff (10/100),no,poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
B07WW,MTR-MNG2-B07-WW,,,,,Industrial router platform; check rCell 100 series docs,LTE Cat M1 / NB‚ÄëIoT dual-mode with 2G fallback (per rCell 100 series datasheet),Router,,Wi‚ÄëFi present on -B10 models; none on -B07 models,Ethernet handoff (rCell 100 series); verify port count in ordering guide,Ethernet handoff,Ethernet handoff (rCell 100 series); verify port count in ordering guide,unknown,poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
B081Y,ETC-B08-1Y,,,,,ip67,,Unknown,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B082Y,ETC-B08-2Y,,,,,ip67,,Unknown,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B084Y,ETC-B08-4Y,,,,,ip67,,Unknown,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B091Y,ETC-B09-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B092Y,ETC-B09-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B094Y,ETC-B09-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B101Y,ETC-B10-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B102Y,ETC-B10-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B104Y,ETC-B10-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B10WW,MTR-MNG2-B10-WW,,,,,Industrial router platform; check rCell 100 series docs,LTE Cat M1 / NB‚ÄëIoT dual-mode with 2G fallback (per rCell 100 series datasheet),Router,,Wi‚ÄëFi present on -B10 models; none on -B07 models,Ethernet handoff (rCell 100 series); verify port count in ordering guide,Ethernet handoff,Ethernet handoff (rCell 100 series); verify port count in ordering guide,unknown,poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
B111Y,ETC-B11-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B112Y,ETC-B11-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B114Y,ETC-B11-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B121Y,ETC-B12-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B122Y,ETC-B12-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B124Y,ETC-B12-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
B16EUGB,MTR-G3-B16-EU-GB,,,,,Industrial temp range; check exact rCell 100 hardware guide,LTE Cat 4 (3GPP Rel 10) with 3G/2G fallback; dual SIM (3FF micro) per datasheet,Router,,none,"2x 10/100 Base‚ÄëT Ethernet (one WAN, one LAN)",2x 10/100 Base‚ÄëT Ethernet,"2x 10/100 Base‚ÄëT Ethernet (one WAN, one LAN)",yes,poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
B20X,EXM-MINI-1VDSL,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BALANCE20,ECP-B-1Y,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BALANCE20X,EXM-MINI-LTEA-US,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BALANCE30,ECP-D-1Y,,,,,ip67,,Accessory,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BALANCE310,PEC-E-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BE0118505GCGN,W1850 1YR Essentials,,,,,N/A (indoor adapter),5G NR (FR1 low/mid) + 4G LTE Cat 20,Router,,none,2x 2.5GbE RJ45 (LAN/WAN switchable),2x 2.5GbE RJ45 (LAN/WAN switchable),2x 2.5GbE RJ45 (LAN/WAN switchable),no,poe,feb2026routers.csv
BE0318505GCGN,W1855 3YR Essentials,,,,,IP67; corrosion resistance; -30°C to 70°C; 135 MPH wind rating,5G FR1 NSA/SA (3GPP Rel 16) + 4G LTE Cat 19 (dual connectivity),Router,,none,2x 2.5 GbE RJ45 (LAN/WAN switchable),2x 2.5 GbE RJ45 (LAN/WAN switchable),2x 2.5 GbE RJ45 (LAN/WAN switchable),no,poe,feb2026routers.csv
BK56,EXM-SIM-BK56,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BK561Y,SVL-EXM-SIM-BK56-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BK562Y,SVL-EXM-SIM-BK56-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BK564Y,ECP-EXM-SIM-BK56-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BL01E4005GEAMN,E400,,,,,unknown (IP rating + housing material not listed),5G SA/NSA (sub-6) + 4G LTE Cat 20,Router,,"Wi-Fi 7 (tri-band 2.4/5/6 GHz, 2x2 MU-MIMO)",5x 2.5GbE RJ45 (LAN/WAN switchable),5x 2.5GbE RJ45 (LAN/WAN switchable),5x 2.5GbE RJ45 (LAN/WAN switchable),no,poe,feb2026routers.csv
BLACK305MM,"COR Extensibility Cable, SATA-DB9 Black 305mm; Used with IBR900, IBR600C/IBR650C, R500-PLTE",,,,,,(blank),Accessory,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001119,"3in1 SharkFin Antenna - 2xLTE, GNSS, Bolt Mount, 4m, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001120,"2in1 SharkFin Antenna - 2xLTE, Bolt Mount, 4m, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001124,"2in1 Panel Antenna - 2xLTE, Bolt Mount, 3m, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001125,"3in1 Panel Antenna - 2xLTE, GNSS, Bolt Mount, 3m, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001197,"6in1 SharkFin Antenna - 2xLTE, GNSS, 3xWi-Fi, 2.4/5GHz, Bolt Mount, 4m, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001199,"3in1 SharkFin Wi-Fi Antenna - 3xWi-Fi, 2.4/5GHz, Bolt Mount, 4m, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001200,"3in1 BAT Antenna - 2xLTE, GNSS, Adhesive Mount, 3m, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001201,"4in1 BAT Antenna - 2xLTE, GNSS, 1xWi-Fi, 2.4/5GHz, Adhesive Mount, 3m, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001211,"3in1 Panel Antenna - 2xLTE, GNSS, Bolt Mount, 1m, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001219,"2in1 Panel Antenna - 2xLTE, Bolt Mount, 1m, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001275,"5in1 Dome Antenna - 2xLTE, GNSS, (1+1)Wi-Fi, 2.4/5GHz, Bolt Mount, 5m, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001283,"3in1 Wi-Fi Antenna - 3xWi-Fi, 2.4/5GHz, Bolt Mount, 4m, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001285,"4in1 Panel Antenna - 2xLTE, GNSS, 1xWi-Fi, 2.4/5GHz, Bolt Mount, 2m, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001351,"4in1 Wi-Fi Antenna - 4xWi-Fi 2.4/5GHz, Bolt Mount, 4m, Fakra, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001354,"10in1 Dome Antenna - 4x5G/LTE, GNSS, 5xWi-Fi 2.4/5GHz, Bolt Mount, 5m, Fakra, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001364,"6in1 Dome Antenna - 2x5G/4G, GNSS, 3xWi-Fi, 2.4/5GHz, Bolt Mount, 5m, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001399,"9in1 Dome Antenna - 4x5G/LTE, GNSS, 4xWi-Fi 2.4/5GHz, Bolt Mount, 5m, Fakra, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001432,"5in1 Flat Panel Antenna - 4x5G, GNSS, Adhesive Mount, 3m, FAKRA, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001442,"9in1 Dual Sharkfin Antenna - 4x5G/LTE, GNSS, 4xWi-Fi 2.4/5GHz, Bolt Mount, 4m, Fakra, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001443,"5in1 Dome Antenna - 4x5G/LTE, GNSS, Bolt Mount, 5m, Fakra, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001444,"10in1 Dual Sharkfin Antenna - 4x5G/LTE, GNSS, 5xWi-Fi 2.4/5GHz, Bolt Mount, 4m, Fakra, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001446,"5in1 Dual Sharkfin Antenna - 4x5G/LTE, GNSS, Bolt Mount, 4m, Fakra, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001454,"3in1 Panel Antenna - 2x5G/LTE, GNSS, Bolt Mount, 2m, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001455,"5in1 Panel Antenna - 2x5G/LTE, GNSS, 2xWi-Fi 2.4/5GHz, Bolt Mount, 2m, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001511,"7in1 Dual Sharkfin Antenna - 4x5G/LTE,GNSS L1/L5,2xWiFi 2.4/5GHz, Bolt Mount, 4m, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001512,"5in1 Dual Sharkfin Antenna - 4x5G/LTE, GNSS L1/L5, Bolt Mount, 4m, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001517,"7in1 Industrial Antenna - 4x5G/LTE, GNSS L1/L5, 2xWiFi 2.4/5GHz, Bolt Mount, 2m, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001518,"5in1 Industrial Antenna - 4x5G/LTE, GNSS L1/L5, Bolt Mount, 2m, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001530,"4in1 SharkFin Antenna - 2xLTE, GNSS, 1xWi-Fi, 2.4/5GHz, Bolt Mount, 4m, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001539,"5in1 Long Industrial Antenna - 4x5G/LTE, GNSS L1/L5, Bolt Mount, 2m, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001540,"7in1 Long Industrial Antenna - 4x5G/LTE, GNSS L1/L5, 2.4/5GHz, Bolt Mount, 2m, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001545,"7in1 Reef Sharkfin Antenna - 4x5G/LTE,GNSS L1/L5,2xWiFi 2.4/5GHz, Bolt Mount, 4m, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001546,"5in1 Reef Sharkfin Antenna - 4x5G/LTE, GNSS L1/L5, Bolt Mount, 4m, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001547,"5in1 Flat Panel Antenna - 4x5G, GNSS L1/L5, Adhesive Mount, 3m, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BLACK6001548,"7in1 Flat Panel Antenna - 4x5G, GNSS L1/L5, 2xWiFi 2.4/5GHz, Adhesive Mount, 3m, Black",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPC100,BPC100,,,,,,Verizon,Accessory,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL021XLTEUST,BPL-021X-LTE-US-T,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
BPL031LTEAWT,BPL-031-LTEA-W-T,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
BPL031LTEUST,BPL-031-LTE-US-T,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
BPL1350ECPRM,BPL-1350-EC-PRM,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL1351Y,ECP-BPL-135-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL1352Y,ECP-BPL-135-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL1354Y,ECP-BPL-135-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL2101Y,ECP-BPL-210-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL2102Y,ECP-BPL-210-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL2104Y,ECP-BPL-210-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL25001Y,ECP-BPL-2500-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL25002Y,ECP-BPL-2500-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL25004Y,ECP-BPL-2500-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL2500EC,BPL-2500-EC,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL3051Y,ECP-BPL-305-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL3052Y,ECP-BPL-305-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL3054Y,ECP-BPL-305-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL3105GHRTPRM,BPL-310-5GH-R-T-PRM,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL310FBR5GHTPRM,BPL-310-FBR-5GH-T-PRM,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL310PRM,BPL-310-PRM,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL310X5G1Y,SVL-BPL-310X-5G-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL310X5G2Y,SVL-BPL-310X-5G-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL310X5G4Y,ECP-BPL-310X-5G-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL310X5GHT,BPL-310X-5GH-T,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL310XGLTEGT,BPL-310X-GLTE-G-T,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
BPL310XGLTEST,BPL-310X-GLTE-S-T,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL310XLTEA1Y,ECP-BPL-310X-LTEA-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL310XLTEA2Y,ECP-BPL-310X-LTEA-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL310XLTEA4Y,ECP-BPL-310X-LTEA-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL310XLTEART,BPL-310X-LTEA-R-T,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL3801Y,ECP-BPL-380-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL3802Y,ECP-BPL-380-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL3804Y,ECP-BPL-380-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL380X1Y,SVL-BPL-380X-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL380X2Y,SVL-BPL-380X-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL380X4Y,ECP-BPL-380X-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL5000EC100GPRM,BPL-5000-EC-100G-PRM,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL5000EC40GPRM,BPL-5000-EC-40G-PRM,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL580,BPL-580,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL5801Y,ECP-BPL-580-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL5802Y,ECP-BPL-580-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL5804Y,ECP-BPL-580-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL580X,BPL-580X,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL580X1Y,SVL-BPL-580X-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL580X2Y,SVL-BPL-580X-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL580X4Y,ECP-BPL-580X-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL7101Y,ECP-BPL-710-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL7102Y,ECP-BPL-710-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BPL7104Y,ECP-BPL-710-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
BRACKET110X,"Drop Ceiling Mount Bracket 110x 105 x 15.04 mm, S400/S450/L450",,,,,,(blank),Accessory,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
CABLE6001004,XR/MP/LX I/O Cable,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
CAT12,EXM-MINI-1LTEA-D,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
CAT18,USB8,,,,,,"Global (AT&T, Verizon, Generic CE (EU, UK, ME, APAC), RCM, ISED",Router,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
CAT20,MiFi X PRO,,,,,,"AT&T, T-Mobile, Verizon",Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
CBA250,CBA250,Ericsson Enterprise Wireless (Cradlepoint),4G,2011,2011,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA550,"Cellular Antenna, White mini, 600MHz - 4.2GHz, SMA, 145mm, Used with CBA550, L950",Ericsson Enterprise Wireless (Cradlepoint),4G,2024,2029,,(blank),Accessory,yes,,,,,,"ruggedization, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
CBA550150MD,"LTE Captive Modem Accessory, Indoor, CBA550-150M-D (150Mbps modem), Americas; Used with R1900, IBR1700, AER2200, E300, E3000, and E400",Ericsson Enterprise Wireless (Cradlepoint),4G,2024,2029,,(blank),Accessory,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
CBA550150ME,CBA550-150M-E,Ericsson Enterprise Wireless (Cradlepoint),4G,2024,2029,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA550150MEG,CBA550-150M-E-G,Ericsson Enterprise Wireless (Cradlepoint),4G,2024,2029,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA750B,CBA750B,Ericsson Enterprise Wireless (Cradlepoint),4G,2016,2021,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA750BINTL,CBA750B-INTL,Ericsson Enterprise Wireless (Cradlepoint),4G,2016,2021,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA750BLE2SP,CBA750B-LE2-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2015,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA750BLEVZ,CBA750B-LE-VZ,Ericsson Enterprise Wireless (Cradlepoint),4G,2015,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA750BLP,CBA750B-LP,Ericsson Enterprise Wireless (Cradlepoint),4G,2015,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA750BLP2EU,CBA750B-LP2-EU,Ericsson Enterprise Wireless (Cradlepoint),4G,2014,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA750BLP3EU,CBA750B-LP3-EU,Ericsson Enterprise Wireless (Cradlepoint),4G,2016,2021,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA750BLPAT,CBA750B-LP-AT,Ericsson Enterprise Wireless (Cradlepoint),4G,2015,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA750BLPEAT,CBA750B-LPE-AT,Ericsson Enterprise Wireless (Cradlepoint),4G,2016,2021,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA750BLPEGN,CBA750B-LPE-GN,Ericsson Enterprise Wireless (Cradlepoint),4G,2016,2021,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA750BLPESP,CBA750B-LPE-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2016,2021,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA750BLPEVZ,CBA750B-LPE-VZ,Ericsson Enterprise Wireless (Cradlepoint),4G,2016,2021,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA750BWSP,CBA750B-W-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2014,2016,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA750ESP,CBA750E-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2012,2013,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA750EVZ,CBA750E-VZ,Ericsson Enterprise Wireless (Cradlepoint),4G,2012,2013,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA750LEVZ,CBA750LE-VZ,Ericsson Enterprise Wireless (Cradlepoint),4G,2013,2018,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA750LP,CBA750LP,Ericsson Enterprise Wireless (Cradlepoint),4G,2013,2018,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA750LPAT,CBA750LP-AT,Ericsson Enterprise Wireless (Cradlepoint),4G,2013,2018,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA750WSP,CBA750W-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2013,2018,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA850,LTE Advanced Pro (1200Mbps) modem upgrade for LTE Branch Adapter. Includes CBA850 door and 4 white antennas,Ericsson Enterprise Wireless (Cradlepoint),4G,2022,2027,,(blank),Accessory,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
CBA8501200M,CBA850-1200M,Ericsson Enterprise Wireless (Cradlepoint),4G,2020,2025,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA8501200MB,CBA850-1200M-B,Ericsson Enterprise Wireless (Cradlepoint),4G,2022,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA8501200MBAP,CBA850-1200M-B-AP,Ericsson Enterprise Wireless (Cradlepoint),4G,2022,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA8501200MBEU,CBA850-1200M-B-EU,Ericsson Enterprise Wireless (Cradlepoint),4G,2022,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA850LP3EU,CBA850LP3-EU,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA850LP4,CBA850LP4,Ericsson Enterprise Wireless (Cradlepoint),4G,2020,2025,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA850LP5,CBA850LP5,Ericsson Enterprise Wireless (Cradlepoint),4G,2022,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA850LP6,CBA850LP6,Ericsson Enterprise Wireless (Cradlepoint),4G,2022,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA850LP6EU,CBA850LP6-EU,Ericsson Enterprise Wireless (Cradlepoint),4G,2022,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA850LPEAT,CBA850LPE-AT,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA850LPEGN,CBA850LPE-GN,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA850LPESP,CBA850LPE-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CBA850LPEVZ,CBA850LPE-VZ,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CHA006,CHA-006,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
CHINA1103973,CHINA,,,,,,LTE-Advanced / HSPA+,Unknown,,,,,LTE-Advanced / HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
CM7100,CM7100 family (all SKUs),Opengear,4G,2024,2030,1RU rack appliance,Optional cellular on some SKUs; base is Ethernet OOB,Router,,none,2x 1GbE Ethernet (some SKUs include SFP),2x 1GbE Ethernet,2x 1GbE Ethernet (some SKUs include SFP),yes (16-96 RJ45 RS-232 ports depending on model),poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
CONFIG001,"Per unit charge for custom shipment configurations (cable swaps, FW loads, etc.)",,,,,,(blank),Accessory,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
CONFIG002,"Per unit charge for custom shipment configurations (Dual SIM Insertion, Activation Verification, Setting limited configuration parameters)",,,,,,(blank),Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
CPE02NANR,CPE02NANR,,,,,,5G,Router,yes,WIFI 6,,,2 * 2500/1000/100/10 Mbps/ PoE on 1 Port,,"ruggedization, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
CR202NAC6WLAN,CR202-Lite,,,,,IP30; plastic housing; fanless,4G LTE Cat6,Router,,Wi-Fi 4 (802.11 b/g/n; 2.4GHz; up to 300 Mbps),2x 10/100Mbps (WAN/LAN switchable),2x 10/100Mbps (WAN/LAN switchable),2x 10/100Mbps (WAN/LAN switchable),no,poe,feb2026routers.csv
CR202NAC6WLANBLITE,CR202NAC6WLANBLITE,,,,,,CAT 6: Added Band 71 & Band 49,Unknown,,802.11b/g/n,,,2*100Mbps ETH,N/A,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
CR202NAC6WLANBPRO,CR202NAC6WLANBPRO,,,,,,CAT 6: Added Band 71 & Band 48,Unknown,,802.11b/g/n,,,2*100Mbps ETH,N/A,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
CR4250,"Line Cord, 125V C13 1.8M (North America Type B); used with CR4250, 170671-000, 170751-000, 170870-000, 170785-000",Ericsson Enterprise Wireless (Cradlepoint),4G,2023,2028,,(blank),Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
CR4250POE,CR4250-PoE,Ericsson Enterprise Wireless (Cradlepoint),4G,2023,2028,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CR602NANR,CR602,,,,,IP30; plastic housing; fanless,5G NR SA/NSA (supports 4G),Router,,Wi-Fi 7 (802.11be; 2.4GHz + 5.8GHz; up to 3000 Mbps),2x 2.5GbE (WAN/LAN switchable),2x 2.5GbE (WAN/LAN switchable),2x 2.5GbE (WAN/LAN switchable),no,poe,feb2026routers.csv
CREDIT500GB,1-yr NetCloud SASE Data Credit 500GB Add-On,,,,,,(blank),Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
CTR35,CTR35,Ericsson Enterprise Wireless (Cradlepoint),4G,2013,2013,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CTR350,CTR350,Ericsson Enterprise Wireless (Cradlepoint),4G,2010,2011,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
CTR500,CTR500,Ericsson Enterprise Wireless (Cradlepoint),4G,2011,2011,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
DD52V400W,PMU-DD-52V-400W,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
E100,"1-Year NetCloud Small Branch Essentials Plan, Advanced Plan and E100 router with WiFi (300 Mbps modem), North America",,,,,,(blank),Router,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
E1005GC,E100-5GC,Ericsson Enterprise Wireless (Cradlepoint),4G,2026,2031,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
E100C4D,E100-C4D,Ericsson Enterprise Wireless (Cradlepoint),4G,2026,2031,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
E100C7C,E100-C7C,Ericsson Enterprise Wireless (Cradlepoint),4G,2026,2031,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
E102,E102,Ericsson Enterprise Wireless (Cradlepoint),4G,2026,2031,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
E102C7C,E102-C7C,Ericsson Enterprise Wireless (Cradlepoint),4G,2026,2031,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
E102C7D,E102-C7D,Ericsson Enterprise Wireless (Cradlepoint),4G,2026,2031,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
E110C4D,E110-C4D,Ericsson Enterprise Wireless (Cradlepoint),4G,2026,2031,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
E300,"1-yr NetCloud Enterprise Branch Essentials Plan, Advanced Plan and E300 router with WiFi (5G modem), North America",,,,,,Enterprise Branch Essentials+Advanced Packages,Router,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
E3000C18B,E3000-C18B Rack Mount Bracket,Ericsson Enterprise Wireless (Cradlepoint),4G,2024,2029,,(blank),Accessory,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
E300C18B,E300-C18B,Ericsson Enterprise Wireless (Cradlepoint),4G,2025,2030,Indoor desktop; 0–45°C operating,4G LTE Cat 18 (Rel 12) embedded modem; optional second modem via MC400 slot,Router,,"Wi‑Fi 6 (802.11ax), dual-band, 2x2 MU‑MIMO",5x 1GbE RJ45 (LAN/WAN switchable) + 1x 10GbE SFP+ (LAN/WAN switchable),5x 1GbE RJ45 (LAN/WAN switchable) + 1x 10GbE SFP+ (LAN/WAN switchable),5x 1GbE RJ45 (LAN/WAN switchable) + 1x 10GbE SFP+ (LAN/WAN switchable),no,poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
E300C4D,E300-C4D,Ericsson Enterprise Wireless (Cradlepoint),4G,2021,2026,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
E300C7C,E300-C7C,,,,,Indoor desktop; 0–45°C operating,4G LTE Cat 7 embedded modem; optional second modem via MC400 slot,Router,,"Wi‑Fi 6 (802.11ax), dual-band, 2x2 MU‑MIMO",5x 1GbE RJ45 (LAN/WAN switchable) + 1x 10GbE SFP+ (LAN/WAN switchable),5x 1GbE RJ45 (LAN/WAN switchable) + 1x 10GbE SFP+ (LAN/WAN switchable),5x 1GbE RJ45 (LAN/WAN switchable) + 1x 10GbE SFP+ (LAN/WAN switchable),no,poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
E320,E320,Ericsson Enterprise Wireless (Cradlepoint),4G,2025,2030,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
E3205GB,E3205GB,Ericsson Enterprise Wireless (Cradlepoint),4G,2025,2030,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
E400,"1-yr NetCloud Enterprise Branch Routing Essentials Plan, Advanced Plan, E400 (5G Modem) for the Americas, and NetCloud SASE Secure Connect Premium (includes Data Credit, HMF, and AI Insights)",,,,,,(blank),Router,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
EAP600LITE,EAP600LITE,,,,,,N/A,Unknown,802.3af,Wi-Fi6 802.11.ax/ac/b/g/n,,,1*1GbE,,"ruggedization, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
EC312BEN00,EC312BEN00,,,,,,NONE,Unknown,,None,,,2*100Mbps ETH,1*RS232 /RS485+1*RS485,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
EC312BFQ33,EC312BFQ33,,,,,,"LTE Cat 1, Verizon, AT&T, T-Mobile, Canada",Unknown,,None,,,2*100Mbps ETH,1*RS232 /RS485+1*RS485,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
EC312BFQ33N44D,EC312BFQ33N44D,,,,,,"LTE Cat 1, Verizon, AT&T, T-Mobile, Canada",Unknown,,None,,,2*100Mbps ETH,1*RS232 /RS485+1*RS485,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
EC312BFQ39,EC312BFQ39,,,,,,"LTE Cat 6, Verizon, AT&T, T-Mobile, Canada",Unknown,,None,,,2*100Mbps ETH,1*RS232 /RS485+1*RS485,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
EC312HEN00,EC312HEN00,,,,,,NONE,Unknown,,WIFI,,,2*100Mbps ETH,1*RS232 /RS485+1*RS485,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
EC312HFQ33,EC312HFQ33,,,,,,"LTE Cat 1, Verizon, AT&T, T-Mobile, Canada",Unknown,,WIFI,,,2*100Mbps ETH,1*RS232 /RS485+1*RS485,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
EC312HFQ33N44D,EC312HFQ33N44D,,,,,,"LTE Cat 1, Verizon, AT&T, T-Mobile, Canada",Unknown,,None,,,2*100Mbps ETH,1*RS232 /RS485+1*RS485,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
EC312HFQ33N4CC,EC312HFQ33N4CC,,,,,,"LTE Cat 1, Verizon, AT&T, T-Mobile, Canada",Unknown,,None,,,2*100Mbps ETH,1*RS232 /RS485+1*RS485,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
EC312HFQ33NAAD,EC312HFQ33NAAD,,,,,,"LTE Cat 1, Verizon, AT&T, T-Mobile, Canada",Unknown,,None,,,2*100Mbps ETH,1*RS232 /RS485+1*RS485,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
EC312HFQ39,EC312HFQ39,,,,,,"LTE Cat 6, Verizon, AT&T*, T-Mobile, Canada",Unknown,,WIFI,,,2*100Mbps ETH,1*RS232 /RS485+1*RS485,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
EC3320FQ09,EC3320FQ09,,,,,,LTE Cat 6,Unknown,,WIFI,,,3*1000Mbps ETH,2*RS232 /RS485/RS422 Configurable,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
EC3320FQ09H8,EC3320FQ09H8,,,,,,LTE Cat 6,Unknown,,WIFI,,,3*1000Mbps ETH,2*RS232 /RS485/RS422 Configurable,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
EC3320NRQ3,EC3320NRQ3,,,,,,5G,Unknown,,WIFI,,,3*1000Mbps ETH,2*RS232 /RS485/RS422 Configurable,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
EC3320NRQ3H8,EC3320NRQ3H8,,,,,,5G,Unknown,,WIFI,,,3*1000Mbps ETH,2*RS232 /RS485/RS422 Configurable,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
EC5350FQ09,EC5350FQ09,,,,,,LTE Cat 6,Unknown,,WIFI,,,2*RS232/RS485/RS422,1*RS232 /RS485+1*RS485,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
EC5350NRQ3,EC5350NRQ3,,,,,,5G,Unknown,,WIFI,,,2*RS232/RS485/RS422,1*RS232 /RS485+1*RS485,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
EC5550FQ09,EC5550FQ09,,,,,,LTE Cat 6,Unknown,,WIFI,,,2*RS232/RS485/RS422,1*RS232 /RS485+1*RS485,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
EC5550NRQ3,EC5550NRQ3,,,,,,5G,Unknown,,WIFI,,,2*RS232/RS485/RS422,1*RS232 /RS485+1*RS485,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
EC942BEN00B,EC942BEN00B,,,,,,NONE,Unknown,,None,,,2*1000Mbps ETH,2*RS232 /RS485/RS422 Configurable,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
EC942BFQ38B,EC942BFQ38B,,,,,,LTE-FDD Band 2/4/5/12/13/14/66/71 WCDMA Band 2/4/5,Unknown,,None,,,2*1000Mbps ETH,2*RS232 /RS485/RS422 Configurable,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
EC942HEN00B,EC942HEN00B,,,,,,NONE,Unknown,,WIFI,,,2*1000Mbps ETH,2*RS232 /RS485/RS422 Configurable,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
EC942HFQ38B,EC942HFQ38B,,,,,,LTE-FDD Band 2/4/5/12/13/14/66/71 WCDMA Band 2/4/5,Unknown,,WIFI,,,2*1000Mbps ETH,2*RS232 /RS485/RS422 Configurable,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
EMEA1103052,NA & EMEA,,,,,,LTE-Advanced / HSPA+,Unknown,,,,,LTE-Advanced / HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
EMEA1104046,EMEA,,,,,,LTE/HSPA+,Unknown,,,,,LTE/HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
EMEA1104047,EMEA,,,,,,LTE/HSPA+,Unknown,,,,,LTE/HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
EMEA1104181,EMEA,,,,,,LTE/HSPA+,Unknown,,,,,LTE/HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
EMEA1104182,EMEA,,,,,,LTE/HSPA+,Unknown,,,,,LTE/HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
ER605FF39,ER605FF39,,,,,,LTE CAT6 LTE-FDD B2/B4/B5/B7/B12/B13/B14/B17/B25/B26/B29/B30/B66/B71 LTE-TDD B41(194M)/B42/B43/B46/B48 WCDMA B2/B4/B5,Unknown,,NO,,,5*100/1000Mbps ETH WAN/LAN/VLAN Double WAN,,"ruggedization, poe, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
ER605FF39WLAN,ER605FF39WLAN,,,,,,LTE CAT6 LTE-FDD B2/B4/B5/B7/B12/B13/B14/B17/B25/B26/B29/B30/B66/B71 LTE-TDD B41(194M)/B42/B43/B46/B48 WCDMA B2/B4/B5,Unknown,,WiFi5 802.11ac/b/g/n 2.4G+5G,,,5*100/1000Mbps ETH WAN/LAN/VLAN Double WAN,,"ruggedization, poe, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
ER805NRQ3,ER805NRQ3,,,,,,5G,Unknown,,N/A,,,5 * 1000/100/10 Mbps,,"ruggedization, poe, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
ER805NRQ3WLAN,ER805NRQ3WLAN,,,,,,5G NR NSA:n1/n2/n3/n5/n7/n8/n12/n20/n25/n28/n38/n40/n41/n48*/n66/n71/n77/n78/n79 5G NR SA:n1/n2/n3/n5/n7/n8/n12/n20/n25/n28/n38/n40/n41/n48*/n66/n71/n77/n78/n79 LTE-FDD:B1/B2/B3/B4/B5/B7/B8/B12(B17)/B13/B14/B18/B19/B20/B25/B26/B28/B29/B30/B32/B66/B71 LTE-TDD:B34/B38/B39/B40/B41/B42/B43/B48 LAA:B46 WCDMA Bands:B1/B2/B3/B4/B5/B6/B8/B19,Unknown,,802.11ac/a/b/g/n Wave2 MU-MIMO,,,5 * 1000/100/10 Mbps,,"ruggedization, poe, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
ER815NRQ3WLAN,ER815NRQ3WLAN,,,,,,5G NSA / SA,Unknown,,802.11ax/ac/a/b/g/n Wave2 MU-MIMO,,,1*2.5Gbps + 4* 1Gbps,,"ruggedization, poe, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
ES2204P1T,ES220-4P-1T,,,,,,,Unknown,4*PoE,,,,5*1000Mbps ETH,,"ruggedization, modem_type, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
ES2205T,ES220-5T,,,,,,,Unknown,None,,,,5*1000Mbps ETH,,"ruggedization, modem_type, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
ES2208P1T,ES220-8P-1T,,,,,,,Unknown,8*PoE,,,,9*1000Mbps ETH,,"ruggedization, modem_type, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
ES2208T,ES220-8T,,,,,,,Unknown,None,,,,8*1000Mbps ETH,,"ruggedization, modem_type, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
ES450,ES450,Semtech (Sierra Wireless),4G,2021,2025,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
ES62024P4F,ES620-24P-4F,,,,,,,Accessory,24*PoE 802.3 af/at,,,,24*1GbE,,"ruggedization, modem_type, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
EUROPE1104337,EUROPE,,,,,,LTE/HSPA+,Unknown,,,,,LTE/HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
EX15,EX15 w/DIGI 360,,,,,Indoor desktop; 0–40°C typical,LTE Cat 4 (global) or LTE-A Cat 7 (US) via Digi CORE plug-in modem,Router,,Wi‑Fi 5 dual-band 2x2 (on Wi‑Fi SKUs),2x RJ45 Ethernet (GigE on many SKUs; verify exact model),2x RJ45 Ethernet,2x RJ45 Ethernet (GigE on many SKUs; verify exact model),yes (RJ45 RS‑232),poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
EX450,EX450,Semtech (Sierra Wireless),4G,2019,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
EXM2GLTEG,EXM-2GLTE-G,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
EXM2X5GD,EXM-2X5GD,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
EXM310X5G1Y,SVL-EXM-310X-5G-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
EXM310X5G2Y,SVL-EXM-310X-5G-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
EXM310X5G4Y,ECP-EXM-310X-5G-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
EXM310X5GH,EXM-310X-5GH,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
EXM310XGLTEG1Y,SVL-EXM-310X-GLTE-G-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
EXM310XGLTEG2Y,SVL-EXM-310X-GLTE-G-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
EXM310XGLTEG4Y,ECP-EXM-310X-GLTE-G-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
EXM310XGLTEST,EXM-310X-GLTE-S-T,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
EXMMBXT25GD,EXM-MBX-T2-5GD,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
FAKRA6001401,Paddle LPWA Adhesive Mount Antenna FAKRA,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FEE10,ETC-FEE-10,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FEE19,NetCloud Reinstatement Fee,,,,,,(blank),Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FG20003,FG2000-3,,,,,,"T-Mobile, AT&T, Verizon and Generic ISED approval for Canada",Accessory,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FG2000E,FG2000E,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FHB10001Y,ECP-FHB-1000-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FHB10002Y,ECP-FHB-1000-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FHB10004Y,ECP-FHB-1000-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FHB1000A,FHB-1000-A,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FHB1001Y,ECP-FHB-100-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FHB1002Y,ECP-FHB-100-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FHB1004Y,ECP-FHB-100-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FHB100A,FHB-100-A,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FHB2000,FHB-2000,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FHB20001Y,ECP-FHB-2000-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FHB20002Y,ECP-FHB-2000-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FHB20004Y,ECP-FHB-2000-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FHB4000,FHB-4000,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FHB40001Y,ECP-FHB-4000-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FHB40002Y,ECP-FHB-4000-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FHB40004Y,ECP-FHB-4000-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FHB5001Y,ECP-FHB-500-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FHB5002Y,ECP-FHB-500-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FHB5004Y,ECP-FHB-500-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FHB500A,FHB-500-A,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FSNO21VA,Verizon Internet Gateway Business FSNO21VA,,,,,,5G gateway (web-sourced model index),Router,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FW2000E3,FW2000e-3,,,,,ip67,"AT&T, T-Mobile & Verizon",Accessory,yes,,,,,,"wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FW2010E,FW2010E,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FW2010E1,FW2010e-1,,,,,ip67,Verizon,Accessory,yes,,,,,,"wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FWA02NATM,FWA02NATM,,,,,,5G / T-Mobile,Router,yes,WIFI 6: 802.11ax/ac/b/g/n,,,2 * 2500/1000/100/10 Mbps/ PoE on 1 Port,,"ruggedization, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
FWA02NAVA,FWA02NAVA,,,,,,5G / VERIZON,Router,yes,WIFI 6: 802.11ax/ac/b/g/n,,,2 * 2500/1000/100/10 Mbps/ PoE on 1 Port,,"ruggedization, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
FX2000E,FX2000E,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FX2000E3,FX2000e-3,,,,,,"T-Mobile, AT&T & Verizon",Accessory,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FX3110,FX3110,,,,,,"T-Mobile, AT&T & Verizon",Router,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
FX4200,FX4200,,,,,unknown (IP rating + housing material not listed),5G SA/NSA (sub-6) + 4G LTE Cat 20,Router,,Wi-Fi 7 (2x2 MU-MIMO),4x Ethernet total: 2x 2.5GbE + 2x 1GbE RJ45 (supports dual WAN links),4x Ethernet total: 2x 2.5GbE + 2x 1GbE RJ45,4x Ethernet total: 2x 2.5GbE + 2x 1GbE RJ45 (supports dual WAN links),no,poe,feb2026routers.csv; router_pricing_catalog_normalized.csv
GLOBAL1104072,GLOBAL,,,,,,LTE-Advanced Pro/ HSPA+,Unknown,,,,,LTE-Advanced Pro/ HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
GLOBAL1104074,GLOBAL,,,,,,LTE-Advanced Pro/ HSPA+,Unknown,,,,,LTE-Advanced Pro/ HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
GLOBAL1104331,GLOBAL,,,,,,LTE-Advanced Pro / HSPA+,Unknown,,,,,LTE-Advanced Pro / HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
GLOBAL1104332,GLOBAL,,,,,,LTE-Advanced Pro / HSPA+,Unknown,,,,,LTE-Advanced Pro / HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
GLOBAL1105099,GLOBAL,,,,,,5G Sub-6/LTE,Unknown,,,,,5G Sub-6/LTE,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
GLOBAL1105159,GLOBAL,,,,,,5G Sub-6/LTE,Unknown,,,,,5G Sub-6/LTE,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
GLOBAL1105160,GLOBAL,,,,,,5G Sub-6/LTE,Unknown,,,,,5G Sub-6/LTE,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
GLOBAL1105161,GLOBAL,,,,,,5G Sub-6/LTE,Unknown,,,,,5G Sub-6/LTE,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
GLOBAL1105214,GLOBAL,,,,,,5G Sub-6/LTE,Unknown,,,,,5G Sub-6/LTE,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
GLOBAL1105224,GLOBAL,,,,,,5G Sub-6/LTE,Unknown,,,,,5G Sub-6/LTE,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
GLOBAL1105232,GLOBAL,,,,,,5G Sub-6/LTE,Unknown,,,,,5G Sub-6/LTE,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
GLOBAL1105233,GLOBAL,,,,,,5G Sub-6/LTE,Unknown,,,,,5G Sub-6/LTE,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
GLOBAL1105234,GLOBAL,,,,,,5G Sub-6/LTE,Unknown,,,,,5G Sub-6/LTE,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
GLOBAL1105235,GLOBAL,,,,,,5G Sub-6/LTE,Unknown,,,,,5G Sub-6/LTE,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
GLOBAL1105302,GLOBAL,,,,,,5G RedCap/LTE,Unknown,,,,,5G RedCap/LTE,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
GLOBAL1105303,GLOBAL,,,,,,5G RedCap/LTE,Unknown,,,,,5G RedCap/LTE,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
GLOBAL1105304,GLOBAL,,,,,,5G RedCap/LTE,Unknown,,,,,5G RedCap/LTE,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
GLOBAL1105305,GLOBAL,,,,,,5G RedCap/LTE,Unknown,,,,,5G RedCap/LTE,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
GLOBAL1105342,GLOBAL,,,,,,5G Sub-6/LTE,Unknown,,,,,5G Sub-6/LTE,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
GPS15,Belgian Shepherd -PRO7BS 4CELL/5G 2WIFI GPS 15 FT Black Short bolt,,,,,IP67 (power-wash safe) mobile-grade radome,N/A (antenna),Antenna,,Wi‑Fi antenna elements (Wi‑Fi 6 compatible per datasheet),N/A,N/A,N/A,N/A,poe,feb2026routers.csv
GSOFT05001,GSOFT05001,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
GSOFT05002,GSOFT05002,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
GSOFT05003,GSOFT05003,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
GSOFT05004,GSOFT05004,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
GSOFT05005,GSOFT05005,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
GSOFT05006,GSOFT05006,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
GX400,GX400,Semtech (Sierra Wireless),4G,2016,2021,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
GX440,GX440,Semtech (Sierra Wireless),4G,2016,2021,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
GX450,GX450,Semtech (Sierra Wireless),4G,2020,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR1100,IBR1100,Ericsson Enterprise Wireless (Cradlepoint),4G,2019,2024,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR1100LP3EU,IBR1100LP3-EU,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR1100LP6EU,IBR1100LP6-EU,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR1100LP6NA,IBR1100LP6-NA,Ericsson Enterprise Wireless (Cradlepoint),4G,2019,2024,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR1100LPEAT,IBR1100LPE-AT,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR1100LPEGN,IBR1100LPE-GN,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR1100LPESP,IBR1100LPE-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR1100LPEVZ,IBR1100LPE-VZ,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR1150,IBR1150,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR1150LP3EU,IBR1150LP3-EU,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR1150LP6NA,IBR1150LP6-NA,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR1150LPEAT,IBR1150LPE-AT,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR1150LPEGN,IBR1150LPE-GN,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR1150LPESP,IBR1150LPE-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR1150LPEVZ,IBR1150LPE-VZ,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR1700,IBR1700,,,,,Ruggedized vehicle form factor; built for vibration and temperature swings (check SKU for ratings),4G LTE Cat 11 or Cat 18 (depends on SKU); optional second modem via MC400,Router,,Tri-radio Wi‚ÄëFi (2x2 802.11n + 4x4 802.11ac Wave 2); AP/client/Wi‚ÄëFi-as-WAN,5x 1GbE RJ45 (LAN/WAN switchable),5x 1GbE RJ45 (LAN/WAN switchable),5x 1GbE RJ45 (LAN/WAN switchable),unknown (varies by accessory/dock),poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv; router_pricing_catalog_normalized.csv
IBR17001200M,IBR1700-1200M,Ericsson Enterprise Wireless (Cradlepoint),4G,2020,2025,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR17001200MB,IBR1700-1200M-B,,,,,Ruggedized vehicle form factor; built for vibration and temperature swings (check SKU for ratings),4G LTE Cat 18 Advanced Pro (1200M‚ÄëB); optional second modem via MC400,Router,,Tri-radio Wi‚ÄëFi (2x2 802.11n + 4x4 802.11ac Wave 2); AP/client/Wi‚ÄëFi-as-WAN,5x 1GbE RJ45 (LAN/WAN switchable),5x 1GbE RJ45 (LAN/WAN switchable),5x 1GbE RJ45 (LAN/WAN switchable),unknown (varies by accessory/dock),poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
IBR1700600M,IBR1700-600M,Ericsson Enterprise Wireless (Cradlepoint),4G,2024,2029,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR20010MBAT,IBR200-10M-B(-AT),Ericsson Enterprise Wireless (Cradlepoint),4G,2025,2030,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR20010MCSP,IBR200-10M-C-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2021,2026,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR20010MDEU,IBR200-10M-D(-EU),Ericsson Enterprise Wireless (Cradlepoint),4G,2025,2030,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR20010MPWM,IBR200-10M-PWM,Ericsson Enterprise Wireless (Cradlepoint),4G,2024,2029,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR20010MVZ,IBR200-10M(-VZ),Ericsson Enterprise Wireless (Cradlepoint),4G,2024,2029,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR350LPEAT,IBR350LPE-AT,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR350LPEGN,IBR350LPE-GN,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR350LPESP,IBR350LPE-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR350LPEVZ,IBR350LPE-VZ,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR350LVZ,IBR350L-VZ,Ericsson Enterprise Wireless (Cradlepoint),4G,2017,2022,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR350P2,IBR350P2,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR350P2INTL,IBR350P2-INTL,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR600B,IBR600B,Ericsson Enterprise Wireless (Cradlepoint),4G,2020,2025,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR600BLP4,IBR600B-LP4,Ericsson Enterprise Wireless (Cradlepoint),4G,2020,2025,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR600C,"GPIO Cable, SATA W/ Lock Black 1.7M; Used with IBR600C/IBR650C, IBR900, R500-PLTE",Ericsson Enterprise Wireless (Cradlepoint),4G,2024,2029,,(blank),Accessory,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
IBR600C150M,IBR600C-150M,Ericsson Enterprise Wireless (Cradlepoint),4G,2024,2029,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR600C150MB,IBR600C-150M-B,Ericsson Enterprise Wireless (Cradlepoint),4G,2024,2029,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR600C150MC,IBR600C-150M-C,Ericsson Enterprise Wireless (Cradlepoint),4G,2024,2029,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR600C150MD,IBR600C-150M-D,Ericsson Enterprise Wireless (Cradlepoint),4G,2024,2029,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR600CLPEAT,IBR600C-LPE-AT,Ericsson Enterprise Wireless (Cradlepoint),4G,2019,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR600CLPEGN,IBR600C-LPE-GN,Ericsson Enterprise Wireless (Cradlepoint),4G,2019,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR600CLPESP,IBR600C-LPE-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2019,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR600CLPEVZ,IBR600C-LPE-VZ,Ericsson Enterprise Wireless (Cradlepoint),4G,2019,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR600ESP,IBR600E-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2015,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR600EVZ,IBR600E-VZ,Ericsson Enterprise Wireless (Cradlepoint),4G,2015,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR600LE2SP,IBR600LE2-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2015,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR600LEVZ,IBR600LE-VZ,Ericsson Enterprise Wireless (Cradlepoint),4G,2015,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR600LEVZPWD,IBR600LE-VZ-PWD,Ericsson Enterprise Wireless (Cradlepoint),4G,2015,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR600LP,IBR600LP,Ericsson Enterprise Wireless (Cradlepoint),4G,2015,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR600LP2EU,IBR600LP2-EU,Ericsson Enterprise Wireless (Cradlepoint),4G,2014,2019,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR600LP2EUPWD,IBR600LP2-EU-PWD,Ericsson Enterprise Wireless (Cradlepoint),4G,2014,2019,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR600LP3EU,IBR600LP3-EU,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR600LPAT,IBR600LP-AT,Ericsson Enterprise Wireless (Cradlepoint),4G,2015,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR600LPATPWD,IBR600LP-AT-PWD,Ericsson Enterprise Wireless (Cradlepoint),4G,2015,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR600LPEAT,IBR600LPE-AT,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR600LPEGN,IBR600LPE-GN,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR600LPESP,IBR600LPE-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR600LPEVZ,IBR600LPE-VZ,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR600NM,IBR600NM,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR600NMINTL,IBR600NM-INTL,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR600P,IBR600P,Ericsson Enterprise Wireless (Cradlepoint),4G,2015,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR600PAT,IBR600P-AT,Ericsson Enterprise Wireless (Cradlepoint),4G,2015,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR600PINTL,IBR600P-INTL,Ericsson Enterprise Wireless (Cradlepoint),4G,2015,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR650B,IBR650B,Ericsson Enterprise Wireless (Cradlepoint),4G,2020,2025,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR650BLP4,IBR650B-LP4,Ericsson Enterprise Wireless (Cradlepoint),4G,2020,2025,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR650C,IBR650C,Ericsson Enterprise Wireless (Cradlepoint),4G,2024,2029,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR650C150M,IBR650C-150M,Ericsson Enterprise Wireless (Cradlepoint),4G,2024,2029,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR650C150MDNA,IBR650C-150M-D-NA,Ericsson Enterprise Wireless (Cradlepoint),4G,2024,2029,IP30 metal enclosure; -20°C to 60°C operating (semi‑rugged),4G LTE Cat 4 (150 Mbps) with 3G fallback (DC‑HSPA+),Router,,Wi‑Fi 4 (802.11 b/g/n) on some 600C models; verify this SKU,1x 1GbE RJ45 + 1x 10/100 RJ45 (LAN/WAN switchable),1x 1GbE RJ45 + 1x 10/100 RJ45 (LAN/WAN switchable),1x 1GbE RJ45 + 1x 10/100 RJ45 (LAN/WAN switchable),no,poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
IBR650CLPEAT,IBR650C-LPE-AT,Ericsson Enterprise Wireless (Cradlepoint),4G,2019,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR650CLPEGN,IBR650C-LPE-GN,Ericsson Enterprise Wireless (Cradlepoint),4G,2019,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR650CLPESP,IBR650C-LPE-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2019,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR650CLPEVZ,IBR650C-LPE-VZ,Ericsson Enterprise Wireless (Cradlepoint),4G,2019,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR650LE2SP,IBR650LE2-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2015,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR650LEVZ,IBR650LE-VZ,Ericsson Enterprise Wireless (Cradlepoint),4G,2015,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR650LP2EU,IBR650LP2-EU,Ericsson Enterprise Wireless (Cradlepoint),4G,2014,2019,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR650LP3EU,IBR650LP3-EU,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR650LPAT,IBR650LP-AT,Ericsson Enterprise Wireless (Cradlepoint),4G,2015,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR650LPEAT,IBR650LPE-AT,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR650LPEGN,IBR650LPE-GN,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR650LPEVZ,IBR650LPE-VZ,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR650NM,IBR650NM,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR650NMINTL,IBR650NM-INTL,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR650P,IBR650P,Ericsson Enterprise Wireless (Cradlepoint),4G,2015,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR650PAT,IBR650P-AT,Ericsson Enterprise Wireless (Cradlepoint),4G,2015,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR650PINTL,IBR650P-INTL,Ericsson Enterprise Wireless (Cradlepoint),4G,2015,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR650W,IBR650W,Ericsson Enterprise Wireless (Cradlepoint),4G,2015,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR900,"Din Rail Mounting Bracket, Used with IBR900, IBR600C/IBR650C, IBR200, R500-PLTE",Ericsson Enterprise Wireless (Cradlepoint),4G,2024,2029,,Mounting Bracket,Accessory,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
IBR9001200M,IBR900-1200M,Ericsson Enterprise Wireless (Cradlepoint),4G,2020,2025,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR9001200MB,IBR900-1200M-B,Ericsson Enterprise Wireless (Cradlepoint),4G,2024,2029,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR900600M,IBR900-600M,Ericsson Enterprise Wireless (Cradlepoint),4G,2024,2029,Ruggedized mobile router (IP54 class); built for shock and vibration (check SKU),4G LTE Cat 11 or Cat 18 (depends on modem); optional MC400 for second modem via dock,Router,,"Wi‚ÄëFi 5 (802.11ac Wave 2), dual-band, 2x2",2x 1GbE RJ45 (LAN/WAN switchable),2x 1GbE RJ45 (LAN/WAN switchable),2x 1GbE RJ45 (LAN/WAN switchable),no,poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
IBR900FIPS,IBR900-FIPS,Ericsson Enterprise Wireless (Cradlepoint),4G,2024,2029,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR900FIPS1200MB,IBR900-FIPS-1200M-B,Ericsson Enterprise Wireless (Cradlepoint),4G,2024,2029,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR900FIPS600M,IBR900-FIPS-600M,Ericsson Enterprise Wireless (Cradlepoint),4G,2024,2029,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR900LP5AP,IBR900LP5-AP,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR900LP6EU,IBR900LP6-EU,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR900LP6NA,IBR900LP6-NA,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR900LPEAT,IBR900LPE-AT,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR900LPEGN,IBR900LPE-GN,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR900LPESP,IBR900LPE-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR900LPEVZ,IBR900LPE-VZ,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR900NM,IBR900NM,Ericsson Enterprise Wireless (Cradlepoint),4G,2024,2029,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR950,IBR950,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR950LP6EU,IBR950LP6-EU,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR950LP6NA,IBR950LP6-NA,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR950LPEGN,IBR950LPE-GN,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR950LPESP,IBR950LPE-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IBR950LPEVZ,IBR950LPE-VZ,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IG502EN00,IG502EN00,,,,,,None,Unknown,,None,,,2*100Mbps ETH,RS232*1 RS485*1,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IG502EN00IO,IG502EN00IO,,,,,,None,Unknown,,None,,,2*100Mbps ETH,RS232*1 RS485*1,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IG502EN00IOWG,IG502EN00IOWG,,,,,,None,Unknown,,WIFI,,,2*100Mbps ETH,RS232*1 RS485*1,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IG502EN00WG,IG502EN00WG,,,,,,None,Unknown,,WIFI,,,2*100Mbps ETH,RS232*1 RS485*1,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IG502FQ33,IG502FQ33,,,,,,LTE CAT 1: LTE-FDD B2/B4/B5/B12/B13/B25/B26 WCDMA B2/B4/B5,Unknown,,None,,,2*100Mbps ETH,RS232*1 RS485*1,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IG502FQ33IO,IG502FQ33IO,,,,,,LTE CAT 1: LTE-FDD B2/B4/B5/B12/B13/B25/B26 WCDMA B2/B4/B5,Unknown,,None,,,2*100Mbps ETH,RS232*1 RS485*1,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IG502FQ33IOWG,IG502FQ33IOWG,,,,,,LTE CAT 1: LTE-FDD B2/B4/B5/B12/B13/B25/B26 WCDMA B2/B4/B5,Unknown,,WIFI,,,2*100Mbps ETH,RS232*1 RS485*1,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IG502FQ33WG,IG502FQ33WG,,,,,,LTE CAT 1: LTE-FDD B2/B4/B5/B12/B13/B25/B26 WCDMA B2/B4/B5,Unknown,,WIFI,,,2*100Mbps ETH,RS232*1 RS485*1,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IG902BEN00,IG902BEN00,,,,,,No Cellular Interface,Unknown,,-,,,1*100Mbps ETH,,"RS232*1,RS485*1 Isolated","ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IG902BEN00WG,IG902BEN00WG,,,,,,No Cellular Interface,Unknown,,,,,1*100Mbps ETH,,"RS232*1,RS485*1 Isolated","ruggedization, poe, wifi, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IG902HEN00IO,IG902HEN00IO,,,,,,No Cellular Interface,Unknown,,802.11b/g/n,,,1*100Mbps ETH,,"RS232*1,RS485*1 Isolated","ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IG902HEN00IOWG,IG902HEN00IOWG,,,,,,No Cellular Interface,Unknown,,802.11b/g/n,,,1*100Mbps ETH,,"RS232*1,RS485*1 Isolated","ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IG902HFS39IOWG,IG902HFS39IOWG,,,,,,"LTE Cat 6, AT&T, T-Mobile, and",Unknown,,802.11b/g/n,,,1*100Mbps ETH,,"RS232*1,RS485*1 Isolated","ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IM4200,"IM4200 family (IM4208-2-...,IM4248-2-...)",,,,,1RU rack appliance,3G single-carrier modules on some SKUs,Router,,none,Ethernet 10/100 (legacy) per Opengear compare page,Ethernet 10/100,Ethernet 10/100 (legacy) per Opengear compare page,yes (8-48 ports depending on SKU),poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
IM42082,IM4208-2-,Opengear,4G,2016,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IM42482,IM4248-2-,Opengear,4G,2016,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IM7200,IM7200 family (all SKUs),Opengear,4G,2024,2030,1RU rack appliance,Optional 4G LTE module on some SKUs; PSTN modem on some builds,Router,,802.11 a/b/g/n (on some SKUs),2x 1GbE Ethernet with SFP capability,2x 1GbE Ethernet,2x 1GbE Ethernet with SFP capability,yes (8-48 ports depending on SKU),poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
INBOX710FS39LRS485,INBOX710FS39LRS485,,,,,,North America LTE-FDD Band 2/4/5/12/13/17/29 UMTS(DC-HSPA+) Band2/4/5 EDGE/GPRS/GSM 850/900/1800/1900MHz,Unknown,,"802.11b/g/n, Client/AP mode",,,4 * 1000/100/10 Mbps,2* R232 DB9 1* R485 DB9,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
INBOX710FS39STD,INBOX710FS39STD,,,,,,North America LTE-FDD Band 2/4/5/12/13/17/29 UMTS(DC-HSPA+) Band2/4/5 EDGE/GPRS/GSM 850/900/1800/1900MHz,Unknown,,"802.11b/g/n, Client/AP mode",,,5 * 1000/100/10 Mbps,3* R232 DB9,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
INBOX710FS39STDRS485,INBOX710FS39STDRS485,,,,,,North America LTE-FDD Band 2/4/5/12/13/17/29 UMTS(DC-HSPA+) Band2/4/5 EDGE/GPRS/GSM 850/900/1800/1900MHz,Unknown,,"802.11b/g/n, Client/AP mode",,,6 * 1000/100/10 Mbps,2* R232 DB9 1* R485 DB9,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
INODU2002NATM,INODU2002NATM,,,,,,5G / T-Mobile,Unknown,yes,802.11b/g/n,,,3 * 2500/1000/100/10 Mbps/ PoE on 1 Port,,"ruggedization, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
INODU2002NAVA,INODU2002NAVA,,,,,,5G / VERIZON /AT&T,Unknown,yes,802.11b/g/n,,,2 * 2500/1000/100/10 Mbps/ PoE on 1 Port,,"ruggedization, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
IOT20GNW2,ANT-IOT-20G-N-W-2,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
IOT20GSW16,ANT-IOT-20G-S-W-16,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
IP55,DCS-GN-IP55,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
IP67,APP-AX-IP67,,,,,ip67,,Unknown,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
IP671Y,SVL-APP-AX-IP67-1Y,,,,,ip67,,Unknown,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
IP672Y,SVL-APP-AX-IP67-2Y,,,,,ip67,,Unknown,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
IP674Y,ECP-MAX-HD2-M-LTEA-RK-IP67-4Y,,,,,ip67,,Unknown,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
IP68,ANT-MAX,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
IR1101,IR1101 + LTE PIM,,,,,IP30 industrial; DIN rail / wall mount; wide DC input range,Modular LTE Cat 4 / Cat 7 / 5G Sub‚Äë6 modules (depends on PIM/SFP kit),Router,,none (Wi‚ÄëFi via module/option),1x GE combo (RJ45 + SFP) WAN on base; expansion can add SFP,4x 10/100 Fast Ethernet on base,1x GE combo (RJ45 + SFP) WAN on base; expansion can add SFP,yes (via expansion module options),poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
IR1833K9,Catalyst IR1833 Rugged Router (IR1833-K9),,,,,IP40 (IP54 with kit); MIL-STD-810G; SAE J1455; Class I Div 2 / ATEX Zone 2 listed,modular cellular (2x cellular PIM slots; supports 4G LTE Cat 4/Cat 7 and 5G sub-6 modules),Router,,"Wi-Fi 6 (optional wide pluggable module; dual-radio 2.4/5GHz, 2x2)",1x combo 1GbE RJ45/SFP WAN + 2x cellular module slots,4x 1GbE RJ45 LAN,1x combo 1GbE RJ45/SFP WAN + 2x cellular module slots,yes,poe,feb2026routers.csv
IR1835K9,Catalyst IR1835 Rugged Router (IR1835-K9),,,,,IP40 (IP54 with kit); MIL-STD-810G; SAE J1455; Class I Div 2 / ATEX Zone 2 listed,modular cellular (2x cellular PIM slots; supports 4G LTE Cat 4/Cat 7 and 5G sub-6 modules),Router,,"Wi-Fi 6 (optional wide pluggable module; dual-radio 2.4/5GHz, 2x2)",1x combo 1GbE RJ45/SFP WAN + 2x cellular module slots,4x 1GbE RJ45 LAN,1x combo 1GbE RJ45/SFP WAN + 2x cellular module slots,yes,poe,feb2026routers.csv
IR302FQ33IO,IR302FQ33IO,,,,,,"LTE Cat 1,",Unknown,,802.11b/g/n,,,2*100Mbps ETH WAN,N/A,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IR302FQ33WLANIO,IR302FQ33WLANIO,,,,,,"LTE Cat 1,",Unknown,,802.11b/g/n,,,2*100Mbps ETH WAN,N/A,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IR302FQ38IO,IR302FQ38IO,,,,,,"LTE Cat 4,",Unknown,,N/A,,,2*100Mbps ETH WAN,N/A,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IR302FQ38WLANIO,IR302FQ38WLANIO,,,,,,"LTE Cat 4,",Unknown,,802.11b/g/n,,,2*100Mbps ETH WAN,N/A,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IR315FF39,InRouter315 (IR315),,,,,IP30; metal housing; fanless,4G LTE (plus 3G/2G support listed),Router,,Wi-Fi 4 (optional 802.11 b/g/n; up to 300 Mbps),5x 10/100 Mbps RJ45 (WAN/LAN/VLAN configurable),5x 10/100 Mbps RJ45,5x 10/100 Mbps RJ45 (WAN/LAN/VLAN configurable),yes,poe,feb2026routers.csv; router_pricing_catalog_normalized.csv
IR315FF39G,IR315FF39G,,,,,,"LTE CAT 6 , Verizon, AT&T, T-Mobile, Canada LTE FDD: B2/ B4/ B5/ B7/ B12/ B13/ B14/ B17/ B25/ B26/ B29/ B30/ B66/ B71 LTE TDD: B41/ B42/ B43/ B46/ B48 WCDMA: B2/ B4/ B7",Unknown,,N/A,,,1*100Mbps ETH WAN 4*100Mbps ETH LAN,1*RS232 1*RS486,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IR315FF39S,IR315FF39S,,,,,,"LTE CAT 6 , Verizon, AT&T, T-Mobile, Canada LTE FDD: B2/ B4/ B5/ B7/ B12/ B13/ B14/ B17/ B25/ B26/ B29/ B30/ B66/ B71 LTE TDD: B41/ B42/ B43/ B46/ B48 WCDMA: B2/ B4/ B6",Unknown,,N/A,,,1*100Mbps ETH WAN 4*100Mbps ETH LAN,1*RS232 1*RS485,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IR315FF39SG,IR315FF39SG,,,,,,"LTE CAT 6 , Verizon, AT&T, T-Mobile, Canada LTE FDD: B2/ B4/ B5/ B7/ B12/ B13/ B14/ B17/ B25/ B26/ B29/ B30/ B66/ B71 LTE TDD: B41/ B42/ B43/ B46/ B48 WCDMA: B2/ B4/ B7",Unknown,,N/A,,,1*100Mbps ETH WAN 4*100Mbps ETH LAN,1*RS232 1*RS486,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IR315FF39WLAN,IR315FF39WLAN,,,,,,"LTE CAT 6 , Verizon, AT&T, T-Mobile, Canada LTE FDD: B2/ B4/ B5/ B7/ B12/ B13/ B14/ B17/ B25/ B26/ B29/ B30/ B66/ B71 LTE TDD: B41/ B42/ B43/ B46/ B48 WCDMA: B2/ B4/ B8",Unknown,,802.11b/g/n,,,1*100Mbps ETH WAN 4*100Mbps ETH LAN,N/A,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IR315FF39WLANG,IR315FF39WLANG,,,,,,"LTE CAT 6 , Verizon, AT&T, T-Mobile, Canada LTE FDD: B2/ B4/ B5/ B7/ B12/ B13/ B14/ B17/ B25/ B26/ B29/ B30/ B66/ B71 LTE TDD: B41/ B42/ B43/ B46/ B48 WCDMA: B2/ B4/ B9",Unknown,,802.11b/g/n,,,1*100Mbps ETH WAN 4*100Mbps ETH LAN,N/A,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IR315FF39WLANS,IR315FF39WLANS,,,,,,"LTE CAT 6 , Verizon, AT&T, T-Mobile, Canada LTE FDD: B2/ B4/ B5/ B7/ B12/ B13/ B14/ B17/ B25/ B26/ B29/ B30/ B66/ B71 LTE TDD: B41/ B42/ B43/ B46/ B48 WCDMA: B2/ B4/ B9",Unknown,,802.11b/g/n,,,1*100Mbps ETH WAN 4*100Mbps ETH LAN,1*RS232 1*RS487,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IR315FF39WLANSG,IR315FF39WLANSG,,,,,,"LTE CAT 6 , Verizon, AT&T, T-Mobile, Canada LTE FDD: B2/ B4/ B5/ B7/ B12/ B13/ B14/ B17/ B25/ B26/ B29/ B30/ B66/ B71 LTE TDD: B41/ B42/ B43/ B46/ B48 WCDMA: B2/ B4/ B10",Unknown,,802.11b/g/n,,,1*100Mbps ETH WAN 4*100Mbps ETH LAN,1*RS232 1*RS487,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IR624NRQ3WLANS,IR624NRQ3WLANS,,,,,,"Global, 5G 5G NR n1/n2/n3/n5/n7/n8/n12/n13/n14/n18/n20/n25/n26/n28/n29/n30/n38/n40/n41/n48/n66/n70 n71/n75/n76/n77/n78/n79 LTE-FDD B1/B2/B3/B4/B5/B7/B8/B12/B13/B14/B17/B18/B19/B20/B25/B26/B28/B29/B30/B32/B66/B71 LTE-TDD B34/B38/B39/B40/B41/B42/B43/B48 WCDMA B1/B2/B4/B5/B8/B19",Unknown,,-,,,2*100Mbps ETH,1*RS232 1*RS485,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IR829LTEWIFI,IR829 (LTE + WIFI),Cisco,4G,2021,2024,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IR900,IR900,,,,,,"including AC cable, power adapter and pre-wired connectors",Accessory,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
IR912LFQ39,IR912LFQ39,,,,,,LTE CAT6 LTE-FDD:B2/B4/B5/B7/B12/B13/B25/B26/B29/B30/B66 WCDMA:B2/B4/B5,Unknown,,-,,,2*100Mbps ETH,-,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IR912PEN00,IR912PEN00,,,,,,No Cellular Interface,Unknown,,-,,,2*100Mbps ETH,-,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IR915LFQ39WS,IR915LFQ39WS,,,,,,LTE CAT6 LTE-FDD:B2/B4/B5/B7/B12/B13/B25/B26/B29/B30/B66 WCDMA:B2/B4/B5,Unknown,,802.11b/g/n,,,1*100Mbps ETH, 4*100Mbps ETH,"RS232*1,RS485*1 Isolated","ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IR915LFQ39WSG,IR915LFQ39WSG,,,,,,LTE CAT6 LTE-FDD:B2/B4/B5/B7/B12/B13/B25/B26/B29/B30/B66 WCDMA:B2/B4/B5,Unknown,,802.11b/g/n,,,1*100Mbps ETH, 4*100Mbps ETH,"RS232*1,RS485*1 Isolated","ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IR915PEN00S,IR915PEN00S,,,,,,No Cellular Interface,Unknown,,-,,,1*100Mbps ETH, 4*100Mbps ETH,"RS232*1,RS485*1 Isolated","ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IR915PEN00WS,IR915PEN00WS,,,,,,No Cellular Interface,Unknown,,802.11b/g/n,,,1*100Mbps ETH, 4*100Mbps ETH,"RS232*1,RS485*1 Isolated","ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
ISR1100,ISR 1100 Series,,,,,Indoor branch router,Integrated LTE Cat 4 on LTE SKUs; otherwise none,Router,,none (Wi‚ÄëFi via separate AP),Up to 4x GE WAN (model dependent); some models include SFP,4x GE LAN; some models add 2x SFP,Up to 4x GE WAN (model dependent); some models include SFP,yes (console/aux),poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
IVG710FS39,IVG710FS39,,,,,,North America LTE-FDD Band 2/4/5/12/13/17/29 UMTS(DC-HSPA+) Band2/4/5 EDGE/GPRS/GSM 850/900/1800/1900MHz,Unknown,,"2.4G, 5GHz Wi-Fi 802.11ac/a/b/g/n Wave2",,,4 * 1000/100/10 Mbps,1* R232 DB9,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IVG710NRQ3,IVG710NRQ3,,,,,,5G NR NSA:n1/n2/n3/n5/n7/n8/n12/n20/n25/n28/n38/n40/n41/n48*/n66/n71/n77/n78/n79 5G NR SA:n1/n2/n3/n5/n7/n8/n12/n20/n25/n28/n38/n40/n41/n48*/n66/n71/n77/n78/n79 LTE-FDD:B1/B2/B3/B4/B5/B7/B8/B12(B17)/B13/B14/B18/B19/B20/B25/B26/B28/B29/B30/B32/B66/B71 LTE-TDD:B34/B38/B39/B40/B41/B42/B43/B48 LAA:B46 WCDMA Bands:B1/B2/B3/B4/B5/B6/B8/B19,Unknown,,"2.4G, 5GHz Wi-Fi 802.11ac/a/b/g/n Wave2",,,4 * 1000/100/10 Mbps,1* R232 DB9,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IVG710NRQ5,IVG710NRQ5,,,,,,5G NR NSA:n1/n2/n3/n5/n7/n8/n12/n20/n25/n28/n38/n40/n41/n48*/n66/n71/n77/n78/n79 5G NR SA:n1/n2/n3/n5/n7/n8/n12/n20/n25/n28/n38/n40/n41/n48*/n66/n71/n77/n78/n79 LTE-FDD:B1/B2/B3/B4/B5/B7/B8/B12(B17)/B13/B14/B18/B19/B20/B25/B26/B28/B29/B30/B32/B66/B71 LTE-TDD:B34/B38/B39/B40/B41/B42/B43/B48 LAA:B46 WCDMA Bands:B1/B2/B3/B4/B5/B6/B8/B20,Unknown,,"2.4G, 5GHz Wi-Fi 802.11ac/a/b/g/n Wave2",,,4 * 1000/100/10 Mbps,1* R232 DB9,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
IX10,IX10,,,,,IP30; Class 1 Div 2 rated; -40°C to 70°C,LTE Cat 4 (global or regional); CBRS-only Cat 6 option exists,Router,,none,1x 10/100 Mbps RJ45,1x 10/100 Mbps RJ45,1x 10/100 Mbps RJ45,yes (RJ‑50 RS‑232/485),poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
IX20,IX20,,,,,IP30; industrial enclosure,LTE (variants exist by region and carrier; check exact part),Router,,optional (depends on SKU; check if Wi‚ÄëFi is present),2x 10/100 Mbps RJ45,2x 10/100 Mbps RJ45,2x 10/100 Mbps RJ45,yes (DB9 RS‚Äë232),poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
IX20W000GLB,IX20-W000-GLB,Digi,4G,2024,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
IX3000P7,IX30,,,,,IP30; aluminum; C1D2 + ATEX rated; NEMA TS2 listed; -34°C to 74°C,4G LTE (Cat 4 or Cat 7 variants) + HSPA+ fallback,Router,,none,2x 10/100 Mbps RJ45,2x 10/100 Mbps RJ45,2x 10/100 Mbps RJ45,yes,poe,feb2026routers.csv
J912,AOL-J912,,,,,,,Router,yes,,,,,,"ruggedization, modem_type, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
LS300,LS300,Semtech (Sierra Wireless),4G,TBD,2019,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
LSR200,"Chinook Lite -PRO4CHL 4 5G/CELL/5G; Optimized for C Band, LSR200 CABLE",,,,,IP54 (indoor/outdoor),N/A (antenna),Antenna,,none,N/A,N/A,N/A,N/A,poe,feb2026routers.csv
LSR240,"Chinook - PRO4CH 4 5G/CELL/5G; Optimized for C Band, LSR240 CABLE 15 Feet",,,,,IP54 (indoor/outdoor),N/A (antenna),Antenna,,none,N/A,N/A,N/A,N/A,poe,feb2026routers.csv
LTE10,SFC-CN-A,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
LTE100,SFC-CN-C,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
LTE20,SFC-CN-S-A,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
LTE250,SFC-CN-D,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
LTE30,SFC-CN-S-B,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
LTE50,SFC-CN-B,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
LTE500,SFC-CN-E,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
LTE60,SFC-CN-S-C,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
LX2000522,DC Power Cable ES/GX/MP/RV/LX,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
LX2000579,"AC Adaptor, 12 VDC MP/RX/RV/LX",,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
LX60,LX60,Semtech (Sierra Wireless),4G,TBD,TBD,IP20; polycarbonate; MIL-STD-810G conformance,4G LTE Cat 4 (150/50),Router,,Wi-Fi 5 (optional; dual-band 802.11ac),2x 1GbE RJ45,2x 1GbE RJ45,2x 1GbE RJ45,yes,poe,feb2026routers.csv; router_pricing_catalog_normalized.csv
MAX600,MAX-600,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXBR1AEIP55,MAX-BR1-AE-IP55,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXBR1ENT,MAX-BR1-ENT,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXBR1ENTLTE,MAX-BR1-ENT-LTE,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXBR1ESNLTEA,MAX-BR1-ESN-LTEA,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXBR1LTEAWT,MAX-BR1-LTEA-W-T,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXBR1LTEUS,MAX-BR1-LTE-US,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXBR1M2M,MAX-BR1-M2M,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXBR1M2MLTE,MAX-BR1-M2M-LTE,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXBR1MINI,MAX-BR1-MINI,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXBR1MK2,MAX-BR1-MK2,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXBR1PROLTE,MAX-BR1-PRO-LTE,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXBR1SLIM,MAX-BR1-SLIM,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXBR1SLIMLTE,MAX-BR1-SLIM-LTE,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXBR2AEIP55,MAX-BR2-AE-IP55,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXBR2AESF,MAX-BR2-AE-SF,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXHD1DOMM,MAX-HD1-DOM-M,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXHD2DOMM,MAX-HD2-DOM-M,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXHD2LTEA,MAX-HD2-LTEA,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXHD2LTEAW,MAX-HD2-LTEA-W,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXHD2LTEAWT,MAX-HD2-LTEA-W-T,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXHD2LTEUST,MAX-HD2-LTE-US-T,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXHD2MBX,MAX-HD2-MBX,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXHD2MFA,MAX-HD2-MFA,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXHD2MINILTE,MAX-HD2-MINI-LTE,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXHD2MINILTEUST,MAX-HD2-MINI-LTE-US-T,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXHD2MIP67,MAX-HD2-M-IP67,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXHD2MLTE,MAX-HD2-M-LTE,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXHD4LTEA,MAX-HD4-LTEA,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXHD4LTEUST,MAX-HD4-LTE-US-T,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXHD4MBX,MAX-HD4-MBX,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXHD4MFALTE,MAX-HD4-MFA-LTE,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXOTGU4,MAX-OTG-U4,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXOTGU4SF,MAX-OTG-U4-SF,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXTST5GDT,MAX-TST-5GD-T,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXTSTDUO,MAX-TST-DUO,Peplink,5G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXTSTDUOLC,MAX-TST-DUO-LC,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXTSTGLTEGT,MAX-TST-GLTE-G-T,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXTSTLTEART,MAX-TST-LTEA-R-T,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXTSTLTEAWT,MAX-TST-LTEA-W-T,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXTSTMINILTE,MAX-TST-MINI-LTE,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXTSTPROE,MAX-TST-PROE,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MAXTSTUST,MAX-TST-US-T,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MB01NCADV,1-yr NetCloud Mobile Performance Advanced Plan (requires corresponding Essentials Plan),,,,,,Advanced Upgrade,Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MB01R9805GDA,R980 1YR Mobile Performance Essentials,,,,,IP64; MIL-STD-810H; Class I Div 2,5G NR (FR1) + 4G LTE Cat 19,Router,,"Wi-Fi 6 (dual-radio, dual-band, 2x2)",2x 1GbE RJ45 (LAN/WAN switchable),2x 1GbE RJ45 (LAN/WAN switchable),2x 1GbE RJ45 (LAN/WAN switchable),no,poe,feb2026routers.csv
MB02RB6,ANT-MB-02-R-B-6,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MB02RW6,ANT-MB-02-R-W-6,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MB03NCADV,3-yr NetCloud Mobile Performance Advanced Plan (requires corresponding Essentials Plan),,,,,,(blank),Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MB03R9805GDA,R980 3YR Mobile Performance Essentials,,,,,IP64; MIL-STD-810H; Class I Div 2,5G NR (FR1) + 4G LTE Cat 19,Router,,"Wi-Fi 6 (dual-radio, dual-band, 2x2)",2x 1GbE RJ45 (LAN/WAN switchable),2x 1GbE RJ45 (LAN/WAN switchable),2x 1GbE RJ45 (LAN/WAN switchable),no,poe,feb2026routers.csv
MB05NCADV,5-yr NetCloud Mobile Performance Advanced Plan (requires corresponding Essentials Plan),,,,,,(blank),Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MB05R9805GDA,R980 5YR Mobile Performance Essentials,,,,,IP64; MIL-STD-810H; Class I Div 2,5G NR (FR1) + 4G LTE Cat 19,Router,,"Wi-Fi 6 (dual-radio, dual-band, 2x2)",2x 1GbE RJ45 (LAN/WAN switchable),2x 1GbE RJ45 (LAN/WAN switchable),2x 1GbE RJ45 (LAN/WAN switchable),no,poe,feb2026routers.csv
MB20GSB6,ANT-MB-20G-S-B-6,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MB20GSW6,ANT-MB-20G-S-W-6,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MB22GSB6,ANT-MB-22G-S-B-6,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MB22GSW6,ANT-MB-22G-S-W-6,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MB40GQB6,ANT-MB-40G-Q-B-6,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MB40GSB6,ANT-MB-40G-S-B-6,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MB40GSW6,ANT-MB-40G-S-W-6,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MB42GSB1,ANT-MB-42G-S-B-1,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MB42GSB6,ANT-MB-42G-S-B-6,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MB42GSW1,ANT-MB-42G-S-W-1,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MB42GSW16,ANT-MB-42G-S-W-16,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MB42GSW6,ANT-MB-42G-S-W-6,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MB82GQB6,ANT-MB-82G-Q-B-6,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MB82GQW6,ANT-MB-82G-Q-W-6,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MB82GSW6,ANT-MB-82G-S-W-6,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MBR1000,MBR1000,Ericsson Enterprise Wireless (Cradlepoint),4G,2011,2011,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MBR1100,MBR1100,Ericsson Enterprise Wireless (Cradlepoint),4G,2010,2011,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MBR1200B,MBR1200B,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MBR1200BINTL,MBR1200B-INTL,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MBR1200CP,MBR1200CP,Ericsson Enterprise Wireless (Cradlepoint),4G,2011,2011,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MBR1400,MBR1400,Ericsson Enterprise Wireless (Cradlepoint),4G,2016,2021,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MBR1400ESP,MBR1400E-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2012,2013,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MBR1400EVZ,MBR1400E-VZ,Ericsson Enterprise Wireless (Cradlepoint),4G,2012,2013,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MBR1400INTL,MBR1400-INTL,Ericsson Enterprise Wireless (Cradlepoint),4G,2014,2019,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MBR1400LE2SP,MBR1400LE2-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2015,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MBR1400LEVZ,MBR1400LE-VZ,Ericsson Enterprise Wireless (Cradlepoint),4G,2015,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MBR1400LP,MBR1400LP,Ericsson Enterprise Wireless (Cradlepoint),4G,2015,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MBR1400LP2EU3,MBR1400LP2-EU3,Ericsson Enterprise Wireless (Cradlepoint),4G,2014,2019,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MBR1400LP3EU,MBR1400LP3-EU,Ericsson Enterprise Wireless (Cradlepoint),4G,2014,2019,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MBR1400LPAT,MBR1400LP-AT,Ericsson Enterprise Wireless (Cradlepoint),4G,2015,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MBR1400LPEAT,MBR1400LPE-AT,Ericsson Enterprise Wireless (Cradlepoint),4G,2016,2021,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MBR1400LPEGN,MBR1400LPE-GN,Ericsson Enterprise Wireless (Cradlepoint),4G,2016,2021,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MBR1400LPESP,MBR1400LPE-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2016,2021,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MBR1400LPEVZ,MBR1400LPE-VZ,Ericsson Enterprise Wireless (Cradlepoint),4G,2016,2021,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MBR1400V2,MBR1400v2,Ericsson Enterprise Wireless (Cradlepoint),4G,2016,2021,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MBR1400WSP,MBR1400W-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2014,2016,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MBR800,MBR800,Ericsson Enterprise Wireless (Cradlepoint),4G,2011,2011,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MBR90,MBR90,Ericsson Enterprise Wireless (Cradlepoint),4G,2011,2011,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MBR900,MBR900,Ericsson Enterprise Wireless (Cradlepoint),4G,2011,2011,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MBR95,MBR95,Ericsson Enterprise Wireless (Cradlepoint),4G,2014,2019,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MBR95INTL,MBR95-INTL,Ericsson Enterprise Wireless (Cradlepoint),4G,2014,2019,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MC100ESP,MC100E-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2012,2013,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MC100EVZ,MC100E-VZ,Ericsson Enterprise Wireless (Cradlepoint),4G,2012,2013,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MC100W,MC100W,Ericsson Enterprise Wireless (Cradlepoint),4G,2014,2019,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MC200LE2SP,MC200LE2-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2015,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MC200LEVZ,MC200LE-VZ,Ericsson Enterprise Wireless (Cradlepoint),4G,2015,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MC200LP,MC200LP,Ericsson Enterprise Wireless (Cradlepoint),4G,2015,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MC200LPAT,MC200LP-AT,Ericsson Enterprise Wireless (Cradlepoint),4G,2015,2020,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MC20GPO,"GPIO Cable, 2X10 Black 1M; Used with MC20-GPO GPIO Expansion Module, S400/S450",,,,,,(blank),Accessory,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MC300LEVZ,MC300LE-VZ,Ericsson Enterprise Wireless (Cradlepoint),4G,2014,2019,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MC300LP,MC300LP,Ericsson Enterprise Wireless (Cradlepoint),4G,2014,2019,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MC300LP2EU,MC300LP2-EU,Ericsson Enterprise Wireless (Cradlepoint),4G,2014,2019,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MC300LPAT,MC300LP-AT,Ericsson Enterprise Wireless (Cradlepoint),4G,2014,2019,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MC4001200M,MC400-1200M,Ericsson Enterprise Wireless (Cradlepoint),4G,2020,2025,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MC4001200MB,MC400-1200M-B,,,,,Modem module; ratings depend on host device,4G LTE Cat 18 (MC400-1200M‚ÄëB) or 5G (other variants); this SKU is Cat 18,Modem,,none,n/a (internal module),n/a (internal module),n/a (internal module),no,poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
MC400600MCAT,MC400-600M-C-AT,Ericsson Enterprise Wireless (Cradlepoint),4G,2020,2025,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MC400LE2SP,MC400LE2-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2014,2019,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MC400LP3EUARC,MC400LP3-EU-ARC,Ericsson Enterprise Wireless (Cradlepoint),4G,2016,2021,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MC400LP4,MC400LP4,Ericsson Enterprise Wireless (Cradlepoint),4G,2020,2025,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MC400LP5,MC400LP5,Ericsson Enterprise Wireless (Cradlepoint),4G,2022,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MC400LP6,MC400LP6,Ericsson Enterprise Wireless (Cradlepoint),4G,2022,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MC400LPEGN,MC400LPE-GN,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MC400LPEGNARC,MC400LPE-GN-ARC,Ericsson Enterprise Wireless (Cradlepoint),4G,2016,2021,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MC400LPESP,MC400LPE-SP,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MC400LPESPARC,MC400LPE-SP-ARC,Ericsson Enterprise Wireless (Cradlepoint),4G,2016,2021,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MC400LPEVZ,MC400LPE-VZ,Ericsson Enterprise Wireless (Cradlepoint),4G,2018,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MC400LPEVZARC,MC400LPE-VZ-ARC,Ericsson Enterprise Wireless (Cradlepoint),4G,2016,2021,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MG21,MG21,Cisco (Meraki),4G,2024,2029,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MG21E,MG21E,Cisco (Meraki),4G,2024,2029,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MG21EHWNA,MG21E-HW-NA,Cisco (Meraki),4G,2024,2029,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MG21EHWWW,MG21E-HW-WW,Cisco (Meraki),4G,2024,2029,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MG21HWNA,MG21-HW-NA,Cisco (Meraki),4G,2025,2029,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MG21HWWW,MG21-HW-WW,Cisco (Meraki),4G,2025,2029,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MG41,MG41 (Cat 18 LTE) | MG41 (Cat18 LTE) or - (5G-capable) MG551E still (Note: MG21 series supported of 2025) as,,,,,IP67; -30°C to 50°C operating (per Meraki docs),4G LTE Cat 18 Advanced Pro,Adapter,,none,Cellular WAN; 1x 1GbE RJ45 dedicated + 1x 1GbE RJ45 convertible LAN/WAN,2x 1GbE RJ45,Cellular WAN; 1x 1GbE RJ45 dedicated + 1x 1GbE RJ45 convertible LAN/WAN,no,poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
MG51,MG51,Cisco (Meraki),5G,2025,2030,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MG51EHW,MG51E-HW,Cisco (Meraki),5G,2025,2030,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MG51HW,MG51-HW,Cisco (Meraki),5G,2025,2030,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MG90,MG90,Semtech (Sierra Wireless),4G,2025,2028,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MINI15GN,EXM-MINI-15GN,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MKS001,MKS-001,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MKS002,MKS-002,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MKS003,MKS-003,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MKS004,MKS-004,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MKS005,MKS-005,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MKS006,MKS-006,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MKS007,MKS-007,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MKS008,MKS-008,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MKS009,MKS-009,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MKS010,MKS-010,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MKS011,MKS-011,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MP70,MP70 (Cat 12),Semtech (Sierra Wireless),4G,2021,2025,IP64 sealed aluminum; MIL-STD-810G; -30°C to 70°C,4G LTE Cat 12 (600/150 Mbps peak) with wide band support; 3G fallback,Router,,Optional dual-band 802.11ac (up to 3x3 MIMO) on Wi‑Fi SKUs,4x 1GbE RJ45,4x 1GbE RJ45,4x 1GbE RJ45,yes (RS‑232 DB‑9),poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv; router_pricing_catalog_normalized.csv
MR10NW,ANT-MR-10-N-W,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MR20GSW6,ANT-MR-20G-S-W-6,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MR40GSW6,ANT-MR-40G-S-W-6,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
MTELAT6B07US,MTE-LAT6-B07-US,MultiTech,4G,2025,2025,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MTRG3B16,MTR-G3-B16,MultiTech,4G,2021,2021,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MTRG3B16EUGB,MTR-G3-B16-EU-GB,MultiTech,4G,2021,2021,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MTRMNG2B07,MTR-MNG2-B07,MultiTech,4G,2025,2025,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MTRMNG2B07WW,MTR-MNG2-B07-WW,MultiTech,4G,2025,2025,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MTRMNG2B10,MTR-MNG2-B10,MultiTech,4G,2025,2025,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MTRMNG2B10WW,MTR-MNG2-B10-WW,MultiTech,4G,2025,2025,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MX64,MX64,Cisco (Meraki),4G,2022,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
MX67C,MX67C,,,,,Indoor desktop,4G LTE Cat 6 integrated modem,Router,,none,2x 1GbE (one WAN/LAN); LTE modem as WAN,4x 1GbE (one can be WAN or LAN),2x 1GbE (one WAN/LAN); LTE modem as WAN,no,poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
NA649496,NA649496,,,,,,,Unknown,yes,,,,,,"ruggedization, modem_type, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
NCX0001VESC,1-yr NetCloud Essentials for Virtual Edge with Secure Connect,,,,,,(blank),Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
NCX0003VESC,3-yr NetCloud Essentials for Virtual Edge with Secure Connect,,,,,,(blank),Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
NCX0005VESC,5-yr NetCloud Essentials for Virtual Edge with Secure Connect,,,,,,(blank),Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
NQ15,EXC-NQ-15,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
NSM15,EXC-NSM-15,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
NSM30,EXC-NSM-30,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
NVG558,Arris NVG558 LTE Router,,,,,,5G gateway (web-sourced model index),Router,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
NZ1104048,AU&NZ,,,,,,LTE/HSPA+,Unknown,,,,,LTE/HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
NZ1104049,AU&NZ,,,,,,LTE/HSPA+,Unknown,,,,,LTE/HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
NZ1104183,AU&NZ,,,,,,LTE/HSPA+,Unknown,,,,,LTE/HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
NZ1104184,AU&NZ,,,,,,LTE/HSPA+,Unknown,,,,,LTE/HSPA+,,"ruggedization, poe, wifi, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
ODU2002NAVA,ODU2002NAVA,,,,,,5G/CAT19,Unknown,yes,802.11b/g/n,,,2 * 2500/1000/100/10 Mbps/ PoE on 1 Port,,"ruggedization, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
OR170840001,"SIM insertion of 1 SIM per NetCloud package, must be combined with one of the following; 170594-000, 170594-002, 170752-000, 170752-001,170753-000, or 170840-001 or Customer Supplied",,,,,,(blank),Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
PLAN19,1-yr NetCloud Branch 5G Adapter Advanced Plan,,,,,,Advanced Upgrade,Accessory,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
PLS242G650W,PLS-24-2G-650W,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
PLS24H2G410W,PLS-24-H2G-410W,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
PLS48H2G740W,PLS-48-H2G-740W,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
PRB11N,PRB-11N,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
PRO20,FHB-PRO-A,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
PROTECT10,SFC-CLD-F,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
PROTECT20,SFC-CLD-G,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
PROTECT500,SFC-CLD-B,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
PTA0149HW,"Wall Mount Bracket- (Husky, Great Pyrenees)",,,,,N/A,N/A,Antenna,,N/A,N/A,N/A,N/A,N/A,poe,feb2026routers.csv
PTA0587,"Ground plane with adhesive back; 20""x20"", can be cut to size",,,,,N/A,N/A,Antenna,,N/A,N/A,N/A,N/A,N/A,poe,feb2026routers.csv
QQ15,EXC-QQ-15,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
R1900,"1-yr NetCloud Mobile Performance Essentials Plan, Advanced Plan, and R1900 router with WiFi (5G modem, 4FF SIM optional but not included), no AC power supply or antennas, Global",,,,,,(blank),Accessory,yes,,,,,,"ruggedization, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
R2105,"1-yr NetCloud Mobile Performance 5G Router Essentials Plan, Advanced Plan, and R2105 router with WiFi (5G modem, 4FF SIM optional but not included), integrated antennas, no AC power supply, Global",,,,,,(blank),Accessory,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
R21055GB,"5G Captive Modem and WiFi Accessory, Outdoor, R2105-5GB (4.1Gbps modem), Global; Used with R1900 and E400",,,,,,(blank),Accessory,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
R2155,"1-yr NetCloud Mobile Performance 5G Router Essentials Plan, Advanced Plan, and R2155 router no WiFi (5G modem, 4FF SIM optional but not included), integrated antennas, no AC power supply, Global",,,,,,(blank),Accessory,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
R21555GB,"5G Captive Modem Accessory, Outdoor, R2155-5GB (4.1Gbps modem), Global; Used with R1900, R920, IBR1700, E300, E3000, and E400",,,,,,(blank),Accessory,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
R2400,R2400 (Wi-Fi 7 variants),,,,,Ruggedized (see internal R2400 datasheet),5G (SKU-dependent),Router,,Wi-Fi 7 (SKU-dependent; verify exact model),Not listed (verify by exact R2400 SKU),Not listed (verify by exact R2400 SKU),Not listed (verify by exact R2400 SKU),Not listed,poe,feb2026routers.csv
R24H2G250W,PLS-R-24-H2G-250W,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
R920,R920,,,,,Ruggedized router for mobile deployments (check SKU for rating),4G LTE Cat 7 embedded modem (300/150 Mbps peak) with dual SIM,Router,,"Wi‚ÄëFi 6 (802.11ax), dual-band, 2x2 MU‚ÄëMIMO",2x 1GbE RJ45 (LAN/WAN switchable),2x 1GbE RJ45 (LAN/WAN switchable),2x 1GbE RJ45 (LAN/WAN switchable),no,poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv; router_pricing_catalog_normalized.csv
R920C7B,R920-C7B,,,,,Ruggedized router for mobile deployments (check SKU for rating),4G LTE Cat 7 embedded modem (300/150 Mbps peak) with dual SIM,Router,,"Wi‚ÄëFi 6 (802.11ax), dual-band, 2x2 MU‚ÄëMIMO",2x 1GbE RJ45 (LAN/WAN switchable),2x 1GbE RJ45 (LAN/WAN switchable),2x 1GbE RJ45 (LAN/WAN switchable),no,poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
R920FIPS,R920-FIPS,,,,,Ruggedized router for mobile deployments (check SKU for rating),4G LTE Cat 7 embedded modem (300/150 Mbps peak) with dual SIM,Router,,"Wi‚ÄëFi 6 (802.11ax), dual-band, 2x2 MU‚ÄëMIMO",2x 1GbE RJ45 (LAN/WAN switchable),2x 1GbE RJ45 (LAN/WAN switchable),2x 1GbE RJ45 (LAN/WAN switchable),no,poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
R920FIPSC7A,R920-FIPS-C7A,,,,,Ruggedized router for mobile deployments (check SKU for rating),4G LTE Cat 7 embedded modem (300/150 Mbps peak) with dual SIM,Router,,"Wi‚ÄëFi 6 (802.11ax), dual-band, 2x2 MU‚ÄëMIMO",2x 1GbE RJ45 (LAN/WAN switchable),2x 1GbE RJ45 (LAN/WAN switchable),2x 1GbE RJ45 (LAN/WAN switchable),no,poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
R980,"1-yr NetCloud Mobile Performance Essentials Plan, Advanced Plan, and R980 Router with WiFi (5G modem 4FF SIM slots, and embedded eSIM), no AC power supply or antennas, Global)",,,,,,(blank),Accessory,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
R9805GDA,R980 1 YR Mobile Performance Essentials + advanced,,,,,IP64; MIL-STD-810H; Class I Div 2,5G NR (FR1) + 4G LTE Cat 19,Router,,"Wi-Fi 6 (dual-radio, dual-band, 2x2)",2x 1GbE RJ45 (LAN/WAN switchable),2x 1GbE RJ45 (LAN/WAN switchable),2x 1GbE RJ45 (LAN/WAN switchable),no,poe,feb2026routers.csv
RE600,RE600,,,,,indoor CPE/router; no IP rating listed,5G NR (NSA) + 4G LTE Cat 19,Router,,Wi‑Fi 6 (supports up to 64 Wi‑Fi clients),2x Gigabit Ethernet ports (WAN/LAN configurable),2x Gigabit Ethernet ports (WAN/LAN configurable),2x Gigabit Ethernet ports (WAN/LAN configurable),no,poe,feb2026routers.csv; router_pricing_catalog_normalized.csv
RJ45,Rollover Adapter for RJ45 Ethernet M/F,,,,,,(blank),Accessory,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
RJ45RJ45,"Rollover Serial Cable, RJ45-RJ45 Gray 2.1M; Used with W1850",,,,,,(blank),Accessory,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
RJ45TORJ45,"Cable, Ethernet RJ45-to-RJ45, black, 1.5 meters; Used with W1850",,,,,,(blank),Accessory,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
RQ15,EXC-RQ-15,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
RR15,EXC-RR-15,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
RR30,EXC-RR-30,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
RS15,EXC-RS-15,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
RS232,"Extensibility Cable, RS232 DB9 to Screw Lock USB Type A, 400mm; Used with R920 and S700",,,,,,(blank),Accessory,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
RUT240,RUT240,Teltonika,4G,2023,2028,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
RUT360,RUT360,Teltonika,4G,2023,2028,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
RUT361,RUT361,,,,,Aluminum housing; -40°C to 75°C,4G LTE Cat 6 (300/50 Mbps peak) with carrier aggregation; 3G fallback,Router,,"Wi‑Fi 4 (802.11 b/g/n), 2x2 MIMO",2x 10/100 Mbps RJ45 (one can be WAN),2x 10/100 Mbps RJ45,2x 10/100 Mbps RJ45 (one can be WAN),no,poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
RV50,RV50,Semtech (Sierra Wireless),4G,2019,2022,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
RV50X,RV50X,Semtech (Sierra Wireless),4G,2025,2030,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
RV55,RV55,,,,,IP64; MIL-STD-810G; -40°C to 70°C (Wi‑Fi SKUs: -30°C to 70°C),4G LTE Cat 12 (or Cat 4 variants) with dual-band Wi‑Fi option,Router,,Optional dual 1x1 Wi‑Fi 5,1x 1GbE Ethernet,1x 1GbE Ethernet,1x 1GbE Ethernet,yes (single/dual serial via accessory),poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv; router_pricing_catalog_normalized.csv
RX30POE,"GPIO Cable, Small 2x3MPP Black 3M 18AWG; Used with RX30-POE, RX30-MC",,,,,,(blank),Accessory,yes,,,,,,"ruggedization, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
RX55,RX55,,,,,IP64 sealed aluminum; MIL-STD-810G; -40°C to 70°C,4G LTE-A Cat 7 (300/150 Mbps peak) with dual SIM,Router,,Dual 1x1 Wi‑Fi 5 (on Wi‑Fi models),1x 1GbE RJ45,1x 1GbE RJ45,1x 1GbE RJ45,yes (RS‑232 DB‑9; dual serial on base model with Y‑cable),poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv; router_pricing_catalog_normalized.csv
S2000E,S2000E,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
S2000E3,S2000e-3,,,,,,"AT&T, T-Mobile & Verizon, Generic CE (EU, UK, ME), RCM, ISED (Canada)",Accessory,yes,,,,,,"ruggedization, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
S400,S400,,,,,IP30; plastic housing; MIL-STD-810H shock/vibration listed,4G LTE Cat 6,Router,,"Wi-Fi 5 (single-radio dual-band, non-concurrent; 1x1 802.11ac)",1x 1GbE RJ45 (LAN/WAN selectable),1x 1GbE RJ45 (LAN/WAN selectable),1x 1GbE RJ45 (LAN/WAN selectable),yes (optional via expansion module),poe,feb2026routers.csv; router_pricing_catalog_normalized.csv
S400C6EA,S400-C6-EA,,,,,IP30; DIN rail friendly; built for temperature and vibration in light industrial cabinets,4G LTE Cat 6 (300/50 Mbps peak) with dual SIM,Adapter; Router,,"Wi‚ÄëFi 5 (802.11ac), single-radio 1x1, non-concurrent",1x 1GbE RJ45 (LAN/WAN selectable),1x 1GbE RJ45 (LAN/WAN selectable); expansion module can add 2x Fast Ethernet,1x 1GbE RJ45 (LAN/WAN selectable),yes (via serial expansion module),poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
S450,"3-yr NetCloud IoT Essentials Plan, Advanced Plan, Secure Connect SASE and S450 router (300 Mbps modem), with AC power supply and antennas, N.AMER",,,,,,(blank),Accessory,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
S700,S700,,,,,IP50; aluminum housing; semi-ruggedized,4G LTE Cat 4 (DC-HSPA+ fallback),Router,,"Wi-Fi 6 (802.11ax 2x2, dual-band)",2x 1GbE RJ45 (LAN/WAN switchable),2x 1GbE RJ45 (LAN/WAN switchable),2x 1GbE RJ45 (LAN/WAN switchable),no,poe,feb2026routers.csv; router_pricing_catalog_normalized.csv
S700C4D,S700-C4D,,,,,IP30 aluminum housing; -20°C to 60°C operating; vibration tested,4G LTE Cat 4 (150/50 Mbps peak) with dual SIM; 3G fallback on some SKUs,Router,,"Wi‑Fi 6 (802.11ax), dual-band, 2x2 MIMO",2x 1GbE RJ45 (LAN/WAN switchable),2x 1GbE RJ45 (LAN/WAN switchable),2x 1GbE RJ45 (LAN/WAN switchable),yes (USB to RS‑232 cable option),poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
S700C4E,S700-C4E,,,,,IP30 aluminum housing; -20°C to 60°C operating; vibration tested,4G LTE Cat 4 (150/50 Mbps peak) with dual SIM; 3G fallback on some SKUs,Router,,"Wi‑Fi 6 (802.11ax), dual-band, 2x2 MIMO",2x 1GbE RJ45 (LAN/WAN switchable),2x 1GbE RJ45 (LAN/WAN switchable),2x 1GbE RJ45 (LAN/WAN switchable),yes (USB to RS‑232 cable option),poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
S750,S750,,,,,IP30 aluminum housing; -20°C to 60°C operating; vibration tested,4G LTE Cat 4 (150/50 Mbps peak) with dual SIM; 3G fallback on some SKUs,Router,,"Wi‑Fi 6 (802.11ax), dual-band, 2x2 MIMO",2x 1GbE RJ45 (LAN/WAN switchable),2x 1GbE RJ45 (LAN/WAN switchable),2x 1GbE RJ45 (LAN/WAN switchable),yes (USB to RS‑232 cable option),poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv; router_pricing_catalog_normalized.csv
S750C4D,S750-C4D,,,,,IP30 aluminum housing; -20°C to 60°C operating; vibration tested,4G LTE Cat 4 (150/50 Mbps peak) with dual SIM; 3G fallback on some SKUs,Adapter; Router,,"Wi‑Fi 6 (802.11ax), dual-band, 2x2 MIMO",2x 1GbE RJ45 (LAN/WAN switchable),2x 1GbE RJ45 (LAN/WAN switchable),2x 1GbE RJ45 (LAN/WAN switchable),yes (USB to RS‑232 cable option),poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
SCAB000216,SCAB000216,,,,,,"4 wires power cord, 4 pin molex coneector, X feet (Y meters)",Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SCAB000229,SCAB000229,,,,,,"26PIN All-in-one Test Cable: The cable has P1 and P2 ends: P1 is 26PIN female, connected to VT310; P2 is open end, which requires a 9-48V adaptor. Suitable for engineering environments and indoor tests.",Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SCAB000231,SCAB000231,,,,,,"OBD-II 7PIN All-in-one Cable: The cable has P1, P2 and P3 ends: P1 is 26PIN female connected to VT310; P2 is OBD-II male connected to the vehicle; P3 is ignition signal terminal connected to the ignition on/off. Suitable for heavy trucks with OBD-II vehicle diagnostic interfaces, and powers VT310 through interfaces.",Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SCAB000232,SCAB000232,,,,,,"OBD-II 26PIN All-in-one Cable: This cable has P1, P2, P3 and P4 ends: P1 is 26PIN female connected to VT310; P2 is OBD-II male connected to the vehicle; P3 is open end that includes I/O, RS232-1 and 1-Wire; P4 is ignition signal terminal connected to the ignition on/off. Suitable for heavy trucks with OBD-II vehicle diagnostic interfaces, and powers VT310 through interfaces. Recommended for customers who need DI, DO, AI, 1-Wire devices or vehicle-mounted controllers.",Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SCAB000233,SCAB000233,,,,,,"20 pin connector to Deustch Black 6 harness, CAN bus cable, 1 CAN bus, 3 meters",Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SCAB000234,SCAB000234,,,,,,"20 pin connector to Deustch Green 9 connector harness, CAN bus cable, 2 CAN bus, 3 mtrs",Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SCAB000235,SCAB000235,,,,,,"20 pin connector to ODB-11 harness, CAN bus cable, 3 meters",Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SIM46,"SIM, US Cellular, 2FF, 4FF Triple punch, Critical Connectivity plans, IoT Robust QPP – SIM 46.04",,,,,,(blank),Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SIM66,"SIM, US Cellular, 2FF, 4FF Triple punch, 4G-5G plans, IoT Trio MAX – SIM 66.04",,,,,,(blank),Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SKYUS100,SKYUS100,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SLM22GSB6,ANT-SLM-22G-S-B-6,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SLM40GSB6,ANT-SLM-40G-S-B-6,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SLM40GSRAB1,ANT-SLM-40G-S-RA-B-1,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SQ15,EXC-SQ-15,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SS15,EXC-SS-15,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SS30,EXC-SS-30,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL321,SVL-321,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL333,SVL-333,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL411,SVL-411,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL412,SVL-412,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL413,SVL-413,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL418,SVL-418,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL419,SVL-419,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL420,SVL-420,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL421,SVL-421,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL422,SVL-422,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL423,SVL-423,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL424,SVL-424,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL425,SVL-425,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL426,SVL-426,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL429,SVL-429,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL430,SVL-430,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL431,SVL-431,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL433,SVL-433,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL434,SVL-434,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL435,SVL-435,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL436,SVL-436,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL437,SVL-437,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL440,SVL-440,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL442,SVL-442,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL443,SVL-443,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL445,SVL-445,,,,,ip67,,Unknown,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL454,SVL-454,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL455,SVL-455,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL457,SVL-457,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL458,SVL-458,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL459,SVL-459,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL464,SVL-464,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL467,SVL-467,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL469,SVL-469,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL470,SVL-470,,,,,ip67,,Unknown,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL471,SVL-471,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL472,SVL-472,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL473,SVL-473,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL474,SVL-474,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL475,SVL-475,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL477,SVL-477,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL478,SVL-478,,,,,ip67,,Unknown,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL481,SVL-481,,,,,ip67,,Unknown,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL483,SVL-483,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL486,SVL-486,,,,,ip67,,Unknown,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL487,SVL-487,,,,,ip67,,Unknown,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL488,SVL-488,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL494,SVL-494,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL495,SVL-495,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL496,SVL-496,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL497,SVL-497,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL499,SVL-499,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL501,SVL-501,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL503,SVL-503,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL506,SVL-506,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL507,SVL-507,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL508,SVL-508,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL509,SVL-509,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL510,SVL-510,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL511,SVL-511,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL512,SVL-512,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL513,SVL-513,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL517,SVL-517,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL518,SVL-518,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL519,SVL-519,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL520,SVL-520,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL521,SVL-521,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL522,SVL-522,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL523,SVL-523,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL524,SVL-524,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL525,SVL-525,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL526,SVL-526,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL527,SVL-527,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL528,SVL-528,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL530,SVL-530,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL531,SVL-531,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL533,SVL-533,,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL534,SVL-534,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL535,SVL-535,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL536,SVL-536,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL537,SVL-537,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL540,SVL-540,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL544,SVL-544,,,,,ip67,,Unknown,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL549,SVL-549,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL554,SVL-554,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL568,SVL-568,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL569,SVL-569,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL570,SVL-570,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL573,SVL-573,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL574,SVL-574,,,,,ip67,,Unknown,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL575,SVL-575,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL576,SVL-576,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL578,SVL-578,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL579,SVL-579,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL580,SVL-580,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL581,SVL-581,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL582,SVL-582,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL583,SVL-583,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL587,SVL-587,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL589,SVL-589,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL590,SVL-590,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL591,SVL-591,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL601,SVL-601,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL602,SVL-602,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL603,SVL-603,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL604,SVL-604,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL605,SVL-605,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL606,SVL-606,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL607,SVL-607,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL608,SVL-608,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL609,SVL-609,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL610,SVL-610,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL611,SVL-611,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL612,SVL-612,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL613,SVL-613,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL614,SVL-614,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL617,SVL-617,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL618,SVL-618,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL619,SVL-619,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL620,SVL-620,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL621,SVL-621,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL623,SVL-623,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL624,SVL-624,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL625,SVL-625,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL626,SVL-626,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL627,SVL-627,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL628,SVL-628,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL630,SVL-630,,,,,ip67,,Unknown,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL631,SVL-631,,,,,ip67,,Unknown,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL633,SVL-633,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL635,SVL-635,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL637,SVL-637,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL640,SVL-640,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL641,SVL-641,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL642,SVL-642,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL643,SVL-643,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL644,SVL-644,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL645,SVL-645,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL646,SVL-646,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL648,SVL-648,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL649,SVL-649,,,,,ip67,,Unknown,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL650,SVL-650,,,,,ip67,,Unknown,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL651,SVL-651,,,,,ip67,,Unknown,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL656,SVL-656,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL657,SVL-657,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL658,SVL-658,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL659,SVL-659,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL660,SVL-660,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL665,SVL-665,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL667,SVL-667,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL668,SVL-668,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL672,SVL-672,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL673,SVL-673,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL675,SVL-675,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL676,SVL-676,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL677,SVL-677,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL678,SVL-678,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL679,SVL-679,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL681,SVL-681,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL682,SVL-682,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL683,SVL-683,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL684,SVL-684,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL685,SVL-685,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL686,SVL-686,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL687,SVL-687,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL688,SVL-688,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL689,SVL-689,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL690,SVL-690,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL691,SVL-691,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL696,SVL-696,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL697,SVL-697,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL698,SVL-698,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL699,SVL-699,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL700,SVL-700,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL703,SVL-703,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL704,SVL-704,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL705,SVL-705,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL706,SVL-706,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL707,SVL-707,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL708,SVL-708,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL709,SVL-709,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL710,SVL-710,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL711,SVL-711,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL712,SVL-712,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL713,SVL-713,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL714,SVL-714,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL716,SVL-716,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL717,SVL-717,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL718,SVL-718,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL721,SVL-721,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL722,SVL-722,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL723,SVL-723,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL724,SVL-724,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL727,SVL-727,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL730,SVL-730,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL732,SVL-732,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL734,SVL-734,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL737,SVL-737,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL738,SVL-738,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL739,SVL-739,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL740,SVL-740,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL741,SVL-741,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL742,SVL-742,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL743,SVL-743,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL745,SVL-745,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL746,SVL-746,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL747,SVL-747,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL748,SVL-748,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL749,SVL-749,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL750,SVL-750,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL752,SVL-752,,,,,ip67,,Unknown,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL753,SVL-753,,,,,ip67,,Unknown,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL755,SVL-755,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL757,SVL-757,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL761,SVL-761,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL762,SVL-762,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL764,SVL-764,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL765,SVL-765,,,,,ip67,,Unknown,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL766,SVL-766,,,,,ip67,,Unknown,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL767,SVL-767,,,,,ip67,,Unknown,,,,,,,"modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL768,SVL-768,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL771,SVL-771,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL772,SVL-772,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL773,SVL-773,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL775,SVL-775,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL776,SVL-776,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL777,SVL-777,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL778,SVL-778,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL779,SVL-779,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL781,SVL-781,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL782,SVL-782,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL783,SVL-783,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL784,SVL-784,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL785,SVL-785,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL786,SVL-786,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL787,SVL-787,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL791,SVL-791,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL793,SVL-793,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL794,SVL-794,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL796,SVL-796,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL797,SVL-797,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL798,SVL-798,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL799,SVL-799,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SVL923,SVL-923,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SW2400P,"1-yr NetCloud LAN Switch Essentials Plan, and SW2400P 24 - 1GLE PoE switch, North America",,,,,,(blank),Unknown,yes,,,,,,"ruggedization, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SWITCH24PORT,ECP-E-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
SWITCH48PORT,ECP-F-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
TC01NCADV,1-yr NetCloud Ruggedized IoT Advanced Plan (requires corresponding Essentials Plan),,,,,,Advanced Upgrade,Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
TC03NCADV,3-yr NetCloud Ruggedized IoT Advanced Plan (requires corresponding Essentials Plan),,,,,,(blank),Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
TC05NCADV,5-yr NetCloud Ruggedized IoT Advanced Plan (requires corresponding Essentials Plan),,,,,,(blank),Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
TD01NCADV,1-yr NetCloud IoT Advanced Plan for Private Cellular Networks (requires corresponding Essentials packages),,,,,,Advanced Upgrade,Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
TD03NCADV,3-yr NetCloud IoT Advanced Plan for Private Cellular Networks (requires corresponding Essentials packages),,,,,,(blank),Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
TD05NCADV,5-yr NetCloud IoT Advanced Plan for Private Cellular Networks (requires corresponding Essentials packages),,,,,,(blank),Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
TO70C,"Power Supply, 12V, Small 2x2 C8 (C7 line cord not include), -30C to 70C; Used with R1900, IBR1700, IBR900, R500-PLTE",,,,,,(blank),Unknown,yes,,,,,,"ruggedization, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
TRANSFER19,Ericom Jumpstart Deployment Assistance only in Year 1 Includes: Best Practices & Knowledge Transfer,,,,,,(blank),Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
TX54A106,TX54-A106,Digi,4G,2024,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
TX54A112,TX54-A112,Digi,4G,2024,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
TX54A206,TX54-A206,Digi,4G,2024,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
TX64,TX64,,,,,IP40 aluminum housing (TX64); rail variant can be IP66,5G NR Sub‚Äë6 with LTE-Advanced Pro fallback (Cat 20 on some SKUs); older LTE-only variants exist,Router,,Dual Wi‚ÄëFi 6 radios (backhaul + passenger AP on many SKUs),Cellular WAN(s) + 4x 1GbE RJ45 (configurable WAN/LAN),4x 1GbE RJ45,Cellular WAN(s) + 4x 1GbE RJ45 (configurable WAN/LAN),yes (RS‚Äë232 DB9),poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv
TX64A121,TX64-A121,Digi,4G,2024,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
TX64A141,TX64-A141,Digi,4G,2024,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
TX64A161PR,TX64-A161-PR,Digi,4G,2024,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
TX64R210PR,TX64-R210-PR,Digi,4G,2024,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
UBRLTEUSTPRM,UBR-LTE-US-T-PRM,Peplink,4G,2023,TBD,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
USB800,USB800,,,,,,AT&T,Router,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
USER19,1-yr Ericom Web Application Isolation per User,,,,,,Ericom Web Application Isolation,Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
V001Y,ETC-V00-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
V002Y,ETC-V00-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
V004Y,ETC-V00-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
V011Y,ETC-V01-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
V012Y,ETC-V01-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
V014Y,ETC-V01-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
V021Y,ETC-V02-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
V022Y,ETC-V02-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
V024Y,ETC-V02-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
V031Y,ETC-V03-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
V032Y,ETC-V03-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
V034Y,ETC-V03-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
V041Y,ETC-V04-1Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
V042Y,ETC-V04-2Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
V044Y,ETC-V04-4Y,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
V2000,V2000,,,,,,,Router,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
V810A,V810A,,,,,,,Router,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
V810AD,v810AD,,,,,portable indoor router; no IP rating listed,4G LTE Cat 4 (150/50 Mbps),Router,,dual-band Wi‑Fi: 2.4 GHz 802.11 b/g/n + 5 GHz 802.11 a/ac,1x RJ45 Ethernet port,1x RJ45 Ethernet port,1x RJ45 Ethernet port,no,poe,feb2026routers.csv; router_pricing_catalog_normalized.csv
V810V,V810V,,,,,,,Router,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
V810VDBP,V810VD-BP,,,,,,,Router,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
VPAK390001,VPAK390001,,,,,,ODU-50 feet kit,Unknown,,50ft,,,included,,"ruggedization, poe, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
VPAK390002,VPAK390002,,,,,,ODU-100 feet kit,Unknown,,100ft,,,included,,"ruggedization, poe, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
VPAK390003,VPAK390003,,,,,,ODU-200 feet kit,Unknown,,200ft,,,included,,"ruggedization, poe, wan_ports, lan_ports, serial_ports",router_pricing_catalog_normalized.csv
VT320FS33,VT320FS33,,,,,,"LTE Cat 1, Verizon, AT&T, T-Mobile, Canada",Unknown,,N/A,,,NO,N/A,"ruggedization, poe, wan_ports, lan_ports",router_pricing_catalog_normalized.csv
W01U,W01-U,,,,,,,Router,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
W01VZ,W01-VZ,,,,,,,Router,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
W18505GB,W1850-5GB,Ericsson Enterprise Wireless (Cradlepoint),5G,2024,2029,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
W18505GC,"5G Captive Modem Accessory, Indoor, W1850-5GC (3.4Gbps modem), Americas; Used with CR4250-PoE, R1900, IBR1700, E300, E3000, and E400",,,,,,(blank),Accessory,yes,,,,,,"ruggedization, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
W1855,W1855 1YR Essentials + Advanced,,,,,IP67; corrosion resistance; -30°C to 70°C; 135 MPH wind rating,5G FR1 NSA/SA (3GPP Rel 16) + 4G LTE Cat 19 (dual connectivity),Router,,none,2x 2.5 GbE RJ45 (LAN/WAN switchable),2x 2.5 GbE RJ45 (LAN/WAN switchable),2x 2.5 GbE RJ45 (LAN/WAN switchable),no,poe,feb2026routers.csv; router_pricing_catalog_normalized.csv
W18555GC,"5G Captive Modem Accessory, Outdoor, W1855-5GC (3.4Gbps modem), North America; Used with CR4250-PoE, R1900, IBR1700, E300, E3000, and E400",,,,,,(blank),Accessory,yes,,,,,,"ruggedization, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
W2000,W2000,Ericsson Enterprise Wireless (Cradlepoint),5G,2022,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
W20005GA,W2000-5GA,Ericsson Enterprise Wireless (Cradlepoint),5G,2022,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
W20005GB,W2000-5GB,Ericsson Enterprise Wireless (Cradlepoint),5G,2022,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
W2005,W2005,Ericsson Enterprise Wireless (Cradlepoint),5G,2024,2029,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
W20055GA,W2005-5GA,Ericsson Enterprise Wireless (Cradlepoint),5G,2022,2027,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
W20055GB,W2005-5GB,Ericsson Enterprise Wireless (Cradlepoint),5G,2024,2029,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
W4005,"1-yr NetCloud Branch 5G Adapter Essentials Plan, Advanced Plan, and W4005 outdoor adapter (5GB modem), NA",Ericsson Enterprise Wireless (Cradlepoint),5G,2025,2030,,5G Continuity Essentials+Advanced Packages,Accessory,yes,,,,,,"ruggedization, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
W40055GB,W4005-5GB,Ericsson Enterprise Wireless (Cradlepoint),4G,2025,2030,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
WB550,WB550,,,,,,,Router,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
WHITE6001121,"6in1 Dome Antenna - 2x4G, GNSS, 3xWi-Fi, 2.4/5GHz, Bolt Mount, 5m, White",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
WHITE6001262,"6in1 SharkFin Antenna - 2xLTE, GNSS, 3xWi-Fi, 2.4/5GHz, Bolt Mount, 4m, White",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
WHITE6001284,"3in1 Wi-Fi Antenna - 3xWi-Fi, 2.4/5GHz, Bolt Mount, 4m, White",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
WHITE6001352,"4in1 Wi-Fi Antenna - 4xWi-Fi 2.4/5GHz, Bolt Mount, 4m, Fakra, White",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
WHITE6001355,"10in1 Dome Antenna - 4x5G/LTE, GNSS, 5xWi-Fi 2.4/5GHz, Bolt Mount, 5m, Fakra, White",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
WHITE6001363,"6in1 Dome Antenna - 2x5G/4G, GNSS, 3xWi-Fi, 2.4/5GHz, Bolt Mount, 5m, White",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
WHITE6001400,"9in1 Dome Antenna - 4x5G/LTE, GNSS, 4xWi-Fi 2.4/5GHz, Bolt Mount, 5m, Fakra, White",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
WHITE6001445,"5in1 Dome Antenna - 4x5G/LTE, GNSS, Bolt Mount, 5m, Fakra, White",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
WHITE6001500,"10in1 Dual Sharkfin Antenna - 4x5G/LTE, GNSS, 5xWi-Fi 2.4/5GHz, Bolt Mount, 4m, Fakra, White",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
WHITE6001501,"9in1 Dual Sharkfin Antenna - 4x5G/LTE, GNSS, 4xWi-Fi 2.4/5GHz, Bolt Mount, 4m, Fakra, White",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
WHITE6001524,"5in1 Dual Sharkfin Antenna - 4x5G/LTE, GNSS, Bolt Mount, 4m, Fakra, White",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
WHITE6001525,"7in1 Dual Sharkfin Antenna - 4x5G/LTE,GNSS L1/L5,2xWiFi 2.4/5GHz, Bolt Mount, 4m, White",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
WHITE6001526,"5in1 Dual Sharkfin Antenna - 4x5G/LTE, GNSS L1/L5, Bolt Mount, 4m, White",,,,,,,Accessory,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
WITH17032001,"Line Cord, 250V C5 1.8M (South Africa Type M); Used with 17032-001",,,,,,(blank),Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
WITH170869000,"Line Cord, 125V C7 1.8M (North America Type A); Used with 170869-000",,,,,,(blank),Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
WITH600M,"Cellular Antenna, Black mini, 600MHz - 6GHz, SMA, 140mm, Used with 600M, 150M, 10M modems",,,,,,Antennas,Accessory,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
WNCCR200A,Verizon Internet Gateway WNC-CR200A,,,,,,5G gateway (web-sourced model index),Router,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
WR11,WR11,Digi,4G,2022,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
WR11XT,WR11-XT,Digi,4G,2021,2023,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
WR21,WR21,Digi,4G,2016,2024,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
WR44,WR44,Digi,4G,2016,2021,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
WR44R,WR44-R,Digi,4G,2016,2021,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
WR44RR,WR44-RR,Digi,4G,2023,2025,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
X700,X700,,,,,indoor; 0°C to 40°C (operating),N/A (mesh Wi‑Fi node),Access Point,,dual-band Wi‑Fi 6 2x2 (2.4/5 GHz),2x 1 GbE LAN/WAN ports,2x 1 GbE LAN/WAN ports,2x 1 GbE LAN/WAN ports,no,poe,feb2026routers.csv
XC46BE,Verizon Business Internet Gateway XC46BE (Dragon),,,,,,5G gateway (web-sourced model index),Router,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
XR60,"XR60, 5G Router, Global, Dual Ethernet, includes 1-year AirLink Complete",,,,,sealed aluminum; IP64; MIL-STD-810H,5G + 4G LTE Cat 20 (4x4),Router,,"Wi-Fi 6 (optional, 2x2)","1x 1Gbps or 2x Ethernet (1Gbps + 5Gbps), by variant","1x 1Gbps or 2x Ethernet (1Gbps + 5Gbps), by variant","1x 1Gbps or 2x Ethernet (1Gbps + 5Gbps), by variant",yes (variant),poe,feb2026routers.csv; router_pricing_catalog_normalized.csv
XR80,XR80 (LTE Cat 20),,,,,IP64 sealed aluminum; MIL-STD-810G; -30°C to 70°C,4G LTE Cat 20 (LTE-only SKU); 5G variants exist,Router,,Optional Wi‑Fi 6 on Wi‑Fi SKUs,2x 1GbE + 1x 5GbE RJ45,2x 1GbE + 1x 5GbE RJ45,2x 1GbE + 1x 5GbE RJ45,yes,poe,feb2026routers.csv; replacement_devices_missing_from_dec2025routers.csv; router_pricing_catalog_normalized.csv
XR80WIFINA,XR80,,,,,IP64; sealed aluminum; MIL-STD-810G; -30°C to +70°C,5G SA/NSA + 4G LTE Cat 20 (5G SKU) or LTE Cat 20 (LTE SKU),Router,,Wi-Fi 6 (optional; 5x4 MIMO; AP + client),3x RJ45 total: 2x 1GbE + 1x 5GbE,3x RJ45 total: 2x 1GbE + 1x 5GbE,3x RJ45 total: 2x 1GbE + 1x 5GbE,yes,poe,feb2026routers.csv
XR90,XR90,,,,,IP64; sealed aluminum; MIL-STD-810G; -30°C to +70°C; rail/vehicle certs listed,5G SA/NSA (single or dual 5G),Router,,Wi-Fi 6 (dual radios; dual independent 4x4 MU-MIMO; AP + client),Single 5G: 4x Ethernet (3x 1GbE + 1x 5GbE); Dual 5G: 5x Ethernet (4x 1GbE + 1x 5GbE),Single 5G: 4x Ethernet (3x 1GbE + 1x 5GbE); Dual 5G: 5x Ethernet (4x 1GbE + 1x 5GbE),Single 5G: 4x Ethernet (3x 1GbE + 1x 5GbE); Dual 5G: 5x Ethernet (4x 1GbE + 1x 5GbE),yes,poe,feb2026routers.csv
YEAR9010403,AM Annual S&M (Server) - Enterprise Lite - 1 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010404,AM Annual S&M (Server) - Enterprise Lite - 3 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010405,AM Annual S&M (Server) - Enterprise Lite - 5 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010406,AM Annual S&M (Server) - Enterprise - 1 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010407,AM Annual S&M (Server) - Enterprise - 3 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010408,AM Annual S&M (Server) - Enterprise - 5 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010409,AM Annual S&M (Server) - Enterprise Unlimited - 1 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010415,AMM Annual S&M (Server) - Enterprise Lite - 1 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010416,AMM Annual S&M (Server) - Enterprise Lite - 3 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010417,AMM Annual S&M (Server) - Enterprise Lite - 5 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010418,AMM Annual S&M (Server) - Enterprise - 1 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010419,AMM Annual S&M (Server) - Enterprise - 3 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010420,AMM Annual S&M (Server) - Enterprise - 5 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010433,ACM Annual S&M (VM Server Software - Max 2 VM instances) - 1 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010434,ACM Annual S&M (VM Server Software - Max 2 VM instances) - 3 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010435,ACM Annual S&M (VM Server Software - Max 2 VM instances) - 5 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010436,ACM Annual S&M (VM Server Software - FIPS - Max 2 VM instances) - 1 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010437,ACM Annual S&M (VM Server Software - FIPS - Max 2 VM instances) - 3 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010438,ACM Annual S&M (VM Server Software - FIPS - Max 2 VM instances) - 5 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010439,ACM Annual S&M (Non-FIPS - per client) - 1 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010440,ACM Annual S&M (Non-FIPS - per client) - 3 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010441,ACM Annual S&M (Non-FIPS - per client) - 5 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010442,ACM Annual S&M (FIPS - per client) - 1 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010443,ACM Annual S&M (FIPS - per client) - 3 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010444,ACM Annual S&M (FIPS - per client) - 5 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010445,AMM Annual S&M (Hardware) - Enterprise Lite - 1 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010446,AMM Annual S&M (Hardware) - Enterprise Lite - 3 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010447,AMM Annual S&M (Hardware) - Enterprise Lite - 5 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010448,AMM Annual S&M (Hardware) - Enterprise - 1 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010449,AMM Annual S&M (Hardware) - Enterprise - 3 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010450,AMM Annual S&M (Hardware) - Enterprise - 5 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010451,ACM Annual S&M (Hardware) - 1 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010452,ACM Annual S&M (Hardware) - 3 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010453,ACM Annual S&M (Hardware) - 5 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
YEAR9010460,Hybrid Cloud - add-on - 1 year,,,,,,,Unknown,,,,,,,"ruggedization, modem_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
Z3C,Z3C,Cisco (Meraki),4G,2024,2029,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
Z3CHWNA,Z3C-HW-NA,Cisco (Meraki),4G,2024,2029,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
Z3HW,Z3-HW,Cisco (Meraki),4G,2024,2029,,,,,,,,,,"ruggedization, modem_type, device_type, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",routers_eos_eol_by_sku.csv
ZZZ260R060,"SIM, T-Mobile 2FF, 4FF Retail Triple Punch SIM SKU ZZZ260R060",,,,,,(blank),Unknown,,,,,,,"ruggedization, poe, wifi, wan_ports, lan_ports, ethernet_ports, serial_ports",router_pricing_catalog_normalized.csv
|