<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>
	Comentários sobre Remontti	</title>
	<atom:link href="https://blog.remontti.com.br/comments/feed" rel="self" type="application/rss+xml" />
	<link>https://blog.remontti.com.br/</link>
	<description>rudimar@remontti</description>
	<lastBuildDate>Tue, 14 Jul 2026 20:45:54 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.1</generator>
	<item>
		<title>
		Comentário sobre Instalação do Debian 13 Trixie limpa passo-a-passo (netinst) por Servidor DNS #1 - Recursivo com BIND 9.20 no Debian 13 (Trixie) - Remontti		</title>
		<link>https://blog.remontti.com.br/8267#comment-136956</link>

		<dc:creator><![CDATA[Servidor DNS #1 - Recursivo com BIND 9.20 no Debian 13 (Trixie) - Remontti]]></dc:creator>
		<pubDate>Tue, 14 Jul 2026 20:45:54 +0000</pubDate>
		<guid isPermaLink="false">https://blog.remontti.com.br/?p=8267#comment-136956</guid>

					<description><![CDATA[[&#8230;] Requisitos: Debian 13 Trixie &#8211; Instalação Limpa [&#8230;]]]></description>
			<content:encoded><![CDATA[<p>[&#8230;] Requisitos: Debian 13 Trixie &#8211; Instalação Limpa [&#8230;]</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comentário sobre Monitorando no Zabbix as sessões BGP do RouterOS v6 (Mikrotik) via SNMP por Jocelio Almeida		</title>
		<link>https://blog.remontti.com.br/6175#comment-136668</link>

		<dc:creator><![CDATA[Jocelio Almeida]]></dc:creator>
		<pubDate>Fri, 19 Jun 2026 21:48:56 +0000</pubDate>
		<guid isPermaLink="false">https://blog.remontti.com.br/?p=6175#comment-136668</guid>

					<description><![CDATA[versão 7 atualizada para a 7.23.1

:local output &quot;{\&quot;peer\&quot;:[&quot;;
:local lista [/routing/bgp/session find];
:local contador 0;

:foreach i in=$lista do={

    :local name &quot;&quot;;
    :local remoteAddress &quot;&quot;;
    :local remoteAs &quot;&quot;;
    :local established false;
    :local stateRaw &quot;&quot;;
    :local prefixRaw 0;
    :local uptimeRaw &quot;&quot;;

    :do { :set name [/routing/bgp/session get $i name]; } on-error={ :set name &quot;unknown&quot;; }
    :do { :set remoteAddress [/routing/bgp/session get $i remote.address]; } on-error={ :set remoteAddress &quot;&quot;; }
    :do { :set remoteAs [/routing/bgp/session get $i remote.as]; } on-error={ :set remoteAs &quot;&quot;; }
    :do { :set established [/routing/bgp/session get $i established]; } on-error={ :set established false; }
    :do { :set stateRaw [/routing/bgp/session get $i state]; } on-error={ :set stateRaw &quot;&quot;; }
    :do { :set prefixRaw [/routing/bgp/session get $i prefix-count]; } on-error={ :set prefixRaw 0; }
    :do { :set uptimeRaw [/routing/bgp/session get $i uptime]; } on-error={ :set uptimeRaw &quot;0&quot;; }

    :local state 1;

    :if ($established = true) do={
        :set state 6;
    } else={
        :if ($stateRaw = &quot;idle&quot;) do={ :set state 1; }
        :if ($stateRaw = &quot;connect&quot;) do={ :set state 2; }
        :if ($stateRaw = &quot;active&quot;) do={ :set state 3; }
        :if ($stateRaw = &quot;opensent&quot;) do={ :set state 4; }
        :if ($stateRaw = &quot;openconfirm&quot;) do={ :set state 5; }
        :if ($stateRaw = &quot;established&quot;) do={ :set state 6; }
    }

    :local prefix 0;
    :if ([:len [:tostr $prefixRaw]] &#062; 0) do={
        :set prefix $prefixRaw;
    }

    :local uptime [:tostr $uptimeRaw];
    :local uptimeSeconds 0;
    :local weeks 0;
    :local days 0;
    :local hours 0;
    :local minutes 0;
    :local seconds 0;

    :local posDot [:find $uptime &quot;.&quot;];
    :if ([:typeof $posDot] != &quot;nil&quot;) do={
        :set uptime [:pick $uptime 0 $posDot];
    }

    :local posW [:find $uptime &quot;w&quot;];
    :if ([:typeof $posW] != &quot;nil&quot;) do={
        :set weeks [:tonum [:pick $uptime 0 $posW]];
    }

    :local posD [:find $uptime &quot;d&quot;];
    :if ([:typeof $posD] != &quot;nil&quot;) do={
        :local startD 0;
        :if ([:typeof $posW] != &quot;nil&quot;) do={
            :set startD ($posW + 1);
        }
        :set days [:tonum [:pick $uptime $startD $posD]];
    }

    :if ([:len $uptime] &#062;= 8) do={
        :local timePart [:pick $uptime ([:len $uptime] - 8) [:len $uptime]];
        :if ([:find $timePart &quot;:&quot;] != nil) do={
            :set hours [:tonum [:pick $timePart 0 2]];
            :set minutes [:tonum [:pick $timePart 3 5]];
            :set seconds [:tonum [:pick $timePart 6 8]];
        }
    }

    :set uptimeSeconds (($weeks * 604800) + ($days * 86400) + ($hours * 3600) + ($minutes * 60) + $seconds);

    :set contador ($contador + 1);

    :if ($contador &#062; 1) do={
        :set output ($output . &quot;,&quot;);
    }

    :set output ($output . &quot;{\&quot;Id\&quot;:\&quot;&quot; . $contador . &quot;\&quot;,\&quot;Disabled\&quot;:\&quot;false\&quot;,\&quot;Name\&quot;:\&quot;&quot; . $name . &quot;\&quot;,\&quot;Remote-Address\&quot;:\&quot;&quot; . $remoteAddress . &quot;\&quot;,\&quot;Remote-AS\&quot;:\&quot;&quot; . $remoteAs . &quot;\&quot;,\&quot;State\&quot;:\&quot;&quot; . $state . &quot;\&quot;,\&quot;Prefix\&quot;:\&quot;&quot; . $prefix . &quot;\&quot;,\&quot;Uptime\&quot;:\&quot;&quot; . $uptimeSeconds . &quot;\&quot;}&quot;);
}

:set output ($output . &quot;]}&quot;);
:put $output;]]></description>
			<content:encoded><![CDATA[<p>versão 7 atualizada para a 7.23.1</p>
<p>:local output &#8220;{\&#8221;peer\&#8221;:[&#8220;;<br />
:local lista [/routing/bgp/session find];<br />
:local contador 0;</p>
<p>:foreach i in=$lista do={</p>
<p>    :local name &#8220;&#8221;;<br />
    :local remoteAddress &#8220;&#8221;;<br />
    :local remoteAs &#8220;&#8221;;<br />
    :local established false;<br />
    :local stateRaw &#8220;&#8221;;<br />
    :local prefixRaw 0;<br />
    :local uptimeRaw &#8220;&#8221;;</p>
<p>    :do { :set name [/routing/bgp/session get $i name]; } on-error={ :set name &#8220;unknown&#8221;; }<br />
    :do { :set remoteAddress [/routing/bgp/session get $i remote.address]; } on-error={ :set remoteAddress &#8220;&#8221;; }<br />
    :do { :set remoteAs [/routing/bgp/session get $i remote.as]; } on-error={ :set remoteAs &#8220;&#8221;; }<br />
    :do { :set established [/routing/bgp/session get $i established]; } on-error={ :set established false; }<br />
    :do { :set stateRaw [/routing/bgp/session get $i state]; } on-error={ :set stateRaw &#8220;&#8221;; }<br />
    :do { :set prefixRaw [/routing/bgp/session get $i prefix-count]; } on-error={ :set prefixRaw 0; }<br />
    :do { :set uptimeRaw [/routing/bgp/session get $i uptime]; } on-error={ :set uptimeRaw &#8220;0&#8221;; }</p>
<p>    :local state 1;</p>
<p>    :if ($established = true) do={<br />
        :set state 6;<br />
    } else={<br />
        :if ($stateRaw = &#8220;idle&#8221;) do={ :set state 1; }<br />
        :if ($stateRaw = &#8220;connect&#8221;) do={ :set state 2; }<br />
        :if ($stateRaw = &#8220;active&#8221;) do={ :set state 3; }<br />
        :if ($stateRaw = &#8220;opensent&#8221;) do={ :set state 4; }<br />
        :if ($stateRaw = &#8220;openconfirm&#8221;) do={ :set state 5; }<br />
        :if ($stateRaw = &#8220;established&#8221;) do={ :set state 6; }<br />
    }</p>
<p>    :local prefix 0;<br />
    :if ([:len [:tostr $prefixRaw]] &gt; 0) do={<br />
        :set prefix $prefixRaw;<br />
    }</p>
<p>    :local uptime [:tostr $uptimeRaw];<br />
    :local uptimeSeconds 0;<br />
    :local weeks 0;<br />
    :local days 0;<br />
    :local hours 0;<br />
    :local minutes 0;<br />
    :local seconds 0;</p>
<p>    :local posDot [:find $uptime &#8220;.&#8221;];<br />
    :if ([:typeof $posDot] != &#8220;nil&#8221;) do={<br />
        :set uptime [:pick $uptime 0 $posDot];<br />
    }</p>
<p>    :local posW [:find $uptime &#8220;w&#8221;];<br />
    :if ([:typeof $posW] != &#8220;nil&#8221;) do={<br />
        :set weeks [:tonum [:pick $uptime 0 $posW]];<br />
    }</p>
<p>    :local posD [:find $uptime &#8220;d&#8221;];<br />
    :if ([:typeof $posD] != &#8220;nil&#8221;) do={<br />
        :local startD 0;<br />
        :if ([:typeof $posW] != &#8220;nil&#8221;) do={<br />
            :set startD ($posW + 1);<br />
        }<br />
        :set days [:tonum [:pick $uptime $startD $posD]];<br />
    }</p>
<p>    :if ([:len $uptime] &gt;= 8) do={<br />
        :local timePart [:pick $uptime ([:len $uptime] &#8211; 8) [:len $uptime]];<br />
        :if ([:find $timePart &#8220;:&#8221;] != nil) do={<br />
            :set hours [:tonum [:pick $timePart 0 2]];<br />
            :set minutes [:tonum [:pick $timePart 3 5]];<br />
            :set seconds [:tonum [:pick $timePart 6 8]];<br />
        }<br />
    }</p>
<p>    :set uptimeSeconds (($weeks * 604800) + ($days * 86400) + ($hours * 3600) + ($minutes * 60) + $seconds);</p>
<p>    :set contador ($contador + 1);</p>
<p>    :if ($contador &gt; 1) do={<br />
        :set output ($output . &#8220;,&#8221;);<br />
    }</p>
<p>    :set output ($output . &#8220;{\&#8221;Id\&#8221;:\&#8221;&#8221; . $contador . &#8220;\&#8221;,\&#8221;Disabled\&#8221;:\&#8221;false\&#8221;,\&#8221;Name\&#8221;:\&#8221;&#8221; . $name . &#8220;\&#8221;,\&#8221;Remote-Address\&#8221;:\&#8221;&#8221; . $remoteAddress . &#8220;\&#8221;,\&#8221;Remote-AS\&#8221;:\&#8221;&#8221; . $remoteAs . &#8220;\&#8221;,\&#8221;State\&#8221;:\&#8221;&#8221; . $state . &#8220;\&#8221;,\&#8221;Prefix\&#8221;:\&#8221;&#8221; . $prefix . &#8220;\&#8221;,\&#8221;Uptime\&#8221;:\&#8221;&#8221; . $uptimeSeconds . &#8220;\&#8221;}&#8221;);<br />
}</p>
<p>:set output ($output . &#8220;]}&#8221;);<br />
:put $output;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comentário sobre Instalação do SpeedTest (OoklaServer) no Debian 11/12 gerenciado pelo systemd por Leandro		</title>
		<link>https://blog.remontti.com.br/6051#comment-135819</link>

		<dc:creator><![CDATA[Leandro]]></dc:creator>
		<pubDate>Wed, 15 Apr 2026 19:11:49 +0000</pubDate>
		<guid isPermaLink="false">https://blog.remontti.com.br/?p=6051#comment-135819</guid>

					<description><![CDATA[Em resposta a &lt;a href=&quot;https://blog.remontti.com.br/6051#comment-127707&quot;&gt;Caio&lt;/a&gt;.

dia 15/04/2026 Funcionando perfeitamente.]]></description>
			<content:encoded><![CDATA[<p>Em resposta a <a href="https://blog.remontti.com.br/6051#comment-127707">Caio</a>.</p>
<p>dia 15/04/2026 Funcionando perfeitamente.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comentário sobre Aprenda instalar o ElastiFlow, uma poderosa ferramenta para análise de tráfego de rede no Debian 11 Bullseye por Weverton Godoi		</title>
		<link>https://blog.remontti.com.br/6255#comment-135814</link>

		<dc:creator><![CDATA[Weverton Godoi]]></dc:creator>
		<pubDate>Wed, 15 Apr 2026 11:41:22 +0000</pubDate>
		<guid isPermaLink="false">https://blog.remontti.com.br/?p=6255#comment-135814</guid>

					<description><![CDATA[meus dashboard esta todos vazios, lá no servidor mostra que esta recebendo os fluxos, mais do dashboard nao aparece nada.]]></description>
			<content:encoded><![CDATA[<p>meus dashboard esta todos vazios, lá no servidor mostra que esta recebendo os fluxos, mais do dashboard nao aparece nada.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comentário sobre Instalação do Debian 13 Trixie limpa passo-a-passo (netinst) por Expneto		</title>
		<link>https://blog.remontti.com.br/8267#comment-135616</link>

		<dc:creator><![CDATA[Expneto]]></dc:creator>
		<pubDate>Sat, 04 Apr 2026 13:55:04 +0000</pubDate>
		<guid isPermaLink="false">https://blog.remontti.com.br/?p=8267#comment-135616</guid>

					<description><![CDATA[Ei Remonti, passando so pra agradecer pelo excelente conteudo! Ajuda muito quem ta começando, como eu. Forte abraço!]]></description>
			<content:encoded><![CDATA[<p>Ei Remonti, passando so pra agradecer pelo excelente conteudo! Ajuda muito quem ta começando, como eu. Forte abraço!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comentário sobre Servidor DNS Bind9 &#8211; Recursivo + Autoritativo DNSSEC + Reverso + RPZ + Fail2ban + nftables + Zabbix no Debian 11/12 por Remontti		</title>
		<link>https://blog.remontti.com.br/5958#comment-135426</link>

		<dc:creator><![CDATA[Remontti]]></dc:creator>
		<pubDate>Mon, 23 Mar 2026 00:34:45 +0000</pubDate>
		<guid isPermaLink="false">https://blog.remontti.com.br/?p=5958#comment-135426</guid>

					<description><![CDATA[Debian 13:
[bind9]
enabled  = true
port     = domain,953
protocol = tcp
logpath  = /var/log/named/security.log
bantime  = 12h
maxretry = 1
action   = route[blocktype=blackhole]]]></description>
			<content:encoded><![CDATA[<p>Debian 13:<br />
[bind9]<br />
enabled  = true<br />
port     = domain,953<br />
protocol = tcp<br />
logpath  = /var/log/named/security.log<br />
bantime  = 12h<br />
maxretry = 1<br />
action   = route[blocktype=blackhole]</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comentário sobre Como criar um servidor FTP (Pure-FTPd) com usuário no banco de dados MariaDB/MySQL com Debian 11 Bullseye por Ruy		</title>
		<link>https://blog.remontti.com.br/6975#comment-135425</link>

		<dc:creator><![CDATA[Ruy]]></dc:creator>
		<pubDate>Sun, 22 Mar 2026 23:48:08 +0000</pubDate>
		<guid isPermaLink="false">https://blog.remontti.com.br/?p=6975#comment-135425</guid>

					<description><![CDATA[no ubuntu 24 troque MD5(&#039;SUA_SENHA&#039;) por ENCRYPT(&#039;SUA_SENHA&#039;).
para adicionar o usuario FTP no mariaDB]]></description>
			<content:encoded><![CDATA[<p>no ubuntu 24 troque MD5(&#8216;SUA_SENHA&#8217;) por ENCRYPT(&#8216;SUA_SENHA&#8217;).<br />
para adicionar o usuario FTP no mariaDB</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comentário sobre Como é meu desktop de trabalho com Ubuntu Gnome 42? Desapegue desse seu Windows :-) por Luiz		</title>
		<link>https://blog.remontti.com.br/6853#comment-135349</link>

		<dc:creator><![CDATA[Luiz]]></dc:creator>
		<pubDate>Tue, 17 Mar 2026 19:13:55 +0000</pubDate>
		<guid isPermaLink="false">https://blog.remontti.com.br/?p=6853#comment-135349</guid>

					<description><![CDATA[Em resposta a &lt;a href=&quot;https://blog.remontti.com.br/6853#comment-117430&quot;&gt;Marcos VInicius&lt;/a&gt;.

Marcos, consegui instalar o SimNext usando o PlayOnLinux]]></description>
			<content:encoded><![CDATA[<p>Em resposta a <a href="https://blog.remontti.com.br/6853#comment-117430">Marcos VInicius</a>.</p>
<p>Marcos, consegui instalar o SimNext usando o PlayOnLinux</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comentário sobre Instalação do Debian 13 Trixie limpa passo-a-passo (netinst) por Rudimar Remontti		</title>
		<link>https://blog.remontti.com.br/8267#comment-135270</link>

		<dc:creator><![CDATA[Rudimar Remontti]]></dc:creator>
		<pubDate>Thu, 12 Mar 2026 13:16:25 +0000</pubDate>
		<guid isPermaLink="false">https://blog.remontti.com.br/?p=8267#comment-135270</guid>

					<description><![CDATA[Em resposta a &lt;a href=&quot;https://blog.remontti.com.br/8267#comment-134413&quot;&gt;Emanoel Rodrigues&lt;/a&gt;.

<img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2764.png" alt="❤" class="wp-smiley" style="height: 1em; max-height: 1em;" />]]></description>
			<content:encoded><![CDATA[<p>Em resposta a <a href="https://blog.remontti.com.br/8267#comment-134413">Emanoel Rodrigues</a>.</p>
<p>❤️</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comentário sobre Sistema de software de vigilância por vídeo de código aberto: ZoneMinder por Rudimar Remontti		</title>
		<link>https://blog.remontti.com.br/6786#comment-135269</link>

		<dc:creator><![CDATA[Rudimar Remontti]]></dc:creator>
		<pubDate>Thu, 12 Mar 2026 13:15:49 +0000</pubDate>
		<guid isPermaLink="false">https://blog.remontti.com.br/?p=6786#comment-135269</guid>

					<description><![CDATA[Em resposta a &lt;a href=&quot;https://blog.remontti.com.br/6786#comment-134782&quot;&gt;Evandro Souza&lt;/a&gt;.

Não faço.]]></description>
			<content:encoded><![CDATA[<p>Em resposta a <a href="https://blog.remontti.com.br/6786#comment-134782">Evandro Souza</a>.</p>
<p>Não faço.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comentário sobre Sistema de software de vigilância por vídeo de código aberto: ZoneMinder por Rudimar Remontti		</title>
		<link>https://blog.remontti.com.br/6786#comment-135268</link>

		<dc:creator><![CDATA[Rudimar Remontti]]></dc:creator>
		<pubDate>Thu, 12 Mar 2026 13:15:33 +0000</pubDate>
		<guid isPermaLink="false">https://blog.remontti.com.br/?p=6786#comment-135268</guid>

					<description><![CDATA[Em resposta a &lt;a href=&quot;https://blog.remontti.com.br/6786#comment-134783&quot;&gt;EVANDRO LOURENCO NASCIMENTO DE SOUZA&lt;/a&gt;.

Não]]></description>
			<content:encoded><![CDATA[<p>Em resposta a <a href="https://blog.remontti.com.br/6786#comment-134783">EVANDRO LOURENCO NASCIMENTO DE SOUZA</a>.</p>
<p>Não</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comentário sobre Instalação do Debian 13 Trixie limpa passo-a-passo (netinst) por Configurando interface de rede no Debian 10/11/12/13 - Remontti		</title>
		<link>https://blog.remontti.com.br/8267#comment-135267</link>

		<dc:creator><![CDATA[Configurando interface de rede no Debian 10/11/12/13 - Remontti]]></dc:creator>
		<pubDate>Thu, 12 Mar 2026 13:13:39 +0000</pubDate>
		<guid isPermaLink="false">https://blog.remontti.com.br/?p=8267#comment-135267</guid>

					<description><![CDATA[[&#8230;] Instalação do Debian 13 Trixie &#8211; Instalação do Debian 12 Bookworm &#8211; Instalação do Debian 11 Bullseye &#8211; [&#8230;]]]></description>
			<content:encoded><![CDATA[<p>[&#8230;] Instalação do Debian 13 Trixie &#8211; Instalação do Debian 12 Bookworm &#8211; Instalação do Debian 11 Bullseye &#8211; [&#8230;]</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comentário sobre Instalação do SpeedTest/OoklaServer + Speedtest Custom no Debian 10 Buster por Gilvan		</title>
		<link>https://blog.remontti.com.br/3218#comment-135214</link>

		<dc:creator><![CDATA[Gilvan]]></dc:creator>
		<pubDate>Mon, 09 Mar 2026 13:06:54 +0000</pubDate>
		<guid isPermaLink="false">https://blog.remontti.com.br/?p=3218#comment-135214</guid>

					<description><![CDATA[O SSL nao esta passando no teste nos dias de hoje, recomendo usar o do proprio OKLA
OoklaServer.ssl.useLetsEncrypt = true
OoklaServer.enableAutoUpdate = true]]></description>
			<content:encoded><![CDATA[<p>O SSL nao esta passando no teste nos dias de hoje, recomendo usar o do proprio OKLA<br />
OoklaServer.ssl.useLetsEncrypt = true<br />
OoklaServer.enableAutoUpdate = true</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comentário sobre Guia passo a passo: Instalando NFDUMP, NFSEN e NFSEN-NG para Análise de Fluxo de Rede no Debian 12 Bookworm por Luiz Paulo		</title>
		<link>https://blog.remontti.com.br/7610#comment-135138</link>

		<dc:creator><![CDATA[Luiz Paulo]]></dc:creator>
		<pubDate>Thu, 05 Mar 2026 16:08:08 +0000</pubDate>
		<guid isPermaLink="false">https://blog.remontti.com.br/?p=7610#comment-135138</guid>

					<description><![CDATA[Em resposta a &lt;a href=&quot;https://blog.remontti.com.br/7610#comment-124844&quot;&gt;Benjamim&lt;/a&gt;.

apt install composer -y

composer --version

chown -R www-data:www-data /var/www/html/nfsen-ng

php /var/www/html/nfsen-ng/backend/cli.php start

systemctl restart nfsen-ng
systemctl status nfsen-ng]]></description>
			<content:encoded><![CDATA[<p>Em resposta a <a href="https://blog.remontti.com.br/7610#comment-124844">Benjamim</a>.</p>
<p>apt install composer -y</p>
<p>composer &#8211;version</p>
<p>chown -R www-data:www-data /var/www/html/nfsen-ng</p>
<p>php /var/www/html/nfsen-ng/backend/cli.php start</p>
<p>systemctl restart nfsen-ng<br />
systemctl status nfsen-ng</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comentário sobre Como entregar IPv6+IPv4 no Mikrotik/RouterOS através de PPPoE/DHCPv6 PD e registrando os logs em um banco de dados por Anderson Carlos Mendes da Costa		</title>
		<link>https://blog.remontti.com.br/3931#comment-134987</link>

		<dc:creator><![CDATA[Anderson Carlos Mendes da Costa]]></dc:creator>
		<pubDate>Wed, 25 Feb 2026 20:35:10 +0000</pubDate>
		<guid isPermaLink="false">https://blog.remontti.com.br/?p=3931#comment-134987</guid>

					<description><![CDATA[Olá pessoal,
Alguém teria o script para a versão 7?
Pois na V7 da o seguinte erro:

(ppp:) failure: Fetch failed with status 403 (/tool/fetch; line 33)

A linha e essa:

/tool fetch url=&quot;$URLUP&quot; http-data=&quot;action=i&#038;token=$TOKEN&#038;user=$user&#038;mac=$callerId&#038;nas=$localAddr&#038;service=$calledId&#038;ipv4=$remoteAddr&#038;remoteipv6=$RemoteIPv6&#038;dhcpv6pd=$DHCPv6PD&quot; http-method=post]]></description>
			<content:encoded><![CDATA[<p>Olá pessoal,<br />
Alguém teria o script para a versão 7?<br />
Pois na V7 da o seguinte erro:</p>
<p>(ppp:) failure: Fetch failed with status 403 (/tool/fetch; line 33)</p>
<p>A linha e essa:</p>
<p>/tool fetch url=&#8221;$URLUP&#8221; http-data=&#8221;action=i&amp;token=$TOKEN&amp;user=$user&amp;mac=$callerId&amp;nas=$localAddr&amp;service=$calledId&amp;ipv4=$remoteAddr&amp;remoteipv6=$RemoteIPv6&amp;dhcpv6pd=$DHCPv6PD&#8221; http-method=post</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comentário sobre Automatizando o bloqueio de sites no Brasil pelo DNS usando a API da anablock.net.br (BIND9+RPZ) por Fábio		</title>
		<link>https://blog.remontti.com.br/7759#comment-134959</link>

		<dc:creator><![CDATA[Fábio]]></dc:creator>
		<pubDate>Tue, 24 Feb 2026 19:16:57 +0000</pubDate>
		<guid isPermaLink="false">https://blog.remontti.com.br/?p=7759#comment-134959</guid>

					<description><![CDATA[Rudimar ou alguém que consiga me responder...
AnaBlock configurado, corretamente no BIND, configurações de apontamento para o endereço bloqueionobrasil.meudominio.com.br configurado correto dentro do BIND, meu dominio principal hospedado na HostGator, criei o subdominio &quot;bloqueadonborasil.meudominio.com.br, coloquei os arquivos da página de bloqueio dentro do diretorio do subdominio, ao acessar o subdominio diretamente a página de bloqueio é exibida, mas quando tento acessar o site que está bloqueado, ele não abre o site conforme foi solicitado o bloqueio até aí tudo bem, mas ele não está mostrando a página que está no subdominio que foi criado.]]></description>
			<content:encoded><![CDATA[<p>Rudimar ou alguém que consiga me responder&#8230;<br />
AnaBlock configurado, corretamente no BIND, configurações de apontamento para o endereço bloqueionobrasil.meudominio.com.br configurado correto dentro do BIND, meu dominio principal hospedado na HostGator, criei o subdominio &#8220;bloqueadonborasil.meudominio.com.br, coloquei os arquivos da página de bloqueio dentro do diretorio do subdominio, ao acessar o subdominio diretamente a página de bloqueio é exibida, mas quando tento acessar o site que está bloqueado, ele não abre o site conforme foi solicitado o bloqueio até aí tudo bem, mas ele não está mostrando a página que está no subdominio que foi criado.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comentário sobre Como criar um servidor FTP (Pure-FTPd) com usuário no banco de dados MariaDB/MySQL com Debian 11 Bullseye por mario medeiros		</title>
		<link>https://blog.remontti.com.br/6975#comment-134938</link>

		<dc:creator><![CDATA[mario medeiros]]></dc:creator>
		<pubDate>Mon, 23 Feb 2026 04:19:10 +0000</pubDate>
		<guid isPermaLink="false">https://blog.remontti.com.br/?p=6975#comment-134938</guid>

					<description><![CDATA[Em resposta a &lt;a href=&quot;https://blog.remontti.com.br/6975#comment-125713&quot;&gt;Janio Felix&lt;/a&gt;.

# alterando a senha do usuário
# Entre no mariadb com seu usuário pureftpd e senha
mysql -u pureftpd -p 

USE pureftpd;
UPDATE ftpd SET Password=MD5(&#039;nova-senha&#039;) WHERE User=&#039;nomedousuario&#039;;
EXIT;]]></description>
			<content:encoded><![CDATA[<p>Em resposta a <a href="https://blog.remontti.com.br/6975#comment-125713">Janio Felix</a>.</p>
<p># alterando a senha do usuário<br />
# Entre no mariadb com seu usuário pureftpd e senha<br />
mysql -u pureftpd -p </p>
<p>USE pureftpd;<br />
UPDATE ftpd SET Password=MD5(&#8216;nova-senha&#8217;) WHERE User=&#8217;nomedousuario&#8217;;<br />
EXIT;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comentário sobre Criando backup do RouterOS/Mikrotik via FTP por mario medeiros		</title>
		<link>https://blog.remontti.com.br/3878#comment-134937</link>

		<dc:creator><![CDATA[mario medeiros]]></dc:creator>
		<pubDate>Mon, 23 Feb 2026 04:10:08 +0000</pubDate>
		<guid isPermaLink="false">https://blog.remontti.com.br/?p=3878#comment-134937</guid>

					<description><![CDATA[testado na v7.21 do mikrotik usando pure-FTP

:log warning &quot;***************************************&quot;
# Conexão FTP
:global host NOME-OU-IP
:global usuario USUARIO-FTP
:global senha SENHA-USUARIO-FTP
# Pega o nome do Router
:global identifica [/system identity get name ];
# Gera data no formato AAAA-MM-DD
:global data [/system clock get date];
:global meses (&quot;jan&quot;,&quot;feb&quot;,&quot;mar&quot;,&quot;apr&quot;,&quot;may&quot;,&quot;jun&quot;,&quot;jul&quot;,&quot;aug&quot;,&quot;sep&quot;,&quot;oct&quot;,&quot;nov&quot;,&quot;dec&quot;);
:global ano [:pick $data 0 4];
:global mes [:pick $data 5 7];
:global dia [:pick $data 8 10];
:local vmestxt ($meses-&#062;([:tonum $mes]-1));
:global mestxt $vmestxt;
:log info &quot;Gerando backup: $dia-$mestxt-$ano.$identifica.backup&quot;;
/system backup save name=&quot;$dia-$mestxt-$ano.$identifica&quot;;
:log info &quot;Gerando export: $dia-$mestxt-$ano.$identifica.rsc&quot;;
/export file=&quot;$dia-$mestxt-$ano.$identifica&quot; show-sensitive
:log info &quot;Processando...&quot;;
:delay 5s
:log info &quot;Conectando FTP Server...&quot;;
:log info &quot;Enviando Backup [$dia-$mestxt-$ano.$identifica.backup] ...&quot;;
/tool fetch address=$host src-path=&quot;$dia-$mestxt-$ano.$identifica.backup&quot; user=&quot;$usuario&quot; password=&quot;$senha&quot; port=21 upload=yes mode=ftp dst-path=&quot;$diretorio/$dia-$mestxt-$ano.$identifica.backup&quot;
:log info &quot;Enviando Export [$dia-$mestxt-$ano.$identifica.rsc] ...&quot;;
/tool fetch address=$host src-path=&quot;$dia-$mestxt-$ano.$identifica.rsc&quot; user=&quot;$usuario&quot; password=&quot;$senha&quot; port=21 upload=yes mode=ftp dst-path=&quot;$diretorio/$dia-$mestxt-$ano.$identifica.rsc&quot;
:delay 1
:log info &quot;Backup enviado com sucesso...&quot;;
:log info &quot;Removendo arquivos...&quot;;
 /file remove &quot;$dia-$mestxt-$ano.$identifica.backup&quot;
 /file remove &quot;$dia-$mestxt-$ano.$identifica.rsc&quot;
:log info &quot;Rotina de backup finalizada...&quot;;
:log warning &quot;***************************************&quot;;]]></description>
			<content:encoded><![CDATA[<p>testado na v7.21 do mikrotik usando pure-FTP</p>
<p>:log warning &#8220;***************************************&#8221;<br />
# Conexão FTP<br />
:global host NOME-OU-IP<br />
:global usuario USUARIO-FTP<br />
:global senha SENHA-USUARIO-FTP<br />
# Pega o nome do Router<br />
:global identifica [/system identity get name ];<br />
# Gera data no formato AAAA-MM-DD<br />
:global data [/system clock get date];<br />
:global meses (&#8220;jan&#8221;,&#8221;feb&#8221;,&#8221;mar&#8221;,&#8221;apr&#8221;,&#8221;may&#8221;,&#8221;jun&#8221;,&#8221;jul&#8221;,&#8221;aug&#8221;,&#8221;sep&#8221;,&#8221;oct&#8221;,&#8221;nov&#8221;,&#8221;dec&#8221;);<br />
:global ano [:pick $data 0 4];<br />
:global mes [:pick $data 5 7];<br />
:global dia [:pick $data 8 10];<br />
:local vmestxt ($meses-&gt;([:tonum $mes]-1));<br />
:global mestxt $vmestxt;<br />
:log info &#8220;Gerando backup: $dia-$mestxt-$ano.$identifica.backup&#8221;;<br />
/system backup save name=&#8221;$dia-$mestxt-$ano.$identifica&#8221;;<br />
:log info &#8220;Gerando export: $dia-$mestxt-$ano.$identifica.rsc&#8221;;<br />
/export file=&#8221;$dia-$mestxt-$ano.$identifica&#8221; show-sensitive<br />
:log info &#8220;Processando&#8230;&#8221;;<br />
:delay 5s<br />
:log info &#8220;Conectando FTP Server&#8230;&#8221;;<br />
:log info &#8220;Enviando Backup [$dia-$mestxt-$ano.$identifica.backup] &#8230;&#8221;;<br />
/tool fetch address=$host src-path=&#8221;$dia-$mestxt-$ano.$identifica.backup&#8221; user=&#8221;$usuario&#8221; password=&#8221;$senha&#8221; port=21 upload=yes mode=ftp dst-path=&#8221;$diretorio/$dia-$mestxt-$ano.$identifica.backup&#8221;<br />
:log info &#8220;Enviando Export [$dia-$mestxt-$ano.$identifica.rsc] &#8230;&#8221;;<br />
/tool fetch address=$host src-path=&#8221;$dia-$mestxt-$ano.$identifica.rsc&#8221; user=&#8221;$usuario&#8221; password=&#8221;$senha&#8221; port=21 upload=yes mode=ftp dst-path=&#8221;$diretorio/$dia-$mestxt-$ano.$identifica.rsc&#8221;<br />
:delay 1<br />
:log info &#8220;Backup enviado com sucesso&#8230;&#8221;;<br />
:log info &#8220;Removendo arquivos&#8230;&#8221;;<br />
 /file remove &#8220;$dia-$mestxt-$ano.$identifica.backup&#8221;<br />
 /file remove &#8220;$dia-$mestxt-$ano.$identifica.rsc&#8221;<br />
:log info &#8220;Rotina de backup finalizada&#8230;&#8221;;<br />
:log warning &#8220;***************************************&#8221;;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comentário sobre Sistema de software de vigilância por vídeo de código aberto: ZoneMinder por EVANDRO LOURENCO NASCIMENTO DE SOUZA		</title>
		<link>https://blog.remontti.com.br/6786#comment-134783</link>

		<dc:creator><![CDATA[EVANDRO LOURENCO NASCIMENTO DE SOUZA]]></dc:creator>
		<pubDate>Sat, 14 Feb 2026 18:27:46 +0000</pubDate>
		<guid isPermaLink="false">https://blog.remontti.com.br/?p=6786#comment-134783</guid>

					<description><![CDATA[Em resposta a &lt;a href=&quot;https://blog.remontti.com.br/6786#comment-116387&quot;&gt;Rodrigo Steinhorst&lt;/a&gt;.

Faz um free-lance nesse assunto??]]></description>
			<content:encoded><![CDATA[<p>Em resposta a <a href="https://blog.remontti.com.br/6786#comment-116387">Rodrigo Steinhorst</a>.</p>
<p>Faz um free-lance nesse assunto??</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comentário sobre Sistema de software de vigilância por vídeo de código aberto: ZoneMinder por Evandro Souza		</title>
		<link>https://blog.remontti.com.br/6786#comment-134782</link>

		<dc:creator><![CDATA[Evandro Souza]]></dc:creator>
		<pubDate>Sat, 14 Feb 2026 18:26:41 +0000</pubDate>
		<guid isPermaLink="false">https://blog.remontti.com.br/?p=6786#comment-134782</guid>

					<description><![CDATA[Quem consegue fazer um free-lancer nesse sistema de cameras?]]></description>
			<content:encoded><![CDATA[<p>Quem consegue fazer um free-lancer nesse sistema de cameras?</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
