Avançar para o conteúdo principal

TFTP verbose logging

Enable TFTP verbose logging

When troubleshooting, it is helpful to be able to see more detailed logging. Turning verbose logging on will show when a phone requests a file, allowing you to know the phone at least has working networking by that point.
  • Edit the tftp configuration file
vi /etc/xinetd.d/tftp
  • Add the "–verbose" startup option
## Customization: add the "--verbose" command-line option to see when TFTP files are  requested by clients to aid in troubleshooting
       #server_args             = -s /tftpboot
        server_args             = -s /tftpboot --verbose

  • Restart xinitd
service xinetd restart

Comentários

Mensagens populares deste blogue

Configurar uma firewall usando IP Tables no Ubuntu 14.04

Sobre IP Tables  De forma a tornar um servidor mais seguro após a sua configuração inicial, o Ubuntu disponibiliza o Iptables como firewall padrão desta distribuição. No início a firewall no Ubuntu está configurada para permitir todo o tráfego de entrada e saída num servidor. Para obtermos uma proteção mais forte no servidor teremos que acrescentar algumas regras básicas ao IP Tables. As regras da IP table têm origem numa serie de opções que podem ser combinadas de forma a criar um processamento específico. Cada pacote que atravessa a firewall é verificado ordenadamente por cada regra. Logo que haja uma correspondência com uma regra é executada a ação associada a essa regra, caso contrario é verificada a regra seguinte. Comandos IP Tables -A, --append [chain rule-specification]               Adicionar uma ou mais regras ao final cadeia escolhida; -L, --list [chain]      ...

Shelly

Change Shelly MQTT update period Shelly devices are very active on MQTT: they send an update of their status by default every 30 seconds, even when the status didn’t change. Use the following HTTP command to change the update period:                                                                                                                              http://x.x.x.x/settings?mqtt_update_period=300                                                        ...
Montar partilha remota do windows 10 no Linux mount.cifs //172.20.35.15/E/GDrivePhotos /media/GDrive -o vers=3.0,username=meu_user,password=**********