{"id":1969,"date":"2022-11-16T20:59:00","date_gmt":"2022-11-17T04:59:00","guid":{"rendered":"http:\/\/localhost\/jmcristobal\/?p=1950"},"modified":"2023-02-23T07:56:19","modified_gmt":"2023-02-23T15:56:19","slug":"configure-serial-interface-with-encapsulation-ppp-and-pap","status":"publish","type":"post","link":"http:\/\/ec2-52-7-70-250.compute-1.amazonaws.com\/es\/2022\/11\/16\/configure-serial-interface-with-encapsulation-ppp-and-pap\/","title":{"rendered":"Configurar interfaz serial con encapsulaci\u00f3n PPP y autenticaci\u00f3n PAP"},"content":{"rendered":"<p>PPP es un protocolo est\u00e1ndar utilizado para enviar datos a trav\u00e9s de enlaces seriales s\u00edncronos. PPP tambi\u00e9n proporciona un Link Control Protocol (LCP) para negociar las propiedades del enlace. El LCP utiliza solicitudes y respuestas de eco para supervisar la disponibilidad continua del enlace.<\/p>\n\n\n\n<p>PPP admite los protocolos de autenticaci\u00f3n CHAP, MS-CHAP y PAP, que requieren que un dispositivo remoto demuestre su identidad antes de permitir que el tr\u00e1fico de datos fluya a trav\u00e9s de una conexi\u00f3n.<\/p>\n\n\n\n<p><strong>Password Authentication Protocol (PAP)<\/strong> - La autenticaci\u00f3n PAP requiere que el dispositivo remoto env\u00ede un nombre y una contrase\u00f1a, que se comprueban con una entrada coincidente en la base de datos de nombres de usuario local o en la base de datos del servidor de seguridad remoto.<\/p>\n\n\n\n<p>PAP es un proceso b\u00e1sico de dos v\u00edas y el intercambio de nombre de usuario y contrase\u00f1a es en texto claro.<\/p>\n\n\n\n<p>Configure la encapsulaci\u00f3n PPP con autenticaci\u00f3n PAP:<\/p>\n\n\n\n<h5><strong>Paso 1.- Configurar el nombre de usuario para el router remoto<\/strong><\/h5>\n\n\n\n<p class=\"has-small-font-size\"><kbd>Router(config)# username <em>&lt;username&gt;<\/em> password <em>&lt;password&gt;<\/em><\/kbd><\/p>\n\n\n\n<p>Este es el nombre de usuario y la contrase\u00f1a utilizados por el router local para autenticar al peer PPP.<\/p>\n\n\n\n<h5><strong>Paso 2.- Especifica la interfaz serie y entra en el modo de configuraci\u00f3n de interfaz.<\/strong><\/h5>\n\n\n\n<p class=\"has-small-font-size\"><kbd>Router(config)# interface serial wic\/slot\/port<\/kbd><\/p>\n\n\n\n<h5><strong>Paso 3.- Configura la encapsulaci\u00f3n serie s\u00edncrona.<\/strong><\/h5>\n\n\n\n<p class=\"has-small-font-size\"><kbd>Router(config-if)# encapsulation { hdlc | frame-relay | ppp }<\/kbd><\/p>\n\n\n\n<h5><strong>Paso 4.- Configura la autenticaci\u00f3n PAP<\/strong><\/h5>\n\n\n\n<p class=\"has-small-font-size\"><kbd>Router(config-if)# ppp authentication <\/kbd>pap<\/p>\n\n\n\n<h5><strong>Paso 4.- Configure el nombre de usuario y la contrase\u00f1a que enviar\u00e1 al router remoto<\/strong><\/h5>\n\n\n\n<p class=\"has-small-font-size\"><kbd>R1(config-if)# ppp pap sent-username <em>&lt;username&gt;<\/em> password <em>&lt;password&gt;<\/em><\/kbd><\/p>\n\n\n\n<h5><strong>Comandos debug<\/strong><\/h5>\n\n\n\n<p class=\"has-small-font-size\"><kbd>show interface serial wic\/slot\/port <\/kbd><br><kbd>show controllers serial wic\/slot\/port <\/kbd><\/p>\n\n\n\n<h5><strong>Ejemplo:<\/strong><\/h5>\n\n\n\n<div class=\"wp-block-image size-full is-style-rounded\"><figure class=\"aligncenter size-full\"><img loading=\"lazy\" width=\"546\" height=\"170\" src=\"https:\/\/jmcristobal.com\/wp-content\/uploads\/2023\/02\/Serial-Topology.png\" alt=\"\" class=\"wp-image-1975\" srcset=\"https:\/\/ec2-52-7-70-250.compute-1.amazonaws.com\/wp-content\/uploads\/2023\/02\/Serial-Topology.png 546w, https:\/\/ec2-52-7-70-250.compute-1.amazonaws.com\/wp-content\/uploads\/2023\/02\/Serial-Topology-300x93.png 300w, https:\/\/ec2-52-7-70-250.compute-1.amazonaws.com\/wp-content\/uploads\/2023\/02\/Serial-Topology-18x6.png 18w\" sizes=\"(max-width: 546px) 100vw, 546px\" \/><\/figure><\/div>\n\n\n\n<p class=\"has-text-align-center\"><\/p>\n\n\n\n<p><strong>Config R1<\/strong>:<\/p>\n\n\n\n<p class=\"has-small-font-size\"><kbd>R1(config)#username R2 password Hi-Im-R2<br>R1(config)#interface serial 0\/2\/0<br>R1(config-if)#clock rate 64000<br>R1(config-if)#ip address 10.1.1.1 255.255.255.252<br>R1(config-if)#encapsulation ppp<br>R1(config-if)#ppp authentication pap<br>R1(config-if)#ppp pap sent-username R1 password Hi-Im-R1<br>R1(config-if)#no shut<br>R1(config-if)#exit<\/kbd><\/p>\n\n\n\n<p class=\"has-small-font-size\"><\/p>\n\n\n\n<p><strong>Config R<\/strong>2:<\/p>\n\n\n\n<p class=\"has-small-font-size\"><kbd>R2(config)#username R1 password Hi-Im-R1<br>R2(config)#interface serial 0\/1\/1<br>R2(config-if)#ip address 10.1.1.2 255.255.255.252<br>R2(config-if)#encapsulation ppp<br>R2(config-if)#ppp authentication pap<br>R2(config-if)#ppp pap sent-username R2 password Hi-Im-R2<br>R2(config-if)#no shut<br><br>%LINK-5-CHANGED: Interface Serial0\/1\/1, changed state to up<br>%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0\/1\/1, changed state to up<br><br>R2(config-if)#exit<\/kbd><\/p>\n\n\n\n<p><strong>Validaci\u00f3n:<\/strong><\/p>\n\n\n\n<p class=\"has-small-font-size\"><kbd>R1#show interfaces serial 0\/2\/0<br><strong>Serial0\/2\/0 is up, line protocol is up (connected)<\/strong><br>Hardware is HD64570<br>Internet address is 10.1.1.1\/30<br>MTU 1500 bytes, BW 1544 Kbit, DLY 20000 usec,<br>reliability 255\/255, txload 1\/255, rxload 1\/255<br><strong>Encapsulation PPP<\/strong>, loopback not set, keepalive set (10 sec)<br>LCP Open<br>Open: IPCP, CDPCP<\/kbd><\/p>\n\n\n\n<p class=\"has-small-font-size\"><kbd>R1#show controllers serial 0\/2\/0<br>Interface Serial0\/2\/0<br>Hardware is PowerQUICC MPC860<br><strong>DCE V.35, clock rate 64000<\/strong><br>idb at 0x81081AC4, driver data structure at 0x81084AC0<br>SCC Registers:<br>General [GSMR]=0x2:0x00000000, Protocol-specific [PSMR]=0x8<br>Events [SCCE]=0x0000, Mask [SCCM]=0x0000, Status [SCCS]=0x00<\/kbd><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>Referencia:<\/p>\n\n\n\n<p><a rel=\"noreferrer noopener\" href=\"https:\/\/www.cisco.com\/c\/en\/us\/td\/docs\/ios-xml\/ios\/interface\/configuration\/15-mt\/ir-15-mt-book\/ir-cfg-ser-if.html\" target=\"_blank\">https:\/\/www.cisco.com\/c\/en\/us\/td\/docs\/ios-xml\/ios\/interface\/configuration\/15-mt\/ir-15-mt-book\/ir-cfg-ser-if.html<\/a><\/p>","protected":false},"excerpt":{"rendered":"<p>PPP is a standard protocol used to send data over synchronous serial links. PPP also provides a Link Control Protocol (LCP) for <\/p>","protected":false},"author":2,"featured_media":1922,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[595],"tags":[602,335,604,605,601],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.13 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Configure serial interface with encapsulation PPP and PAP authentication - JMCristobal<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jmcristobal.com\/2022\/11\/16\/configure-serial-interface-with-encapsulation-ppp-and-pap\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Configure serial interface with encapsulation PPP and PAP authentication - JMCristobal\" \/>\n<meta property=\"og:description\" content=\"PPP is a standard protocol used to send data over synchronous serial links. PPP also provides a Link Control Protocol (LCP) for\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jmcristobal.com\/2022\/11\/16\/configure-serial-interface-with-encapsulation-ppp-and-pap\/\" \/>\n<meta property=\"og:site_name\" content=\"JMCristobal\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/web.facebook.com\/JMCristobalHomepage\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-17T04:59:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-02-23T15:56:19+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/jmcristobal.com\/wp-content\/uploads\/2022\/06\/ccna-logo.png\" \/>\n\t<meta property=\"og:image:width\" content=\"253\" \/>\n\t<meta property=\"og:image:height\" content=\"187\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"JMCristobal\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@jmcristobalhome\" \/>\n<meta name=\"twitter:site\" content=\"@jmcristobalhome\" \/>\n<meta name=\"twitter:label1\" content=\"Escrito por\" \/>\n\t<meta name=\"twitter:data1\" content=\"JMCristobal\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jmcristobal.com\/2022\/11\/16\/configure-serial-interface-with-encapsulation-ppp-and-pap\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jmcristobal.com\/2022\/11\/16\/configure-serial-interface-with-encapsulation-ppp-and-pap\/\"},\"author\":{\"name\":\"JMCristobal\",\"@id\":\"https:\/\/jmcristobal.com\/es\/#\/schema\/person\/e7cca8371cd491cf444cc824f30ae118\"},\"headline\":\"Configure serial interface with encapsulation PPP and PAP authentication\",\"datePublished\":\"2022-11-17T04:59:00+00:00\",\"dateModified\":\"2023-02-23T15:56:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jmcristobal.com\/2022\/11\/16\/configure-serial-interface-with-encapsulation-ppp-and-pap\/\"},\"wordCount\":448,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/jmcristobal.com\/es\/#organization\"},\"keywords\":[\"encapsulation\",\"interface\",\"PAP\",\"PPP\",\"serial\"],\"articleSection\":[\"CCNA\"],\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/jmcristobal.com\/2022\/11\/16\/configure-serial-interface-with-encapsulation-ppp-and-pap\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jmcristobal.com\/2022\/11\/16\/configure-serial-interface-with-encapsulation-ppp-and-pap\/\",\"url\":\"https:\/\/jmcristobal.com\/2022\/11\/16\/configure-serial-interface-with-encapsulation-ppp-and-pap\/\",\"name\":\"Configure serial interface with encapsulation PPP and PAP authentication - JMCristobal\",\"isPartOf\":{\"@id\":\"https:\/\/jmcristobal.com\/es\/#website\"},\"datePublished\":\"2022-11-17T04:59:00+00:00\",\"dateModified\":\"2023-02-23T15:56:19+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jmcristobal.com\/2022\/11\/16\/configure-serial-interface-with-encapsulation-ppp-and-pap\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jmcristobal.com\/2022\/11\/16\/configure-serial-interface-with-encapsulation-ppp-and-pap\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jmcristobal.com\/2022\/11\/16\/configure-serial-interface-with-encapsulation-ppp-and-pap\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jmcristobal.com\/es\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Configure serial interface with encapsulation PPP and PAP authentication\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jmcristobal.com\/es\/#website\",\"url\":\"https:\/\/jmcristobal.com\/es\/\",\"name\":\"JMCristobal\",\"description\":\"Networking and more\",\"publisher\":{\"@id\":\"https:\/\/jmcristobal.com\/es\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jmcristobal.com\/es\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jmcristobal.com\/es\/#organization\",\"name\":\"JMCristobal\",\"url\":\"https:\/\/jmcristobal.com\/es\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/jmcristobal.com\/es\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jmcristobal.com\/wp-content\/uploads\/2021\/09\/Logo-JMCristobal.png\",\"contentUrl\":\"https:\/\/jmcristobal.com\/wp-content\/uploads\/2021\/09\/Logo-JMCristobal.png\",\"width\":518,\"height\":436,\"caption\":\"JMCristobal\"},\"image\":{\"@id\":\"https:\/\/jmcristobal.com\/es\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.youtube.com\/JMCristobalHomepage\",\"https:\/\/web.facebook.com\/JMCristobalHomepage\",\"https:\/\/twitter.com\/jmcristobalhome\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/jmcristobal.com\/es\/#\/schema\/person\/e7cca8371cd491cf444cc824f30ae118\",\"name\":\"JMCristobal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/jmcristobal.com\/es\/#\/schema\/person\/image\/\",\"url\":\"http:\/\/2.gravatar.com\/avatar\/b549739a2a57394801aef27a76efdb3d?s=96&d=mm&r=g\",\"contentUrl\":\"http:\/\/2.gravatar.com\/avatar\/b549739a2a57394801aef27a76efdb3d?s=96&d=mm&r=g\",\"caption\":\"JMCristobal\"},\"url\":\"http:\/\/ec2-52-7-70-250.compute-1.amazonaws.com\/es\/author\/jmcristobal\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Configure serial interface with encapsulation PPP and PAP authentication - JMCristobal","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/jmcristobal.com\/2022\/11\/16\/configure-serial-interface-with-encapsulation-ppp-and-pap\/","og_locale":"es_ES","og_type":"article","og_title":"Configure serial interface with encapsulation PPP and PAP authentication - JMCristobal","og_description":"PPP is a standard protocol used to send data over synchronous serial links. PPP also provides a Link Control Protocol (LCP) for","og_url":"https:\/\/jmcristobal.com\/2022\/11\/16\/configure-serial-interface-with-encapsulation-ppp-and-pap\/","og_site_name":"JMCristobal","article_publisher":"https:\/\/web.facebook.com\/JMCristobalHomepage","article_published_time":"2022-11-17T04:59:00+00:00","article_modified_time":"2023-02-23T15:56:19+00:00","og_image":[{"width":253,"height":187,"url":"https:\/\/jmcristobal.com\/wp-content\/uploads\/2022\/06\/ccna-logo.png","type":"image\/png"}],"author":"JMCristobal","twitter_card":"summary_large_image","twitter_creator":"@jmcristobalhome","twitter_site":"@jmcristobalhome","twitter_misc":{"Escrito por":"JMCristobal","Tiempo de lectura":"2 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jmcristobal.com\/2022\/11\/16\/configure-serial-interface-with-encapsulation-ppp-and-pap\/#article","isPartOf":{"@id":"https:\/\/jmcristobal.com\/2022\/11\/16\/configure-serial-interface-with-encapsulation-ppp-and-pap\/"},"author":{"name":"JMCristobal","@id":"https:\/\/jmcristobal.com\/es\/#\/schema\/person\/e7cca8371cd491cf444cc824f30ae118"},"headline":"Configure serial interface with encapsulation PPP and PAP authentication","datePublished":"2022-11-17T04:59:00+00:00","dateModified":"2023-02-23T15:56:19+00:00","mainEntityOfPage":{"@id":"https:\/\/jmcristobal.com\/2022\/11\/16\/configure-serial-interface-with-encapsulation-ppp-and-pap\/"},"wordCount":448,"commentCount":0,"publisher":{"@id":"https:\/\/jmcristobal.com\/es\/#organization"},"keywords":["encapsulation","interface","PAP","PPP","serial"],"articleSection":["CCNA"],"inLanguage":"es","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/jmcristobal.com\/2022\/11\/16\/configure-serial-interface-with-encapsulation-ppp-and-pap\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/jmcristobal.com\/2022\/11\/16\/configure-serial-interface-with-encapsulation-ppp-and-pap\/","url":"https:\/\/jmcristobal.com\/2022\/11\/16\/configure-serial-interface-with-encapsulation-ppp-and-pap\/","name":"Configure serial interface with encapsulation PPP and PAP authentication - JMCristobal","isPartOf":{"@id":"https:\/\/jmcristobal.com\/es\/#website"},"datePublished":"2022-11-17T04:59:00+00:00","dateModified":"2023-02-23T15:56:19+00:00","breadcrumb":{"@id":"https:\/\/jmcristobal.com\/2022\/11\/16\/configure-serial-interface-with-encapsulation-ppp-and-pap\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jmcristobal.com\/2022\/11\/16\/configure-serial-interface-with-encapsulation-ppp-and-pap\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jmcristobal.com\/2022\/11\/16\/configure-serial-interface-with-encapsulation-ppp-and-pap\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jmcristobal.com\/es\/"},{"@type":"ListItem","position":2,"name":"Configure serial interface with encapsulation PPP and PAP authentication"}]},{"@type":"WebSite","@id":"https:\/\/jmcristobal.com\/es\/#website","url":"https:\/\/jmcristobal.com\/es\/","name":"JMCristobal","description":"Networking and more","publisher":{"@id":"https:\/\/jmcristobal.com\/es\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jmcristobal.com\/es\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/jmcristobal.com\/es\/#organization","name":"JMCristobal","url":"https:\/\/jmcristobal.com\/es\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/jmcristobal.com\/es\/#\/schema\/logo\/image\/","url":"https:\/\/jmcristobal.com\/wp-content\/uploads\/2021\/09\/Logo-JMCristobal.png","contentUrl":"https:\/\/jmcristobal.com\/wp-content\/uploads\/2021\/09\/Logo-JMCristobal.png","width":518,"height":436,"caption":"JMCristobal"},"image":{"@id":"https:\/\/jmcristobal.com\/es\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.youtube.com\/JMCristobalHomepage","https:\/\/web.facebook.com\/JMCristobalHomepage","https:\/\/twitter.com\/jmcristobalhome"]},{"@type":"Person","@id":"https:\/\/jmcristobal.com\/es\/#\/schema\/person\/e7cca8371cd491cf444cc824f30ae118","name":"JMCristobal","image":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/jmcristobal.com\/es\/#\/schema\/person\/image\/","url":"http:\/\/2.gravatar.com\/avatar\/b549739a2a57394801aef27a76efdb3d?s=96&d=mm&r=g","contentUrl":"http:\/\/2.gravatar.com\/avatar\/b549739a2a57394801aef27a76efdb3d?s=96&d=mm&r=g","caption":"JMCristobal"},"url":"http:\/\/ec2-52-7-70-250.compute-1.amazonaws.com\/es\/author\/jmcristobal\/"}]}},"jetpack_featured_media_url":"https:\/\/ec2-52-7-70-250.compute-1.amazonaws.com\/wp-content\/uploads\/2022\/06\/ccna-logo.png","_links":{"self":[{"href":"http:\/\/ec2-52-7-70-250.compute-1.amazonaws.com\/es\/wp-json\/wp\/v2\/posts\/1969"}],"collection":[{"href":"http:\/\/ec2-52-7-70-250.compute-1.amazonaws.com\/es\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/ec2-52-7-70-250.compute-1.amazonaws.com\/es\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/ec2-52-7-70-250.compute-1.amazonaws.com\/es\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"http:\/\/ec2-52-7-70-250.compute-1.amazonaws.com\/es\/wp-json\/wp\/v2\/comments?post=1969"}],"version-history":[{"count":3,"href":"http:\/\/ec2-52-7-70-250.compute-1.amazonaws.com\/es\/wp-json\/wp\/v2\/posts\/1969\/revisions"}],"predecessor-version":[{"id":1979,"href":"http:\/\/ec2-52-7-70-250.compute-1.amazonaws.com\/es\/wp-json\/wp\/v2\/posts\/1969\/revisions\/1979"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/ec2-52-7-70-250.compute-1.amazonaws.com\/es\/wp-json\/wp\/v2\/media\/1922"}],"wp:attachment":[{"href":"http:\/\/ec2-52-7-70-250.compute-1.amazonaws.com\/es\/wp-json\/wp\/v2\/media?parent=1969"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/ec2-52-7-70-250.compute-1.amazonaws.com\/es\/wp-json\/wp\/v2\/categories?post=1969"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/ec2-52-7-70-250.compute-1.amazonaws.com\/es\/wp-json\/wp\/v2\/tags?post=1969"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}