Arquivo mensal 29 de janeiro de 2021

porplague70

script reboot se houver falha na rede.

crontab

*/5 * * * * /usr/bin/reset_net.sh

vi /usr/bin/reset_net.sh

!/bin/bash

HOSTS=”8.8.8.8″

COUNT=10

for myHost in $HOSTS
do
count=$(ping -c $COUNT $myHost | grep ‘received’ | awk -F’,’ ‘{ print $2 }’ | awk ‘{ print $1 }’)
if [ $count -eq 0 ]; then
# 100% failed
echo “Host : $myHost is down (ping failed) at $(date)” >> /var/log/log_controle_net.log
systemctl reboot -i;
else
echo “tudo ok $(date)” >> /var/log/log_controle_net.log
fi
done

porplague70

Solução para placas de rede Realtek (RTL8111/8168/8411) que não conectam

Segue mais uma dica para aqueles que estão perdendo a cabeça ao tentar fazer as placas RTL8111/8168/8411 funcionarem no Ubuntu e seus derivados como o Linuxmint.

Este tutorial foi testado nas placas com chip RTL8111/8168/8411, nos sistemas Kubuntu e Xubuntu 18.04LTS e Linux Mint 19.03.

Pode ser que funcione com outras placas da Realtek, teste e diga o resultado.

Faça o procedimento abaixo por sua conta e risco, afinal se você já tentou de tudo creio que nada tem a perder. Comigo funcionou perfeitamente.

Antes de tudo você precisa estar conectado a internet (não me xingue) use a opção de ancoragem do seu celular conetado ao USB do seu PC, ou algum Wirelles USB.

*7 passos.

1- sudo apt-get install linux-headers-generic build-essential dkms

2- wget http://ftp.us.debian.org/debian/pool/non-free/r/r8168/r8168-dkms_8.047.05-1_all.deb

3- sudo dpkg -i r8168*.deb

4- echo “blacklist r8169” | sudo tee -a /etc/modprobe.d/blacklist-r8169.conf

5- sudo modprobe -rfv r8169

6- sudo modprobe -v r8168

7- sudo service network-manager restart

Perfeito, agora é curtir o seu pc e partir para o abraço!

porplague70

ASKEY – RTA9227W Desbloqueando configurações avançadas

ASKEY – RTA9227W Desbloqueando configurações avançadas

Desbloqueando configurações avançadas modem/Roteador ASKEY  RTA9227W

    Logar em http://192.168.15.1/padrao

    Usuário: support
    Senha: (ver etiqueta embaixo do aparelho – mesma de admin)

    Acessar http://192.168.15.1/saveconf.htm

    Salve o arquivo de configuração. Abra no editor de texto.

    Altere as seguintes linhas:

De:
<V N="ENABLE_ADVANCE_PAGE" V="0x0"/>
Para:
<V N="ENABLE_ADVANCE_PAGE" V="0x1"/>

De:
<V N="PADRAO_WIFI_ONLY" V="0x1"/>
Para:
<V N="PADRAO_WIFI_ONLY" V="0x0"/>

    Salve o arquivo e faça o upload.

    Acesse novamente http://192.168.15.1/padrao

    As configurações devem estar desbloqueadas.

porplague70

How to: Fix pfSense package update stuck at “Writing configuration… done.”

Temporary solution/workaround

1 Login to pfSense terminal or via SSH

2 Select 8 (Shell), press Enter key to bring up shell if via SSH

3 Execute following command to kill the package installation process

killall -9 pkg-static

Note: Usually, after this command, we can see the update is done (Not guaranteed)

Note: Usually it’s probably better to reinstall the pfSense system if you have encountered this problem, otherwise chances are, you will encounter the same problem next time when updating/installing/uninstalling the same package.


Other related fixes (May or may not help to fix this issue)

(Best way to fix this issue: Wait for the next or next next release which will fix this issue, developers are aware of it)

If we want to fix this issue for future updates, we can try following command

Warning: Make sure only execute following upgrade command when down time is allowed (Just in case)

killall -9 pkg-static
pkg-static upgrade -f

If we want to fix corrupted pfSense upgrade (update check failed, update does not complete), we can execute following command

pkg install -y pfSense-upgrade