{"id":4334,"date":"2026-03-07T11:37:16","date_gmt":"2026-03-07T16:37:16","guid":{"rendered":"https:\/\/hb.net.co\/es\/?page_id=4334"},"modified":"2026-03-07T12:22:30","modified_gmt":"2026-03-07T17:22:30","slug":"cual-es-mi-direccion-ip-en-colombia","status":"publish","type":"page","link":"https:\/\/hb.net.co\/es\/cual-es-mi-direccion-ip-en-colombia\/","title":{"rendered":"cual es mi direccion ip en colombia"},"content":{"rendered":"\n    \n    <section class=\"u-align-center u-clearfix u-color-var u-container-align-center u-section-2\" id=\"sec-a3d1\">\n      <div class=\"u-clearfix u-sheet u-valign-middle-lg u-valign-middle-md u-valign-middle-sm u-sheet-1\"><\/div>\n    <\/section>\n    <section class=\"u-clearfix u-container-align-center u-grey-5 u-section-3\" id=\"sec-d628\">\n      <div class=\"u-clearfix u-sheet u-valign-middle-lg u-valign-middle-sm u-valign-middle-xs u-valign-top-xl u-sheet-1\">\n        <div class=\"u-clearfix u-custom-html u-expanded-width u-custom-html-1\">\n          <link href=\"https:\/\/fonts.googleapis.com\/css2?family=Lato:wght@300;400;700&amp;display=swap\" rel=\"stylesheet\">\n          <link rel=\"stylesheet\" href=\"https:\/\/unpkg.com\/leaflet@1.9.4\/dist\/leaflet.css\">\n          <style> .ip-wrapper{\nfont-family:'Lato',sans-serif;\nmax-width:1100px;\nmargin:auto;\ndisplay:flex;\nflex-wrap:wrap;\ngap:30px;\n}\n.ip-box{\nbackground:#fff;\nborder-radius:12px;\npadding:30px;\nbox-shadow:0 10px 25px rgba(0,0,0,0.08);\nflex:1 1 480px;\nborder-left:6px solid #1e66d0;\n}\n.ip-title{\nfont-size:26px;\nfont-weight:700;\nmargin-bottom:20px;\n}\n.ip-info{\nfont-size:18px;\nmargin:10px 0;\n}\n.ip-input{\ndisplay:flex;\nmargin-top:20px;\n}\n.ip-input input{\nflex:1;\npadding:12px;\nborder:1px solid #ddd;\nborder-radius:6px 0 0 6px;\nfont-size:16px;\n}\n.ip-input button{\nbackground:#1e66d0;\ncolor:white;\nborder:none;\npadding:12px 20px;\nborder-radius:0 6px 6px 0;\ncursor:pointer;\n}\n.ip-input button:hover{\nbackground:#1554ad;\n}\n.ip-services ul{\nlist-style:none;\npadding:0;\n}\n.ip-services li{\npadding:12px 0;\nborder-bottom:1px solid #eee;\n}\n.ip-cta{\ndisplay:block;\ntext-align:center;\nbackground:#1e66d0;\ncolor:white;\npadding:14px;\nborder-radius:8px;\nmargin-top:20px;\ntext-decoration:none;\nfont-weight:700;\n}\n#map{\nheight:300px;\nmargin-top:20px;\nborder-radius:10px;\n}\n@media(max-width:768px){\n.ip-wrapper{\nflex-direction:column;\n}\n.ip-input{\nflex-direction:column;\ngap:10px;\n}\n.ip-input input,\n.ip-input button{\nwidth:100%;\nborder-radius:6px;\n}\n} <\/style>\n          <div class=\"ip-wrapper\">\n            <div class=\"ip-box\">\n              <div class=\"ip-title\">&#x1f4cd; \u00bfCu\u00e1l es mi IP?<\/div>\n              <div class=\"ip-info\">IP: <b id=\"ip\">Cargando...<\/b>\n              <\/div>\n              <div class=\"ip-info\">Pa\u00eds: <b id=\"country\">Cargando...<\/b>\n              <\/div>\n              <div class=\"ip-info\">Ciudad: <b id=\"city\">Cargando...<\/b>\n              <\/div>\n              <div class=\"ip-info\">Proveedor: <b id=\"isp\">Cargando...<\/b>\n              <\/div>\n              <div class=\"ip-info\">ASN: <b id=\"asn\">Cargando...<\/b>\n              <\/div>\n              <div class=\"ip-info\">Hostname: <b id=\"hostname\">Cargando...<\/b>\n              <\/div>\n              <div class=\"ip-info\">VPN \/ Proxy: <b id=\"vpn\">Cargando...<\/b>\n              <\/div>\n              <div class=\"ip-info\">Latitud: <b id=\"lat\">Cargando...<\/b>\n              <\/div>\n              <div class=\"ip-info\">Longitud: <b id=\"lon\">Cargando...<\/b>\n              <\/div>\n              <div class=\"ip-input\">\n                <input id=\"ipinput\" placeholder=\"Buscar otra IP\">\n                <button onclick=\"buscarIP()\">Buscar<\/button>\n              <\/div>\n              <div id=\"map\"><\/div>\n            <\/div>\n            <div class=\"ip-box ip-services\">\n              <h3>Infraestructura Premium<\/h3>\n              <ul>\n                <li>&#x1f5a5; Servidores Dedicados<\/li>\n                <li>&#x2601;  ServidoresVPS<\/li>\n                <li>&#x1f3e2; Servidor Dedicado de correo<\/li>\n                <li>&#x1f5a5; Hosting Empresarial<\/li>\n              <\/ul>\n              <a href=\"javascript:abrirFormulario();\" class=\"ip-cta\"> Hablar con un experto <\/a>\n            <\/div>\n          <\/div>\n          <script src=\"https:\/\/unpkg.com\/leaflet@1.9.4\/dist\/leaflet.js\"><\/script>\n          <script> let map;\nasync function cargarIP(){\nlet res = await fetch(\"https:\/\/ipapi.co\/json\/\");\nlet data = await res.json();\nmostrarDatos(data);\nverificarVPN(data.ip);\nmostrarMapa(data.latitude,data.longitude);\n}\nasync function buscarIP(){\nlet ip = document.getElementById(\"ipinput\").value;\nif(!ip) return;\nlet res = await fetch(\"https:\/\/ipapi.co\/\"+ip+\"\/json\/\");\nlet data = await res.json();\nmostrarDatos(data);\nverificarVPN(data.ip);\nmostrarMapa(data.latitude,data.longitude);\n}\nfunction mostrarDatos(data){\ndocument.getElementById(\"ip\").innerText = data.ip || \"No disponible\";\ndocument.getElementById(\"country\").innerText = data.country_name || \"No disponible\";\ndocument.getElementById(\"city\").innerText = data.city || \"No disponible\";\ndocument.getElementById(\"isp\").innerText = data.org || \"No disponible\";\ndocument.getElementById(\"asn\").innerText = data.asn || \"No disponible\";\ndocument.getElementById(\"hostname\").innerText = data.hostname || \"No disponible\";\ndocument.getElementById(\"lat\").innerText = data.latitude || \"No disponible\";\ndocument.getElementById(\"lon\").innerText = data.longitude || \"No disponible\";\n}\nasync function verificarVPN(ip){\nlet res = await fetch(\"https:\/\/ipwho.is\/\"+ip);\nlet data = await res.json();\nif(data.security && data.security.vpn){\ndocument.getElementById(\"vpn\").innerText=\"Detectado\";\n}else{\ndocument.getElementById(\"vpn\").innerText=\"No detectado\";\n}\n}\nfunction mostrarMapa(lat,lon){\nif(map){\nmap.remove();\n}\nmap = L.map('map').setView([lat, lon], 4);\nL.tileLayer('https:\/\/{s}.tile.openstreetmap.org\/{z}\/{x}\/{y}.png',{\nattribution:'\u00a9 OpenStreetMap'\n}).addTo(map);\nL.marker([lat, lon]).addTo(map);\n}\ncargarIP(); <\/script>\n        <\/div>\n      <\/div>\n    <\/section>\n    <section class=\"u-clearfix u-color-var u-section-4\" id=\"block-3\">\n      <div class=\"u-clearfix u-sheet u-sheet-1\">\n        <div class=\"u-blog u-container-style u-expanded-width u-layout-grid u-blog-1\" data-site-sorting-prop=\"created\" data-site-sorting-order=\"desc\" data-max-items=\"3\">\n          <div class=\"u-list-control\"><\/div>\n          <div class=\"u-repeater u-repeater-1\">\n            <div class=\"u-blog-post u-container-style u-radius u-repeater-item u-shape-round u-white u-repeater-item-1\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-1\"><a class=\"u-blog-control u-expanded-width u-image u-image-default u-image-1\" href=\"https:\/\/hb.net.co\/es\/el-regreso-del-html-repotencializado\/\">\n                <img decoding=\"async\" alt=\"- el hosting de colombia\" class=\"u-blog-control u-expanded-width u-image u-image-default u-image-1\" src=\"https:\/\/hb.net.co\/es\/wp-content\/uploads\/2026\/05\/htmlrepotencializado.png\" title=\"\"><\/a>\n                <h4 class=\"u-blog-control u-text u-text-1\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/hb.net.co\/es\/el-regreso-del-html-repotencializado\/\">El regreso del HTML \"Repotencializado\"<\/a>\n                <\/h4>\n                <div class=\"u-blog-control u-post-content u-text u-text-2\"><p>\nC\u00f3mo el \u201cHTML repotencializado\u201d est\u00e1 transformando el desarrollo web moderno\n\n\n\nDurante muchos a\u00f1os el desarrollo web tom\u00f3 un camino cada vez m\u00e1s &hellip;<\/p><\/div>\n                <a href=\"https:\/\/hb.net.co\/es\/el-regreso-del-html-repotencializado\/\" class=\"u-blog-control u-border-2 u-border-active-palette-1-dark-1 u-border-hover-palette-1-dark-1 u-border-no-left u-border-no-right u-border-no-top u-border-palette-1-base u-btn u-btn-rectangle u-button-style u-none u-btn-1\">aprender<\/a>\n              <\/div>\n            <\/div>\n            <div class=\"u-blog-post u-container-style u-radius u-repeater-item u-shape-round u-video-cover u-white u-repeater-item-2\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-2\"><a class=\"u-blog-control u-expanded-width u-image u-image-default u-image-2\" href=\"https:\/\/hb.net.co\/es\/que-es-y-para-que-sirve-cloudflare\/\">\n                <img decoding=\"async\" alt=\"- el hosting de colombia\" class=\"u-blog-control u-expanded-width u-image u-image-default u-image-2\" src=\"https:\/\/hb.net.co\/es\/wp-content\/uploads\/2019\/05\/cloudflare-que-es.png\" title=\"\"><\/a>\n                <h4 class=\"u-blog-control u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/hb.net.co\/es\/que-es-y-para-que-sirve-cloudflare\/\">\u00bfQu\u00e9 es y para que sirve cloudflare?<\/a>\n                <\/h4>\n                <div class=\"u-blog-control u-post-content u-text u-text-4\"><p>\nEn la actualidad, tener un sitio web r\u00e1pido, seguro y estable ya no es un lujo sino una necesidad. Cada d\u00eda millones de p\u00e1ginas web reciben ataques&hellip;<\/p>\n                <\/div>\n                <a href=\"https:\/\/hb.net.co\/es\/que-es-y-para-que-sirve-cloudflare\/\" class=\"u-blog-control u-border-2 u-border-active-palette-1-dark-1 u-border-hover-palette-1-dark-1 u-border-no-left u-border-no-right u-border-no-top u-border-palette-1-base u-btn u-btn-rectangle u-button-style u-none u-btn-2\">aprender<\/a>\n              <\/div>\n            <\/div>\n            <div class=\"u-blog-post u-container-style u-radius u-repeater-item u-shape-round u-video-cover u-white u-repeater-item-3\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-image u-image-default u-image-3\" href=\"https:\/\/hb.net.co\/es\/la-evolucion-web-que-muchos-aun-no-estan-viendo\/\">\n                <img decoding=\"async\" alt=\"- el hosting de colombia\" class=\"u-blog-control u-expanded-width u-image u-image-default u-image-3\" src=\"https:\/\/hb.net.co\/es\/wp-content\/uploads\/2026\/04\/wp-react.jpg\" title=\"\"><\/a>\n                <h4 class=\"u-blog-control u-text u-text-5\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/hb.net.co\/es\/la-evolucion-web-que-muchos-aun-no-estan-viendo\/\">La evoluci\u00f3n web que muchos a\u00fan no est\u00e1n viendo<\/a>\n                <\/h4>\n                <div class=\"u-blog-control u-post-content u-text u-text-6\"><p>\nDurante a\u00f1os plataformas como WordPress, Joomla y Drupal han dominado la creaci\u00f3n de sitios web administrados (gestores de contenido); han sido la &hellip;<\/p>\n                <\/div>\n                <a href=\"https:\/\/hb.net.co\/es\/la-evolucion-web-que-muchos-aun-no-estan-viendo\/\" class=\"u-blog-control u-border-2 u-border-active-palette-1-dark-1 u-border-hover-palette-1-dark-1 u-border-no-left u-border-no-right u-border-no-top u-border-palette-1-base u-btn u-btn-rectangle u-button-style u-none u-btn-3\">aprender<\/a>\n              <\/div>\n            <\/div>\n          <\/div>\n          <div class=\"u-list-control\"><\/div>\n        <\/div>\n      <\/div>\n    <\/section>\n    \n    \n    \n  \n","protected":false},"excerpt":{"rendered":"<p>&#x1f4cd; \u00bfCu\u00e1l es mi IP? IP: Cargando&#8230; Pa\u00eds: Cargando&#8230; Ciudad: Cargando&#8230; Proveedor: Cargando&#8230; ASN: Cargando&#8230; Hostname: Cargando&#8230; VPN \/ Proxy: Cargando&#8230; Latitud: Cargando&#8230; Longitud: Cargando&#8230; Buscar Infraestructura Premium &#x1f5a5; Servidores Dedicados &#x2601; ServidoresVPS &#x1f3e2; Servidor Dedicado de correo &#x1f5a5; Hosting Empresarial Hablar con un experto El regreso del HTML &#8220;Repotencializado&#8221; C\u00f3mo el \u201cHTML repotencializado\u201d est\u00e1 &hellip; <a href=\"https:\/\/hb.net.co\/es\/cual-es-mi-direccion-ip-en-colombia\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;cual es mi direccion ip en colombia&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":4345,"parent":0,"menu_order":3,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-4334","page","type-page","status-publish","has-post-thumbnail","hentry"],"_links":{"self":[{"href":"https:\/\/hb.net.co\/es\/wp-json\/wp\/v2\/pages\/4334","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hb.net.co\/es\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/hb.net.co\/es\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/hb.net.co\/es\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/hb.net.co\/es\/wp-json\/wp\/v2\/comments?post=4334"}],"version-history":[{"count":0,"href":"https:\/\/hb.net.co\/es\/wp-json\/wp\/v2\/pages\/4334\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/hb.net.co\/es\/wp-json\/wp\/v2\/media\/4345"}],"wp:attachment":[{"href":"https:\/\/hb.net.co\/es\/wp-json\/wp\/v2\/media?parent=4334"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}