By ldsandon, 3 February, 2021

DrayTek routers have some advanced configuration capabilities, but their web UI is not one of the best ones around. Especially, it doesn't display many useful data about xDSL connections which are actually available, but only accessible via telnet/sshStangely DrayTek allows ssh connection only from the same subnet, while telnet connections are not limited. It should have been the other way round. Thereby, only telnet connection are supported.. Moreover they are displayed in a text format only, which makes some of them not very useful.

By ldsandon, 8 January, 2021

It looks the DrayTek Vigor 165 xDSL modem/router supports some QoS features, despite the fact the datasheet does not mention them. They are available from the CLI, and partially in the web UI via a bug in the firewall filter setup page.

By ldsandon, 10 October, 2020

Disabling the dnscache service in Windows 10 looks to bring a series of issues. I found out when I upgraded a machine from Windows 7 to Windows 10. That machine had the service disabled because it was used in a test environment where often DNS entries changed, and the default cache settings of Windows 7 were a nuisance (1 day for resolved entries, 15 minutes for non existent entries).

By ldsandon, 2 September, 2020

Mi è capitato di dover configurare recentemente un ATA Cisco SPA 112 (uscito di produzione pochi mesi fa) per funzionare con il VoIP di WindTre. Poiché WindTre è molto parca di informazioni quando si chiedono le configurazioni VoIP per utilizzare un modem non WindTre, riporto la configurazione fatta che è funzionante, dovrebbe essere applicabile anche ai più rencenti Cisco ATA 191 e 192, e può essere utile anche per chi deve configurare ATA diversi.

By ldsandon, 1 July, 2020

In queste settimane spesso si sente parlare di rete in fibra ottica, TIM, OpenFiber, piano BUL e della necessità di una "rete unica" - ovviamente nelle mani di TIM. Cerchiamo di fare un po' di chiarezza, perché siamo entrati in un'era dove la politica e i media non sembrano avere (o non vogliono avere) una chiara idea delle tecnologie e delle sfide per il futuro dell'Italia  in gioco, e pertanto dell'impatto di certe decisioni.

By ldsandon, 14 December, 2018

OpenFiber ha annunciato a inizio novembre l'inizio della sperimentazione per la fornitura dei servizi su fibra.  Si potrebbe pensare "Finalmente!". Ma alcuni dettagli gettano più ombre che luce sulla situazione della copertura in fibra. Prendiamo ad esempio Fino Mornasco, comune a pochi chilometri da Como. È uno dei comuni pilota già scelti per la fase 0. In realtà avrebbe dovuto essere già cablato a giugno 2018. Nulla di preoccupante un ritardo di pochi mesi. Oppure no?

By ldsandon, 27 October, 2017

Adobe realesed, among other products, the new relase of Lightroom. Actually it released two, a cloud based one which took the name of Lightroom CC, and what shoudl have been Lightroom 7, which is now renamed Lightroom Classic (actually, the full product name would be Photoshop Lightroom CC Classic - software names are becoming more and more stupid - just look at Windows 10).

By ldsandon, 20 June, 2017

Over and over, people ask the case .. of statement to be expanded to allow strings, i.e.

case S of
  'String one': DoSomething;
  'String two': DoSomethingElse;
end;

Looks nice, doesn't it? Sure, but the devil is in the details. Strings are complex data types, and comparing strings is not a straightforward tasks. If you use just a single, simple encoding, and a simple language like English, a comparison may be as simple as comparing bytes. But there are different encodings, and there are many different languages.