{"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_HK\/iptp-tools\/weathermap\/","title":{"rendered":"\u5be6\u6642\u7db2\u7d61\u52d5\u614b\u5716"},"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\">&#23526;&#26178;&#32178;<br>&#32097;&#21205;&#24907;&#22294;<\/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\">&#23526;&#26178;&#32178;&#32097;&#21205;&#24907;&#22294;&#30340;&#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\">&#23526;&#26178;&#32178;&#32097;&#21205;&#24907;&#22294;&#24037;&#20855;&#30340;&#22909;&#34389;<\/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\">&#23526;&#26178;&#32178;&#32097;&#21205;&#24907;&#22294;&#24037;&#20855;&#20839;&#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;&#38321;&#35712;&#21644;&#29702;&#35299;&#23526;&#26178;&#32178;&#32097;&#21205;&#24907;&#22294;<\/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\">&#23526;&#26178;&#32178;&#32097;&#21205;&#24907;&#22294;&#30340;&#23450;&#32681;<\/h2>\n<p>&#20219;&#20309;&#22312;&#38651;&#20449;&#38936;&#22495;&#30340;&#26032;&#25163;&#65292;&#30070;&#31532;&#19968;&#27425;&#30475;&#21040;&#36889;&#20491;&#23526;&#26178;&#32178;&#32097;&#21205;&#24907;&#22294;(Weathermap)&#26178;&#65292;&#21487;&#33021;&#26371;&#26377;&#19968;&#20123;&#22256;&#24785;&#12290;&#22240;&#27492;&#65292;&#22312;&#19979;&#38754;&#30340;&#37096;&#20998;&#65292;IPTP&#32178;&#32097;&#23559;&#35299;&#37323;&#36889;&#20491;&#23526;&#26178;&#32178;&#32097;&#21205;&#24907;&#22294;&#30340;&#23450;&#32681;&#65292;&#23427;&#30340;&#22909;&#34389;&#65292;&#22312;&#22320;&#22294;&#19978;&#39023;&#31034;&#30340;&#32048;&#31680;&#65292;&#20197;&#21450;&#22914;&#20309;&#38321;&#35712;&#21644;&#29702;&#35299;&#36889;&#20491;&#24037;&#20855;&#30340;&#23436;&#32654;&#12290;<\/p>\n<p>&#23526;&#26178;&#32178;&#32097;&#21205;&#24907;&#22294;&#26159;&#19968;&#20491;&#32178;&#32097;&#22320;&#22294;&#65292;&#21487;&#20197;&#30452;&#35264;&#22320;&#39023;&#31034;&#19968;&#20491;&#32068;&#32340;&#30340;&#32178;&#32097;&#24615;&#33021;&#21644;&#23526;&#26178;&#27969;&#37327;&#65292;&#22312;&#36889;&#31278;&#24773;&#20917;&#19979;&#65292;&#20197;IPTP Networks&#20316;&#20363;&#12290;<\/p>\n<p>&#23526;&#26178;&#32178;&#32097;&#21205;&#24907;&#22294;&#24037;&#20855;&#19981;&#20677;&#32102;&#20114;&#32879;&#32178;&#20379;&#25033;&#21830;&#24118;&#20358;&#24456;&#22810;&#22909;&#34389;&#65292;&#32780;&#19988;&#36996;&#34987;&#20114;&#32879;&#32178;&#20132;&#26131;&#25152;&#12289;&#38651;&#20449;&#20844;&#21496;&#12289;&#22283;&#23478;&#25945;&#32946;&#20114;&#32879;&#32178;&#32178;&#32097;&#65288;&#20363;&#22914;&#65292;&#27472;&#27954;&#30340;Eduroam&#65289;&#12289;&#37329;&#34701;&#26381;&#21209;&#12289;&#25919;&#24220;&#27231;&#27083;&#65292;&#20197;&#21450;&#22823;&#23416;&#21644;&#23416;&#26657;&#24291;&#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\">&#23526;&#26178;&#32178;&#32097;&#21205;&#24907;&#22294;&#24037;&#20855;&#30340;&#22909;&#34389;<\/h2>\n<p>&#20316;&#29234;&#19968;&#20491;&#32178;&#32097;&#24615;&#33021;&#30340;&#21487;&#35222;&#21270;&#24037;&#20855;&#65292;IPTP Networks&#30340;&#23526;&#26178;&#32178;&#32097;&#21205;&#24907;&#22294;&#27599;5&#20998;&#37912;&#19981;&#26039;&#26356;&#26032;&#19968;&#27425;&#65292;&#20197;&#30906;&#20445;&#29992;&#25142;&#21487;&#20197;&#38568;&#26178;&#29554;&#24471;&#38364;&#20110;&#25105;&#20497;&#30340;&#31995;&#32113;&#29376;&#24907;&#21644;&#36335;&#30001;&#27969;&#37327;&#30340;&#23526;&#26178;&#26368;&#26032;&#20449;&#24687;&#12290;<\/p>\n<p>&#27492;&#22806;&#65292;&#30070;&#21839;&#38988;&#30332;&#29983;&#26178;&#65292;&#36890;&#36942;&#27298;&#26597;&#23526;&#26178;&#32178;&#32097;&#21205;&#24907;&#22294;&#65292;&#20320;&#33021;&#22815;&#36805;&#36895;&#30332;&#29694;&#21738;&#20491;&#36899;&#25509;&#34987;&#24456;&#22810;&#20154;&#20351;&#29992;&#65292;&#23566;&#33268;&#30070;&#26178;&#30340; &ldquo;&#20132;&#36890;&#22581;&#22622; &ldquo;&#24773;&#20917;&#12290;&#30001;&#20110;&#23427;&#65292;&#20320;&#21487;&#20197;&#20999;&#25563;&#21040;&#21478;&#19968;&#26781; &ldquo;&#19981;&#37027;&#40637;&#25793;&#25824; &ldquo;&#30340;&#36335;&#32171;&#65292;&#21450;&#26178;&#35299;&#20915;&#36889;&#20491;&#21839;&#38988;&#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>&#23526;&#26178;&#32178;&#32097;&#21205;&#24907;&#22294;&#24037;&#20855;&#20839;&#37096;<\/h2>\n<p>&#29234;&#20102;&#26356;&#22909;&#22320;&#29087;&#24713;&#36889;&#20491;&#24037;&#20855;&#65292;&#35731;&#25105;&#20497;&#26356;&#28145;&#20837;&#22320;&#25366;&#25496;&#23427;&#20839;&#37096;&#30340;&#20803;&#32032;&#12290;&#32317;&#30340;&#20358;&#35498;&#65292;IPTP Networks&#30340;&#23526;&#26178;&#32178;&#32097;&#21205;&#24907;&#22294;&#30340;&#22806;&#35264;&#26159;&#36889;&#27171;&#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>&#35443;&#32048;&#20358;&#35498;&#65292;&#36890;&#36942;&#23526;&#26178;&#32178;&#32097;&#21205;&#24907;&#22294;&#39023;&#31034;&#30340;&#20449;&#24687;&#21253;&#25324;&#65306;<\/strong><\/p>\n<p>                        &ndash; &#24478;0%&#21040;100%&#30340; &ldquo;&#36000;&#36617; &ldquo;&#27396;&#65288;&#22914;&#19979;&#22294;&#25152;&#31034;&#65289;&#21487;&#20197;&#24171;&#21161;&#29992;&#25142;&#30637;&#35299;&#19968;&#20491;&#36899;&#25509;&#30340;&#23481;&#37327;&#65288;&#30334;&#20998;&#27604;&#65289;&#27491;&#22312;&#34987;&#20351;&#29992;&#12290;&#29234;&#20102;&#20445;&#35657;&#24037;&#20316;&#30340;&#38918;&#21033;&#21644;&#26041;&#20415;&#65292;&#20320;&#25033;&#35442;&#21482;&#36984;&#25799;&#32043;&#33394;&#25110;&#34253;&#33394;&#30340;&#20219;&#20309;&#36335;&#32171;&#65292;&#36889;&#24847;&#21619;&#33879; &ldquo;&#36000;&#36617; &ldquo;&#27700;&#24179;&#21482;&#24478;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;&#25976;&#25818;&#20013;&#24515;&#25110;&#20219;&#20309;&#39006;&#20284;&#30340;&#40670;&#30340;&#21517;&#31281;&#65292;&#36899;&#25509;&#24478;&#37027;&#35023;&#38283;&#22987;&#25110;&#22312;&#37027;&#35023;&#32080;&#26463;&#12290;&#19979;&#22294;&#25551;&#36848;&#20102;&#33655;&#34349;&#38463;&#22982;&#26031;&#29305;&#20025;&#30340;Nikhef&#65288;328&#65289;&#25976;&#25818;&#20013;&#24515;&#65292;&#23427;&#34987;&#34920;&#31034;&#29234; &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;&#26781;&#32171;&#36335;&#30340;&#36000;&#36617;&#27700;&#24179;&#30001;&#20854;&#38996;&#33394;&#34920;&#31034;&#12290;&#21478;&#22806;&#65292;&#35442;&#32171;&#36335;&#30340;&#24310;&#36978;&#20063;&#21253;&#25324;&#22312;&#22320;&#22294;&#20013;&#12290;&#24478;&#19979;&#38754;&#30340;&#22294;&#29255;&#20013;&#65292;&#25105;&#20497;&#21487;&#20197;&#24456;&#23481;&#26131;&#22320;&#30475;&#21040;&#24478; &ldquo;tc1.stk.se &ldquo;&#21040; &ldquo;327.nkf.ams.nl &ldquo;&#30340;&#36899;&#25509;&#65292;&#24310;&#36978;&#29234;10ms&#65292;&#29992;&#32043;&#33394;&#31361;&#20986;&#39023;&#31034;&#65292;&#36889;&#26159;&#19968;&#20491;&#33391;&#22909;&#30340;&#27700;&#24179;&#65288;&#21443;&#32771; &ldquo;&#36000;&#36617; &ldquo;&#27396;&#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;&#38321;&#35712;&#21644;&#29702;&#35299;&#23526;&#26178;&#32178;&#32097;&#21205;&#24907;&#22294;<\/h2>\n<p>&#25152;&#20197;&#65292;&#22522;&#26412;&#19978;&#65292;&#22312;&#25171;&#38283;&#23526;&#26178;&#32178;&#32097;&#21205;&#24907;&#22294;&#26178;&#65292;&#20320;&#32317;&#26159;&#26371;&#30475;&#21040;&#22914;&#19979;&#22294;&#25152;&#31034;&#30340;&#32178;&#32097;&#36899;&#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;&#25818;&#19978;&#36848;&#35299;&#37323;&#65292;&#25105;&#20497;&#21487;&#20197;&#24456;&#23481;&#26131;&#22320;&#29702;&#35299;&#65292;&#24478; &ldquo;1ws.lax.us &ldquo;&#21040; &ldquo;eq.da3.us &ldquo;&#30340;&#24310;&#36978;&#29234;16&#27627;&#31186;&#30340;&#32043;&#33394;&#36335;&#30001;&#26159;&#34389;&#20110;&#23436;&#32654;&#29376;&#24907;&#12290;&#24478; &ldquo;1ws.lax.us &ldquo;&#21040; &ldquo;eq.la1.us &ldquo;&#30340;&#37832;&#25509;&#26159;&#32160;&#33394;&#30340;&#65292;&#36889;&#20063;&#26159;&#22909;&#30340;&#65292;&#22240;&#29234;&#23427;&#30340;&#25152;&#26377;&#23481;&#37327;&#37117;&#27794;&#26377;&#34987;&#20351;&#29992;&#12290;&#32780;&#24478; &ldquo;1ws.lax.us &ldquo;&#21040;LUMEN&#30340;&#36335;&#24465;&#26377;&#20841;&#20491;&#26041;&#21521;&#30340;&#38996;&#33394;&#26159;&#34253;&#33394;&#12289;&#38738;&#33394;&#25110;&#32043;&#33394;&#65292;&#35657;&#26126;&#36889;&#20841;&#20491;&#26041;&#21521;&#37117;&#36275;&#22815; &ldquo;&#31354;&rdquo;&#65292;&#25152;&#20197;&#29992;&#25142;&#21487;&#20197;&#26681;&#25818;&#33258;&#24049;&#30340;&#21916;&#22909;&#33258;&#30001;&#36984;&#25799;&#20351;&#29992;&#21738;&#20491;&#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;&#30637;&#35299;&#26356;&#22810;&#38364;&#20110;&#27599;&#20491;&#19981;&#21516;&#30340;&#33499;&#21051;&#36335;&#32171;&#30340;&#36328;&#27954;&#24310;&#36978;&#65292;&#35531;&#38568;&#26178;&#35370;&#21839;&#25105;&#20497;&#30340;&#26368;&#20339;&#36335;&#24465;&#24037;&#20855;&#12290;\n<div class=\"mt-4 text-center\"><a href=\"https:\/\/www.iptp.us\/zh_HK\/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_HK\/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\">&#32879;&#32363;&#25105;&#20497;<\/h3>\n<p>&#22914;&#26524;&#24744;&#36935;&#21040;&#26412;&#32178;&#31449;&#30340;&#21839;&#38988;&#38656;&#35201;&#22577;&#21578;&#65292;&#35531;&#36890;&#36942; <a><span class=\"sp-user\">cs<\/span><span class=\"sp-domain\">iptp.net<\/span><\/a> &#33287;&#25105;&#20497;&#32879;&#32363;&#65292;&#25110;&#20351;&#29992;&#32178;&#38913;&#21491;&#19979;&#26041;&#30340;&#34253;&#33394; &ldquo;<a href=\"javascript:popupchat()\" class=\"text-secondary\">&#23526;&#26178;&#21161;&#25163;<\/a> &ldquo;&#25353;&#37397;&#12290;<\/p>\n<\/section>\n","protected":false},"excerpt":{"rendered":"<p>     \u53e6\u958b\u65b0\u7a97\u53e3\u700f\u89bd<i class=\"glyphicon glyphicon-...\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_HK\/wp-json\/wp\/v2\/pages\/284"}],"collection":[{"href":"https:\/\/www.iptp.us\/zh_HK\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.iptp.us\/zh_HK\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.iptp.us\/zh_HK\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.iptp.us\/zh_HK\/wp-json\/wp\/v2\/comments?post=284"}],"version-history":[{"count":195,"href":"https:\/\/www.iptp.us\/zh_HK\/wp-json\/wp\/v2\/pages\/284\/revisions"}],"predecessor-version":[{"id":38895,"href":"https:\/\/www.iptp.us\/zh_HK\/wp-json\/wp\/v2\/pages\/284\/revisions\/38895"}],"up":[{"embeddable":true,"href":"https:\/\/www.iptp.us\/zh_HK\/wp-json\/wp\/v2\/pages\/276"}],"wp:attachment":[{"href":"https:\/\/www.iptp.us\/zh_HK\/wp-json\/wp\/v2\/media?parent=284"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}