{"id":90,"date":"2019-07-03T17:00:49","date_gmt":"2019-07-03T14:00:49","guid":{"rendered":"https:\/\/web-mng.iptp.com\/?page_id=90"},"modified":"2026-08-13T10:10:40","modified_gmt":"2026-08-13T07:10:40","slug":"network","status":"publish","type":"page","link":"https:\/\/www.iptp.org\/zh_CN\/network\/","title":{"rendered":"\u7f51\u7edc\u670d\u52a1"},"content":{"rendered":"<p>IPTP Networks&#25552;&#20379;&#31181;&#31867;&#24191;&#27867;&#30340;&#25968;&#25454;&#31649;&#29702;&#21644;&#20998;&#21457;&#26381;&#21153;&#12290;&#21253;&#25324;&#20256;&#32479;&#30340;<a href=\"https:\/\/www.iptp.org\/zh_CN\/internet-access\/\">&#20114;&#32852;&#32593;&#26381;&#21153;<\/a>&#65292;&#21508;&#31181;<a href=\"https:\/\/www.iptp.org\/zh_CN\/hosting\/\">&#25176;&#31649;&#35299;&#20915;&#26041;&#26696;<\/a><br>\n\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\"><img class=\"disabled-lazy\" src=\"https:\/\/www.iptp.org\/wp-content\/themes\/iptp-theme\/images\/searchplus.svg\" alt=\"zoom\" style=\"width:18px;height:18px;background: none;\"><\/button><img class=\"img-zooms img-zoom-small disabled-lazy\" src=\"\/map\/\" alt=\"Global Network and Points of Presence Map\">\r\n\t\t\t\t<div class=\"zoom-large\" style=\"--background: url('\/map\/')\"><\/div>\r\n\t\t\t<\/div><div class=\"pos-full-width div-toggle-js \" align=\"center\">\r\n\t\t\t\t<button class=\"btn-modal-toggle-js btn-toggle-modal-css btn btn-primary\"><img class=\"disabled-lazy\" src=\"https:\/\/www.iptp.org\/wp-content\/themes\/iptp-theme\/images\/close_write.svg\" alt=\"close\" style=\"width:14px;height:14px;\"><\/button> <img class=\"img-zoom-large disabled-lazy\" src=\"\/map\/\" alt=\"Global Network and Points of Presence Map\">\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><hr><div class=\"inner\" style=\"padding-bottom: 30px;\">\n<div class=\"subtitle text-center\"><span>&#20301;&#32622;<\/span><\/div>\n<h2 class=\"text-center mb-0\">IPTP &#32593;&#32476;&#25509;&#20837;&#28857;<\/h2>\n<\/div><div class=\"pop-section\">\n\t\t\t\r\n        <div class=\"dc-block\" id=\"dcBlock_dc1_9463\">\r\n          <style> body.post .pop-section, body.page .pop-section{ max-width:inherit; border:0px;} #dcBlock_dc1_9463{ --dc-blue:#1447c9; --dc-blue-dark:#0e37a0; --dc-orange:#f2703f; --dc-orange-dark:#e35a29; --dc-tab-bg:#eef0f4; --dc-text-muted:#5b6472; --dc-border:#e3e6ec; --dc-row-alt:#f6f7fa; padding: 40px 0; color:#1c2230;} body.page.page-id-18393 #dcBlock_dc1_9463{ margin-right:auto; margin-left: auto; max-width: 1320px; padding: 40px 60px 60px;} #dcBlock_dc1_9463 .dc-title{ color: var(--dc-blue); font-weight: 800; font-size: 2rem; margin-bottom: .35rem;} #dcBlock_dc1_9463 .dc-subtitle{ color: #333a45; margin-bottom: 1.5rem;} #dcBlock_dc1_9463 .dc-tabs-wrap{ display:flex; align-items:center; justify-content:space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 18px;} #dcBlock_dc1_9463 .dc-tabs{ display:flex; background: var(--dc-tab-bg); border-radius: 8px; padding: 4px; flex: 1 1 auto; max-width: 640px;} #dcBlock_dc1_9463 .dc-tab-btn{ flex:1; border:0; background: transparent; padding: 10px 14px; font-size: .82rem; font-weight: 700; letter-spacing: .03em; color: #6b7280; border-radius: 6px; transition: all .15s ease; cursor:pointer;} #dcBlock_dc1_9463 .dc-tab-btn:hover{ color: var(--dc-blue);} #dcBlock_dc1_9463 .dc-tab-btn.active{ background: var(--dc-blue); color:#fff; box-shadow: 0 2px 6px rgba(20,71,201,.35);} #dcBlock_dc1_9463 .dc-toggle-wrap{ display:flex; align-items:center; gap: 12px; white-space: nowrap;} #dcBlock_dc1_9463 .dc-toggle-label{ font-size: .82rem; line-height:1.2; color:#333a45; text-align:right;} #dcBlock_dc1_9463 .dc-switch{ position: relative; width: 46px; height: 26px; display:inline-block; flex-shrink:0;} #dcBlock_dc1_9463 .dc-switch input{ opacity:0; width:0; height:0;} #dcBlock_dc1_9463 .dc-switch .slider{ position:absolute; cursor:pointer; inset:0; background:#c9ced6; border-radius: 999px; transition: .2s;} #dcBlock_dc1_9463 .dc-switch .slider:before{ content:\"\"; position:absolute; width:20px; height:20px; left:3px; top:3px; background:#fff; border-radius:50%; transition:.2s; box-shadow: 0 1px 3px rgba(0,0,0,.3);} #dcBlock_dc1_9463 .dc-switch input:checked + .slider{ background: var(--dc-blue);} #dcBlock_dc1_9463 .dc-switch input:checked + .slider:before{ transform: translateX(20px);} #dcBlock_dc1_9463 .dc-search-wrap{ position:relative; margin-bottom: 14px;} #dcBlock_dc1_9463 .dc-search-icon{ position:absolute; left:18px; top:50%; transform:translateY(-50%); color: var(--dc-blue); pointer-events:none;} #dcBlock_dc1_9463 .dc-search-input{ width:100%; padding: 12px 18px 12px 44px; border: 1.5px solid var(--dc-blue); border-radius: 10px; font-size: .95rem; outline:none;} #dcBlock_dc1_9463 .dc-search-input:focus{ box-shadow: 0 0 0 3px rgba(20,71,201,.15);} #dcBlock_dc1_9463 .dc-filters{ display:flex; align-items:center; flex-wrap:wrap; gap:8px; margin-bottom: 16px; min-height: 30px;} #dcBlock_dc1_9463 .dc-filters-label{ font-size:.82rem; color:#5b6472; margin-right:2px;} #dcBlock_dc1_9463 .dc-chip{ display:inline-flex; align-items:center; gap:8px; background: var(--dc-blue); color:#fff; font-size:.72rem; font-weight:700; letter-spacing:.03em; padding: 6px 8px 6px 14px; border-radius: 999px;} #dcBlock_dc1_9463 .dc-chip button{ border:0; background: rgba(255,255,255,.25); color:#fff; width:18px; height:18px; border-radius:50%; line-height:1; font-size:.65rem; display:flex; align-items:center; justify-content:center; padding:0;} #dcBlock_dc1_9463 .dc-chip button:hover{ background: rgba(255,255,255,.4);} #dcBlock_dc1_9463 .dc-table-card{ border: 1px solid var(--dc-border); border-radius: 10px; overflow:hidden;} #dcBlock_dc1_9463 .dc-table-card .table-responsive{ max-height: 470px; overflow:hidden; overflow-y:auto;} #dcBlock_dc1_9463 .dc-table-card .table-responsive.showmore{ max-height: inherit;} #dcBlock_dc1_9463 table.dc-table{ margin-bottom:0; max-height: 470px;} #dcBlock_dc1_9463 table.dc-table thead th{ background: var(--dc-blue); color:#fff; font-size:.72rem; font-weight:700; letter-spacing:.03em; border:0; padding: 14px 16px; position: sticky; top:0; white-space: nowrap;} #dcBlock_dc1_9463 table.dc-table tbody td{ vertical-align: middle; padding: 12px 16px; font-size:.85rem; border-top: 1px solid var(--dc-border); color:#333a45; white-space: nowrap; background: transparent;} #dcBlock_dc1_9463 table.dc-table tbody tr:nth-child(odd){ background: var(--dc-row-alt);} #dcBlock_dc1_9463 table.dc-table tbody tr:hover{ background: #eef2fd;} #dcBlock_dc1_9463 .dc-name-link, #dcBlock_dc1_9463 .dc-link{ color: #1c2230; font-weight:700; text-decoration: underline;} #dcBlock_dc1_9463 .dc-link{ font-weight:400;} #dcBlock_dc1_9463 a.dc-name-link:hover, #dcBlock_dc1_9463 a.dc-link:hover{ color: var(--dc-blue);} #dcBlock_dc1_9463 .dc-check{ color:#1c2230; font-weight:700;} #dcBlock_dc1_9463 .dc-empty{ text-align:center; padding: 40px 10px; color:#5b6472; font-size:.9rem;} #dcBlock_dc1_9463 .dc-see-more-wrap{ text-align:center; margin-top: 40px;} #dcBlock_dc1_9463 .btn-dc-orange{ background: var(--dc-orange); border: none; color:#fff; font-weight:700; letter-spacing:.05em; font-size:.82rem; padding: 12px 42px; border-radius: 8px; transition: background .15s ease;} #dcBlock_dc1_9463 .btn-dc-orange:hover{ background: var(--dc-orange-dark); color:#fff;} @media (max-width: 1199px){ #dcBlock_dc1_9463 .dc-table-card .table-responsive{ overflow-x: auto !important;}} @media (max-width: 767px){ #dcBlock_dc1_9463 .dc-tabs-wrap{ flex-direction: column; align-items: stretch;} #dcBlock_dc1_9463 .dc-toggle-wrap{ justify-content: flex-end;}} <\/style>\r\n                 \r\n          <!-- Tabs + Toggle -->\r\n          <div class=\"dc-tabs-wrap\">\r\n            <div class=\"dc-tabs\" role=\"tablist\">\r\n              <button type=\"button\" class=\"dc-tab-btn active\" data-region=\"all\">ALL REGIONS<\/button>\r\n              <button type=\"button\" class=\"dc-tab-btn\" data-region=\"americas\">AMERICAS<\/button>\r\n              <button type=\"button\" class=\"dc-tab-btn\" data-region=\"emea\">EMEA<\/button>\r\n              <button type=\"button\" class=\"dc-tab-btn\" data-region=\"apac\">ASIA-PACIFIC<\/button>\r\n            <\/div>\r\n\r\n            <div class=\"dc-toggle-wrap\">\r\n              <span class=\"dc-toggle-label\">Colocation \/ Hosting<br>available only<\/span>\r\n              <label class=\"dc-switch\">\r\n                <input type=\"checkbox\" class=\"dcColoToggle\">\r\n                <span class=\"slider\"><\/span>\r\n              <\/label>\r\n            <\/div>\r\n          <\/div>\r\n\r\n          <!-- Search -->\r\n          <div class=\"dc-search-wrap\">\r\n            <span class=\"dc-search-icon\"><img src=\"data:image\/gif;base64,R0lGODlhAQABAIAAAAAAAP\/\/\/ywAAAAAAQABAAACAUwAOw==\" alt=\"search\" style=\"width:15px;\" data-src=\"https:\/\/www.iptp.org\/wp-content\/themes\/iptp-theme\/images\/search_v2.svg\" class=\"lazy\"><\/span>\r\n            <input type=\"text\" class=\"dc-search-input dcSearchInput\" placeholder=\"Search by name, city or country\">\r\n          <\/div>\r\n\r\n          <!-- Filter chips -->\r\n          <div class=\"dc-filters dcFilters\"><\/div>\r\n\r\n          <!-- Table -->\r\n          <div class=\"dc-table-card\">\r\n            <div class=\"table-responsive\">\r\n              <table class=\"table dc-table\">\r\n                <thead>\r\n                  <tr>\r\n                    <th class=\"text-centers\" style=\"width:5%\">#<\/th>\r\n                    <th class=\"text-centers\" style=\"width:20%\">DATA CENTER <img src=\"data:image\/gif;base64,R0lGODlhAQABAIAAAAAAAP\/\/\/ywAAAAAAQABAAACAUwAOw==\" alt=\"link\" style=\"position:relative;top:-1px;width:10px;\" data-src=\"https:\/\/www.iptp.org\/wp-content\/themes\/iptp-theme\/images\/svg\/link-v3-white.svg\" class=\"lazy\"><\/th>\r\n                    <!-- <th>OPERATOR<\/th> -->\r\n                    <th class=\"text-centers\" style=\"width:20%\">CITY <img src=\"data:image\/gif;base64,R0lGODlhAQABAIAAAAAAAP\/\/\/ywAAAAAAQABAAACAUwAOw==\" alt=\"link\" style=\"position:relative;top:-1px;width:15px;\" data-src=\"https:\/\/www.iptp.org\/wp-content\/themes\/iptp-theme\/images\/svg\/link-v2-white.png\" class=\"lazy\"><\/th>\r\n                    <th class=\"text-centers\" style=\"width:20%\">COUNTRY <img src=\"data:image\/gif;base64,R0lGODlhAQABAIAAAAAAAP\/\/\/ywAAAAAAQABAAACAUwAOw==\" alt=\"link\" style=\"position:relative;top:-1px;width:15px;\" data-src=\"https:\/\/www.iptp.org\/wp-content\/themes\/iptp-theme\/images\/svg\/link-v2-white.png\" class=\"lazy\"><\/th>\r\n                    <th class=\"text-centers\" style=\"width:10%\">COLOCATION \/ HOSTING<\/th>\r\n                    <th class=\"text-centers\" style=\"width:10%\">CROSS-CONNECT<\/th>\r\n                    <th class=\"text-centers\" style=\"width:10%\">CONNECTIVITY<\/th>\r\n                  <\/tr>\r\n                <\/thead>\r\n                <tbody class=\"dcTableBody\">\r\n                  <!-- rows injected by JS -->\r\n                <\/tbody>\r\n              <\/table>\r\n            <\/div>\r\n          <\/div>\r\n\r\n          <div class=\"dc-see-more-wrap\">\r\n            <a href=\"#\" style=\"color: white;border-radius: 8px;background: #F05D26;border-color: #F05D26;\" class=\"dcSeeMoreBtn btn-primary-rounded-pill btn-primary-rounded-pill-main d-inline-block\">SEE MORE<\/a>\r\n            <!-- <button type=\"button\" class=\"btn btn-dc-orange dcSeeMoreBtn btn-primary-rounded-pill btn-primary-rounded-pill-main d-inline-block\">SEE MORE<\/button> -->\r\n          <\/div>\r\n\r\n        <\/div>\r\n\r\n\r\n       \r\n\r\n\r\n              \n<\/div><p>&#30456;&#20851;&#35814;&#24773;&#22914;&#19979;&#65306;<\/p><div class=\"my-5 row row-cols-1 row-cols-sm-2 row-cols-md-4 row-cols-lg-2 row-cols-xl-4\">\n<div class=\"menubl col\">\n<p class=\"fw-bold mb-3\"><a href=\"https:\/\/www.iptp.org\/zh_CN\/internet-access\/\">&#20114;&#32852;&#32593;&#26381;&#21153;<\/a><\/p>\n<ul class=\"list-unstyled\">\n<li><a href=\"https:\/\/www.iptp.org\/zh_CN\/internet-access\/ip-transit\/\">&#20114;&#32852;&#32593;&#31471;&#21475;<\/a><\/li>\n<li><a href=\"https:\/\/www.iptp.org\/zh_CN\/internet-access\/ix-transit\/\">&#20114;&#32852;&#32593;&#20132;&#25442;&#20013;&#24515;&#20132;&#36890;<\/a><\/li>\n<li><a href=\"https:\/\/www.iptp.org\/zh_CN\/internet-access\/remote-ix\/\">&#36828;&#31243;&#23545;&#31561; (&#36828;&#31243;IX)<\/a><\/li>\n<\/ul><\/div>\n<div class=\"menubl col\">\n<p class=\"fw-bold mb-3\"><a href=\"https:\/\/www.iptp.org\/zh_CN\/connectivity-services\/\">&#32593;&#32476;&#36830;&#25509;&#26381;&#21153;<\/a><\/p>\n<ul class=\"list-unstyled\">\n<li><a href=\"https:\/\/www.iptp.org\/zh_CN\/connectivity-services\/low-latency-routes\/\">&#20302;&#24310;&#26102;&#32593;&#32476;&#22320;&#22270;<\/a><\/li>\n<li><a href=\"https:\/\/www.iptp.org\/zh_CN\/connectivity-services\/jumbix\/\">&#20114;&#32852;&#32593;&#20132;&#25442;&#20013;&#24515;<\/a><\/li>\n<li><a href=\"https:\/\/www.iptp.org\/zh_CN\/internet-access\/remote-ix\/\">&#20813;&#36153;Remote IX&#35797;&#29992;<\/a><\/li>\n<li><a href=\"https:\/\/www.iptp.org\/zh_CN\/connectivity-services\/cloud-connect\/\">&#30452;&#36830;&#20113;&#20379;&#24212;&#21830;<\/a><\/li>\n<\/ul><\/div>\n<div class=\"menubl col\">\n<p class=\"fw-bold mb-3\"><a href=\"https:\/\/www.iptp.org\/zh_CN\/network\/datacenter-services\/\">&#25968;&#25454;&#20013;&#24515;&#26381;&#21153;<\/a><\/p>\n<ul class=\"list-unstyled\">\n<li><a href=\"https:\/\/www.iptp.org\/zh_CN\/network\/datacenter-services\/dedicated-hosting\/\">&#20027;&#26426;&#31199;&#29992;&#25176;&#31649;&#26381;&#21153;<\/a><\/li>\n<li><a href=\"https:\/\/www.iptp.org\/zh_CN\/network\/datacenter-services\/colocation\/\">&#23458;&#25143;&#20027;&#26426;&#25176;&#31649;&#26381;&#21153;<\/a><\/li>\n<li><a href=\"https:\/\/www.iptp.org\/zh_CN\/matrix4\/\">&#38463;&#22982;&#26031;&#29305;&#20025;&#25968;&#25454;&#20013;&#24515;Matrix 4<\/a><\/li>\n<li><a href=\"https:\/\/www.iptp.org\/zh_CN\/k1\/\">&#21033;&#39532;&#32034;&#23572;&#25968;&#25454;&#20013;&#24515;Kermia 1<\/a><\/li>\n<li><a href=\"https:\/\/www.iptp.org\/zh_CN\/hosting\/si\/\">&#22307;&#20234;&#35199;&#24503;&#32599;&#25968;&#25454;&#20013;&#24515;<\/a><\/li>\n<li><a href=\"https:\/\/www.iptp.org\/zh_CN\/network\/datacenter-services\/edge-computing\/\">&#36793;&#32536;&#36816;&#31639;<\/a><\/li>\n<li><a href=\"https:\/\/www.iptp.org\/zh_CN\/network\/datacenter-services\/remote-hands\/\">&#36828;&#31243;&#26381;&#21153;<\/a><\/li>\n<\/ul><\/div>\n<div class=\"menubl col\">\n<p class=\"fw-bold mb-3\"><a href=\"https:\/\/www.iptp.org\/zh_CN\/iptp-tools\/\">IPTP&#24037;&#20855;<\/a><\/p>\n<ul class=\"list-unstyled\">\n<li><a href=\"https:\/\/www.iptp.org\/zh_CN\/iptp-tools\/bandwidth-test\/\">&#24102;&#23485;&#27979;&#35797;<\/a><\/li>\n<li><a href=\"https:\/\/www.iptp.org\/zh_CN\/iptp-tools\/best-path\/\">&#26368;&#20339;&#36335;&#24452;<\/a><\/li>\n<li><a href=\"https:\/\/www.iptp.org\/zh_CN\/iptp-tools\/ip-calculator\/\">IP &#35745;&#31639;&#22120;<\/a><\/li>\n<li><a href=\"https:\/\/www.iptp.org\/zh_CN\/iptp-tools\/lg\/\">&#32593;&#32476;&#24615;&#33021;&#27979;&#35797;&#24037;&#20855;<\/a><\/li>\n<li><a href=\"https:\/\/www.iptp.org\/zh_CN\/iptp-tools\/weathermap\/\">&#23454;&#26102;&#32593;&#32476;&#21160;&#24577;&#22270;<\/a><\/li>\n<\/ul><\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>IPTP Networks\u63d0\u4f9b\u79cd\u7c7b\u5e7f\u6cdb\u7684\u6570\u636e\u7ba1\u7406\u548c\u5206\u53d1\u670d\u52a1\u3002\u5305\u62ec\u4f20\u7edf\u7684 \u4e92\u8054\u7f51\u63a5\u5165  \u670d\u52a1\uff0c\u5404\u79cd \u6258\u7ba1\u89e3\u51b3\u65b9\u6848 .<\/p>\n<p>\u76f8\u5173\u8be6\u60c5\u5982\u4e0b\uff1a<\/p>\n<p>\t  \u4e92\u8054\u7f51 <\/p>\n<ul class=\"sub-menu\"... \n\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":[],"acf":[],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/www.iptp.org\/zh_CN\/wp-json\/wp\/v2\/pages\/90"}],"collection":[{"href":"https:\/\/www.iptp.org\/zh_CN\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.iptp.org\/zh_CN\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.iptp.org\/zh_CN\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.iptp.org\/zh_CN\/wp-json\/wp\/v2\/comments?post=90"}],"version-history":[{"count":511,"href":"https:\/\/www.iptp.org\/zh_CN\/wp-json\/wp\/v2\/pages\/90\/revisions"}],"predecessor-version":[{"id":43549,"href":"https:\/\/www.iptp.org\/zh_CN\/wp-json\/wp\/v2\/pages\/90\/revisions\/43549"}],"wp:attachment":[{"href":"https:\/\/www.iptp.org\/zh_CN\/wp-json\/wp\/v2\/media?parent=90"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}