{"id":284,"date":"2016-10-07T17:49:41","date_gmt":"2016-10-07T14:49:41","guid":{"rendered":"https:\/\/web-mng.iptp.com\/?page_id=284"},"modified":"2026-01-14T11:12:02","modified_gmt":"2026-01-14T08:12:02","slug":"weathermap","status":"publish","type":"page","link":"https:\/\/www.iptp.us\/ja\/iptp-tools\/weathermap\/","title":{"rendered":"\u30a6\u30a7\u30b6\u30fc\u30de\u30c3\u30d7"},"content":{"rendered":"<p>\t\t\t<!-- \r\n<link rel=\"stylesheet\" target=\"_blank\" href=\"\/wp-content\/themes\/benevolent\/lib\/leaflet\/leaflet.css\" \/>\r\n<script src=\"\/wp-content\/themes\/benevolent\/lib\/leaflet\/leaflet.js\"><\/script>\r\n<script type=\"text\/javascript\" src=\"\/wp-content\/themes\/benevolent\/lib\/jquery-ui.min.js\"><\/script>\r\n<script type=\"text\/javascript\" src=\"\/wp-content\/themes\/benevolent\/lib\/leaflet\/imgViewer2.js\"><\/script> -->\r\n\t\t\t<!-- <div class=\"wrap-img zoom-magnify\"> -->\r\n\t\t\t<\/p><div class=\"wrap-img\">\r\n\t\t\t\t<button class=\"btn-modal-toggle-js btn-toggle-modal-css btn btn-primary\"><i class=\"fa fa-arrows-alt\" aria-hidden=\"true\"><\/i><\/button><img class=\"img-zooms img-zoom-small lazy\" src=\"data:image\/gif;base64,R0lGODlhAQABAIAAAAAAAP\/\/\/ywAAAAAAQABAAACAUwAOw==\" alt=\"Global Network and Points of Presence Map\" data-src=\"https:\/\/cacti.iptp.net\/cacti\/plugins\/weathermap\/output\/weathermap.png\">\r\n\t\t\t\t<div class=\"zoom-large\" style=\"--background: url('https:\/\/cacti.iptp.net\/cacti\/plugins\/weathermap\/output\/weathermap.png')\"><\/div>\r\n\t\t\t<\/div><div class=\"pos-full-width div-toggle-js weathermap\" align=\"center\">\r\n\t\t\t\t<button class=\"btn-modal-toggle-js btn-toggle-modal-css btn btn-primary\"><i class=\"fa fa-close\" aria-hidden=\"true\"><\/i><\/button> <img class=\"img-zoom-large lazy\" src=\"data:image\/gif;base64,R0lGODlhAQABAIAAAAAAAP\/\/\/ywAAAAAAQABAAACAUwAOw==\" alt=\"Global Network and Points of Presence Map\" data-src=\"https:\/\/cacti.iptp.net\/cacti\/plugins\/weathermap\/output\/weathermap.png\">\r\n\t\t\t<\/div><script>\r\n\t\t\t\tjQuery(function($){\r\n\t\t\t\t$(document).ready(function () {\r\n\t\t\t\t\tvar native_width = 0;\r\n\r\n\t\t\t\t\tvar native_height = 0;\r\n\r\n\t\t\t\t\t\/\/Now the mousemove function\r\n\r\n\t\t\t\t\t$(\".zoom-magnify\").mousemove(function (e) {\r\n\t\t\t\t\t\/\/When the user hovers on the image, the script will first calculate\r\n\r\n\t\t\t\t\t\/\/the native dimensions if they don't exist. Only after the native dimensions\r\n\r\n\t\t\t\t\t\/\/are available, the script will show the zoomed version.\r\n\r\n\t\t\t\t\tif (!native_width && !native_height) {\r\n\t\t\t\t\t\t\/\/This will create a new image object with the same image as that in .small\r\n\r\n\t\t\t\t\t\t\/\/We cannot directly get the dimensions from .small because of the\r\n\r\n\t\t\t\t\t\t\/\/width specified to 200px in the html. To get the actual dimensions we have\r\n\r\n\t\t\t\t\t\t\/\/created this image object.\r\n\r\n\t\t\t\t\t\tvar image_object = new Image();\r\n\r\n\t\t\t\t\t\timage_object.src = $(\".img-zoom-small\").attr(\"src\");\r\n\r\n\t\t\t\t\t\t\/\/This code is wrapped in the .load function which is important.\r\n\r\n\t\t\t\t\t\t\/\/width and height of the object would return 0 if accessed before\r\n\r\n\t\t\t\t\t\t\/\/the image gets loaded.\r\n\r\n\t\t\t\t\t\tnative_width = image_object.width;\r\n\r\n\t\t\t\t\t\tnative_height = image_object.height;\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\t\/\/x\/y coordinates of the mouse\r\n\r\n\t\t\t\t\t\t\/\/This is the position of .magnify with respect to the document.\r\n\r\n\t\t\t\t\t\tvar magnify_offset = $(this).offset();\r\n\r\n\t\t\t\t\t\t\/\/We will deduct the positions of .magnify from the mouse positions with\r\n\r\n\t\t\t\t\t\t\/\/respect to the document to get the mouse positions with respect to the\r\n\r\n\t\t\t\t\t\t\/\/container(.magnify)\r\n\r\n\t\t\t\t\t\tvar mx = e.pageX - magnify_offset.left;\r\n\r\n\t\t\t\t\t\tvar my = e.pageY - magnify_offset.top;\r\n\r\n\t\t\t\t\t\t\/\/Finally the code to fade out the glass if the mouse is outside the container\r\n\r\n\t\t\t\t\t\tif (mx < $(this).width() && my < $(this).height() && mx > 0 && my > 0) {\r\n\t\t\t\t\t\t$(\".zoom-large\").fadeIn(100);\r\n\t\t\t\t\t\t} else {\r\n\t\t\t\t\t\t$(\".zoom-large\").fadeOut(100);\r\n\t\t\t\t\t\t}\r\n\r\n\t\t\t\t\t\tif ($(\".zoom-large\").is(\":visible\")) {\r\n\t\t\t\t\t\t\/\/The background position of .large will be changed according to the position\r\n\r\n\t\t\t\t\t\t\/\/of the mouse over the .small image. So we will get the ratio of the pixel\r\n\r\n\t\t\t\t\t\t\/\/under the mouse pointer with respect to the image and use that to position the\r\n\r\n\t\t\t\t\t\t\/\/large image inside the magnifying glass\r\n\r\n\t\t\t\t\t\tvar rx = Math.round((mx \/ $(\".img-zoom-small\").width()) * native_width - $(\".zoom-large\").width() \/ 2) * -1;\r\n\r\n\t\t\t\t\t\tvar ry = Math.round((my \/ $(\".img-zoom-small\").height()) * native_height - $(\".zoom-large\").height() \/ 2) * -1;\r\n\r\n\t\t\t\t\t\tvar bgp = rx + \"px \" + ry + \"px\";\r\n\r\n\t\t\t\t\t\t\/\/Time to move the magnifying glass with the mouse\r\n\r\n\t\t\t\t\t\tvar px = mx - $(\".zoom-large\").width() \/ 2;\r\n\r\n\t\t\t\t\t\tvar py = my - $(\".zoom-large\").height() \/ 2;\r\n\r\n\t\t\t\t\t\t\/\/Now the glass moves with the mouse\r\n\r\n\t\t\t\t\t\t\/\/The logic is to deduct half of the glass's width and height from the\r\n\r\n\t\t\t\t\t\t\/\/mouse coordinates to place it with its center at the mouse coordinates\r\n\r\n\t\t\t\t\t\t\/\/If you hover on the image now, you should see the magnifying glass in action\r\n\r\n\t\t\t\t\t\t$(\".zoom-large\").css({ left: px, top: py, backgroundPosition: bgp });\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t\t});\r\n\t\t\t\t});\r\n\t\t\t});\r\n\t\t\t<\/script><br><div class=\"lg-links\">\r\n<a href=\"https:\/\/stat.ripe.net\/AS41095\" target=\"_blank\">RIPE<\/a> <a href=\"https:\/\/asrank.caida.org\/asns?asn=41095\" target=\"_blank\">ASRank<\/a> <a href=\"https:\/\/radar.qrator.net\/as41095\" target=\"_blank\">RADAR<\/a> <a href=\"https:\/\/www.peeringdb.com\/asn\/41095\" target=\"_blank\">PeeringDB<\/a>\r\n<\/div><section class=\"mt-5\">\n<div class=\"p-2 bg-primary rounded mb-4\">\n<div class=\"row g-0\">\n<div class=\"col-12 col-lg-4 ps-0 bp-sidebar pe-2\">\n<div class=\"nav bp-nav flex-column nav-pills\" id=\"v-pills-tab\" role=\"tablist\" aria-orientation=\"vertical\">\n<div class=\"bg-white rounded p-2 d-flex flex-nowrap align-items-center mb-4\">\n<div><img decoding=\"async\" src=\"data:image\/gif;base64,R0lGODlhAQABAIAAAAAAAP\/\/\/ywAAAAAAQABAAACAUwAOw==\" alt=\"wmap\" data-src=\"\/wp-content\/uploads\/wmap-icon2.svg\" class=\"lazy\"><\/div>\n<h2 class=\"ps-4 text-secondary my-0\">&#12454;&#12455;&#12470;&#12540;&#12510;&#12483;&#12503;<br>&#12395;&#12388;&#12356;&#12390;<\/h2>\n<\/div>\n<p>               <button class=\"nav-link text-start active\" id=\"bp-tab-sec1\" data-bs-toggle=\"pill\" data-bs-target=\"#bp-content-sec1\" type=\"button\" role=\"tab\" aria-controls=\"v-pills-home\" aria-selected=\"true\">&#12454;&#12455;&#12470;&#12540;&#12510;&#12483;&#12503;&#12398;&#23450;&#32681;<\/button><br>\n               <button class=\"nav-link text-start js-bp-tab-sec2-target\" id=\"bp-tab-sec2\" data-bs-toggle=\"pill\" data-bs-target=\"#bp-content-sec2\" type=\"button\" role=\"tab\" aria-controls=\"v-pills-profile\" aria-selected=\"false\">&#12454;&#12455;&#12470;&#12540;&#12510;&#12483;&#12503;&#12484;&#12540;&#12523;&#12398;&#12513;&#12522;&#12483;&#12488;<\/button><br>\n               <button class=\"nav-link text-start js-bp-tab-sec3-target\" id=\"bp-tab-sec3\" data-bs-toggle=\"pill\" data-bs-target=\"#bp-content-sec3\" type=\"button\" role=\"tab\" aria-controls=\"v-pills-disabled\" aria-selected=\"false\">&#12454;&#12455;&#12470;&#12540;&#12510;&#12483;&#12503;&#12398;&#20869;&#37096;&#27083;&#36896;<\/button><br>\n               <button class=\"nav-link text-start js-bp-tab-sec4-target\" id=\"bp-tab-sec4\" data-bs-toggle=\"pill\" data-bs-target=\"#bp-content-sec4\" type=\"button\" role=\"tab\" aria-controls=\"v-pills-messages\" aria-selected=\"false\">&#12454;&#12455;&#12470;&#12540;&#12510;&#12483;&#12503;&#12398;&#35501;&#12415;&#26041;&#12539;&#35299;&#35500;<\/button>\n            <\/p><\/div>\n<\/div>\n<div class=\"col-12 col-lg-8 p-3 p-lg-4 bp-content bg-white rounded\">\n<div class=\"tab-content\" id=\"v-pills-tabContent\">\n<div class=\"tab-pane fade show active\" id=\"bp-content-sec1\" role=\"tabpanel\" aria-labelledby=\"bp-tab-sec1\" tabindex=\"0\">\n<div class=\"text-center mt-5\">\n<div><img decoding=\"async\" src=\"data:image\/gif;base64,R0lGODlhAQABAIAAAAAAAP\/\/\/ywAAAAAAQABAAACAUwAOw==\" width=\"166\" heigh=\"166\" alt=\"wmap\" data-src=\"\/wp-content\/uploads\/wmap-icon1.svg\" class=\"lazy\"><\/div>\n<\/div>\n<h2 class=\"text-center mb-5\">&#12454;&#12455;&#12470;&#12540;&#12510;&#12483;&#12503;&#12398;&#23450;&#32681;<\/h2>\n<p>&#36890;&#20449;&#26989;&#30028;&#12398;&#21021;&#24515;&#32773;&#12399;&#12289;&#12371;&#12398;&#12454;&#12455;&#12470;&#12540;&#12510;&#12483;&#12503;(Weathermap)&#12434;&#21021;&#12417;&#12390;&#35211;&#12383;&#12392;&#12365;&#12289;&#12356;&#12367;&#12388;&#12363;&#12398;&#28151;&#20081;&#12364;&#29983;&#12376;&#12427;&#12363;&#12418;&#12375;&#12428;&#12414;&#12379;&#12435;&#12290;&#12381;&#12371;&#12391;&#12289;IPTP Networks&#12391;&#12399;&#12289;&#12371;&#12398;&#12454;&#12455;&#12470;&#12540;&#12510;&#12483;&#12503;&#12398;&#23450;&#32681;&#12289;&#21033;&#28857;&#12289;&#12510;&#12483;&#12503;&#12395;&#34920;&#31034;&#12373;&#12428;&#12427;&#35443;&#32048;&#12289;&#12381;&#12375;&#12390;&#12371;&#12398;&#12484;&#12540;&#12523;&#12398;&#23436;&#29863;&#12394;&#35501;&#12415;&#26041;&#12289;&#29702;&#35299;&#26041;&#27861;&#12395;&#12388;&#12356;&#12390;&#35500;&#26126;&#12377;&#12427;&#12371;&#12392;&#12395;&#12377;&#12427;&#12290;<\/p>\n<p>&#12454;&#12455;&#12470;&#12540;&#12510;&#12483;&#12503;&#12399;&#12289;&#32068;&#32340;&#12398;&#12493;&#12483;&#12488;&#12527;&#12540;&#12463;&#12539;&#12497;&#12501;&#12457;&#12540;&#12510;&#12531;&#12473;&#12392;&#12522;&#12450;&#12523;&#12479;&#12452;&#12512;&#12398;&#12488;&#12521;&#12501;&#12451;&#12483;&#12463;&#12539;&#12501;&#12525;&#12540;&#12434;&#21487;&#35222;&#21270;&#12377;&#12427;&#12493;&#12483;&#12488;&#12527;&#12540;&#12463;&#12539;&#12510;&#12483;&#12503;&#12391;&#12354;&#12426;&#12289;&#12371;&#12398;&#22580;&#21512;&#12289;IPTP Networks&#12398;&#12371;&#12392;&#12391;&#12377;&#12290;<\/p>\n<p>&#12454;&#12455;&#12470;&#12540;&#12510;&#12483;&#12503;&#12399;&#12289;&#12452;&#12531;&#12479;&#12540;&#12493;&#12483;&#12488;&#12503;&#12525;&#12496;&#12452;&#12480;&#12540;&#12384;&#12369;&#12391;&#12394;&#12367;&#12289;&#12452;&#12531;&#12479;&#12540;&#12493;&#12483;&#12488;&#12456;&#12463;&#12473;&#12481;&#12455;&#12531;&#12472;&#12289;&#36890;&#20449;&#20250;&#31038;&#12289;&#25945;&#32946;&#29992;&#12452;&#12531;&#12479;&#12540;&#12493;&#12483;&#12488;&#12493;&#12483;&#12488;&#12527;&#12540;&#12463;&#65288;&#27431;&#24030;&#12398;Eduroam&#12394;&#12393;&#65289;&#12289;&#37329;&#34701;&#12469;&#12540;&#12499;&#12473;&#12289;&#25919;&#24220;&#27231;&#38306;&#12289;&#22823;&#23398;&#12420;&#23398;&#26657;&#12394;&#12393;&#12391;&#24195;&#12367;&#21033;&#29992;&#12373;&#12428;&#12390;&#12356;&#12414;&#12377;&#12290;<\/p>\n<p class=\"text-md-end text-center\"><button class=\"btn text-uppercase js-bp-tab-sec1 page--next\"><\/button><\/p>\n<\/div>\n<div class=\"tab-pane fade\" id=\"bp-content-sec2\" role=\"tabpanel\" aria-labelledby=\"bp-tab-sec2\" tabindex=\"0\">\n<div class=\"text-center mt-5\">\n<div><img decoding=\"async\" src=\"data:image\/gif;base64,R0lGODlhAQABAIAAAAAAAP\/\/\/ywAAAAAAQABAAACAUwAOw==\" width=\"166\" heigh=\"166\" alt=\"wmap\" data-src=\"\/wp-content\/uploads\/wmap-icon1.svg\" class=\"lazy\"><\/div>\n<\/div>\n<h2 class=\"text-center mb-5\">&#12454;&#12455;&#12470;&#12540;&#12510;&#12483;&#12503;&#12484;&#12540;&#12523;&#12398;&#12513;&#12522;&#12483;&#12488;<\/h2>\n<p>&#12493;&#12483;&#12488;&#12527;&#12540;&#12463;&#12497;&#12501;&#12457;&#12540;&#12510;&#12531;&#12473;&#12398;&#21487;&#35222;&#21270;&#25163;&#27573;&#12392;&#12375;&#12390;&#12289;IPTP Networks&#12398;&#12454;&#12455;&#12470;&#12540;&#12510;&#12483;&#12503;&#12399;5&#20998;&#12372;&#12392;&#12395;&#24120;&#12395;&#26356;&#26032;&#12373;&#12428;&#12289;&#12518;&#12540;&#12470;&#12540;&#12399;&#24120;&#12395;&#24403;&#31038;&#12471;&#12473;&#12486;&#12512;&#12398;&#29366;&#24907;&#12420;&#32076;&#36335;&#12398;&#12488;&#12521;&#12501;&#12451;&#12483;&#12463;&#12395;&#38306;&#12377;&#12427;&#26368;&#26032;&#24773;&#22577;&#12434;&#12522;&#12450;&#12523;&#12479;&#12452;&#12512;&#12391;&#20837;&#25163;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;<\/p>\n<p>&#26356;&#12395;&#12289;&#12488;&#12521;&#12502;&#12523;&#30330;&#29983;&#12398;&#38555;&#12395;&#12454;&#12455;&#12470;&#12540;&#12510;&#12483;&#12503;&#12434;&#30906;&#35469;&#12377;&#12427;&#12371;&#12392;&#12391;&#12289;&#12393;&#12398;&#22238;&#32218;&#12364;&#22810;&#12367;&#12398;&#20154;&#12395;&#21033;&#29992;&#12373;&#12428;&#12289;&#12381;&#12398;&#26178;&#38291;&#24111;&#12395;&#12300;&#28171;&#28382;&#12301;&#12398;&#29366;&#27841;&#12364;&#30330;&#29983;&#12375;&#12390;&#12356;&#12427;&#12398;&#12363;&#12434;&#32032;&#26089;&#12367;&#23519;&#30693;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12427;&#12424;&#12358;&#12395;&#12394;&#12426;&#12414;&#12375;&#12383;&#12290;&#12381;&#12398;&#12362;&#12363;&#12370;&#12391;&#12289;&#12300;&#28151;&#38609;&#12375;&#12390;&#12356;&#12394;&#12356;&#12301;&#21029;&#12398;&#12523;&#12540;&#12488;&#12395;&#20999;&#12426;&#26367;&#12360;&#12390;&#12289;&#26178;&#38291;&#20869;&#12395;&#21839;&#38988;&#12434;&#35299;&#27770;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;<\/p>\n<p class=\"text-md-end text-center\"><button class=\"btn text-uppercase js-bp-tab-sec2 page--next\"><\/button><\/p>\n<\/div>\n<div class=\"tab-pane fade\" id=\"bp-content-sec3\" role=\"tabpanel\" aria-labelledby=\"bp-tab-sec3\" tabindex=\"0\">\n<h2>&#12454;&#12455;&#12470;&#12540;&#12510;&#12483;&#12503;&#12398;&#20869;&#37096;&#27083;&#36896;<\/h2>\n<p>&#12371;&#12398;&#12484;&#12540;&#12523;&#12434;&#12424;&#12426;&#28145;&#12367;&#29702;&#35299;&#12377;&#12427;&#12383;&#12417;&#12395;&#12289;&#12381;&#12398;&#20013;&#12398;&#35201;&#32032;&#12434;&#25496;&#12426;&#19979;&#12370;&#12390;&#12415;&#12414;&#12375;&#12423;&#12358;&#12290;IPTP Networks&#12398;&#12454;&#12455;&#12470;&#12540;&#12510;&#12483;&#12503;&#12399;&#12289;&#20840;&#20307;&#12392;&#12375;&#12390;&#12371;&#12398;&#12424;&#12358;&#12394;&#22806;&#35251;&#12395;&#12394;&#12387;&#12390;&#12356;&#12414;&#12377;:<\/p>\n<p class=\"text-center mb-4\"><img decoding=\"async\" src=\"data:image\/gif;base64,R0lGODlhAQABAIAAAAAAAP\/\/\/ywAAAAAAQABAAACAUwAOw==\" alt=\"overview\" class=\"img-fluid lazy\" data-src=\"\/wp-content\/uploads\/overview.jpg\"><\/p>\n<div class=\"row g-4 mb-5\">\n<div class=\"col-12 col-md-2 text-center\"><img decoding=\"async\" src=\"data:image\/gif;base64,R0lGODlhAQABAIAAAAAAAP\/\/\/ywAAAAAAQABAAACAUwAOw==\" alt=\"column\" data-src=\"\/wp-content\/uploads\/column.jpg\" class=\"lazy\"><\/div>\n<div class=\"col-12 col-md-10 pt-4\">\n<p><strong>&#35443;&#12375;&#12367;&#12399;&#12289;&#12454;&#12455;&#12470;&#12540;&#12510;&#12483;&#12503;&#12434;&#36890;&#12375;&#12390;&#34920;&#31034;&#12373;&#12428;&#12427;&#24773;&#22577;&#12399;&#20197;&#19979;&#12398;&#36890;&#12426;&#12391;&#12377;:<\/strong><\/p>\n<p>&ndash; 0%&#12363;&#12425;100%&#12414;&#12391;&#12398;&#12300;&#36000;&#33655;&#12301;&#27396;&#65288;&#19979;&#22259;&#21442;&#29031;&#65289;&#12399;&#12289;&#25509;&#32154;&#20808;&#12398;&#23481;&#37327;&#12364;&#12393;&#12398;&#31243;&#24230;&#20351;&#29992;&#12373;&#12428;&#12390;&#12356;&#12427;&#12363;&#12434;&#30693;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;&#32043;&#33394;&#12420;&#38738;&#33394;&#12398;&#12523;&#12540;&#12488;&#12399;&#12289;&#36000;&#33655;&#12364;0&#65285;&#12363;&#12425;50&#65285;&#31243;&#24230;&#12391;&#12354;&#12427;&#12371;&#12392;&#12434;&#24847;&#21619;&#12375;&#12414;&#12377;&#65289;&#12371;&#12398;&#12424;&#12358;&#12394;&#12523;&#12540;&#12488;&#12434;&#36984;&#25246;&#12377;&#12427;&#12371;&#12392;&#12391;&#12289;&#12473;&#12512;&#12540;&#12474;&#12391;&#20415;&#21033;&#12394;&#20316;&#26989;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;<\/p>\n<\/div>\n<\/div>\n<div class=\"row g-4 mb-5\">\n<div class=\"col-12 col-md-4 order-md-2\">\n<div class=\"text-center\"><img decoding=\"async\" src=\"data:image\/gif;base64,R0lGODlhAQABAIAAAAAAAP\/\/\/ywAAAAAAQABAAACAUwAOw==\" alt=\"datacenter\" data-src=\"\/wp-content\/uploads\/datacenter.png\" class=\"lazy\"><\/div>\n<\/div>\n<div class=\"col-12 col-md-8 order-md-1\">&ndash; &#25509;&#32154;&#12398;&#36215;&#28857;&#12414;&#12383;&#12399;&#32066;&#28857;&#12392;&#12394;&#12427;IXP&#12289;&#12487;&#12540;&#12479;&#12475;&#12531;&#12479;&#12540;&#12289;&#12414;&#12383;&#12399;&#21516;&#27096;&#12398;&#22320;&#28857;&#12398;&#21517;&#21069;&#12391;&#12377;&#12290;&#27425;&#12398;&#22259;&#12398;&#20363;&#12391;&#12399;&#12289;&#12458;&#12521;&#12531;&#12480;&#12398;&#12450;&#12512;&#12473;&#12486;&#12523;&#12480;&#12512;&#12395;&#12354;&#12427;Nikhef&#65288;328&#65289;&#12487;&#12540;&#12479;&#12475;&#12531;&#12479;&#12540;&#12434;&#35352;&#36848;&#12375;&#12390;&#12362;&#12426;&#12289;&#12300;328.nkf.ams.nl&#12301;&#12392;&#34920;&#35352;&#12373;&#12428;&#12390;&#12356;&#12290;<\/div>\n<\/div>\n<div class=\"row g-4 mb-5\">\n<div class=\"col-12 col-md-4\">\n<div class=\"text-center\"><img decoding=\"async\" src=\"data:image\/gif;base64,R0lGODlhAQABAIAAAAAAAP\/\/\/ywAAAAAAQABAAACAUwAOw==\" alt=\"line\" data-src=\"\/wp-content\/uploads\/line.png\" class=\"lazy\"><\/div>\n<\/div>\n<div class=\"col-12 col-md-8\">-&#36335;&#32218;&#12398;&#36000;&#33655;&#12524;&#12505;&#12523;&#12434;&#33394;&#12391;&#34920;&#29694;&#12375;&#12390;&#12356;&#12414;&#12377;&#12290;&#12373;&#12425;&#12395;&#12289;&#12381;&#12398;&#22238;&#32218;&#12398;&#12524;&#12452;&#12486;&#12531;&#12471;&#12540;&#12418;&#12510;&#12483;&#12503;&#12395;&#21547;&#12414;&#12428;&#12390;&#12356;&#12414;&#12377;&#12290;&#19979;&#12398;&#30011;&#20687;&#12391;&#12399;&#12289;&raquo;tc1.stk.se&raquo; &#12363;&#12425; &laquo;327.nkf.ams.nl&raquo; &#12408;&#12398;&#25509;&#32154;&#12364;&#12289;&#12524;&#12452;&#12486;&#12531;&#12471;&#12540;10ms&#12391;&#32043;&#33394;&#12395;&#12495;&#12452;&#12521;&#12452;&#12488;&#12373;&#12428;&#12390;&#12362;&#12426;&#12289;&#33391;&#12356;&#12524;&#12505;&#12523;&#65288;&#12300;&#36000;&#33655;&#12301;&#27396;&#12434;&#21442;&#29031;&#65289;&#12391;&#12354;&#12427;&#12371;&#12392;&#12364;&#12424;&#12367;&#12431;&#12363;&#12426;&#12414;&#12377;&#12290;<\/div>\n<\/div>\n<p class=\"text-md-end text-center\"><button class=\"btn text-uppercase js-bp-tab-sec3 page--next\"><\/button><\/p>\n<\/div>\n<div class=\"tab-pane fade\" id=\"bp-content-sec4\" role=\"tabpanel\" aria-labelledby=\"bp-tab-sec4\" tabindex=\"0\">\n<h2>&#12454;&#12455;&#12470;&#12540;&#12510;&#12483;&#12503;&#12398;&#35501;&#12415;&#26041;&#12539;&#35299;&#35500;<\/h2>\n<p>&#12381;&#12371;&#12391;&#12289;&#22522;&#26412;&#30340;&#12395;&#12399;&#12454;&#12455;&#12470;&#12540;&#12510;&#12483;&#12503;&#12434;&#38283;&#12367;&#12392;&#12289;&#24120;&#12395;&#20197;&#19979;&#12398;&#12424;&#12358;&#12394;&#12452;&#12521;&#12473;&#12488;&#12398;&#12493;&#12483;&#12488;&#12527;&#12540;&#12463;&#25509;&#32154;&#12364;&#34920;&#31034;&#12373;&#12428;&#12414;&#12377;&#12290;<\/p>\n<div class=\"row g-4 my-5\">\n<div class=\"col-12 col-md-7 order-md-2\">\n<div class=\"text-center\"><img decoding=\"async\" src=\"data:image\/gif;base64,R0lGODlhAQABAIAAAAAAAP\/\/\/ywAAAAAAQABAAACAUwAOw==\" alt=\"network-illustration\" data-src=\"\/wp-content\/uploads\/network-illustration.jpg\" class=\"lazy\"><\/div>\n<\/div>\n<div class=\"col-12 col-md-5 order-md-1\">&#19978;&#35352;&#12398;&#35500;&#26126;&#12424;&#12426;&#12289;&#12300;1ws.lax.us&#12301;&#12363;&#12425;&#12300;eq.da3.us&#12301;&#12414;&#12391;&#12398;&#32043;&#33394;&#12398;&#12523;&#12540;&#12488;&#65288;&#36933;&#24310;16ms&#65289;&#12399;&#12289;&#23436;&#29863;&#12394;&#29366;&#24907;&#12391;&#12354;&#12427;&#12371;&#12392;&#12364;&#23481;&#26131;&#12395;&#29702;&#35299;&#12391;&#12365;&#12414;&#12377;&#12290;&#12414;&#12383;&#12289;&#12300;1ws.lax.us&#12301;&#12363;&#12425;&#12300;eq.la1.us&#12301;&#12408;&#12398;&#12522;&#12531;&#12463;&#12399;&#32209;&#33394;&#12434;&#12375;&#12390;&#12356;&#12414;&#12377;&#12364;&#12289;&#12371;&#12428;&#12418;&#20840;&#23481;&#37327;&#12364;&#20351;&#29992;&#12373;&#12428;&#12390;&#12356;&#12394;&#12356;&#12383;&#12417;&#33391;&#22909;&#12391;&#12377;&#12290;&#12414;&#12383;&#12289;&#12300;1ws.lax.us&#12301;&#12363;&#12425;&#12300;LUMEN&#12301;&#12414;&#12391;&#12398;&#32076;&#36335;&#12399;&#12289;&#38738;&#12289;&#12471;&#12450;&#12531;&#12289;&#32043;&#12398;3&#33394;&#12395;&#20998;&#12363;&#12428;&#12390;&#12362;&#12426;&#12289;&#12393;&#12385;&#12425;&#12418;&#21313;&#20998;&#12395;&#12300;&#31354;&#12301;&#12391;&#12354;&#12427;&#12371;&#12392;&#12434;&#35388;&#26126;&#12375;&#12289;&#12518;&#12540;&#12470;&#12540;&#12364;&#22909;&#12415;&#12395;&#24540;&#12376;&#12390;&#33258;&#30001;&#12395;&#20351;&#12356;&#20998;&#12369;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12427;&#12290;<\/div>\n<\/div>\n<p class=\"text-md-end text-center\"><button class=\"btn text-uppercase js-bp-tab-sec4 page--next page--prev\"><\/button><\/p>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"row\">\n<div class=\"col-12 col-md-6\">\n<div class=\"box1 p-3 p-lg-5 h-100\">\n            &#12414;&#12383;&#12289;&#21508;&#38656;&#35201;&#32076;&#36335;&#12398;&#22823;&#38520;&#27178;&#26029;&#36933;&#24310;&#12395;&#12388;&#12356;&#12390;&#12399;&#12289;Best Path&#12484;&#12540;&#12523;&#12391;&#12362;&#27671;&#36605;&#12395;&#12372;&#30906;&#35469;&#12367;&#12384;&#12373;&#12356;&#12290;\n<div class=\"mt-4 text-center\"><a href=\"https:\/\/www.iptp.us\/ja\/iptp-tools\/best-path\/\" class=\"btn btn-secondary fs-4 text-white py-2 px-5 rounded-pill\" target=\"_blank\" rel=\"noopener\">BEST PATH<\/a><\/div>\n<\/div>\n<\/div>\n<div class=\"col-12 col-md-6\">\n<div class=\"box1 p-3 p-lg-5 h-100\">\n            &#26356;&#12395;&#12289;&#12503;&#12521;&#12452;&#12505;&#12540;&#12488;WAN&#12398;&#12372;&#35201;&#26395;&#12395;&#24540;&#12360;&#12427;&#23436;&#29863;&#12394;&#12452;&#12540;&#12469;&#12493;&#12483;&#12488;&#12477;&#12522;&#12517;&#12540;&#12471;&#12519;&#12531;&#12434;&#12362;&#25506;&#12375;&#12398;&#26041;&#12399;&#12289;&#24403;&#31038;&#12398;EoMPLS Pseudowire&#12469;&#12540;&#12499;&#12473;&#12398;&#35443;&#32048;&#12395;&#12388;&#12356;&#12390;\n<div class=\"mt-4 text-center\"><a href=\"https:\/\/www.iptp.us\/ja\/network\/connectivity-services\/eompls-pseudowire-service\/\" class=\"btn btn-secondary fs-4 text-white py-2 px-5 rounded-pill\" target=\"_blank\" rel=\"noopener\">EoMPLS<\/a><\/div>\n<\/div>\n<\/div>\n<\/div>\n<p>   <script>jQuery(function(c){c(document).ready(function(){c(\".js-bp-tab-sec1\").on(\"click\",function(){c(\".js-bp-tab-sec2-target\").trigger(\"click\")}),c(\".js-bp-tab-sec2\").on(\"click\",function(){c(\".js-bp-tab-sec3-target\").trigger(\"click\")}),c(\".js-bp-tab-sec3\").on(\"click\",function(){c(\".js-bp-tab-sec4-target\").trigger(\"click\")}),c(\".js-bp-tab-sec4\").on(\"click\",function(){c(\".js-bp-tab-sec3-target\").trigger(\"click\")})})})<\/script><\/p>\n<h3 class=\"text-noraml text-primary fs-4 mt-5\">&#12362;&#21839;&#12356;&#21512;&#12431;&#12379;<\/h3>\n<p>&#12371;&#12398;&#12469;&#12452;&#12488;&#12395;&#38306;&#12375;&#12390;&#22577;&#21578;&#12375;&#12383;&#12356;&#21839;&#38988;&#12364;&#30330;&#29983;&#12375;&#12383;&#38555;&#12395;&#12399;&#12289;<a><span class=\"sp-user\">cs<\/span><span class=\"sp-domain\">iptp.net<\/span><\/a>&#12289; &#12454;&#12455;&#12502;&#12506;&#12540;&#12472;&#21491;&#19979;&#12398;&#12300;<a href=\"javascript:popupchat()\">&#12521;&#12452;&#12502;&#12450;&#12471;&#12473;&#12479;&#12531;&#12488;<\/a>&#12301;&#12508;&#12479;&#12531;&#12363;&#12425;&#12372;&#36899;&#32097;&#12367;&#12384;&#12373;&#12356;&#12290;<\/p>\n<\/section>\n","protected":false},"excerpt":{"rendered":"<p>     \u65b0\u3057\u3044\u30a6\u30a3\u30f3\u30c9\u30a6\u3067\u958b\u304d\u307e\u3059<i class=\"glyphico...\n<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":276,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":[],"acf":[],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/www.iptp.us\/ja\/wp-json\/wp\/v2\/pages\/284"}],"collection":[{"href":"https:\/\/www.iptp.us\/ja\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.iptp.us\/ja\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.iptp.us\/ja\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.iptp.us\/ja\/wp-json\/wp\/v2\/comments?post=284"}],"version-history":[{"count":195,"href":"https:\/\/www.iptp.us\/ja\/wp-json\/wp\/v2\/pages\/284\/revisions"}],"predecessor-version":[{"id":38895,"href":"https:\/\/www.iptp.us\/ja\/wp-json\/wp\/v2\/pages\/284\/revisions\/38895"}],"up":[{"embeddable":true,"href":"https:\/\/www.iptp.us\/ja\/wp-json\/wp\/v2\/pages\/276"}],"wp:attachment":[{"href":"https:\/\/www.iptp.us\/ja\/wp-json\/wp\/v2\/media?parent=284"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}