{"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\/zh_CN\/iptp-tools\/weathermap\/","title":{"rendered":"\u5b9e\u65f6\u7f51\u7edc\u52a8\u6001\u56fe"},"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\">&#23454;&#26102;&#32593;<br>&#32476;&#21160;&#24577;&#22270;<\/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\">&#23454;&#26102;&#32593;&#32476;&#21160;&#24577;&#22270;&#30340;&#23450;&#20041;<\/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\">&#23454;&#26102;&#32593;&#32476;&#21160;&#24577;&#22270;&#24037;&#20855;&#30340;&#22909;&#22788;<\/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\">&#23454;&#26102;&#32593;&#32476;&#21160;&#24577;&#22270;&#24037;&#20855;&#20869;&#37096;<\/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\">&#22914;&#20309;&#38405;&#35835;&#21644;&#29702;&#35299;&#23454;&#26102;&#32593;&#32476;&#21160;&#24577;&#22270;<\/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\">&#23454;&#26102;&#32593;&#32476;&#21160;&#24577;&#22270;&#30340;&#23450;&#20041;<\/h2>\n<p>&#20219;&#20309;&#22312;&#30005;&#20449;&#39046;&#22495;&#30340;&#26032;&#25163;&#65292;&#24403;&#31532;&#19968;&#27425;&#30475;&#21040;&#36825;&#20010;&#23454;&#26102;&#32593;&#32476;&#21160;&#24577;&#22270;(Weathermap)&#26102;&#65292;&#21487;&#33021;&#20250;&#26377;&#19968;&#20123;&#22256;&#24785;&#12290;&#22240;&#27492;&#65292;&#22312;&#19979;&#38754;&#30340;&#37096;&#20998;&#65292;IPTP&#32593;&#32476;&#23558;&#35299;&#37322;&#36825;&#20010;&#23454;&#26102;&#32593;&#32476;&#21160;&#24577;&#22270;&#30340;&#23450;&#20041;&#65292;&#23427;&#30340;&#22909;&#22788;&#65292;&#22312;&#22320;&#22270;&#19978;&#26174;&#31034;&#30340;&#32454;&#33410;&#65292;&#20197;&#21450;&#22914;&#20309;&#38405;&#35835;&#21644;&#29702;&#35299;&#36825;&#20010;&#24037;&#20855;&#30340;&#23436;&#32654;&#12290;<\/p>\n<p>&#23454;&#26102;&#32593;&#32476;&#21160;&#24577;&#22270;&#26159;&#19968;&#20010;&#32593;&#32476;&#22320;&#22270;&#65292;&#21487;&#20197;&#30452;&#35266;&#22320;&#26174;&#31034;&#19968;&#20010;&#32452;&#32455;&#30340;&#32593;&#32476;&#24615;&#33021;&#21644;&#23454;&#26102;&#27969;&#37327;&#65292;&#22312;&#36825;&#31181;&#24773;&#20917;&#19979;&#65292;&#20197;IPTP Networks&#20316;&#20363;&#12290;<\/p>\n<p>&#23454;&#26102;&#32593;&#32476;&#21160;&#24577;&#22270;&#24037;&#20855;&#19981;&#20165;&#32473;&#20114;&#32852;&#32593;&#20379;&#24212;&#21830;&#24102;&#26469;&#24456;&#22810;&#22909;&#22788;&#65292;&#32780;&#19988;&#36824;&#34987;&#20114;&#32852;&#32593;&#20132;&#26131;&#25152;&#12289;&#30005;&#20449;&#20844;&#21496;&#12289;&#22269;&#23478;&#25945;&#32946;&#20114;&#32852;&#32593;&#32593;&#32476;&#65288;&#20363;&#22914;&#65292;&#27431;&#27954;&#30340;Eduroam&#65289;&#12289;&#37329;&#34701;&#26381;&#21153;&#12289;&#25919;&#24220;&#26426;&#26500;&#65292;&#20197;&#21450;&#22823;&#23398;&#21644;&#23398;&#26657;&#24191;&#27867;&#20351;&#29992;&#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\">&#23454;&#26102;&#32593;&#32476;&#21160;&#24577;&#22270;&#24037;&#20855;&#30340;&#22909;&#22788;<\/h2>\n<p>&#20316;&#20026;&#19968;&#20010;&#32593;&#32476;&#24615;&#33021;&#30340;&#21487;&#35270;&#21270;&#24037;&#20855;&#65292;IPTP Networks&#30340;&#23454;&#26102;&#32593;&#32476;&#21160;&#24577;&#22270;&#27599;5&#20998;&#38047;&#19981;&#26029;&#26356;&#26032;&#19968;&#27425;&#65292;&#20197;&#30830;&#20445;&#29992;&#25143;&#21487;&#20197;&#38543;&#26102;&#33719;&#24471;&#20851;&#20110;&#25105;&#20204;&#30340;&#31995;&#32479;&#29366;&#24577;&#21644;&#36335;&#30001;&#27969;&#37327;&#30340;&#23454;&#26102;&#26368;&#26032;&#20449;&#24687;&#12290;<\/p>\n<p>&#27492;&#22806;&#65292;&#24403;&#38382;&#39064;&#21457;&#29983;&#26102;&#65292;&#36890;&#36807;&#26816;&#26597;&#23454;&#26102;&#32593;&#32476;&#21160;&#24577;&#22270;&#65292;&#20320;&#33021;&#22815;&#36805;&#36895;&#21457;&#29616;&#21738;&#20010;&#36830;&#25509;&#34987;&#24456;&#22810;&#20154;&#20351;&#29992;&#65292;&#23548;&#33268;&#24403;&#26102;&#30340; &ldquo;&#20132;&#36890;&#22581;&#22622; &ldquo;&#24773;&#20917;&#12290;&#30001;&#20110;&#23427;&#65292;&#20320;&#21487;&#20197;&#20999;&#25442;&#21040;&#21478;&#19968;&#26465; &ldquo;&#19981;&#37027;&#20040;&#25317;&#25380; &ldquo;&#30340;&#36335;&#32447;&#65292;&#21450;&#26102;&#35299;&#20915;&#36825;&#20010;&#38382;&#39064;&#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>&#23454;&#26102;&#32593;&#32476;&#21160;&#24577;&#22270;&#24037;&#20855;&#20869;&#37096;<\/h2>\n<p>&#20026;&#20102;&#26356;&#22909;&#22320;&#29087;&#24713;&#36825;&#20010;&#24037;&#20855;&#65292;&#35753;&#25105;&#20204;&#26356;&#28145;&#20837;&#22320;&#25366;&#25496;&#23427;&#20869;&#37096;&#30340;&#20803;&#32032;&#12290;&#24635;&#30340;&#26469;&#35828;&#65292;IPTP Networks&#30340;&#23454;&#26102;&#32593;&#32476;&#21160;&#24577;&#22270;&#30340;&#22806;&#35266;&#26159;&#36825;&#26679;&#30340;&#65306;<\/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>&#35814;&#32454;&#26469;&#35828;&#65292;&#36890;&#36807;&#23454;&#26102;&#32593;&#32476;&#21160;&#24577;&#22270;&#26174;&#31034;&#30340;&#20449;&#24687;&#21253;&#25324;&#65306;<\/strong><\/p>\n<p>                        &ndash; &#20174;0%&#21040;100%&#30340; &ldquo;&#36127;&#36733; &ldquo;&#26639;&#65288;&#22914;&#19979;&#22270;&#25152;&#31034;&#65289;&#21487;&#20197;&#24110;&#21161;&#29992;&#25143;&#20102;&#35299;&#19968;&#20010;&#36830;&#25509;&#30340;&#23481;&#37327;&#65288;&#30334;&#20998;&#27604;&#65289;&#27491;&#22312;&#34987;&#20351;&#29992;&#12290;&#20026;&#20102;&#20445;&#35777;&#24037;&#20316;&#30340;&#39034;&#21033;&#21644;&#26041;&#20415;&#65292;&#20320;&#24212;&#35813;&#21482;&#36873;&#25321;&#32043;&#33394;&#25110;&#34013;&#33394;&#30340;&#20219;&#20309;&#36335;&#32447;&#65292;&#36825;&#24847;&#21619;&#30528; &ldquo;&#36127;&#36733; &ldquo;&#27700;&#24179;&#21482;&#20174;0%&#21040;50%&#65289;&#12290;\n                     <\/p><\/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; IXPs&#12289;&#25968;&#25454;&#20013;&#24515;&#25110;&#20219;&#20309;&#31867;&#20284;&#30340;&#28857;&#30340;&#21517;&#31216;&#65292;&#36830;&#25509;&#20174;&#37027;&#37324;&#24320;&#22987;&#25110;&#22312;&#37027;&#37324;&#32467;&#26463;&#12290;&#19979;&#22270;&#25551;&#36848;&#20102;&#33655;&#20848;&#38463;&#22982;&#26031;&#29305;&#20025;&#30340;Nikhef&#65288;328&#65289;&#25968;&#25454;&#20013;&#24515;&#65292;&#23427;&#34987;&#34920;&#31034;&#20026; &ldquo;328.nkf.ams.nl&rdquo;&#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\">&ndash; &#19968;&#26465;&#32447;&#36335;&#30340;&#36127;&#36733;&#27700;&#24179;&#30001;&#20854;&#39068;&#33394;&#34920;&#31034;&#12290;&#21478;&#22806;&#65292;&#35813;&#32447;&#36335;&#30340;&#24310;&#36831;&#20063;&#21253;&#25324;&#22312;&#22320;&#22270;&#20013;&#12290;&#20174;&#19979;&#38754;&#30340;&#22270;&#29255;&#20013;&#65292;&#25105;&#20204;&#21487;&#20197;&#24456;&#23481;&#26131;&#22320;&#30475;&#21040;&#20174; &ldquo;tc1.stk.se &ldquo;&#21040; &ldquo;327.nkf.ams.nl &ldquo;&#30340;&#36830;&#25509;&#65292;&#24310;&#36831;&#20026;10ms&#65292;&#29992;&#32043;&#33394;&#31361;&#20986;&#26174;&#31034;&#65292;&#36825;&#26159;&#19968;&#20010;&#33391;&#22909;&#30340;&#27700;&#24179;&#65288;&#21442;&#32771; &ldquo;&#36127;&#36733; &ldquo;&#26639;&#65289;&#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>&#22914;&#20309;&#38405;&#35835;&#21644;&#29702;&#35299;&#23454;&#26102;&#32593;&#32476;&#21160;&#24577;&#22270;<\/h2>\n<p>&#25152;&#20197;&#65292;&#22522;&#26412;&#19978;&#65292;&#22312;&#25171;&#24320;&#23454;&#26102;&#32593;&#32476;&#21160;&#24577;&#22270;&#26102;&#65292;&#20320;&#24635;&#26159;&#20250;&#30475;&#21040;&#22914;&#19979;&#22270;&#25152;&#31034;&#30340;&#32593;&#32476;&#36830;&#25509;&#65306;<\/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\">&#26681;&#25454;&#19978;&#36848;&#35299;&#37322;&#65292;&#25105;&#20204;&#21487;&#20197;&#24456;&#23481;&#26131;&#22320;&#29702;&#35299;&#65292;&#20174; &ldquo;1ws.lax.us &ldquo;&#21040; &ldquo;eq.da3.us &ldquo;&#30340;&#24310;&#36831;&#20026;16&#27627;&#31186;&#30340;&#32043;&#33394;&#36335;&#30001;&#26159;&#22788;&#20110;&#23436;&#32654;&#29366;&#24577;&#12290;&#20174; &ldquo;1ws.lax.us &ldquo;&#21040; &ldquo;eq.la1.us &ldquo;&#30340;&#38142;&#25509;&#26159;&#32511;&#33394;&#30340;&#65292;&#36825;&#20063;&#26159;&#22909;&#30340;&#65292;&#22240;&#20026;&#23427;&#30340;&#25152;&#26377;&#23481;&#37327;&#37117;&#27809;&#26377;&#34987;&#20351;&#29992;&#12290;&#32780;&#20174; &ldquo;1ws.lax.us &ldquo;&#21040;LUMEN&#30340;&#36335;&#24452;&#26377;&#20004;&#20010;&#26041;&#21521;&#30340;&#39068;&#33394;&#26159;&#34013;&#33394;&#12289;&#38738;&#33394;&#25110;&#32043;&#33394;&#65292;&#35777;&#26126;&#36825;&#20004;&#20010;&#26041;&#21521;&#37117;&#36275;&#22815; &ldquo;&#31354;&rdquo;&#65292;&#25152;&#20197;&#29992;&#25143;&#21487;&#20197;&#26681;&#25454;&#33258;&#24049;&#30340;&#21916;&#22909;&#33258;&#30001;&#36873;&#25321;&#20351;&#29992;&#21738;&#20010;&#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            &#27492;&#22806;&#65292;&#35201;&#20102;&#35299;&#26356;&#22810;&#20851;&#20110;&#27599;&#20010;&#19981;&#21516;&#30340;&#33499;&#21051;&#36335;&#32447;&#30340;&#36328;&#27954;&#24310;&#36831;&#65292;&#35831;&#38543;&#26102;&#35775;&#38382;&#25105;&#20204;&#30340;&#26368;&#20339;&#36335;&#24452;&#24037;&#20855;&#12290;\n<div class=\"mt-4 text-center\"><a href=\"https:\/\/www.iptp.us\/zh_CN\/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            &#27492;&#22806;&#65292;&#22914;&#26524;&#20320;&#27491;&#22312;&#20026;&#20320;&#30340;&#31169;&#20154;&#24191;&#22495;&#32593;&#38656;&#27714;&#23547;&#25214;&#19968;&#20010;&#23436;&#32654;&#30340;&#20197;&#22826;&#32593;&#35299;&#20915;&#26041;&#26696;&#65292;&#35831;&#38405;&#35835;&#26356;&#22810;&#20851;&#20110;&#25105;&#20204;&#30340;EoMPLS&#20266;&#32447;&#26381;&#21153;&#65306;\n<div class=\"mt-4 text-center\"><a href=\"https:\/\/www.iptp.us\/zh_CN\/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\">&#32852;&#31995;&#25105;&#20204;<\/h3>\n<p>&#22914;&#26524;&#24744;&#36935;&#21040;&#26412;&#32593;&#31449;&#30340;&#38382;&#39064;&#38656;&#35201;&#25253;&#21578;&#65292;&#35831;&#36890;&#36807; <a><span class=\"sp-user\">cs<\/span><span class=\"sp-domain\">iptp.net<\/span><\/a> &#19982;&#25105;&#20204;&#32852;&#31995;&#65292;&#25110;&#20351;&#29992;&#32593;&#39029;&#21491;&#19979;&#26041;&#30340;&#34013;&#33394; &ldquo;<a href=\"javascript:popupchat()\" class=\"text-secondary\">&#23454;&#26102;&#21161;&#25163;<\/a> &ldquo;&#25353;&#38062;&#12290;<\/p>\n<\/section>\n","protected":false},"excerpt":{"rendered":"<p>     \u5728\u65b0\u7a97\u53e3\u6253\u5f00<i class=\"glyphicon glyphicon-sh...\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\/zh_CN\/wp-json\/wp\/v2\/pages\/284"}],"collection":[{"href":"https:\/\/www.iptp.us\/zh_CN\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.iptp.us\/zh_CN\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.iptp.us\/zh_CN\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.iptp.us\/zh_CN\/wp-json\/wp\/v2\/comments?post=284"}],"version-history":[{"count":195,"href":"https:\/\/www.iptp.us\/zh_CN\/wp-json\/wp\/v2\/pages\/284\/revisions"}],"predecessor-version":[{"id":38895,"href":"https:\/\/www.iptp.us\/zh_CN\/wp-json\/wp\/v2\/pages\/284\/revisions\/38895"}],"up":[{"embeddable":true,"href":"https:\/\/www.iptp.us\/zh_CN\/wp-json\/wp\/v2\/pages\/276"}],"wp:attachment":[{"href":"https:\/\/www.iptp.us\/zh_CN\/wp-json\/wp\/v2\/media?parent=284"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}