<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ChriSoft</title>
	<atom:link href="https://blog.chrisoft.io/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.chrisoft.io</link>
	<description>make it easy</description>
	<lastBuildDate>Sat, 31 Jan 2026 22:05:54 +0000</lastBuildDate>
	<language>es</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>USB/IP en Linux: cómo usar USB remotos por red con USB/IP Web UI (guía paso a paso)</title>
		<link>https://blog.chrisoft.io/blog/2026/01/31/usb-ip-en-linux-como-usar-usb-remotos-por-red-con-usb-ip-web-ui-guia-paso-a-paso/</link>
					<comments>https://blog.chrisoft.io/blog/2026/01/31/usb-ip-en-linux-como-usar-usb-remotos-por-red-con-usb-ip-web-ui-guia-paso-a-paso/#respond</comments>
		
		<dc:creator><![CDATA[Christopher]]></dc:creator>
		<pubDate>Sat, 31 Jan 2026 22:03:55 +0000</pubDate>
				<category><![CDATA[Homelab]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Redes]]></category>
		<category><![CDATA[administración de sistemas]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[homelab]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[nodejs]]></category>
		<category><![CDATA[raspberry pi]]></category>
		<category><![CDATA[redes]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[usb over ip]]></category>
		<category><![CDATA[usb remoto]]></category>
		<category><![CDATA[usbip]]></category>
		<category><![CDATA[usbip gui]]></category>
		<guid isPermaLink="false">https://blog.chrisoft.io/?p=494</guid>

					<description><![CDATA[<p>Controla dispositivos USB remotos desde Linux usando USB/IP con una interfaz web: añade el servidor, lista dispositivos y conéctalos/desconéctalos con un clic.</p>
<p>The post <a href="https://blog.chrisoft.io/blog/2026/01/31/usb-ip-en-linux-como-usar-usb-remotos-por-red-con-usb-ip-web-ui-guia-paso-a-paso/">USB/IP en Linux: cómo usar USB remotos por red con USB/IP Web UI (guía paso a paso)</a> first appeared on <a href="https://blog.chrisoft.io">ChriSoft</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Hoy traigo un programa que he realizado durante estos días. Lo que encontraba por la red no terminaba de gustarme así que decidí hacer uno a medida.</p>



<h2 class="wp-block-heading">1) Qué es esto y para qué sirve</h2>



<p><strong>USB/IP Web UI</strong> es una pequeña aplicación, realizada en NodeJS, que instalas en tu <strong>PC Linux (cliente)</strong> para poder:</p>



<ul class="wp-block-list">
<li>Añadir la <strong>IP del servidor USB/IP remoto</strong></li>



<li>Ver la lista de <strong>dispositivos USB exportados</strong> por ese servidor</li>



<li><strong>Conectar (attach)</strong> y <strong>Desconectar (detach)</strong> esos dispositivos con botones</li>



<li>Activar <strong>auto-conectar</strong> para que ciertos dispositivos se vuelvan a conectar automáticamente</li>
</ul>



<p>En pocas palabras:</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p>Te permite “enchufar” (virtualmente) un USB que está en otro equipo de tu red, y que en tu Linux aparezca como si lo tuvieras conectado físicamente.</p>
</blockquote>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">2) Cómo funciona</h2>



<p>Qué se necesita:</p>



<h3 class="wp-block-heading">A) Servidor USB/IP (remoto)</h3>



<p>Es el equipo que <strong>tiene el USB físico</strong> conectado y lo comparte por la red mediante USB/IP.<br>Ejemplos típicos:</p>



<ul class="wp-block-list">
<li>Un móvil Android con un servidor USB/IP</li>



<li>Un ordenador con <code>usbip</code> exportando el dispositivo</li>
</ul>



<h3 class="wp-block-heading">B) Cliente Linux (tu PC) con USB/IP Web UI</h3>



<p>La Web UI se ejecuta en tu ordenador y por detrás hace cosas como:</p>



<ul class="wp-block-list">
<li>Listar exportaciones remotas:</li>



<li><code>usbip list --remote &lt;IP&gt;</code></li>



<li>Conectar un dispositivo (attach):</li>



<li><code>usbip attach -r &lt;IP&gt; -b &lt;BUSID&gt;</code></li>



<li>Ver y gestionar conexiones activas:</li>



<li><code>usbip port</code></li>



<li><code>usbip detach -p &lt;PUERTO&gt;</code></li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">3) Qué necesitas (requisitos)</h2>



<h3 class="wp-block-heading">En tu Linux (cliente)</h3>



<ul class="wp-block-list">
<li><strong>Node.js</strong> (recomendado Node 18+ / 20+)</li>



<li><strong><code>usbip</code></strong> instalado</li>



<li>El módulo del kernel <strong><code>vhci-hcd</code></strong> cargado</li>



<li>Permisos de administrador (<strong>sudo</strong>) para conectar/desconectar (estoy preparando una <strong>versión rootless</strong>)</li>
</ul>



<h3 class="wp-block-heading">En el servidor remoto</h3>



<ul class="wp-block-list">
<li>Un servidor USB/IP funcionando</li>



<li>Que el dispositivo esté <strong>exportado</strong></li>



<li>Acceso de red desde tu ordenador a <code>&lt;IP&gt;:3240</code></li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">4) Instalación paso a paso</h2>



<h3 class="wp-block-heading">4.1) Instala NodeJS y usbip en Linux</h3>



<p>En Debian/Ubuntu suele ser:</p>



<pre class="wp-block-preformatted">sudo apt update<br>sudo apt install -y usbip curl<br>curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash<br>nvm install 24</pre>



<h3 class="wp-block-heading">4.2) Carga el módulo del kernel (una vez)</h3>



<pre class="wp-block-code"><code>sudo modprobe vhci-hcd</code></pre>



<p>Comprueba que está cargado:</p>



<pre class="wp-block-code"><code>lsmod | grep vhci</code></pre>



<h3 class="wp-block-heading">4.3) Descomprime la Web UI y prepara dependencias</h3>



<p>1) Descarga el ZIP del proyecto y descomprímelo.<br>2) Entra en la carpeta descomprimida:</p>



<pre class="wp-block-code"><code>cd usbip-webui-0.1.0</code></pre>



<p>3) Instala dependencias:</p>



<pre class="wp-block-code"><code>npm install</code></pre>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">5) Arrancar el servidor web (Web UI)</h2>



<p>Para que puedas acceder a la interfaz desde otro dispositivo de tu red, ejecuta:</p>



<pre class="wp-block-code"><code>sudo env HOST=0.0.0.0 PORT=8765 node server.js</code></pre>



<ul class="wp-block-list">
<li><code>HOST=0.0.0.0</code> &#8211; escucha en todas las interfaces (LAN)</li>



<li><code>PORT=8765</code> &#8211; puerto donde abrirás el navegador</li>
</ul>



<h3 class="wp-block-heading">Abrir la interfaz</h3>



<ul class="wp-block-list">
<li>En el mismo ordenador: <code>http://127.0.0.1:8765</code></li>



<li>Desde otro dispositivo: <code>http://IP_DE_TU_ORDENADOR:8765</code></li>
</ul>



<p>Para saber la IP en Linux:</p>



<pre class="wp-block-code"><code>ip -4 addr</code></pre>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p>Nota: <code>0.0.0.0</code> NO es una IP a la que conectarse. Es solo para permitir conexiones desde otros dispositivos de tu red. Para abrir la web tienes que usar la IP real de tu PC (por ejemplo <code>192.168.1.50</code>).</p>
</blockquote>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">6) Acceso, login y seguridad básica</h2>



<p>El webif trae login por defecto:</p>



<ul class="wp-block-list">
<li>Usuario: <strong>admin</strong></li>



<li>Contraseña: <strong>usbip</strong></li>
</ul>



<p>Se recomienda cambiar las credenciales por unas propias.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">7) Uso: añadir servidor, refrescar, conectar y desconectar</h2>



<h3 class="wp-block-heading">7.1) Añadir y seleccionar un servidor remoto</h3>



<p>En la tarjeta <strong>Servidores</strong>:</p>



<p>1) En “Nuevo servidor (IP/Host)”, pon la IP (ej. <code>192.168.1.10</code>)<br>2) “TCP port” normalmente <strong>3240</strong><br>3) Pulsa <strong>Añadir</strong><br>4) Selecciónalo en el desplegable y pulsa <strong>Usar</strong></p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img fetchpriority="high" decoding="async" width="1024" height="189" src="https://blog.chrisoft.io/wp-content/uploads/2026/01/image-1024x189.png" alt="" class="wp-image-510" srcset="https://blog.chrisoft.io/wp-content/uploads/2026/01/image-1024x189.png 1024w, https://blog.chrisoft.io/wp-content/uploads/2026/01/image-300x55.png 300w, https://blog.chrisoft.io/wp-content/uploads/2026/01/image-768x141.png 768w, https://blog.chrisoft.io/wp-content/uploads/2026/01/image-665x123.png 665w, https://blog.chrisoft.io/wp-content/uploads/2026/01/image.png 1129w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<h3 class="wp-block-heading">7.2) Ver dispositivos exportados (Refresh)</h3>



<p>En la tarjeta <strong>Dispositivos</strong>, pulsa <strong>Refrescar</strong>.</p>



<p>Verás una tabla con:</p>



<ul class="wp-block-list">
<li><strong>BUSID</strong> (identificador del dispositivo en el servidor)</li>



<li><strong>Descripción</strong> (nombre del dispositivo)</li>



<li><strong>VID:PID</strong> (identidad del dispositivo, útil para auto-conectar)</li>



<li><strong>Auto</strong> (checkbox)</li>



<li><strong>Conectar / Desconectar</strong></li>
</ul>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img decoding="async" width="1024" height="185" src="https://blog.chrisoft.io/wp-content/uploads/2026/01/image-1-1024x185.png" alt="" class="wp-image-511" srcset="https://blog.chrisoft.io/wp-content/uploads/2026/01/image-1-1024x185.png 1024w, https://blog.chrisoft.io/wp-content/uploads/2026/01/image-1-300x54.png 300w, https://blog.chrisoft.io/wp-content/uploads/2026/01/image-1-768x139.png 768w, https://blog.chrisoft.io/wp-content/uploads/2026/01/image-1-665x120.png 665w, https://blog.chrisoft.io/wp-content/uploads/2026/01/image-1.png 1129w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<h3 class="wp-block-heading">7.3) Conectar (attach)</h3>



<p>Pulsa <strong>Conectar</strong> en el dispositivo que quieras.</p>



<p>Ahora debería aparecer en tu Linux como un USB “real”. Dependiendo del tipo:</p>



<ul class="wp-block-list">
<li>USB-Serial → <code>/dev/ttyUSB0</code> (o similar)</li>



<li>Almacenamiento → aparecerá en el sistema de discos</li>



<li>HID (teclado/ratón) → funcionará directamente</li>
</ul>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img decoding="async" width="283" height="201" src="https://blog.chrisoft.io/wp-content/uploads/2026/01/image-3.png" alt="" class="wp-image-513" srcset="https://blog.chrisoft.io/wp-content/uploads/2026/01/image-3.png 283w, https://blog.chrisoft.io/wp-content/uploads/2026/01/image-3-60x42.png 60w" sizes="(max-width: 283px) 100vw, 283px" /></figure>
</div>


<h3 class="wp-block-heading">7.4) Desconectar (detach)</h3>



<p>Pulsa <strong>Desconectar</strong> en el dispositivo.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="310" height="202" src="https://blog.chrisoft.io/wp-content/uploads/2026/01/image-4.png" alt="" class="wp-image-514" srcset="https://blog.chrisoft.io/wp-content/uploads/2026/01/image-4.png 310w, https://blog.chrisoft.io/wp-content/uploads/2026/01/image-4-300x195.png 300w" sizes="auto, (max-width: 310px) 100vw, 310px" /></figure>
</div>


<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">8) Auto-conectar: mantener dispositivos conectados</h2>



<p>Si activas el checkbox <strong>Auto</strong> en un dispositivo, la aplicación lo conectará cada vez que el servidor lo exporte.</p>



<h3 class="wp-block-heading">Cambiar el intervalo</h3>



<p>En el <strong>Web UI</strong> cambia “Intervalo auto-conectar (seg)” y pulsa guardar.</p>



<p>Consejo:</p>



<ul class="wp-block-list">
<li>5–10 segundos suele ir bien en LAN</li>



<li>Si el servidor remoto es inestable, sube el intervalo para no “machacar” el puerto 3240</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">9) Problemas típicos</h2>



<h3 class="wp-block-heading">No puedo abrir la Web UI desde otro dispositivo</h3>



<p>1) Arráncalo así (muy importante el <code>env</code>):</p>



<pre class="wp-block-code"><code>sudo env HOST=0.0.0.0 PORT=8765 node server.js</code></pre>



<p>2) Comprueba que escucha en <code>0.0.0.0</code>:</p>



<pre class="wp-block-code"><code>sudo ss -lntp | grep 8765</code></pre>



<p>3) Si hay firewall (ufw):</p>



<pre class="wp-block-code"><code>sudo ufw allow 8765/tcp</code></pre>



<h3 class="wp-block-heading">Error “could not connect to :3240”</h3>



<ul class="wp-block-list">
<li>El servidor USB/IP remoto no está activo</li>



<li>Puerto 3240 bloqueado</li>



<li>IP incorrecta</li>
</ul>



<p>Prueba conectividad:</p>



<pre class="wp-block-code"><code>nc -zv 192.168.1.10 3240</code></pre>



<h3 class="wp-block-heading">Conecto pero el dispositivo no aparece</h3>



<p>Mira logs del kernel:</p>



<pre class="wp-block-code"><code>dmesg -w</code></pre>



<p>Lista puertos USB/IP:</p>



<pre class="wp-block-code"><code>sudo usbip port</code></pre>



<h3 class="wp-block-heading">Comprobar “a mano” si el servidor exporta bien</h3>



<pre class="wp-block-code"><code>sudo usbip list --remote 192.168.1.10</code></pre>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">10) Descargas</h2>



<div class="wp-block-file"><a id="wp-block-file--media-9b7ffd4c-8f62-45e7-92bf-af6eed96ea31" href="https://blog.chrisoft.io/wp-content/uploads/2026/01/usbip-webui-0.1.0.zip">usbip-webui-0.1.0</a><a href="https://blog.chrisoft.io/wp-content/uploads/2026/01/usbip-webui-0.1.0.zip" class="wp-block-file__button wp-element-button" download aria-describedby="wp-block-file--media-9b7ffd4c-8f62-45e7-92bf-af6eed96ea31">Descarga</a></div>



<p></p><p>The post <a href="https://blog.chrisoft.io/blog/2026/01/31/usb-ip-en-linux-como-usar-usb-remotos-por-red-con-usb-ip-web-ui-guia-paso-a-paso/">USB/IP en Linux: cómo usar USB remotos por red con USB/IP Web UI (guía paso a paso)</a> first appeared on <a href="https://blog.chrisoft.io">ChriSoft</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://blog.chrisoft.io/blog/2026/01/31/usb-ip-en-linux-como-usar-usb-remotos-por-red-con-usb-ip-web-ui-guia-paso-a-paso/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>FreePocket: Comunicación con inversores Victron</title>
		<link>https://blog.chrisoft.io/blog/2023/10/09/freepocket-comunicacion-con-inversores-victron/</link>
					<comments>https://blog.chrisoft.io/blog/2023/10/09/freepocket-comunicacion-con-inversores-victron/#respond</comments>
		
		<dc:creator><![CDATA[Christopher]]></dc:creator>
		<pubDate>Mon, 09 Oct 2023 18:45:24 +0000</pubDate>
				<category><![CDATA[FreePocket]]></category>
		<category><![CDATA[Solax]]></category>
		<category><![CDATA[esp32]]></category>
		<category><![CDATA[freepocket]]></category>
		<category><![CDATA[solax]]></category>
		<category><![CDATA[victron]]></category>
		<guid isPermaLink="false">https://blog.chrisoft.io/?p=421</guid>

					<description><![CDATA[<p>A continuación voy a explicar como configurar FreePocket y un inversor Victron para que se comuniquen entre sí. Configuración FreePocket Una vez instalado y hecha la primera configuración, hay que activar el servidor modbus: Y con esto ya estaría todo en la parte FreePocket, ahora al Victron. Configuración Victron: Hay que ir a Configuración -&#62; Inversores FV -&#62;… <span class="read-more"><a href="https://blog.chrisoft.io/blog/2023/10/09/freepocket-comunicacion-con-inversores-victron/">Read More &#187;</a></span></p>
<p>The post <a href="https://blog.chrisoft.io/blog/2023/10/09/freepocket-comunicacion-con-inversores-victron/">FreePocket: Comunicación con inversores Victron</a> first appeared on <a href="https://blog.chrisoft.io">ChriSoft</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>A continuación voy a explicar como configurar FreePocket y un inversor Victron para que se comuniquen entre sí.</p>



<h2 class="wp-block-heading">Configuración FreePocket</h2>



<p>Una vez <a href="https://community.chrisoft.io/t/freepocket-creacion-de-un-pincho-alternativo-para-inversores-solax/24" target="_blank" rel="noopener" title="">instalado y hecha la primera configuración</a>, hay que activar el servidor modbus:</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="814" height="133" src="https://blog.chrisoft.io/wp-content/uploads/2023/10/image.png" alt="" class="wp-image-423" srcset="https://blog.chrisoft.io/wp-content/uploads/2023/10/image.png 814w, https://blog.chrisoft.io/wp-content/uploads/2023/10/image-300x49.png 300w, https://blog.chrisoft.io/wp-content/uploads/2023/10/image-768x125.png 768w, https://blog.chrisoft.io/wp-content/uploads/2023/10/image-665x109.png 665w" sizes="auto, (max-width: 814px) 100vw, 814px" /></figure>
</div>


<p>Y con esto ya estaría todo en la parte FreePocket, ahora al Victron.</p>



<h2 class="wp-block-heading">Configuración Victron:</h2>



<p>Hay que ir a <em><strong>Configuración -&gt; Inversores FV -&gt; Introducir dirección IP manualmente</strong></em>:</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="495" height="283" src="https://blog.chrisoft.io/wp-content/uploads/2023/10/image-3.png" alt="" class="wp-image-426" srcset="https://blog.chrisoft.io/wp-content/uploads/2023/10/image-3.png 495w, https://blog.chrisoft.io/wp-content/uploads/2023/10/image-3-300x172.png 300w" sizes="auto, (max-width: 495px) 100vw, 495px" /></figure>
</div>


<p>Una vez añadido debe de aparecer en <em><strong>Configuración -&gt; Inversores FV -&gt; Inversores</strong></em></p>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" src="https://blog.chrisoft.io/wp-content/uploads/2023/10/image-4.png" alt="" class="wp-image-429" style="width:494px;height:284px" width="494" height="284" srcset="https://blog.chrisoft.io/wp-content/uploads/2023/10/image-4.png 494w, https://blog.chrisoft.io/wp-content/uploads/2023/10/image-4-300x172.png 300w" sizes="auto, (max-width: 494px) 100vw, 494px" /></figure>
</div>

<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" src="https://blog.chrisoft.io/wp-content/uploads/2023/10/image-5.png" alt="" class="wp-image-430" style="width:494px;height:287px" width="494" height="287" srcset="https://blog.chrisoft.io/wp-content/uploads/2023/10/image-5.png 494w, https://blog.chrisoft.io/wp-content/uploads/2023/10/image-5-300x174.png 300w" sizes="auto, (max-width: 494px) 100vw, 494px" /><figcaption class="wp-element-caption">Configurar la posición del Inversor</figcaption></figure>
</div>


<p>Si ahora vas al menú principal debería aparecer en <em><strong>Lista de dispositivos</strong></em>:</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="493" height="289" src="https://blog.chrisoft.io/wp-content/uploads/2023/10/image-6.png" alt="" class="wp-image-431" srcset="https://blog.chrisoft.io/wp-content/uploads/2023/10/image-6.png 493w, https://blog.chrisoft.io/wp-content/uploads/2023/10/image-6-300x176.png 300w" sizes="auto, (max-width: 493px) 100vw, 493px" /></figure>
</div>


<p>Ahora, si quieres activar la inyección 0 del solax sin necesidad del meter, hay que ir a <em><strong>Configuración -&gt; ESS -&gt; Inyección a la red</strong></em> y activar las siguientes opciones:</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="491" height="286" src="https://blog.chrisoft.io/wp-content/uploads/2023/10/image-7.png" alt="" class="wp-image-433" srcset="https://blog.chrisoft.io/wp-content/uploads/2023/10/image-7.png 491w, https://blog.chrisoft.io/wp-content/uploads/2023/10/image-7-300x175.png 300w" sizes="auto, (max-width: 491px) 100vw, 491px" /></figure>
</div>


<p>Yo lo tengo configurado para inyectar siempre 500w a la red. Ojo, sólo inyecta si hay energía fotovoltaica, no desde baterías. Si no quieres inyectar nada cambia el valor a 0.</p>



<p>Si todo ha ido bien, el valor de <em><strong>Limitación de inyección activa</strong></em> debe marcar <em><strong>Sí</strong></em>.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="898" height="565" src="https://blog.chrisoft.io/wp-content/uploads/2023/10/image-8.png" alt="" class="wp-image-440" srcset="https://blog.chrisoft.io/wp-content/uploads/2023/10/image-8.png 898w, https://blog.chrisoft.io/wp-content/uploads/2023/10/image-8-300x189.png 300w, https://blog.chrisoft.io/wp-content/uploads/2023/10/image-8-768x483.png 768w, https://blog.chrisoft.io/wp-content/uploads/2023/10/image-8-665x418.png 665w" sizes="auto, (max-width: 898px) 100vw, 898px" /><figcaption class="wp-element-caption">Inversor Solax en VRM Portal</figcaption></figure>
</div>


<p>Y con esto sería todo. Si tienes cualquier duda <a href="https://community.chrisoft.io/c/freepocket/7" target="_blank" rel="noopener" title="puedes preguntar en los foros">puedes preguntar en los foros</a>.</p><p>The post <a href="https://blog.chrisoft.io/blog/2023/10/09/freepocket-comunicacion-con-inversores-victron/">FreePocket: Comunicación con inversores Victron</a> first appeared on <a href="https://blog.chrisoft.io">ChriSoft</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://blog.chrisoft.io/blog/2023/10/09/freepocket-comunicacion-con-inversores-victron/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>FreePocket: Creación de un pincho alternativo para inversores Solax</title>
		<link>https://blog.chrisoft.io/blog/2023/10/01/freepocket-creacion-de-un-pincho-alternativo-para-inversores-solax/</link>
					<comments>https://blog.chrisoft.io/blog/2023/10/01/freepocket-creacion-de-un-pincho-alternativo-para-inversores-solax/#comments</comments>
		
		<dc:creator><![CDATA[Christopher]]></dc:creator>
		<pubDate>Sat, 30 Sep 2023 22:10:15 +0000</pubDate>
				<category><![CDATA[FreePocket]]></category>
		<category><![CDATA[Solax]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[esp32]]></category>
		<category><![CDATA[firmware]]></category>
		<category><![CDATA[freepocket]]></category>
		<category><![CDATA[solax]]></category>
		<guid isPermaLink="false">https://blog.chrisoft.io/?p=355</guid>

					<description><![CDATA[<p>Material necesario: Conexionado: Si el pincho oficial de tu inversor es blanco: Si el pincho oficial de tu inversor es negro: ATENCIÓN: Este conector USB es necesario para conectar el ESP32 con el inversor. En ningún momento se conectará a un ordenador/cargador ya que podrías quemar el ESP32. Programación: Para programar el ESP32 visita el siguiente enlace y… <span class="read-more"><a href="https://blog.chrisoft.io/blog/2023/10/01/freepocket-creacion-de-un-pincho-alternativo-para-inversores-solax/">Read More &#187;</a></span></p>
<p>The post <a href="https://blog.chrisoft.io/blog/2023/10/01/freepocket-creacion-de-un-pincho-alternativo-para-inversores-solax/">FreePocket: Creación de un pincho alternativo para inversores Solax</a> first appeared on <a href="https://blog.chrisoft.io">ChriSoft</a>.</p>]]></description>
										<content:encoded><![CDATA[<h2 class="wp-block-heading">Material necesario:</h2>



<ul class="wp-block-list">
<li>ESP32 (<a href="https://amzn.to/3M0qCMO" target="_blank" rel="noreferrer noopener sponsored">wifi</a> o <a href="https://amzn.to/469bLKA" target="_blank" rel="noopener nofollow" title="">ethernet</a>)</li>



<li>Cable USB con un conector tipo A (<a href="https://amzn.to/46kPpW3" target="_blank" rel="noopener sponsored" title="">2.0</a> / <a href="https://amzn.to/454fkQD" target="_blank" rel="noopener sponsored" title="">3.0</a>)</li>



<li><a href="https://amzn.to/3ENECrN" target="_blank" rel="noopener sponsored" title="">Soldador</a></li>
</ul>



<h2 class="wp-block-heading">Conexionado:</h2>



<h3 class="wp-block-heading has-text-align-center">Si el pincho oficial de tu inversor es blanco:</h3>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="768" height="1024" src="https://blog.chrisoft.io/wp-content/uploads/2023/09/image-768x1024.png" alt="" class="wp-image-359" srcset="https://blog.chrisoft.io/wp-content/uploads/2023/09/image-768x1025.png 768w, https://blog.chrisoft.io/wp-content/uploads/2023/09/image-225x300.png 225w, https://blog.chrisoft.io/wp-content/uploads/2023/09/image-665x887.png 665w, https://blog.chrisoft.io/wp-content/uploads/2023/09/image.png 997w" sizes="auto, (max-width: 768px) 100vw, 768px" /><figcaption class="wp-element-caption">Esquema para V2</figcaption></figure>
</div>


<p></p>



<h3 class="wp-block-heading has-text-align-center">Si el pincho oficial de tu inversor es negro:</h3>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="766" height="1024" src="https://blog.chrisoft.io/wp-content/uploads/2023/09/image-3-766x1024.png" alt="" class="wp-image-386" srcset="https://blog.chrisoft.io/wp-content/uploads/2023/09/image-3-766x1024.png 766w, https://blog.chrisoft.io/wp-content/uploads/2023/09/image-3-225x300.png 225w, https://blog.chrisoft.io/wp-content/uploads/2023/09/image-3-768x1026.png 768w, https://blog.chrisoft.io/wp-content/uploads/2023/09/image-3-665x888.png 665w, https://blog.chrisoft.io/wp-content/uploads/2023/09/image-3.png 997w" sizes="auto, (max-width: 766px) 100vw, 766px" /><figcaption class="wp-element-caption">Esquema para V3</figcaption></figure>



<p class="has-text-align-center has-vivid-red-color has-text-color" style="font-size:17px"><strong>ATENCIÓN</strong>: Este conector USB es necesario para conectar el ESP32 con el inversor. </p>



<p class="has-text-align-center has-vivid-red-color has-text-color" style="font-size:17px">En <strong>ningún momento</strong> se conectará a un ordenador/cargador ya que <strong>podrías quemar</strong> el ESP32.</p>



<h2 class="wp-block-heading">Programación:</h2>



<p>Para programar el ESP32 visita el <a href="https://freepocket.chrisoft.io" target="_blank" rel="noopener" title="">siguiente enlace</a> y sigue los pasos del asistente.</p>



<h2 class="wp-block-heading">Configuración Inicial:</h2>



<p>Si utilizas la conexión por cable ethernet puedes saltarte estos pasos.</p>



<p>Una vez soldado y programado ya se puede conectar al inversor. En el primer inicio debe aparecer una red wifi <em><strong>fp_xxxxxx</strong></em>. Su contraseña por defecto es <em><strong>sentmenat</strong></em>.</p>



<p>La IP por defecto es <em><strong>192.168.4.1</strong></em> con usuario <strong><em>admin</em></strong> y contraseña <strong><em>sentmenat</em></strong>.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="801" src="https://blog.chrisoft.io/wp-content/uploads/2023/09/image-4-1024x801.png" alt="" class="wp-image-391" srcset="https://blog.chrisoft.io/wp-content/uploads/2023/09/image-4-1024x801.png 1024w, https://blog.chrisoft.io/wp-content/uploads/2023/09/image-4-300x235.png 300w, https://blog.chrisoft.io/wp-content/uploads/2023/09/image-4-768x600.png 768w, https://blog.chrisoft.io/wp-content/uploads/2023/09/image-4-665x520.png 665w, https://blog.chrisoft.io/wp-content/uploads/2023/09/image-4.png 1077w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Página de inicio</figcaption></figure>



<p>Para configurar la red wifi del pincho hay que ir a <strong><em>Configuration</em></strong>:</p>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="822" height="436" src="https://blog.chrisoft.io/wp-content/uploads/2023/09/image-5.png" alt="" class="wp-image-393" srcset="https://blog.chrisoft.io/wp-content/uploads/2023/09/image-5.png 822w, https://blog.chrisoft.io/wp-content/uploads/2023/09/image-5-300x159.png 300w, https://blog.chrisoft.io/wp-content/uploads/2023/09/image-5-768x407.png 768w, https://blog.chrisoft.io/wp-content/uploads/2023/09/image-5-665x353.png 665w" sizes="auto, (max-width: 822px) 100vw, 822px" /><figcaption class="wp-element-caption">Configuración Wifi</figcaption></figure>



<p>Una vez configurada y guardada ya se puede configurar solaxcloud.</p>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="822" height="230" src="https://blog.chrisoft.io/wp-content/uploads/2023/09/image-6.png" alt="" class="wp-image-396" srcset="https://blog.chrisoft.io/wp-content/uploads/2023/09/image-6.png 822w, https://blog.chrisoft.io/wp-content/uploads/2023/09/image-6-300x84.png 300w, https://blog.chrisoft.io/wp-content/uploads/2023/09/image-6-768x215.png 768w, https://blog.chrisoft.io/wp-content/uploads/2023/09/image-6-665x186.png 665w" sizes="auto, (max-width: 822px) 100vw, 822px" /><figcaption class="wp-element-caption">Configuración solaxcloud</figcaption></figure>



<p>En <strong><em>Wifi Serial Number</em></strong> hay que añadir el número de serie del pincho original, normalmente es del estilo <strong><em>Sxxxxxxxxx</em></strong>. En <strong><em>Solax Access PIN</em></strong> se configura el pin de acceso al inversor, por defecto en todos los inversores es el <em><strong>6868</strong></em>, si por lo contrario lo has modificado indica el nuevo. En <strong><em>Original Pocket Model</em></strong> se puede dejar en <strong><em>AUTO</em></strong>, el inversor intentará detectar automáticamente el tipo de inversor.</p>



<p>Con esta configuración básica tendrás acceso al inversor desde la aplicación oficial de solaxcloud.</p>



<h2 class="wp-block-heading">Finalizando:</h2>



<p>En este tutorial no voy a entrar en detalles de todas las opciones disponibles ya que creo que son bastante intuitivas. Si aún así tienes tienes dudas <a href="https://community.chrisoft.io/" target="_blank" rel="noopener" title="">puedes preguntar en los foros</a> o en el <a href="https://t.me/Free_Pocket" target="_blank" rel="noopener" title="">canal de Telegram</a>.</p>



<p></p><p>The post <a href="https://blog.chrisoft.io/blog/2023/10/01/freepocket-creacion-de-un-pincho-alternativo-para-inversores-solax/">FreePocket: Creación de un pincho alternativo para inversores Solax</a> first appeared on <a href="https://blog.chrisoft.io">ChriSoft</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://blog.chrisoft.io/blog/2023/10/01/freepocket-creacion-de-un-pincho-alternativo-para-inversores-solax/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Pincho alternativo para Solax</title>
		<link>https://blog.chrisoft.io/blog/2021/10/12/pincho-alternativo-para-solax/</link>
					<comments>https://blog.chrisoft.io/blog/2021/10/12/pincho-alternativo-para-solax/#comments</comments>
		
		<dc:creator><![CDATA[Christopher]]></dc:creator>
		<pubDate>Tue, 12 Oct 2021 11:46:39 +0000</pubDate>
				<category><![CDATA[Solax]]></category>
		<category><![CDATA[5.8.8.8]]></category>
		<category><![CDATA[alternative]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[esp32]]></category>
		<category><![CDATA[firmware]]></category>
		<category><![CDATA[json]]></category>
		<category><![CDATA[json api]]></category>
		<category><![CDATA[pocket wifi]]></category>
		<category><![CDATA[solax]]></category>
		<guid isPermaLink="false">https://192.168.0.147/?p=62</guid>

					<description><![CDATA[<p>Como algunos ya sabéis, llevo un tiempo desarrollando una alternativa al Pocket Wifi de Solax con sus mejoras y añadidos. Entre las que se encuentran: A continuación muestro unas capturas de su interfaz web: El hardware utilizado es un ESP32 y solo se requieren 4 soldaduras. Actualmente hay varios usuarios testeando el dispositivo en busca de fallos y… <span class="read-more"><a href="https://blog.chrisoft.io/blog/2021/10/12/pincho-alternativo-para-solax/">Read More &#187;</a></span></p>
<p>The post <a href="https://blog.chrisoft.io/blog/2021/10/12/pincho-alternativo-para-solax/">Pincho alternativo para Solax</a> first appeared on <a href="https://blog.chrisoft.io">ChriSoft</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Como algunos ya sabéis, llevo un tiempo desarrollando una alternativa al Pocket Wifi de Solax con sus mejoras y añadidos. Entre las que se encuentran:</p>



<p></p>



<ul class="wp-block-list">
<li>Compatibilidad con SolaxCloud, su app y su API local</li>



<li>Posibilidad de publicar directamente los datos mediante MQTT</li>



<li>Sunspec Modbus, permitiendo ser detectado y controlado por sistemas Victron</li>
</ul>



<p></p>



<p>A continuación muestro unas capturas de su interfaz web:</p>



<div class="wp-block-group alignwide"><div class="wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow">
<figure class="wp-block-gallery aligncenter has-nested-images columns-default is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex">
<figure class="wp-block-image size-full"><a href="https://blog.chrisoft.io/wp-content/uploads/2021/10/Captura-web_12-10-2021_123232_192.168.4.176.jpeg"><img loading="lazy" decoding="async" width="1501" height="825" data-id="65" src="https://blog.chrisoft.io/wp-content/uploads/2021/10/Captura-web_12-10-2021_123232_192.168.4.176.jpeg" alt="" class="wp-image-65" srcset="https://blog.chrisoft.io/wp-content/uploads/2021/10/Captura-web_12-10-2021_123232_192.168.4.176.jpeg 1501w, https://blog.chrisoft.io/wp-content/uploads/2021/10/Captura-web_12-10-2021_123232_192.168.4.176-300x165.jpeg 300w, https://blog.chrisoft.io/wp-content/uploads/2021/10/Captura-web_12-10-2021_123232_192.168.4.176-1024x563.jpeg 1024w, https://blog.chrisoft.io/wp-content/uploads/2021/10/Captura-web_12-10-2021_123232_192.168.4.176-768x422.jpeg 768w, https://blog.chrisoft.io/wp-content/uploads/2021/10/Captura-web_12-10-2021_123232_192.168.4.176-769x423.jpeg 769w" sizes="auto, (max-width: 1501px) 100vw, 1501px" /></a></figure>
</figure>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:100%">
<figure class="wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-2 is-layout-flex wp-block-gallery-is-layout-flex">
<figure class="wp-block-image size-full"><a href="https://blog.chrisoft.io/wp-content/uploads/2021/10/Captura-web_12-10-2021_123253_192.168.4.176.jpeg"><img loading="lazy" decoding="async" width="1501" height="825" data-id="66" src="https://blog.chrisoft.io/wp-content/uploads/2021/10/Captura-web_12-10-2021_123253_192.168.4.176.jpeg" alt="" class="wp-image-66" srcset="https://blog.chrisoft.io/wp-content/uploads/2021/10/Captura-web_12-10-2021_123253_192.168.4.176.jpeg 1501w, https://blog.chrisoft.io/wp-content/uploads/2021/10/Captura-web_12-10-2021_123253_192.168.4.176-300x165.jpeg 300w, https://blog.chrisoft.io/wp-content/uploads/2021/10/Captura-web_12-10-2021_123253_192.168.4.176-1024x563.jpeg 1024w, https://blog.chrisoft.io/wp-content/uploads/2021/10/Captura-web_12-10-2021_123253_192.168.4.176-768x422.jpeg 768w, https://blog.chrisoft.io/wp-content/uploads/2021/10/Captura-web_12-10-2021_123253_192.168.4.176-769x423.jpeg 769w" sizes="auto, (max-width: 1501px) 100vw, 1501px" /></a></figure>
</figure>
</div>
</div>



<figure class="wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-3 is-layout-flex wp-block-gallery-is-layout-flex">
<figure class="wp-block-image size-full"><a href="https://blog.chrisoft.io/wp-content/uploads/2021/10/Captura-web_12-10-2021_123334_192.168.4.176.jpeg"><img loading="lazy" decoding="async" width="1501" height="1629" data-id="67" src="https://blog.chrisoft.io/wp-content/uploads/2021/10/Captura-web_12-10-2021_123334_192.168.4.176.jpeg" alt="" class="wp-image-67" srcset="https://blog.chrisoft.io/wp-content/uploads/2021/10/Captura-web_12-10-2021_123334_192.168.4.176.jpeg 1501w, https://blog.chrisoft.io/wp-content/uploads/2021/10/Captura-web_12-10-2021_123334_192.168.4.176-276x300.jpeg 276w, https://blog.chrisoft.io/wp-content/uploads/2021/10/Captura-web_12-10-2021_123334_192.168.4.176-944x1024.jpeg 944w, https://blog.chrisoft.io/wp-content/uploads/2021/10/Captura-web_12-10-2021_123334_192.168.4.176-768x833.jpeg 768w, https://blog.chrisoft.io/wp-content/uploads/2021/10/Captura-web_12-10-2021_123334_192.168.4.176-1415x1536.jpeg 1415w, https://blog.chrisoft.io/wp-content/uploads/2021/10/Captura-web_12-10-2021_123334_192.168.4.176-769x835.jpeg 769w" sizes="auto, (max-width: 1501px) 100vw, 1501px" /></a></figure>
</figure>
</div></div>



<p>El hardware utilizado es un <a href="https://amzn.to/2YEzsgk" title="https://amzn.to/2YEzsgk" target="_blank" rel="noreferrer noopener sponsored">ESP32</a> y solo se requieren 4 soldaduras.</p>



<p></p>



<p>Actualmente hay varios usuarios testeando el dispositivo en busca de fallos y mejoras, por lo que el firmware todavía no es público. Si dispones de un inversor SOLAX que <strong>NO</strong> sea un <strong>X1-Boost/Air/Mini</strong> y quieres probarlo, <a href="https://t.me/Christopher101" target="_blank" rel="noreferrer noopener">contáctame por Telegram</a>.</p>



<p></p>



<p>Hasta la próxima!</p>



<a href="https://twitter.com/chrisstopher101?ref_src=twsrc%5Etfw" class="twitter-follow-button" data-show-count="false">Follow @Christopher</a><script async="" src="https://platform.twitter.com/widgets.js" charset="utf-8"></script><p>The post <a href="https://blog.chrisoft.io/blog/2021/10/12/pincho-alternativo-para-solax/">Pincho alternativo para Solax</a> first appeared on <a href="https://blog.chrisoft.io">ChriSoft</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://blog.chrisoft.io/blog/2021/10/12/pincho-alternativo-para-solax/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>Firmwares modificados para Solax Pocket WIFI V2</title>
		<link>https://blog.chrisoft.io/blog/2021/02/14/firmwares-modificados-para-solax-pocket-wifi-v2/</link>
					<comments>https://blog.chrisoft.io/blog/2021/02/14/firmwares-modificados-para-solax-pocket-wifi-v2/#comments</comments>
		
		<dc:creator><![CDATA[Christopher]]></dc:creator>
		<pubDate>Sun, 14 Feb 2021 13:13:18 +0000</pubDate>
				<category><![CDATA[Solax]]></category>
		<category><![CDATA[5.8.8.8]]></category>
		<category><![CDATA[618.00122.00_Pocket_WIFI_V2.033.20_20190313]]></category>
		<category><![CDATA[618.00122.00_Pocket_WIFI_V2.033.20_20190313_UNLOCKED]]></category>
		<category><![CDATA[618.00122.00_Pocket_WIFI_V2.034.06_20200921]]></category>
		<category><![CDATA[618.00122.00_Pocket_WIFI_V2.034.06_20200921_UNLOCKED]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[firmware]]></category>
		<category><![CDATA[json]]></category>
		<category><![CDATA[json api]]></category>
		<category><![CDATA[solax]]></category>
		<guid isPermaLink="false">https://192.168.0.147/?p=7</guid>

					<description><![CDATA[<p>Actualización a 01/10/2023: Método alternativo Hoy os traigo dos versiones de firmware con un par de mejoras: Posibilidad de acceder al webinterface desde nuestra LAN Posibilidad de acceder a la api desde nuestra LAN Por qué hay dos versiones? En las últimas versiones la gente de Solax a modificado la respuesta JSON (api) dejando inutilizados los plugins existentes… <span class="read-more"><a href="https://blog.chrisoft.io/blog/2021/02/14/firmwares-modificados-para-solax-pocket-wifi-v2/">Read More &#187;</a></span></p>
<p>The post <a href="https://blog.chrisoft.io/blog/2021/02/14/firmwares-modificados-para-solax-pocket-wifi-v2/">Firmwares modificados para Solax Pocket WIFI V2</a> first appeared on <a href="https://blog.chrisoft.io">ChriSoft</a>.</p>]]></description>
										<content:encoded><![CDATA[<h2 style="text-align: center;"><span style="color: #ff0000;"><strong>Actualización a 01/10/2023</strong></span>: <a href="https://blog.chrisoft.io/blog/2023/10/01/freepocket-creacion-de-un-pincho-alternativo-para-inversores-solax/">Método alternativo</a></h2>
<p><span style="font-size: revert; color: initial;">Hoy os traigo dos versiones de firmware con un par de mejoras:</span></p>
<ul>
<li>Posibilidad de acceder al webinterface desde nuestra LAN</li>
<li>Posibilidad de acceder a la api desde nuestra LAN</li>
</ul>
<p>Por qué hay dos versiones? En las últimas versiones la gente de Solax a modificado la respuesta JSON (api) dejando inutilizados los plugins existentes para Domoticz, HA y derivados.</p>
<p>Supuestamente las últimas versiones deberían ser más estables y funcionar mejor, es por eso que doy la opción a que cada uno instale la versión que desee.</p>
<p>A continuación explico como instalar estas 2 versiones:</p>
<ol>
<li>Descargar la versión que nos interese.</li>
<li>Nos conectamos a la wifi de nuestro Pocket Wifi, normalmente aparece como <strong><em>Solax_S&#8230;&#8230;..</em></strong></li>
<li><strong><em> </em></strong><img loading="lazy" decoding="async" class="aligncenter wp-image-8 size-large" src="https://blog.chrisoft.io/wp-content/uploads/2021/02/photo_2021-02-14_13-15-02-481x1024.jpg" alt="" width="481" height="1024" srcset="https://blog.chrisoft.io/wp-content/uploads/2021/02/photo_2021-02-14_13-15-02-481x1024.jpg 481w, https://blog.chrisoft.io/wp-content/uploads/2021/02/photo_2021-02-14_13-15-02-141x300.jpg 141w, https://blog.chrisoft.io/wp-content/uploads/2021/02/photo_2021-02-14_13-15-02.jpg 576w" sizes="auto, (max-width: 481px) 100vw, 481px" /></li>
<li>Abrimos el navegador y accedemos al sitio web http://5.8.8.8. Usuario y contraseña: <em><strong>admin</strong></em></li>
<li><img loading="lazy" decoding="async" class="aligncenter wp-image-9 size-full" src="https://blog.chrisoft.io/wp-content/uploads/2021/02/photo_2021-02-14_13-15-07.jpg" alt="" width="576" height="876" srcset="https://blog.chrisoft.io/wp-content/uploads/2021/02/photo_2021-02-14_13-15-07.jpg 576w, https://blog.chrisoft.io/wp-content/uploads/2021/02/photo_2021-02-14_13-15-07-197x300.jpg 197w" sizes="auto, (max-width: 576px) 100vw, 576px" /></li>
<li>Vamos a la pestaña <strong><em>System</em></strong></li>
<li>En el apartado <em><strong>Update firmware(.usb)</strong></em> hacemos click en <em><strong>Elegir archivo</strong></em> y seleccionamos el firmware (<span style="color: #ff0000;"><strong>hay que descomprimir el archivo .zip y seleccionar el archivo .usb</strong></span>) anteriormente descargado.</li>
<li><img loading="lazy" decoding="async" class="aligncenter wp-image-10 size-full" src="https://blog.chrisoft.io/wp-content/uploads/2021/02/photo_2021-02-14_13-15-10.jpg" alt="" width="576" height="341" srcset="https://blog.chrisoft.io/wp-content/uploads/2021/02/photo_2021-02-14_13-15-10.jpg 576w, https://blog.chrisoft.io/wp-content/uploads/2021/02/photo_2021-02-14_13-15-10-300x178.jpg 300w" sizes="auto, (max-width: 576px) 100vw, 576px" /></li>
<li>Por último hacemos click en Start, esperamos un poco, y si todo a ido bien nos deberá aparecer el mensaje: <em><strong>Firmware update success, system reboot&#8230;please wait 5 seconds and refresh.</strong></em></li>
<li><img loading="lazy" decoding="async" class="aligncenter wp-image-11 size-full" src="https://blog.chrisoft.io/wp-content/uploads/2021/02/photo_2021-02-14_13-15-14.jpg" alt="" width="576" height="215" srcset="https://blog.chrisoft.io/wp-content/uploads/2021/02/photo_2021-02-14_13-15-14.jpg 576w, https://blog.chrisoft.io/wp-content/uploads/2021/02/photo_2021-02-14_13-15-14-300x112.jpg 300w" sizes="auto, (max-width: 576px) 100vw, 576px" /></li>
<li>Una vez se haya reiniciado, si intentáis acceder al sitio web http://pocket_wifi_ip desde vuestra lan local, debería de aparecer el webinterface.</li>
</ol>
<p>Ahora ya estamos listos para acceder a la API de forma local y sin inventos raros, tan sólo introduciendo este comando en una terminal:</p>
<p><strong><em>curl -d «optType=ReadRealTimeData&amp;pwd=admin» -X POST http://pocket_wifi_ip</em></strong></p>
<p>Obtenemos la respuesta:</p>
<p><em><strong>{«sn»:»POCKET_SERIAL»,»ver»:»2.034.06&#8243;,»type»:4,»Data»:[2230,21,409,2157,3062,12,6,274,193,4999,2,53346,1,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,8,0,0,25,0,12584,0,0,0,0,0,0,65422,65535,13910,5,31228,9,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], «Information»:[5.000,4,»INVERTER_SERIAL»,1,3.22,1.08,1.10,0.00,0.00,1]}</strong></em></p>
<p>Descarga:</p>
<p><a href="/wp-content/uploads/2021/02/618.00122.00_Pocket_WIFI_V2.033.20_20190313_UNLOCKED.usb_.zip">618.00122.00_Pocket_WIFI_V2.033.20_20190313_UNLOCKED.usb</a> <a href="/wp-content/uploads/2021/02/618.00122.00_Pocket_WIFI_V2.034.06_20200921_UNLOCKED.usb_.zip">618.00122.00_Pocket_WIFI_V2.034.06_20200921_UNLOCKED.usb</a></p>


<a href="https://twitter.com/chrisstopher101?ref_src=twsrc%5Etfw" class="twitter-follow-button" data-show-count="false">Follow @Christopher</a><script async="" src="https://platform.twitter.com/widgets.js" charset="utf-8"></script><p>The post <a href="https://blog.chrisoft.io/blog/2021/02/14/firmwares-modificados-para-solax-pocket-wifi-v2/">Firmwares modificados para Solax Pocket WIFI V2</a> first appeared on <a href="https://blog.chrisoft.io">ChriSoft</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://blog.chrisoft.io/blog/2021/02/14/firmwares-modificados-para-solax-pocket-wifi-v2/feed/</wfw:commentRss>
			<slash:comments>63</slash:comments>
		
		
			</item>
	</channel>
</rss>
