File size: 151,168 Bytes
d4159b0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="description" content="The Fujitsu Storage ETERNUS AF250 S3 is the ideal choice for application scenarios with demanding data and performance requirements. The system delivers impressive IOPS performance with lowest latency even at full load. Thus it offers a solution that resolves all performance issues in critical applications – such as real-time business analytics or VDI environments - without requiring any complicated tuning. It also fits best as general purpose storage for all Tier-1 applications in small and mid-sized companies.">
<meta name="language" content="en">
<meta name="robots" content="">
<meta property="og:title" content="FUJITSU Storage ETERNUS AF250 S3">
<meta property="og:type" content="website">
<meta property="og:description" content="The Fujitsu Storage ETERNUS AF250 S3 is the ideal choice for application scenarios with demanding data and performance requirements. The system delivers impressive IOPS performance with lowest latency even at full load. Thus it offers a solution that resolves all performance issues in critical applications &#150; such as real-time business analytics or VDI environments - without requiring any complicated tuning. It also fits best as general purpose storage for all Tier-1 applications in small and mid-sized companies.">
<meta property="og:url" content="https://www.fujitsu.com/global/products/computing/storage/all-flash-arrays/eternus-af250-s3/index.html">
<meta property="og:site_name" content="Fujitsu Global">
<meta property="og:image" content="https://www.fujitsu.com/imgv51/ogp-image.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="FUJITSU Storage ETERNUS AF250 S3">
<meta name="twitter:description" content="The Fujitsu Storage ETERNUS AF250 S3 is the ideal choice for application scenarios with demanding data and performance requirements. The system delivers impressive IOPS performance with lowest latency even at full load. Thus it offers a solution that resolves all performance issues in critical applications &#150; such as real-time business analytics or VDI environments - without requiring any complicated tuning. It also fits best as general purpose storage for all Tier-1 applications in small and mid-sized companies.">
<meta name="twitter:image" content="https://www.fujitsu.com/imgv51/ogp-image.png">
<title>FUJITSU Storage ETERNUS AF250 S3 : Fujitsu Global</title>
<link rel="canonical" href="https://www.fujitsu.com/global/products/computing/storage/all-flash-arrays/eternus-af250-s3/">
<link rel="stylesheet" href="/cssv5/gig5-country.css">
<link rel="Stylesheet" href="/cssv5/gig5-product.css" />
<link rel="stylesheet" type="text/css" href="/common/css/lib/magiczoomplus.css" />
<link rel="stylesheet" type="text/css" href="/common/css/lib/magic360_fujitsu.css" />
<script src=/common/js/lib/magiczoomplus.js type="text/javascript"></script>
<script src="/incv5/init.js"></script>
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || []; w[l].push({
'gtm.start':
new Date().getTime(), event: 'gtm.js'
}); var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', "GTM-MQNC2Z4");</script>
</head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<body>
<noscript>
<iframe src="//www.googletagmanager.com/ns.html?id=GTM-MQNC2Z4" height="0" width="0" style="display:none;visibility:hidden"></iframe>
</noscript>
<header id="header">
<div id="header-content">
<div class="skip-link"><a href="#container"><span>This is a skip link click here to skip to main contents</span></a></div>
<div id="header-column" >
<div id="header-column-inner">
<div id="header-group-title">
<p id="corporate-symbol">
<a href="https://www.fujitsu.com/global/">
<img src="//www.fujitsu.com/imgv5/common/symbolmark.png" alt="Fujitsu" />
</a>
</p>
</div>
<nav id="header-group-nav">
<div id="header-group-nav-inner">
<div id="utility-area">
<p class="utility-txt">
Global
</p>
<div class="utility-icon">
<ul class="utility">
<li class="change js-dropdown-menu">
<a class="dd-hook" href="//www.fujitsu.com/global/about/our-business/locations/" data-open-text="Open" data-close-text="Close"><img src="//www.fujitsu.com/imgv5/common/utility/icon-earth-01.png" alt=""><span class="label">Change</span></a>
<div class="dd-content">
<div class="dd-content-inner">
<div class="change-wrapper">
<dl class="desc-list-change">
<dt>Change Language</dt>
<dd>
<ul class="change-list">
<li><a href=" "> </a></li>
</ul>
<ul class="site-link">
<li><a href=//www.fujitsu.com/global/about/our-business/locations/>World Location</a></li>
</ul>
<div class="map"><img alt="" src="//www.fujitsu.com/resourcesgig5/design/stylesheets/images/icons/global_green.png"></div>
</dd>
</dl>
<dl class="desc-list-change diff-locations">
<dt>Change Location</dt>
<dd>
This is a list of country/region websites in the Fujitsu group.
<br />
If your country/region is not in this list, please visit '<a href="//www.fujitsu.com/global/about/our-business/locations/">World Locations</a>'.
<div class="location-list js-tab-locations">
<div class="regions-wrapper">
<ul class="regions">
<li>
<a href="#locations-01">Japan (HQ)</a>
</li>
<li>
<a href="#locations-02">Americas</a>
</li>
<li>
<a href="#locations-03">Asia Pacific</a>
</li>
<li>
<a href="#locations-04">Europe</a>
</li>
</ul>
</div>
<div class="locations">
<div id="locations-01" class="locations-panel">
<ul class="list-link-a diff-col3">
<li>
<a href="//global.fujitsu/ja-jp/">Japan</a>
</li>
<li>
<a href="//www.fujitsu.com/global/">Global</a>
</li>
</ul>
</div>
<div id="locations-02" class="locations-panel">
<ul class="list-link-a diff-col3">
<li>
<a href="//www.fujitsu.com/us/">United States</a>
</li>
<li>
<a href="//www.fujitsu.com/ca/en/">Canada (English)</a>
</li>
<li>
<a href="//www.fujitsu.com/ca/fr/">Canada (French)</a>
</li>
<li>
<a href="//www.fujitsu.com/caribbean/">Caribbean</a>
</li>
<li>
<a href="//www.fujitsu.com/br/">Brazil</a>
</li>
<li>
<a href="//www.fujitsu.com/southamerica/">South America</a>
</li>
<li>
<a href="https://www.fujitsu.com/global/about/our-business/locations/#other-countries">Other countries</a>
</li>
</ul>
</div>
<div id="locations-03" class="locations-panel">
<ul class="list-link-a diff-col3">
<li>
<a href="https://global.fujitsu/en-apac/">APAC (English)</a>
</li>
<li>
<a href="https://global.fujitsu/id-apac/">APAC (Indonesian)</a>
</li>
<li>
<a href="https://global.fujitsu/vi-apac/">APAC (Vietnamese)</a>
</li>
<li>
<a href="//www.fujitsu.com/cn/">China | 中国</a>
</li>
<li>
<a href="//www.fujitsu.com/hk/">Hong Kong | 香港地區</a>
</li>
<li>
<a href="//www.fujitsu.com/kr/">Korea</a>
</li>
<li>
<a href="//www.fujitsu.com/tw/">Taiwan | 台灣地區</a>
</li>
<li>
<a href="//www.fujitsu.com/th/th/">Thailand (Thai)</a>
</li>
<li>
<a href="https://www.fujitsu.com/global/about/our-business/locations/#other-countries">Other countries</a>
</li>
</ul>
</div>
<div id="locations-04" class="locations-panel">
<ul class="list-link-a diff-col3">
<li>
<a href="//www.fujitsu.com/at/">Austria</a>
</li>
<li>
<a href="//www.fujitsu.com/be/">Belgium</a>
</li>
<li>
<a href="//www.fujitsu.com/dk/">Denmark</a>
</li>
<li>
<a href="//www.fujitsu.com/ee/">Estonia</a>
</li>
<li>
<a href="https://global.fujitsu/fi-fi/">Finland</a>
</li>
<li>
<a href="//www.fujitsu.com/fr/">France</a>
</li>
<li>
<a href="//www.fujitsu.com/de/">Germany</a>
</li>
<li>
<a href="//www.fujitsu.com/ie/">Ireland</a>
</li>
<li>
<a href="//www.fujitsu.com/lu/">Luxembourg</a>
</li>
<li>
<a href="//www.fujitsu.com/nl/">Netherlands</a>
</li>
<li>
<a href="//www.fujitsu.com/pl/">Poland</a>
</li>
<li>
<a href="//www.fujitsu.com/pt/">Portugal</a>
</li>
<li>
<a href="//www.fujitsu.com/es/">Spain</a>
</li>
<li>
<a href="https://global.fujitsu/se-se/">Sweden</a>
</li>
<li>
<a href="//www.fujitsu.com/ch/de/">Switzerland</a>
</li>
<li>
<a href="//www.fujitsu.com/uk/">United Kingdom</a>
</li>
<li>
<a href="https://www.fujitsu.com/global/about/our-business/locations/#other-countries">Other countries</a>
</li>
</ul>
</div>
</div>
</div>
<div id="location-list-sp" data-open-text="Open" data-close-text="Close"></div>
</dd>
</dl>
</div>
<button class="close-btn" type="button"><span>Close</span></button>
</div>
</div>
</li>
<li class="search js-dropdown-menu">
<a class="dd-hook" href="#header-search" data-open-text="Open" data-close-text="Close">
<img src="//www.fujitsu.com/imgv5/common/utility/icon-search-01.png" alt="">
<span class="label">Search</span>
</a>
<div id="header-search" class="dd-content">
<div class="dd-content-inner">
<form method="get" action="https://www.fujitsu.com/global/search/">
<div class="search-wrapper">
<input type="text" name="q" class="search-input" id="Search" value="" title="Search" placeholder="Please enter search word">
<button class="search-btn" type="submit">Search</button>
</div>
</form>
<button class="close-btn" type="button"><span>Close</span></button>
</div>
</div>
</li> <li class="menu"><a id="menu-btn" href="#global-nav" role="button"><span class="menu-inner"><span class="menu-txt" data-close-text="Close">Menu</span></span></a></li>
</ul>
</div>
</div>
<div id="js-ctrl-icon-sp">
<div id="utility-icon-sp">
<ul class="utility-sp">
</ul>
</div>
<button class="trans-nav-back" type="button">Back</button>
</div>
<ul id="global-nav">
<li class='trans-nav js-dropdown-menu'>
<a class="dd-hook" href="https://activate.fujitsu/en/uvance/" data-open-text="Open" data-close-text="Close">
<span>Fujitsu Uvance</span>
</a>
<div class="dd-content">
<div class="dd-content-inner">
<ul class="second-nav">
<li class="js-tab-third-nav">
<div class="second-nav-item">
<div class="second-nav-link-wrapper">
<div class="second-nav-link">
<a href="https://activate.fujitsu/en/uvance/">Fujitsu Uvance</a>
</div>
</div>
<div class="second-nav-inner">
<ul class="third-nav">
<li>
<a class="detail-hook" href="#third-detail-01">
Fujitsu Uvance
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-02">
Sustainable Manufacturing
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-03">
Consumer Experience
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-04">
Healthy Living
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-05">
Trusted Society
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-06">
Digital Shifts
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-07">
Business Applications
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-08">
Hybrid IT
</a>
</li>
</ul>
</div>
</div>
<div class="third-detail-wrapper">
<div id="third-detail-01" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Fujitsu Uvance</dt>
<dd>
<p>Innovative solutions that address business challenges and solve societal issues</p>
<p class="detail-btn">
<a href="https://activate.fujitsu/en/uvance/">Read More</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Fujitsu Uvance" alt="Fujitsu Uvance" src="/global/imagesgig5/Fujitsu_Uvance-new_tcm100-6953380_tcm100-3526242-32.jpg" /><ul class="list-link-a" /></dd></dl> </div>
</div>
<div id="third-detail-02" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Sustainable Manufacturing</dt>
<dd>
<p>Manufacturing for a harmonious coexistence between people and the planet - value chain for sustainable manufacturing</p>
<p class="detail-btn">
<a href="https://activate.fujitsu/en/uvance/sustainable-manufacturing/">Read More</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Sustainable Manufacturing" alt="Sustainable Manufacturing" src="/global/imagesgig5/1SM-363x160_tcm100-6314262_tcm100-3526242-32.jpg" /><ul class="list-link-a" /></dd></dl> </div>
</div>
<div id="third-detail-03" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Consumer Experience</dt>
<dd>
<p>Unique consumer experiences for all - delivering personalized consumer value</p>
<p class="detail-btn">
<a href="https://activate.fujitsu/en/uvance/consumer-experience/">Read More</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Consumer Experience" alt="Consumer Experience" src="/global/imagesgig5/2CX-363x160_tcm100-6314265_tcm100-3526242-32.jpg" /><ul class="list-link-a" /></dd></dl> </div>
</div>
<div id="third-detail-04" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Healthy Living</dt>
<dd>
<p>Maximize your life experience - unleash your potential</p>
<p class="detail-btn">
<a href="https://activate.fujitsu/en/uvance/healthy-living/">Read More</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Healthy Living" alt="Healthy Living" src="/global/imagesgig5/3HL-363x160_tcm100-6314266_tcm100-3526242-32.jpg" /><ul class="list-link-a" /></dd></dl> </div>
</div>
<div id="third-detail-05" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Trusted Society</dt>
<dd>
<p>Toward a prosperous, sustainable society - creating your own life</p>
<p class="detail-btn">
<a href="https://activate.fujitsu/en/uvance/trusted-society/">Read More</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Trusted Society" alt="Trusted Society" src="/global/imagesgig5/4TS-363x160_tcm100-6314267_tcm100-3526242-32.jpg" /></dd></dl> </div>
</div>
<div id="third-detail-06" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Digital Shifts</dt>
<dd>
<p>Make the shift - bringing the power of digital to business and to people </p>
<p class="detail-btn">
<a href="https://activate.fujitsu/en/uvance/digital-shifts/">Read More</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Digital Shifts" alt="Digital Shifts" src="/global/imagesgig5/5DS-363x160_tcm100-6314268_tcm100-3526242-32.jpg" /><ul class="list-link-a" /></dd></dl> </div>
</div>
<div id="third-detail-07" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Business Applications</dt>
<dd>
<p>Enabling you to adapt with pace and intelligence - sustainable business transformation</p>
<p class="detail-btn">
<a href="https://activate.fujitsu/en/uvance/business-applications/">Read More</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Business Applications" alt="Business Applications" src="/global/imagesgig5/6BA-363x160_tcm100-6314272_tcm100-3526242-32.jpg" /><ul class="list-link-a" /></dd></dl> </div>
</div>
<div id="third-detail-08" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Hybrid IT</dt>
<dd>
<p>Digital infrastructure for a connected society - seamlessly and securely connect the world</p>
<p class="detail-btn">
<a href="https://activate.fujitsu/en/uvance/hybrid-it/">Read More</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Hybrid IT" alt="Hybrid IT" src="/global/imagesgig5/7HIT-363x160_tcm100-6314270_tcm100-3526242-32.jpg" /><ul class="list-link-a" /></dd></dl> </div>
</div>
</div>
</li>
</ul>
<button class="close-btn" type="button"><span>Close</span></button>
</div>
</div>
</li>
<li class='trans-nav js-dropdown-menu'>
<a class="dd-hook" href="/global/services/" data-open-text="Open" data-close-text="Close">
<span>Services</span>
</a>
<div class="dd-content">
<div class="dd-content-inner">
<ul class="second-nav">
<li class="js-tab-third-nav">
<div class="second-nav-item">
<div class="second-nav-link-wrapper">
<div class="second-nav-link">
<a href="/global/services/">Services</a>
</div>
</div>
<div class="second-nav-inner">
<ul class="third-nav">
<li>
<a class="detail-hook" href="#third-detail-09">
Business Application Services
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-10">
Managed Infrastructure Services
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-11">
Work Life Shift
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-12">
Hybrid IT Services
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-13">
Enterprise and Cyber Security from Fujitsu
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-14">
Internet of Things
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-15">
Artificial Intelligence
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-16">
Co-Creation
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-17">
Digital Annealer Services
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-18">
Customer stories
</a>
</li>
</ul>
</div>
</div>
<div class="third-detail-wrapper">
<div id="third-detail-09" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Business Application Services</dt>
<dd>
<p>Business Application Services help organizations to address key digital transformation challenges by leveraging a co-creation approach and our Connected Ecosystem. Whether you want to focus on a specific technology, digital transformation or solutions specific to your sector, we look forward to co-creating with you.</p>
<p class="detail-btn">
<a href="/global/services/application-services/">Read More</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Business and Application Services" alt="Business and Application Services" src="/global/imagesgig5/gig5nav_services_bas_tcm100-3690157_tcm100-3526242-32.jpg" /><ul class="list-link-a"><li><a href="/global/services/application-services/application-transformation/">Application Transformation</a></li><li><a href="/global/services/application-services/enterprise-applications/oracle/">Oracle</a></li><li><a href="/global/microsite/servicenow/">ServiceNow</a></li><li><a href="/global/services/application-services/enterprise-applications/sap/">SAP Services</a></li><li><a href="/global/services/business-services/globeranger/">IoT & RFID Services (GlobeRanger)</a></li></ul></dd></dl> </div>
</div>
<div id="third-detail-10" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Managed Infrastructure Services</dt>
<dd>
<p>To digitalize you need a new speed of IT delivery so you can drive new value, build the right culture and transform your business. We’ve built our portfolio to help you achieve this with hybrid IT, end to end networking solutions and Digital Workplace Services. We are recognized worldwide for the quality of our work and have continuously improved our position in analyst rankings.</p>
<p class="detail-btn">
<a href="/global/services/infrastructure/">Read More</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Managed Infrastructure Services" alt="Managed Infrastructure Services" src="/global/imagesgig5/managed-infrastructure-sample_tcm100-3609102_tcm100-3526242-32.jpg" /><ul class="list-link-a"><li><a href="/global/themes/datacenter-systems/">Data Center Services</a></li><li><a href="/global/services/infrastructure/network/">Network and Communication</a></li></ul></dd></dl> </div>
</div>
<div id="third-detail-11" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Work Life Shift</dt>
<dd>
<p><strong class="diff-color-a">Create an adaptive, productive and resilient workforce</strong></p><p>The way we work and live is fast changing. Digital technology continues to accelerate and help organizations reimagine the way they operate. It is now time to shift and build a better workplace for our people, organizations and society.</p><p>With FUJITSU Work Life Shift, you can empower creativity through smarter solutions, enabling collaboration and ultimately building a truly adaptive and trusted organization.</p>
<p class="detail-btn">
<a href="/global/themes/worklifeshift/">Read More</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Work Life Shift" alt="Work Life Shift" src="/global/imagesgig5/WLS-website-navigation_tcm100-6003544_tcm100-3526242-32.jpg" /><ul class="list-link-a" /></dd></dl> </div>
</div>
<div id="third-detail-12" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Hybrid IT Services</dt>
<dd>
<p>We are rapidly approaching a time when all things in society will be connected through digital touchpoints and services, where data will be utilized to deliver insights and benefits well beyond the boundaries of industries and companies. In this new connected world, a strong and resilient digital infrastructure foundation will be required for close collaboration.</p>
<p class="detail-btn">
<a href="/global/services/hybrid-it/">Read more</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="hybrid-it nav" alt="hybrid-it nav" src="/global/imagesgig5/Hybrid-it-nav_tcm100-6590954_tcm100-3526242-32.png" /></dd></dl> </div>
</div>
<div id="third-detail-13" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Enterprise and Cyber Security from Fujitsu</dt>
<dd>
<p>Safeguarding against cyber crime is vital for business in the digital world. Fujitsu’s extensive portfolio helps you strengthen your resilience against cyber attacks and improve security of your data, premises and people.</p>
<p class="detail-btn">
<a href="/global/themes/security/">Read more</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Managed Infrastructure Services" alt="Managed Infrastructure Services" src="/global/imagesgig5/security-services-nav-image_tcm100-3967857_tcm100-3526242-32.jpg" /><ul class="list-link-a"><li><a href="/global/services/security/index.html">Explore our security portfolio</a></li><li><a href="/global/themes/security/webinars/index.html">Cyber Security Webinars</a></li><li><a href="/global/themes/security/insights/index.html">Latest security insights</a></li></ul></dd></dl> </div>
</div>
<div id="third-detail-14" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Internet of Things</dt>
<dd>
<p><strong class="diff-color-a">Hyperconnected Business and IoT</strong></p><p>Fujitsu combines the power of IoT with digital technologies, AI, & network solutions to deliver hyperconnected business transformation. We connect objects across your entire enterprise to provide a real-time view of how your business is performing at all times.</p>
<p class="detail-btn">
<a href="/global/themes/internet-of-things/">Read More</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Internet of Things" alt="Internet of Things" src="/global/imagesgig5/iot-nav_tcm100-5390881_tcm100-3526242-32.jpg" /><ul class="list-link-a"><li><a href="/global/themes/internet-of-things/digital-solutions/index.html">Digital Business Solutions</a></li><li><a href="/global/services/infrastructure/network/managed-network/index.html">Fujitsu Managed Networks Solutions</a></li><li><a href="/global/themes/internet-of-things/industry-solutions/index.html">Industry Solutions</a></li><li><a href="/global/themes/internet-of-things/white-paper/index.html">IoT White Paper</a></li></ul></dd></dl> </div>
</div>
<div id="third-detail-15" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Artificial Intelligence</dt>
<dd>
<p><strong class="diff-color-a">See Beyond. Think Beyond. Go Beyond.</strong></p><p>Fujitsu human-centric AI solutions focus on ethics, transparency and trust. We help you understand what AI can achieve within your organization. Using our co-creation methodology, we help you unlock value from your existing systems, as well as lay the AI foundations to overcome the challenges you face - now and in the future.</p>
<p class="detail-btn">
<a href="/global/solutions/business-technology/ai/">Read More</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Artificial Intelligence" alt="Artificial Intelligence" src="/global/imagesgig5/ai-nav_tcm100-5390882_tcm100-3526242-32.jpg" /><ul class="list-link-a"><li><a href="/global/themes/ai/products/index.html">Fujitsu AI Platform and solutions</a></li></ul></dd></dl> </div>
</div>
<div id="third-detail-16" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Co-Creation</dt>
<dd>
<p><strong class="diff-color-a">Co-creating Program</strong></p><p>Fujitsu's co-creating Program helps you to harness the power of collaboration to deliver your unique digital transformation by driving ideation. The Co-creating Program has been developed over decades of experience in Japan and around the world; working with customers, exchanging perspectives, ideas, and information in a highly focused, purpose-driven, and innovative way.</p>
<p class="detail-btn">
<a href="/global/cocreating-program/">Read More</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Co-Creation" alt="Co-Creation" src="/global/imagesgig5/co-creation-nav-image-363x160_tcm100-5390885_tcm100-3526242-32.jpg" /><ul class="list-link-a" /></dd></dl> </div>
</div>
<div id="third-detail-17" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Digital Annealer Services</dt>
<dd>
<p>Some business problems have a vast number of potential solutions which are just too challenging to calculate with standard computing technology. From financial model stress testing in banks and process optimization in manufacturing, through to pharmaceutical drug research and development, conventional optimization methods cannot handle the complexity of some of today’s most challenging business problems. This is where our <strong>Quantum-Inspired</strong> Optimization Services come in. Services that leverage our <strong>Digital Annealer</strong> Platform to solve complex optimization problems using <strong>quantum</strong> logic, using tomorrow’s technology today.</p>
<p class="detail-btn">
<a href="/global/services/business-services/digital-annealer/qios/">Read More</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Quantum-Inspired Computing Solution" alt="Quantum-Inspired Computing Solutions" src="/global/imagesgig5/QIOS-thumbnail-363x160_tcm100-7174381_tcm100-3526242-32.jpg" /><ul class="list-link-a" /></dd></dl> </div>
</div>
<div id="third-detail-18" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Customer stories</dt>
<dd>
<p><strong class="diff-color-a">IT Services & Solutions Case Studies</strong></p><p>At Fujitsu we create strong partnerships with our customers, enabling us to work together to find innovative IT services & solutions. Our case studies reveal how we help your businesses sector wide.</p>
<p class="detail-btn">
<a href="https://www2.fujitsu.com/global/customer-stories-index/">Read More</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Customer Stories" alt="Customer stories" src="/global/imagesgig5/Featured-topnav_tcm100-5390880_tcm100-3526242-32.png" /><ul class="list-link-a" /></dd></dl> </div>
</div>
</div>
</li>
</ul>
<button class="close-btn" type="button"><span>Close</span></button>
</div>
</div>
</li>
<li class='trans-nav js-dropdown-menu'>
<a class="dd-hook" href="/global/products/" data-open-text="Open" data-close-text="Close">
<span>Products</span>
</a>
<div class="dd-content">
<div class="dd-content-inner">
<ul class="second-nav">
<li class="js-tab-third-nav">
<div class="second-nav-item">
<div class="second-nav-link-wrapper">
<div class="second-nav-link">
<a href="/global/products/">Products</a>
</div>
</div>
<div class="second-nav-inner">
<ul class="third-nav">
<li>
<a class="detail-hook" href="#third-detail-19">
Data-Driven Transformation
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-20">
Hybrid Cloud
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-21">
SAP Landscape Transformation
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-22">
New Workplace
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-23">
Data Center Products
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-24">
Workplace Products
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-25">
Consumption-based IT
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-26">
Services and Support
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-27">
Air Conditioning
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-28">
Network Solutions
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-29">
Sustainability
</a>
</li>
</ul>
</div>
</div>
<div class="third-detail-wrapper">
<div id="third-detail-19" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Data-Driven Transformation</dt>
<dd>
<p>There is a huge value in data and understandably a drive towards digital transformation initiated in every organization. More enterprises than ever are assessing the opportunities hidden in their treasure troves of data to supercharge their business and take the lead in their field.</p>
<p class="detail-btn">
<a href="https://www.fujitsu.com/global/products/data-transformation/">Read more</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Data-Driven Transformation" alt="Data-Driven Transformation" src="/global/imagesgig5/dataddriventransformation363x160_tcm100-6759751_tcm100-3526242-32.png" /><ul class="list-link-a"><li><a href="https://apps.ts.fujitsu.com/com-public/CX/">CX Lab – Data Transformation Experience</a></li><li><a href="https://www.fujitsu.com/global/products/data-transformation/assessment-and-consultancy/">Assessment and Consultative Services</a></li><li><a href="https://www.fujitsu.com/global/products/data-transformation/data-driven/ai-test-drive/">Take an AI Test Drive</a></li></ul></dd></dl> </div>
</div>
<div id="third-detail-20" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Hybrid Cloud</dt>
<dd>
<p>Drive business resilience and sustainability by choosing the ‘right cloud’ for the right workload.</p><p>Enabled by hybrid cloud, digital resilience - the ability for organizations to rapidly adapt to business disruptions - is a core enabler of modern digital business. It’s seen as the key to a successful, agile, scalable and sustainable business future. Make Fujitsu hybrid cloud the next step in your business evolution and build a digitally resilient enterprise that’s protected against any uncertainty. </p>
<p class="detail-btn">
<a href="/global/products/hybrid-cloud/index.html">Read more</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Hybrid Cloud" alt="Hybrid Cloud" src="/global/imagesgig5/hybridcloud363x160_tcm100-6758616_tcm100-3526242-32.png" /><ul class="list-link-a"><li><a href="/global/services/hybrid-it/">Hybrid IT services</a></li><li><a href="/global/services/aws-connect/">AWS connect</a></li></ul></dd></dl> </div>
</div>
<div id="third-detail-21" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>SAP Landscape Transformation</dt>
<dd>
<p>Based on 50 years partnership with SAP Fujitsu has developed excellence in building ready-to run, private and hybrid-cloud enabled IT infrastructure solutions to support customers in their journey to SAP S/4 HANA. Utilizing unique assessment and consulting methodologies to gather and interpret real-life workload data of existing SAP landscapes, Fujitsu tailors your next SAP IT refresh in order to achieve perfect service levels whilst optimizing IT spending.</p>
<p class="detail-btn">
<a href="/global/products/computing/integrated-systems/sap/index.html ">Read more</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="SAP Landscape Transformation" alt="SAP Landscape Transformation" src="/global/imagesgig5/landscape-transformation363x160_tcm100-6758617_tcm100-3526242-32.jpg" /><ul class="list-link-a" /></dd></dl> </div>
</div>
<div id="third-detail-22" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>New Workplace</dt>
<dd>
<p>The pandemic gave the workplace a new meaning and changed the role of devices dramatically as well as accelerating digital trends that were already underway. Our vision is increase value for our customer and by providing a human-centric workplace - give our customers the power to see into their future.</p>
<p class="detail-btn">
<a href="/global/products/computing/pc/dontworryworkhappy/index.html">Read more</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="New Workplace" alt="New Workplace" src="/global/imagesgig5/new%20workplace363x160_tcm100-6759750_tcm100-3526242-32.png" /><ul class="list-link-a"><li><a href="http://www.fujitsu.com/education">Education</a><br /></li><li><a href="https://www.fujitsu.com/global/products/computing/customize/">Made4you</a></li><li><a href="https://www.fujitsu.com/global/products/computing/pc/security/">Security</a></li></ul></dd></dl> </div>
</div>
<div id="third-detail-23" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Data Center Products</dt>
<dd>
<p>Fujitsu is your single point of contact for setting up a distributed IT infrastructure that stretches from edge to core to cloud. We combine own server and storage technologies with networking and software products from strategic partners to build complete IT solutions for a hybrid cloud world. Comprehensive consultative, implementation and support services ensure that customers complete this transformation smoothly and successfully.</p><p>Pay-per-use options enable a cloud-like payment scheme also for on-premises and private cloud environments.</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Data Center" alt="Data Center" src="/global/imagesgig5/products-data-center-products_tcm100-6727374_tcm100-3526242-32.jpg" /><ul class="list-link-a"><li><a href="/global/products/computing/integrated-systems/">Integrated Systems</a></li><li><a href="/global/products/computing/storage/">Storage Solutions</a></li><li><a href="/global/products/computing/servers/">Server</a></li><li><a href="/global/products/computing/switches/">Network Switches</a></li><li><a href="/global/products/infrastructure-management/">Infrastructure Management</a></li><li style="list-style: none;"> </li><li><a href="https://apps.ts.fujitsu.com/VirtualRack/" target="_blank">Product Finder</a></li><li style="list-style: none;"> </li><li><a href="https://www.fujitsu.com/configurator/public">Configurator for customers</a></li><li><a href="https://webconfigurator.ts.fujitsu.com/webarchitect/login">Configurator for partners</a></li><li style="list-style: none;"> </li><li><a href="https://www.fujitsu.com/global/microsite/uscale/">Pay-per-Use</a></li><li><a title="Sustainability" href="/global/products/sustainability/index.html">Sustainability</a></li></ul></dd></dl> </div>
</div>
<div id="third-detail-24" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Workplace Products</dt>
<dd>
<p>With decades of experience in the industry, Fujitsu combines Japanese engineering and outstanding quality to build and deliver reliable, human-centric devices for all modern working styles. Devices that are secure enough for the work-anywhere, all-digital workforce for the digital economy.</p>
<p class="detail-btn">
<a href="/global/products/computing/pc">Read More</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Workplace Products" alt="Workplace Products" src="/global/imagesgig5/products-workplace-products_tcm100-6727375_tcm100-3526242-32.jpg" /><ul class="list-link-a"><li><a href="/global/products/computing/pc/tablets/index.html">Tablet PCs</a></li><li><a href="/global/products/computing/pc/notebooks/index.html">Notebooks</a></li><li><a href="/global/products/computing/pc/desktops/index.html">Desktop PC‘s</a></li><li><a href="/global/products/computing/pc/workstations/index.html">Workstations</a></li><li><a href="/global/products/computing/pc/thin-clients/index.html">Thin Clients</a></li><li><a href="/global/products/computing/peripheral/displays/">Displays</a></li><li><a href="/global/products/computing/peripheral/index.html">Peripheral devices</a></li><li style="list-style: none;"> </li><li><a href="/global/products/computing/customize/">Made4you</a></li><li><a href="/global/products/computing/pc/security/">Security</a></li><li style="list-style: none;"> </li><li><a href="https://www.fujitsu.com/configurator/public">Configurator for customers</a></li><li><a href="https://webconfigurator.ts.fujitsu.com/webarchitect/login">Configurator for partners</a></li><li style="list-style: none;"> </li><li>Pay-per-Use</li><li><a title="Sustainability" href="/global/products/sustainability/index.html">Sustainability</a></li></ul></dd></dl> </div>
</div>
<div id="third-detail-25" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Consumption-based IT</dt>
<dd>
<p><strong class="diff-color-a">Fujitsu uSCALE</strong></p><p>Fujitsu uSCALE delivers flexible, on-premises IT infrastructures “as-a-service” solution via monthly consumption-based billing based on actual usage. Benefit from an IT solution that precisely focuses on your specific needs, saves investment costs, enables dynamic growth, and realize faster time to value.</p>
<p class="detail-btn">
<a href="https://www.fujitsu.com/global/microsite/uscale/">Read More</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Fujitsu uSCALE" alt="Fujitsu uSCALE" src="/global/imagesgig5/uscale363x160_tcm100-6758621_tcm100-3526242-32.jpg" /><ul class="list-link-a"><li><a href="https://apps.ts.fujitsu.com/uscale">uSCALE price estimator</a></li></ul></dd></dl> </div>
</div>
<div id="third-detail-26" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Services and Support</dt>
<dd>
<p>Fujitsu offers a wide range of services which accompany customers in all phases of their IT infrastructure journey.</p><p>We start our engagement with you with assessment and consulting services to make sure that your business objectives and IT purchase decisions go hand in hand. Once products or solutions have been purchased, we provide expert implementation, installation and integration services enabling a smooth go-live phase. Finally end-to-end support offerings help to fix any potential issues in the operations and maintenance phase.</p><p>A great end-to-end customer experience is our mission.</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Retail" alt="Services and Support" src="/global/imagesgig5/service-and-support363x160_tcm100-6758620_tcm100-3526242-32.png" /><ul class="list-link-a"><li><a href="https://www.fujitsu.com/global/microsite/data-transformation/data-driven-services/">Assessment and Consultative Services</a></li><li><a href="/global/products/data-transformation/installation-and-implementation/">Installation and Implementation Services</a></li><li style="list-style: none"><br /></li><li><a href="https://www.fujitsu.com/global/support">Product Related Support</a><ul class="list-link-a"><li><a href="https://www.fujitsu.com/emeia/products/product-support-services/hardware-maintenance/index.html/">Hardware Support</a></li><li><a href="https://www.fujitsu.com/emeia/products/product-support-services/software-support/index.html">Software Support</a></li><li><a href="https://www.fujitsu.com/emeia/products/product-support-services/solution-support/index.html">Infrastructure Support</a></li></ul></li><li><a href="https://support.ts.fujitsu.com">Contact Product Support</a></li><li><a href="https://support.ts.fujitsu.com/IndexMySupport.asp?lng=COM">My Support Portal</a></li></ul></dd></dl> </div>
</div>
<div id="third-detail-27" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Air Conditioning</dt>
<dd>
<p class="detail-btn">
<a href="https://www.fujitsu-general.com/">Read More</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Air conditioning" alt="Air conditioning" src="/global/imagesgig5/airconditioning363x160_tcm100-6758615_tcm100-3526242-32.png" /><ul class="list-link-a" /></dd></dl> </div>
</div>
<div id="third-detail-28" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Network Solutions</dt>
<dd>
<p class="detail-btn">
<a href="https://www.fujitsu.com/global/products/network/">Read more</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Network solutions" alt="Network solutions" src="/global/imagesgig5/network-thumb-363x160_tcm100-6950572_tcm100-3526242-32.jpg" /><ul class="list-link-a" /></dd></dl> </div>
</div>
<div id="third-detail-29" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Sustainability</dt>
<dd>
<p>Given the requirement to enhance sustainability-focused corporate management, fulfilling corporate social responsibility from a global perspective has become an increasingly important issue. The Fujitsu Platform Business promotes its Sustainability activities based on the Fujitsu Way. Fujitsu takes care to operate responsibly at every stage of the product’s lifecycle.</p>
<p class="detail-btn">
<a href="https://www.fujitsu.com/global/products/sustainability/index.html">Read more</a>
</p>
</dd>
</dl>
</div>
</div>
</div>
</li>
</ul>
<button class="close-btn" type="button"><span>Close</span></button>
</div>
</div>
</li>
<li class='trans-nav js-dropdown-menu'>
<a class="dd-hook" href="/global/solutions/industry/" data-open-text="Open" data-close-text="Close">
<span>Industries</span>
</a>
<div class="dd-content">
<div class="dd-content-inner">
<ul class="second-nav">
<li class="js-tab-third-nav">
<div class="second-nav-item">
<div class="second-nav-link-wrapper">
<div class="second-nav-link">
<a href="/global/solutions/industry/">Industries</a>
</div>
</div>
<div class="second-nav-inner">
<ul class="third-nav">
<li>
<a class="detail-hook" href="#third-detail-30">
Automotive
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-31">
Manufacturing
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-32">
Retail
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-33">
Financial Services
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-34">
Transport
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-35">
Public Sector
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-36">
Energy and Utilities
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-37">
Customer stories
</a>
</li>
</ul>
</div>
</div>
<div class="third-detail-wrapper">
<div id="third-detail-30" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Automotive</dt>
<dd>
<p><strong class="diff-color-a">Automotive Technology Solutions</strong></p><p>Fujitsu combines connected and autonomous vehicle technology with world-leading IT services, infrastructure & integration skills to deliver end-to-end automotive IT solutions that increase efficiency, reduce costs & lower environmental impact.</p>
<p class="detail-btn">
<a href="/global/solutions/industry/automotive/">Read More</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Automotive" alt="Automotive" src="/global/imagesgig5/automotive-nav-image_tcm100-5390871_tcm100-3526242-32.jpg" /><ul class="list-link-a" /></dd></dl> </div>
</div>
<div id="third-detail-31" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Manufacturing</dt>
<dd>
<p><strong class="diff-color-a">Smart Manufacturing</strong></p><p>Manufacturing is a continuously evolving industry. Yet in 2020, a global disruptor brought production to a standstill: COVID-19.</p><p>Now the industry has powered up again and COVID-19 is forcing companies to accelerate their digitalization strategy. Manufacturers are striving to meet the demands of a changed consumer by developing agility, resilience and security, responsiveness and innovation. Fast.</p>
<p class="detail-btn">
<a href="/global/solutions/industry/manufacturing/">Read More</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Manufacturing" alt="Manufacturing" src="/global/imagesgig5/manufacturing-nav-image_tcm100-5390872_tcm100-3526242-32.jpg" /><ul class="list-link-a"><li><a href="/global/solutions/industry/manufacturing/empower-your-people/">Empower your people</a></li><li><a href="/global/solutions/industry/manufacturing/transform-the-shopfloor/">Transform the shopfloor</a></li><li><a href="/global/solutions/industry/manufacturing/rethink-the-supply-chain/">Rethink the supply chain</a></li><li><a href="/global/solutions/industry/manufacturing/evolve-your-ecosystem/">Evolve your ecosystem</a></li><li><a href="/global/solutions/industry/manufacturing/knowledge-hub/">Knowledge Hub</a></li></ul></dd></dl> </div>
</div>
<div id="third-detail-32" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Retail</dt>
<dd>
<p><strong class="diff-color-a">Retail Technology and Hospitality Solutions</strong></p><p>Fujitsu's innovative retail technology and hospitality solutions increase efficiency and future proof the retail customer experience in an omni-channel world.</p>
<p class="detail-btn">
<a href="/global/solutions/industry/retail/">Read More</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Retail" alt="Retail" src="/global/imagesgig5/retail-nav-image_tcm100-5390873_tcm100-3526242-32.jpg" /><ul class="list-link-a"><li><a href="/global/solutions/industry/retail/forgottenshopfloor/index.html">Forgotten Shop Floor</a></li><li><a href="/global/vision/insights/wp3/index.html">Fujitsu and the future of retail</a></li><li><a href="/global/solutions/industry/retail/workplace2025/index.html">Workplace 2025</a></li><li><a href="/global/solutions/business-technology/ai/pac-study/index.html">PAC report: what AI can bring to business applications</a></li><li><a href="/global/solutions/industry/retail/market-place/index.html">Fujitsu Market Place</a></li></ul></dd></dl> </div>
</div>
<div id="third-detail-33" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Financial Services</dt>
<dd>
<p><strong class="diff-color-a">Driving a trusted future in financial services</strong></p><p>Fujitsu's digital finance technology & solutions increase business efficiency & lower costs. Our agile financial IT services empower you to enhance your customer experience to aid retention.</p>
<p class="detail-btn">
<a href="/global/solutions/industry/financial-services/">Read More</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Financial Services" alt="Financial Services" src="/global/imagesgig5/financial-services-nav-image_tcm100-5390874_tcm100-3526242-32.jpg" /><ul class="list-link-a"><li><a href="/global/solutions/industry/financial-services/customer-experience/index.html">Transforming your customer experience</a></li><li><a href="/global/solutions/industry/financial-services/employee-engagement/index.html">Deepening your employee engagement</a></li><li><a href="/global/solutions/industry/financial-services/digital-ambition/index.html">Accelerating your digital ambition</a></li><li><a href="/global/solutions/industry/financial-services/insights-events/index.html">Insights & Events</a></li></ul></dd></dl> </div>
</div>
<div id="third-detail-34" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Transport</dt>
<dd>
<p><strong class="diff-color-a">Digital solutions for transport</strong></p><p>Fujitsu has been working with transport operators for over 50 years, providing innovative transport IT solutions that provide real business value. Our urban mobility IT solution transform operations, increase efficiency, improve security & reduce cost across road, rail, aviation and maritime.</p>
<p class="detail-btn">
<a href="/global/solutions/industry/transport/">Read More</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Transport" alt="Transport" src="/global/imagesgig5/transport-nav-image_tcm100-5390875_tcm100-3526242-32.jpg" /><ul class="list-link-a"><li><a href="/global/solutions/industry/transport/rail/index.html">Rail</a></li><li><a href="/global/solutions/industry/transport/road/index.html">Road</a></li><li><a href="/global/solutions/industry/transport/aviation/index.html">Aviation</a></li><li><a href="/global/solutions/industry/transport/maritime/index.html">Maritime</a></li><li><a href="/global/solutions/industry/transport/urban-mobility/index.html">Urban Mobility</a></li></ul></dd></dl> </div>
</div>
<div id="third-detail-35" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Public Sector</dt>
<dd>
<p><strong class="diff-color-a">Public Sector Transformation</strong></p><p>Fujitsu is a world leading Public Sector IT Service provider. We help public sector organizations harness the power of technology to improve citizens’ lives. Our Digital Government Solutions ensure autonomy, secure sharing & data protection.</p>
<p class="detail-btn">
<a href="/global/solutions/industry/public-sector/">Read More</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Public Sector" alt="Public Sector" src="/global/imagesgig5/public-sector-nav-image_tcm100-5390876_tcm100-3526242-32.jpg" /><ul class="list-link-a"><li><a href="/global/solutions/industry/public-sector/central-government/index.html">Central Government</a></li><li><a href="/global/solutions/industry/public-sector/local-government/index.html">Local Government</a></li></ul></dd></dl> </div>
</div>
<div id="third-detail-36" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Energy and Utilities</dt>
<dd>
<p><strong class="diff-color-a">Digital Solutions for Energy and Utilities</strong></p><p>By implementing innovative new digital solutions - from advanced sensors/devices driving smart grids, machine learning predicting asset availability to AI enabling better fault prediction and smart devices giving consumers power over their consumption - providers can overcome the challenges they face in guaranteeing quality, availability and reliability.</p>
<p class="detail-btn">
<a href="/global/solutions/industry/energy-utilities/">Read More</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Energy and Utilities alt=" src="/global/imagesgig5/energy-utilities-nav-image-363x160_tcm100-5390879_tcm100-3526242-32.jpg" /><ul class="list-link-a"><li><a href="/global/solutions/industry/energy-utilities/intelligent-assets/index.html">Connected Assets</a></li><li><a href="/global/solutions/industry/energy-utilities/intelligent-operation/index.html">Intelligent Operations</a></li><li><a href="/global/solutions/industry/energy-utilities/security/index.html">Intelligence-led Security</a></li></ul></dd></dl> </div>
</div>
<div id="third-detail-37" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Customer stories</dt>
<dd>
<p><strong class="diff-color-a">IT Services & Solutions Case Studies</strong></p><p>At Fujitsu we create strong partnerships with our customers, enabling us to work together to find innovative IT services & solutions. Our case studies reveal how we help your businesses sector wide.</p>
<p class="detail-btn">
<a href="https://www2.fujitsu.com/global/customer-stories-index/">Read More</a>
</p>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Customer Stories" alt="Customer Stories" src="/global/imagesgig5/Featured-topnav_tcm100-5390880_tcm100-3526242-32.png" /><ul class="list-link-a" /></dd></dl> </div>
</div>
</div>
</li>
</ul>
<button class="close-btn" type="button"><span>Close</span></button>
</div>
</div>
</li>
<li class='trans-nav js-dropdown-menu'>
<a class="dd-hook" href="/global/about/" data-open-text="Open" data-close-text="Close">
<span>About Fujitsu</span>
</a>
<div class="dd-content">
<div class="dd-content-inner">
<ul class="second-nav">
<li class="js-tab-third-nav">
<div class="second-nav-item">
<div class="second-nav-link-wrapper">
<div class="second-nav-link">
<a href="/global/about/">About Fujitsu</a>
</div>
</div>
<div class="second-nav-inner">
<ul class="third-nav">
<li>
<a class="detail-hook" href="#third-detail-38">
Who we are
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-39">
What we do
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-40">
How we work with you
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-41">
News and Trends
</a>
</li>
<li>
<a class="detail-hook" href="#third-detail-42">
Investor Relations
</a>
</li>
</ul>
</div>
</div>
<div class="third-detail-wrapper">
<div id="third-detail-38" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Who we are</dt>
<dd>
<dl class="desc-list-sub"><dd><ul class="list-link-a"><li><a href="/global/about/purpose/">Our Story</a></li><li><a href="/global/about/corporate/management/">Leadership</a></li><li><a href="/global/about/corporate/ceo-message.html">Message from CEO</a></li><li><a href="https://www2.fujitsu.com/global/vision/">Fujitsu Technology and Service Vision</a></li><li><a href="/global/about/facts/">Fujitsu Facts</a></li><li><a href="/global/about/our-business/locations/">Locations</a></li><li><a href="/global/about/global-fde/">Global Fujitsu Distinguished Engineer</a></li></ul></dd></dl>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Who we are" alt="Who we are" src="/global/imagesgig5/Who_tcm100-6314280_tcm100-3526242-32.png" /></dd></dl> </div>
</div>
<div id="third-detail-39" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>What we do</dt>
<dd>
<dl class="desc-list-sub"><dd><ul class="list-link-a"><li><a href="//www2.fujitsu.com/global/uvance/">Fujitsu Uvance</a></li><li><a href="/global/about/resources/case-studies/">Customer Stories</a></li><li><a href="/global/about/our-business/">Our Business</a></li><li><a href="https://activate.fujitsu/en/key-technologies/">Key Technologies</a></li><li><a href="/global/about/research/">Research and Development</a></li></ul></dd></dl>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="What we do" alt="What we do" src="/global/imagesgig5/What_tcm100-6314278_tcm100-3526242-32.png" /></dd></dl> </div>
</div>
<div id="third-detail-40" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>How we work with you</dt>
<dd>
<dl class="desc-list-sub"><dd><ul class="list-link-a"><li><a href="/global/about/philosophy/">Fujitsu Way</a></li><li><a href="/global/about/csr/">Sustainability and Responsible Business</a></li><li><a href="/global/about/careers/">Careers</a></li><li><a href="/global/about/info-center/partners/">Partners</a></li></ul></dd></dl>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="How" alt="how" src="/global/imagesgig5/How_tcm100-6314276_tcm100-3526242-32.png" /></dd></dl> </div>
</div>
<div id="third-detail-41" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>News and Trends</dt>
<dd>
<dl class="desc-list-sub"><dd><ul class="list-link-a"><li><a href="/global/about/resources/news/newsroom.html">Global Newsroom</a></li><li><a href="https://corporate-blog.global.fujitsu.com/fgb/">Fujitsu Blog</a></li><li><a href="/global/about/resources/events/">Events</a></li></ul></dd></dl>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="PR" alt="PR" src="/global/imagesgig5/press-releases-nav-image_tcm100-5390865_tcm100-3526242-32.jpg" /></dd></dl> </div>
</div>
<div id="third-detail-42" class="third-detail">
<div class="third-detail-inner">
<dl class="desc-list-main">
<dt>Investor Relations</dt>
<dd>
<dl class="desc-list-sub"><dd><ul class="list-link-a"><li><a href="/global/about/ir/">Investor Relations</a></li><li><a href="https://activate.fujitsu/en/about/integrated-report/">Integrated Report</a></li></ul></dd></dl>
</dd>
</dl>
<dl class="desc-list-sub"><dd><img title="Investor Relations" alt="Investor Relations" src="/global/imagesgig5/investor-relations-nav-image_tcm100-5390867_tcm100-3526242-32.jpg" /></dd></dl> </div>
</div>
</div>
</li>
</ul>
<button class="close-btn" type="button"><span>Close</span></button>
</div>
</div>
</li>
<li >
<a href="//www.fujitsu.com/global/about/careers/">
Careers
</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
</div>
</header>
<div class="root-cover"></div>
<noscript class="no-script">Some content may not be displaying correctly because JavaScript is turned off. Please turn it on to view this content.</noscript>
<div id="container">
<main id="main">
<div class="main-contents">
<div class="section product-heading" style="padding-bottom: 0px;">
<div class="section-inner" style="padding: 0px;">
<h1 class="hdg-a">Fujitsu Storage ETERNUS AF250 S3</h1>
</div>
</div>
<script src=/incv5/lib/jquery.js type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$(".hdg-a-wrapper").hide();
});
</script>
<div style="text-align: center">
<div class="banner-container">
<div class="banner-content">
<img class="product-banner-image" src="/global/imagesgig5/storagewb14af_tcm100-5397063_tcm100-5309118-32.jpg" />
<img class="banner-bubble" src="/imgv51/product-vi.png" alt="" border="0">
<p class="banner-response-text">Transform with Flash!</p>
</div>
</div>
</div>
<div id="ppnavigation" class="js-nav-fixed" style="margin-top:45px;">
<div class="nav-b" style="top: inherit;">
<nav id="single-page-nav" class="nav-b-inner">
<ul class="js-ctrl-wrap" style="width: auto">
<li>
<a class="nav-btn" href="#key-features">Overview</a>
</li>
<li>
<a class="nav-btn" href="#specs">Tech Specs</a>
</li>
<li><a id="cs_nav_btn" class="nav-btn" href="#case_studies">Customers</a></li>
<li>
<a class="nav-btn" href="#documents">Resources</a>
</li>
<li><a id="pr_nav_btn" class="nav-btn" href="#press_releases">Press</a></li>
<li>
<a class="nav-btn" href="#accesories">Software</a>
</li>
</ul>
</nav>
</div>
</div>
<div id="key-features" class="section">
<div class="section-inner">
<div class="section-inside">
<div class="section-promotion-outside">
<div class="section-promotion">
<div class="section-promotion-image">
<html>
<head>
<link rel="stylesheet" media='all' property="stylesheet" type="text/css"
href="/common/css/lib/magic360.css" />
<script src=/common/js/lib/magic360.js type="text/javascript"></script>
<script src=/common/js/lib/picenter.5bac9de5.js type="text/javascript"></script>
</head>
<div class="360-container">
<div style=" margin-left: auto; margin-right: auto; display:table">
<div style="display: table-cell; vertical-align: middle; text-align: right;">
<button id="magic-360-left" style="z-index:50" ;><img src="/common/img/arrow_left.gif" alt="next" width="32" height="64"></button>
</div>
<div style="width: 420px; margin-left:auto; margin-right: auto; display: table-cell; vertical-align: middle;">
<a class="Magic360" href="/global/imagesgig5/img01_tcm100-6743292_tcm100-5309118-32.jpg" data-options="hint:false; autospin:infinite; columns: 36; reverse-column: true; rows: 1; images: /global/imagesgig5/img01_tcm100-6743292_tcm100-5309118-32.jpg /global/imagesgig5/img02_tcm100-6743293_tcm100-5309118-32.jpg /global/imagesgig5/img03_tcm100-6743294_tcm100-5309118-32.jpg /global/imagesgig5/img04_tcm100-6743295_tcm100-5309118-32.jpg /global/imagesgig5/img05_tcm100-6743296_tcm100-5309118-32.jpg /global/imagesgig5/img06_tcm100-6743297_tcm100-5309118-32.jpg /global/imagesgig5/img07_tcm100-6743298_tcm100-5309118-32.jpg /global/imagesgig5/img08_tcm100-6743299_tcm100-5309118-32.jpg /global/imagesgig5/img09_tcm100-6743300_tcm100-5309118-32.jpg /global/imagesgig5/img10_tcm100-6743301_tcm100-5309118-32.jpg /global/imagesgig5/img11_tcm100-6743302_tcm100-5309118-32.jpg /global/imagesgig5/img12_tcm100-6743303_tcm100-5309118-32.jpg /global/imagesgig5/img13_tcm100-6743304_tcm100-5309118-32.jpg /global/imagesgig5/img14_tcm100-6743305_tcm100-5309118-32.jpg /global/imagesgig5/img15_tcm100-6743306_tcm100-5309118-32.jpg /global/imagesgig5/img16_tcm100-6743307_tcm100-5309118-32.jpg /global/imagesgig5/img17_tcm100-6743308_tcm100-5309118-32.jpg /global/imagesgig5/img18_tcm100-6743309_tcm100-5309118-32.jpg /global/imagesgig5/img19_tcm100-6743310_tcm100-5309118-32.jpg /global/imagesgig5/img20_tcm100-6743311_tcm100-5309118-32.jpg /global/imagesgig5/img21_tcm100-6743312_tcm100-5309118-32.jpg /global/imagesgig5/img22_tcm100-6743313_tcm100-5309118-32.jpg /global/imagesgig5/img23_tcm100-6743314_tcm100-5309118-32.jpg /global/imagesgig5/img24_tcm100-6743315_tcm100-5309118-32.jpg /global/imagesgig5/img25_tcm100-6743316_tcm100-5309118-32.jpg /global/imagesgig5/img26_tcm100-6743317_tcm100-5309118-32.jpg /global/imagesgig5/img27_tcm100-6743318_tcm100-5309118-32.jpg /global/imagesgig5/img28_tcm100-6743319_tcm100-5309118-32.jpg /global/imagesgig5/img29_tcm100-6743320_tcm100-5309118-32.jpg /global/imagesgig5/img30_tcm100-6743321_tcm100-5309118-32.jpg /global/imagesgig5/img31_tcm100-6743322_tcm100-5309118-32.jpg /global/imagesgig5/img32_tcm100-6743323_tcm100-5309118-32.jpg /global/imagesgig5/img33_tcm100-6743324_tcm100-5309118-32.jpg /global/imagesgig5/img34_tcm100-6743325_tcm100-5309118-32.jpg /global/imagesgig5/img35_tcm100-6743326_tcm100-5309118-32.jpg /global/imagesgig5/img36_tcm100-6743327_tcm100-5309118-32.jpg; large-images: /global/imagesgig5/img01_tcm100-6743292_tcm100-5309118-32.jpg /global/imagesgig5/img02_tcm100-6743293_tcm100-5309118-32.jpg /global/imagesgig5/img03_tcm100-6743294_tcm100-5309118-32.jpg /global/imagesgig5/img04_tcm100-6743295_tcm100-5309118-32.jpg /global/imagesgig5/img05_tcm100-6743296_tcm100-5309118-32.jpg /global/imagesgig5/img06_tcm100-6743297_tcm100-5309118-32.jpg /global/imagesgig5/img07_tcm100-6743298_tcm100-5309118-32.jpg /global/imagesgig5/img08_tcm100-6743299_tcm100-5309118-32.jpg /global/imagesgig5/img09_tcm100-6743300_tcm100-5309118-32.jpg /global/imagesgig5/img10_tcm100-6743301_tcm100-5309118-32.jpg /global/imagesgig5/img11_tcm100-6743302_tcm100-5309118-32.jpg /global/imagesgig5/img12_tcm100-6743303_tcm100-5309118-32.jpg /global/imagesgig5/img13_tcm100-6743304_tcm100-5309118-32.jpg /global/imagesgig5/img14_tcm100-6743305_tcm100-5309118-32.jpg /global/imagesgig5/img15_tcm100-6743306_tcm100-5309118-32.jpg /global/imagesgig5/img16_tcm100-6743307_tcm100-5309118-32.jpg /global/imagesgig5/img17_tcm100-6743308_tcm100-5309118-32.jpg /global/imagesgig5/img18_tcm100-6743309_tcm100-5309118-32.jpg /global/imagesgig5/img19_tcm100-6743310_tcm100-5309118-32.jpg /global/imagesgig5/img20_tcm100-6743311_tcm100-5309118-32.jpg /global/imagesgig5/img21_tcm100-6743312_tcm100-5309118-32.jpg /global/imagesgig5/img22_tcm100-6743313_tcm100-5309118-32.jpg /global/imagesgig5/img23_tcm100-6743314_tcm100-5309118-32.jpg /global/imagesgig5/img24_tcm100-6743315_tcm100-5309118-32.jpg /global/imagesgig5/img25_tcm100-6743316_tcm100-5309118-32.jpg /global/imagesgig5/img26_tcm100-6743317_tcm100-5309118-32.jpg /global/imagesgig5/img27_tcm100-6743318_tcm100-5309118-32.jpg /global/imagesgig5/img28_tcm100-6743319_tcm100-5309118-32.jpg /global/imagesgig5/img29_tcm100-6743320_tcm100-5309118-32.jpg /global/imagesgig5/img30_tcm100-6743321_tcm100-5309118-32.jpg /global/imagesgig5/img31_tcm100-6743322_tcm100-5309118-32.jpg /global/imagesgig5/img32_tcm100-6743323_tcm100-5309118-32.jpg /global/imagesgig5/img33_tcm100-6743324_tcm100-5309118-32.jpg /global/imagesgig5/img34_tcm100-6743325_tcm100-5309118-32.jpg /global/imagesgig5/img35_tcm100-6743326_tcm100-5309118-32.jpg /global/imagesgig5/img36_tcm100-6743327_tcm100-5309118-32.jpg " id="magic-360">
<img src="/global/imagesgig5/img01_tcm100-6743292_tcm100-5309118-32.jpg" />
<div id="m360hint" class="m360-hint">
<p class="m360-hint-message">
</p>
</div>
</a>
</div>
<div style="display: table-cell; vertical-align: middle; text-align: left;">
<button id="magic-360-right" style="z-index:50" ;><img src="/common/img/arrow_right.gif" alt="next" width="32" height="64"></button>
</div>
</div>
</div>
<script type="text/javascript">
// Handler function
// This must be a top level variable
// The type of the parameter spin is
// not well documented by Magic360, it is
// an object whose property id holds the
// id of the spin. Seems to be simply the browser's
// representation of the "a" element.
var magic360SpinStart = function (spin) {
// Create a closure that takes care of the spin
var handler = function () {
var spinId = spin.id;
var buttonLeft = $("#" + spinId + "-left");
var buttonRight = $("#" + spinId + "-right");
//var buttonFullScreen = $("#" + spinId + "-fullscreen");
var showButtons = function () {
buttonLeft.css("visibility", "visible");
buttonRight.css("visibility", "visible");
//buttonFullScreen.css("visibility", "visible");
buttonLeft.mousedown(function (e) { spinIt(1, -1); });
buttonLeft.mouseup(function (e) { spinIt(0, 0); });
buttonLeft.mouseout(function (e) { spinIt(0, 0); });
buttonRight.mousedown(function (e) { spinIt(-1, -1); });
buttonRight.mouseup(function (e) { spinIt(0, 0); });
buttonRight.mouseout(function (e) { spinIt(0, 0); });
//buttonFullScreen.click(function (e) { Magic360.fullscreen(spinId); });
}
// Number of steps to let the spin run.
// Negative values indicate that it should run forever.
var spinStep = 0;
var spinCount = 0;
// Delay between steps in ms.
// Default in magic is 3600 ms for one revolution
// ToDo: parse these parameters out of the data-magic-360-options
// attribute of spin?
var numberOfImages = 36;
var spinDelay = 1800 / numberOfImages;
// We create timeout objects for the animation. In order
// to not create more than one at a time, we need a variable
// to track them.
var timeOut = null;
// State of the spin
var spinState = "initial";
// Internal function for one step of the animation.
// Should not be called directly, but only via spinIt.
var doSpin = function () {
$('#m360hint').hide();
timeOut = null;
//Magic360.pause(spinId);
if (spinCount != 0) {
Magic360.spin(spinId, spinStep);
if (spinCount > 0) {
spinCount--;
}
timeOut = setTimeout(doSpin, spinDelay);
} else {
if (spinState == "initial") {
spinState = "normal";
showButtons();
}
}
};
var spinIt = function (i, count, state) {
$('#m360hint').hide();
spinStep = i;
spinCount = count;
if (typeof (state) !== "undefined") {
spinState = state;
}
if (timeOut == null) {
doSpin();
}
}
// Make sure that our auto spin stops when the
// image is clicked.
//$("#" + spinId).click(function (e) { spinIt(0, 0); });
// Do our own autospin, we do not use the built in autospin
// because there is no callback for the end of the auto spin
// available
//spinIt(-1, 36, "initial");
showButtons();
};
handler();
};
var Magic360Options = {
'onready': magic360SpinStart
};</script>
</html>
</div>
<div class="summary360">
<div class="section-promotion-content" style="width:100%">
<h3 class="section-promotion-headline hide-on-mobile">Fujitsu Storage ETERNUS AF250 S3</h3>
<ul style="text-align:left; list-style-type: square; color: #d60303;">
<li>
<span style="color: rgb(0, 0, 0); font-size:1.8rem;line-height:1.8">Entry-level all-flash storage for all Tier-1 applications in small and mid-sized companies</span>
</li>
<li>
<span style="color: rgb(0, 0, 0); font-size:1.8rem;line-height:1.8">Max No. of controllers: 2</span>
</li>
<li>
<span style="color: rgb(0, 0, 0); font-size:1.8rem;line-height:1.8">Max No. of drives: 264</span>
</li>
<li>
<span style="color: rgb(0, 0, 0); font-size:1.8rem;line-height:1.8">Maximum storage capacity of up to 8,110 TB</span>
</li>
<li>
<span style="color: rgb(0, 0, 0); font-size:1.8rem;line-height:1.8">Random access performance of up to 600,000 IOPS</span>
</li>
</ul>
<br />
<div class="moreinfo">
<a href="#specs">
<p>More Details</p>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section-inside" style="text-align:center">
<table id="benefits-table">
<tr>
<td style="text-align:center; width: 320px; vertical-align: top">
<img src="/global/imagesgig5/266728_tcm100-5326230_tcm100-5309118-32.png" alt="ImgPlaceholder">
</td>
<td style="text-align:center; width: 320px; vertical-align: top">
<img src="/global/imagesgig5/266704_tcm100-5337788_tcm100-5309118-32.png" alt="ImgPlaceholder">
</td>
<td style="text-align:center; width: 320px; vertical-align: top">
<img src="/global/imagesgig5/266695_tcm100-5331679_tcm100-5309118-32.png" alt="ImgPlaceholder">
</td>
<td style="text-align:center; width: 320px; vertical-align: top">
<img src="/global/imagesgig5/266734_tcm100-5337789_tcm100-5309118-32.png" alt="ImgPlaceholder">
</td>
</tr>
<tr>
<td style="text-align:center; width: 320px; vertical-align: top">
<h5>Flexible and flash optimized storage</h5>
</td>
<td style="text-align:center; width: 320px; vertical-align: top">
<h5>Selective use of deduplication / compression </h5>
</td>
<td style="text-align:center; width: 320px; vertical-align: top">
<h5>Automated Quality-of-Service</h5>
</td>
<td style="text-align:center; width: 320px; vertical-align: top">
<h5>Transparent failover and Storage Cluster </h5>
</td>
</tr>
<tr>
<td style="text-align:center; width: 320px; vertical-align: top; padding: 0 15px 0 15px">
<p>Ultra-low response times for all applications and a massive increase of IOPS without complicated tuning measures as well as scalable capacity and connectivity.</p>
</td>
<td style="text-align:center; width: 320px; vertical-align: top; padding: 0 15px 0 15px">
<p>Data reduction at the volume level to improve storage efficiency and increase the lifespan of flash</p>
</td>
<td style="text-align:center; width: 320px; vertical-align: top; padding: 0 15px 0 15px">
<p>Control applications priorities according to business needs, minimize admin efforts, automate monitoring and adjustment to guarantee service levels</p>
</td>
<td style="text-align:center; width: 320px; vertical-align: top; padding: 0 15px 0 15px">
<p>High redundancies enable business critical computing, data processing and real time data mirroring at the highest level and a system availability of up to 99.9999%. </p>
</td>
</tr>
</table>
<ul id="benefits-list" style=" text-align: center;">
<li style="text-align: center; float: left">
<img src="/global/imagesgig5/266728_tcm100-5326230_tcm100-5309118-32.png" alt="ImgPlaceholder">
<h5>Flexible and flash optimized storage</h5>
<span style="line-height:1.6; font-size:1.4rem; text-align: justify">Ultra-low response times for all applications and a massive increase of IOPS without complicated tuning measures as well as scalable capacity and connectivity.</span>
</li>
<li style="text-align: center; float: left">
<img src="/global/imagesgig5/266704_tcm100-5337788_tcm100-5309118-32.png" alt="ImgPlaceholder">
<h5>Selective use of deduplication / compression </h5>
<span style="line-height:1.6; font-size:1.4rem; text-align: justify">Data reduction at the volume level to improve storage efficiency and increase the lifespan of flash</span>
</li>
<li style="text-align: center; float: left">
<img src="/global/imagesgig5/266695_tcm100-5331679_tcm100-5309118-32.png" alt="ImgPlaceholder">
<h5>Automated Quality-of-Service</h5>
<span style="line-height:1.6; font-size:1.4rem; text-align: justify">Control applications priorities according to business needs, minimize admin efforts, automate monitoring and adjustment to guarantee service levels</span>
</li>
<li style="text-align: center; float: left">
<img src="/global/imagesgig5/266734_tcm100-5337789_tcm100-5309118-32.png" alt="ImgPlaceholder">
<h5>Transparent failover and Storage Cluster </h5>
<span style="line-height:1.6; font-size:1.4rem; text-align: justify">High redundancies enable business critical computing, data processing and real time data mirroring at the highest level and a system availability of up to 99.9999%. </span>
</li>
</ul>
</div>
</div>
</div>
<div id="specs" class="section">
<div class="section-inner">
<h2 class="hdg-b diff-center">Tech Specs</h2>
<style>
.technical-details-2col table tbody tr {
-webkit-column-break-inside: avoid;
page-break-inside: avoid;
break-inside: avoid;
}
</style>
<div class="technical-details-2col">
<table class="technical-details-table">
<tbody>
<tr>
<td class="tech-spec-title" style=""><b>Type</b></td>
<td class="tech-spec-desc" style="border-right: 1px solid #eeeeee;">
All-Flash Array <br>
</td>
</tr>
<tr>
<td class="tech-spec-title" style=""><b>Latency</b></td>
<td class="tech-spec-desc" style="border-right: 1px solid #eeeeee;">
140µsec (Read), 60µsec (Write) <br>
</td>
</tr>
<tr>
<td class="tech-spec-title" style=""><b>Sequential access performance</b></td>
<td class="tech-spec-desc" style="border-right: 1px solid #eeeeee;">
11,000 MB/s (128KB Read)<br/>5,300 MB/s (128KB Write) <br>
</td>
</tr>
<tr>
<td class="tech-spec-title" style=""><b>Random access performance</b></td>
<td class="tech-spec-desc" style="border-right: 1px solid #eeeeee;">
600,000 IOPS (8KB Read)<br/>480,000 IOPS (8KB Write) <br>
</td>
</tr>
<tr>
<td class="tech-spec-title" style=""><b>Host Interfaces</b></td>
<td class="tech-spec-desc" style="border-right: 1px solid #eeeeee;">
Fibre Channel (16 Gbit/s, 32Gbit/s)<br/>iSCSI (10 Gbit/s [10GBase-SR, 10GBase-CR, 10GBase-T], 1 Gbit/s) <br>
</td>
</tr>
<tr>
<td class="tech-spec-title" style=""><b>Maximum Disk Drives</b></td>
<td class="tech-spec-desc" style="border-right: 1px solid #eeeeee;">
264 <br>
</td>
</tr>
<tr>
<td class="tech-spec-title" style=""><b>Maximum Storage Capacity</b></td>
<td class="tech-spec-desc" style="border-right: 1px solid #eeeeee;">
8,110 TB <br>
</td>
</tr>
<tr>
<td class="tech-spec-title" style=""><b>No. of host interfaces</b></td>
<td class="tech-spec-desc" style="border-right: 1px solid #eeeeee;">
4-16 ports [FC16Gbit/s)], 4/8 ports [FC(32Gbit/s), iSCSI(10Gbit/s,1Gbit/s)] <br>
</td>
</tr>
<tr>
<td class="tech-spec-title" style=""><b>Max. no. of hosts</b></td>
<td class="tech-spec-desc" style="border-right: 1px solid #eeeeee;">
1,024 <br>
</td>
</tr>
<tr>
<td class="tech-spec-title" style=""><b>Supported RAID levels</b></td>
<td class="tech-spec-desc" style="border-right: 1px solid #eeeeee;">
0, 1, 1+0, 5, 5+0, 6 <br>
</td>
</tr>
<tr>
<td class="tech-spec-title" style=""><b>Drive interface</b></td>
<td class="tech-spec-desc" style="border-right: 1px solid #eeeeee;">
Serial Attached SCSI (12 Gbit/s) <br>
</td>
</tr>
<tr>
<td class="tech-spec-title" style=""><b>Thin Provisioning</b></td>
<td class="tech-spec-desc" style="border-right: 1px solid #eeeeee;">
Yes <br>
</td>
</tr>
<tr>
<td class="tech-spec-title" style=""><b>Automated Storage Tiering</b></td>
<td class="tech-spec-desc" style="border-right: 1px solid #eeeeee;">
Yes <br>
</td>
</tr>
<tr>
<td class="tech-spec-title" style=""><b>Remote Copy functionality</b></td>
<td class="tech-spec-desc" style="border-right: 1px solid #eeeeee;">
Synchronous and asynchronous <br>
</td>
</tr>
</tbody>
</table>
</div>
<div class="support-packs-multicol">
<table style="margin-top: 20px;">
<tbody>
<tr>
<td class="support-pack-title"><b>Support Pack Options</b></td>
<td class="support-pack-desc" style="border-right: 1px solid #eeeeee;">
Available in major metropolitan areas:<br/>9x5, Next Business Day Onsite Response Time <br/>9x5, 4h Onsite Response Time (depending on country)<br/>24x7, 4h Onsite Response Time (depending on country)</br> </td>
<td class="support-pack-title"><b>Recommended Service</b></td>
<td class="support-pack-desc" style="border-right: 1px solid #eeeeee;">
24x7, Onsite Response Time: 4h</br> </td>
</tr>
</tbody>
</table>
</div>
<div class="support-packs-singlecol">
<table class="support-packs-singlecol-table">
<tbody>
<tr>
<td class="support-pack-title"><b>Support Pack Options</b></td>
<td class="support-pack-desc">
Available in major metropolitan areas:<br/>9x5, Next Business Day Onsite Response Time <br/>9x5, 4h Onsite Response Time (depending on country)<br/>24x7, 4h Onsite Response Time (depending on country)</br>
</td>
</tr>
<tr>
<td class="support-pack-title"><b>Recommended Service</b></td>
<td class="support-pack-desc">
24x7, Onsite Response Time: 4h</br>
</td>
</tr>
</tbody>
</table>
</div>
<div class="read-specs">
<p><a href="https://docs.ts.fujitsu.com/dl.aspx?id=3fe295f0-bf3d-4bc6-999a-484b43f12c12" target="_blank">Read full specs</a></p>
</div>
</div>
</div>
<script src=/incv5/lib/jquery.js type="text/javascript"></script>
<script type="text/javascript" language="javascript">
$('#cs_nav_btn').parent().hide();
</script>
<div id="documents" style="padding-top:56px" class="section">
<div class="section-inner">
<h2 class="hdg-b diff-center">Resources</h2>
<div class="product-doc-list">
<div>
<h3>Data Sheets</h3>
<ul class="list-link-a">
<li>
<a href="https://docs.ts.fujitsu.com/dl.aspx?id=3fe295f0-bf3d-4bc6-999a-484b43f12c12" target="_blank">ETERNUS AF250 S3</a>
</li>
<li>
<a href="https://docs.ts.fujitsu.com/dl.aspx?id=f5925de9-2155-4f00-bbc0-ebd7bd10cce4" target="_blank">ETERNUS AF150 S3</a>
</li>
</ul>
</div>
<div style="margin-top: 20px;">
<h3>Brochures & Flyers</h3>
<ul class="list-link-a">
<li>
<a href="https://docs.ts.fujitsu.com/dl.aspx?id=0e6917d2-a725-4ec8-8b5c-80f26ca454c4" target="_blank">Brochure: ETERNUS AF - All-Flash Storage System</a>
</li>
<li>
<a href="https://docs.ts.fujitsu.com/dl.aspx?id=fb94bb74-c89a-4ac6-887c-78ab5cab856f" target="_blank">Flyer: Top Reasons to invest in ETERNUS AF</a>
</li>
<li>
<a href="https://docs.ts.fujitsu.com/dl.aspx?id=8c332114-ee93-41aa-8311-6de5f89ebeb9" target="_blank">Infographic: ETERNUS All-Flash Storage</a>
</li>
<li>
<a href="https://docs.ts.fujitsu.com/dl.aspx?id=25ec2f05-548b-4ae0-98a6-c8fa6c01b059" target="_blank">Brochure: ETERNUS Primary Storage Family</a>
</li>
<li>
<a href="https://docs.ts.fujitsu.com/dl.aspx?id=058a463a-eaa8-4141-b2d3-9d918ebee8bd" target="_blank">Fujitsu Storage Portfolio </a>
</li>
</ul>
</div>
<div style="margin-top: 20px;">
<h3>White Papers</h3>
<ul class="list-link-a">
<li>
<a href="http://docs.ts.fujitsu.com/dl.aspx?id=4e667298-6879-4af1-b361-cc968d6d9b9e" target="_blank">ETERNUS AF and ETERNUS DX Feature Set</a>
</li>
<li>
<a href="http://docs.ts.fujitsu.com/dl.aspx?id=03f39e43-ca81-4304-aa64-912f51583719" target="_blank">ETERNUS AF and ETERNUS DX Optimization Features: Automated Storage Tiering and Automated Quality of Service </a>
</li>
<li>
<a href="http://docs.ts.fujitsu.com/dl.aspx?id=241ef418-7d07-4d7a-bbe4-9f6773f0ea68" target="_blank">ETERNUS AF and ETERNUS DX Storage Cluster </a>
</li>
</ul>
</div>
<div style="margin-top:20px;">
<h3>Support</h3>
<ul class="list-link-a">
<li>
<a href="https://www.fujitsu.com/global/support/products/computing/storage/manuals-list.html" target="_blank">Manuals</a>
</li>
<li>
<a href="https://www.fujitsu.com/global/support/products/computing/storage/download/" target="_blank">Drivers & Downloads</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<script src=/incv5/lib/jquery.js type="text/javascript"></script>
<script type="text/javascript" language="javascript">
$('#pr_nav_btn').parent().hide();
</script>
<div id="accesories" style="padding-top:56px" class="section">
<div class="section-inner">
<h2 class="hdg-b diff-center">Software</h2>
<table>
<tbody>
<tr>
<td class="acc-img-col">
<img src="/global/imagesgig5/W-eternus-sf_oic_tcm100-7143634_tcm100-5309118-32.png" />
<td class="acc-desc-col">
<div>
<h3>
<a class="acc-link" href="/global/products/computing/storage/software/eternus-sf-16-9/index.html">FUJITSU ETERNUS SF V16.9<br/>Storage Management Software</a>
</h3>
<p style="text-align:justify; margin-bottom: 30px;">ETERNUS SF storage management software supports overall daily operations within the entire ETERNUS AF and ETERNUS DX storage infrastructure by offering an easy-to-use graphical user interface for all management tasks,like health monitoring, capacity management, provisioning, local and remote replication and disaster recovery as well as the management of unified storage. At the same time it reduces significantly administrator’s training efforts with regards to cost and time.</p>
</div>
</td>
</tr>
<tr>
<td class="acc-img-col">
<img src="/global/imagesgig5/W-multipath_tcm100-7158579_tcm100-5309118-32.png" />
<td class="acc-desc-col">
<div>
<h3>
<a class="acc-link" href="/global/products/computing/storage/software/eternus-mpd/index.html">Fujitsu Storage ETERNUS Multipath Driver<br/>(only available for APAC region)</a>
</h3>
<p style="text-align:justify; margin-bottom: 30px;">ETERNUS Multipath Driver software achieves high-reliability and performance systems due to multipath connection between storages and servers. In case of path failure ETERNUS Mutpath Driver switches the access path to improves system reliability. In addition, further improved system performance is ensured by the load balancing function between multiple paths.</p>
</div>
</td>
</tr>
</tbody>
</table>
<div class="read-specs">
<p><a href="https://docs.ts.fujitsu.com/dl.aspx?id=3fe295f0-bf3d-4bc6-999a-484b43f12c12" target="_blank">Show all in the data sheet</a></p>
</div>
</div>
</div>
</div>
</main>
</div>
<footer>
<div id="footer">
<div id="footer-group-nav">
<div id="footer-group-nav-inner">
<div id="footer-nav-a" >
<ul>
<li>
<a href="https://www2.fujitsu.com/global/uvance/">Fujitsu Uvance</a>
<ul>
<li><a href="https://www2.fujitsu.com/global/uvance/sustainable-manufacturing">Sustainable Manufacturing</a></li>
<li><a href="https://www2.fujitsu.com/global/uvance/consumer-experience">Consumer Experience</a></li>
<li><a href="https://www2.fujitsu.com/global/uvance/healthy-living">Healthy Living</a></li>
<li><a href="https://www2.fujitsu.com/global/uvance/trusted-society">Trusted Society</a></li>
<li><a href="https://www2.fujitsu.com/global/uvance/digital-shifts">Digital Shifts</a></li>
<li><a href="https://www2.fujitsu.com/global/uvance/business-applications">Business Applications</a></li>
<li><a href="https://www2.fujitsu.com/global/uvance/hybrid-it">Hybrid IT</a></li>
</ul>
</li>
<li>
<a href="/global/services/">Services & Products</a>
<ul>
<li><a href="/global/services/multi-cloud/">Multi-Cloud</a></li>
<li><a href="/global/services/application-services/">Business Application Services</a></li>
<li><a href="/global/services/infrastructure/">Managed Infrastructure Services</a></li>
<li><a href="/global/themes/worklifeshift/">Work Life Shift</a></li>
<li><a href="/global/themes/security/">Cyber Security</a></li>
<li><a href="/global/themes/internet-of-things/">Internet of Things</a></li>
<li><a href="/global/solutions/business-technology/ai">Artificial Intelligence </a></li>
<li><a href="https://www.fujitsu.com/global/cocreating-program/">Co-creation</a></li>
<li><a href="/global/products/computing/">Computing Products</a></li>
<li><a href="/global/products/infrastructure-management/index.html">Infrastructure Management</a></li>
<li><a href="/global/services/infrastructure/network/">Network</a></li>
<li><a href="/global/support">Support</a></li>
<li><a href="/global/products/uscale/">Pay-Per-Use</a></li>
</ul>
</li>
<li>
<a href="/global/solutions/industry/">Industries</a>
<ul>
<li><a href="/global/solutions/industry/automotive/">Automotive </a></li>
<li><a href="/global/solutions/industry/manufacturing/">Manufacturing </a></li>
<li><a href="/global/solutions/industry/retail/">Retail</a></li>
<li><a href="/global/solutions/industry/financial-services/">Financial Services </a></li>
<li><a href="/global/solutions/industry/transport/">Transport </a></li>
<li><a href="/global/solutions/industry/public-sector/">Public Sector </a></li>
<li><a href="/global/solutions/industry/energy-utilities/">Energy & Utilities </a></li>
<li><a href="https://www2.fujitsu.com/global/customer-stories-index/">Customer Stories</a></li>
</ul>
</li>
<li>
<a href="//www.fujitsu.com/global/about/">About Fujitsu</a>
<ul>
<li><a href="//www.fujitsu.com/global/about/purpose/">Our Story</a></li>
<li><a href="https://www2.fujitsu.com/global/vision/">Fujitsu Technology and Service Vision</a></li>
<li><a href="//www.fujitsu.com/global/about/facts/">Fujitsu Facts</a></li>
<li><a href="/global/about/our-business/">Our Business</a></li>
<li><a href="//www.fujitsu.com/global/about/research/">Research & Development</a></li>
<li><a href="//www.fujitsu.com/global/about/philosophy/">Fujitsu Way</a></li>
<li><a href="//www.fujitsu.com/global/about/csr/">Sustainability and Responsible Business</a></li>
<li><a href="/global/about/careers/index.html">Careers</a></li>
<li><a href="//www.fujitsu.com/global/about/resources/news/newsroom.html">Global News Room</a></li>
<li><a href="//www.fujitsu.com/global/about/ir/">Investor Relations</a></li>
</ul>
</li>
</ul>
</div>
<div id="footer-nav-b">
<ul class="utility">
<li><a href="/global/about/resources/terms/">Terms of use</a></li>
<li><a href="/global/about/resources/privacy/">Privacy</a></li>
<li><a href="//www.fujitsu.com/global/contact/">Contact</a></li>
<li><a href="/global/htmlsitemap.html">Sitemap</a></li>
</ul>
</div>
</div>
</div>
<div id="footer-group-utility">
<dl class="social-content">
<dt>Official Social Media Accounts</dt>
<dd>
<ul class="social">
<li>
<a href="https://www.facebook.com/FujitsuICT">
<img src="/global/imagesgig5/icon-facebook-32_tcm100-3002773_tcm100-3526238-32.png"
alt="Facebook">
</a>
</li>
<li>
<a href="https://www.instagram.com/fujitsu.global/">
<img src="/global/imagesgig5/icon_Instagram_tcm100-3738066_tcm100-3526238-32.png"
alt="Instagram">
</a>
</li>
<li>
<a href="https://twitter.com/Fujitsu_Global">
<img src="/global/imagesgig5/x-wt_tcm100-3002785_tcm100-3526238-32.png"
alt="X">
</a>
</li>
<li>
<a href="https://www.youtube.com/FujitsuTS">
<img src="/global/imagesgig5/icon-youtube_tcm100-3002822_tcm100-3526238-32.png"
alt="YouTube">
</a>
</li>
<li>
<a href="https://www.linkedin.com/company/fujitsu">
<img src="/global/imagesgig5/icon-linkedin_tcm100-3002784_tcm100-3526238-32.png"
alt="LinkedIn">
</a>
</li>
</ul>
</dd>
</dl>
</div>
<div id="footer-group-bylaw">
<ul class="legal-info">
</ul>
<p class="copyright"><small><a href="/global/about/resources/terms/">Copyright 1995 - 2024 Fujitsu</a></small></p>
</div>
</div>
</footer>
<script src=/incv5/lib/jquery.js type="text/javascript"></script>
<script src=/incv5/gig5-common.js type="text/javascript"></script>
<script src=/common/js/ProductPagesNavExtension.js type="text/javascript"></script>
</body>
</html>
|