Search found 190 matches

by daniele
13 Jun 2023, 16:01
Forum: Argomenti vari
Topic: Openvpn on pfSense: tunnel site to site ridondante (server e client)
Replies: 0
Views: 3177

Openvpn on pfSense: tunnel site to site ridondante (server e client)

La ridondanza più tipica è quella tra un server con WAN multiple e un client con una sola WAN. E' anche fattibile lo scenario di un client con WAN multiple: qui però non approfondiremo. 1) Creare sul server un Gateway Group (NOTA BENE: Gateway groups for this purpose must be failover only (one gatew...
by daniele
13 Jun 2023, 15:29
Forum: Argomenti vari
Topic: Openvpn on pfSense Routing Internet Traffic Through A Site-To-Site OpenVPN Tunnel
Replies: 0
Views: 2361

Openvpn on pfSense Routing Internet Traffic Through A Site-To-Site OpenVPN Tunnel

CONCETTI/PASSAGGI CHIAVE : 1) Capire il tipo di tunnel in questione: Client-Server? oppure Server-Server? Peer to peer o remote access? Qui si parla di site-to-site, quindi peer to peer REF: OpenVPN Site-to-Site Configuration Example with SSL/TLS N.B. Shared key mode has been deprecated by OpenVPN ...
by daniele
31 May 2023, 18:01
Forum: Argomenti vari
Topic: Disattivare possibilità di eseguire OUTLOOK (o altro programma) in Windows
Replies: 0
Views: 2553

Disattivare possibilità di eseguire OUTLOOK (o altro programma) in Windows

Riferimenti: 1) https://social.technet.microsoft.com/Forums/en-US/877f1682-f0b4-46c4-bc69-d7590f315d22/how-to-prevent-a-user-from-running-outlook?forum=winserverDS 2) https://learn.microsoft.com/en-us/previous-versions/technet-magazine/cc510322(v=msdn.10)?redirectedfrom=MSDN 1) Eseguire come Adminis...
by daniele
29 May 2023, 19:29
Forum: Argomenti vari
Topic: How to Shrink an LVM Volume on Linux
Replies: 0
Views: 2581

How to Shrink an LVM Volume on Linux

Articolo originale: https://www.casesup.com/category/knowledgebase/howtos/how-to-shrink-an-lvm-volume-safely-on-linux Which command we will use; - resize2fs - lvreduce -vgchange -vgdisplay -lvdisplay 1) Fare uno snapshot della VM. Se è una macchina fisica fare un backup. Se non ti fidi del meccanism...
by daniele
13 May 2023, 09:39
Forum: Argomenti vari
Topic: Aggiornamento server Zabbix:You do not have the SUPER privilege on Zabbix
Replies: 0
Views: 2420

Aggiornamento server Zabbix:You do not have the SUPER privilege on Zabbix

Quando si aggiorna server o un proxy Zabbix occorre anche aggiornare il database. VIsionando il log /var/log/zabbix/zabbix_server.log oppure zabbix_proxy.log si può rilevare questo errore: [Z3005] query failed: [1419] You do not have the SUPER privilege and binary logging is enabled (you *might* wan...
by daniele
11 May 2023, 11:29
Forum: Argomenti vari
Topic: Servizio RDMS (Servizio di gestione Desktop remoto) non si avvia
Replies: 0
Views: 1970

Servizio RDMS (Servizio di gestione Desktop remoto) non si avvia

Può essere dovuto a mancate permissions di accesso al certificato SSL assegnato al server RD Session Host In tal caso si troveranno i seguenti eventi di errore: 1) Nome registro: Remote-Desktop-Management-Service/Admin Origine: Microsoft-Windows-Remote-Desktop-Management-Service Data: 11/05/2023 10:...
by daniele
08 May 2023, 09:27
Forum: Argomenti vari
Topic: Chrome: Bypass NET::ERR_CERT_INVALID for development
Replies: 0
Views: 1847

Chrome: Bypass NET::ERR_CERT_INVALID for development

I browser basati su Chromium (es. Chrome o Brave) potrebbero restituire l'errore NET::ERR_CERT_INVALID ad esempio accedendo ad un dispositivo con certificato SSL autofirmato (un Nas, un firewall, un access point etc etc): se la maschera di errore non presenta l'opzione per procedere lo stesso, c'è u...
by daniele
28 Apr 2023, 10:25
Forum: Argomenti vari
Topic: How to Stop an Unresponsive Hyper-V Virtual Machine
Replies: 0
Views: 1719

How to Stop an Unresponsive Hyper-V Virtual Machine

Look at this article for reference: https://petri.com/how-to-stop-an-unresponsive-hyper-v-virtual-machine/ METHOD 1 - Kill just that VM which isn't responding Using Powershell: 1) Get VM name Get-VM 2) Find VM GUID $VmGUID = (Get-VM 'Windows 11').id 3) Find the process ID for the VM $VMWMProc = (Get...
by daniele
11 Apr 2023, 17:57
Forum: Argomenti vari
Topic: How to Run Batch Files silently in background on Windows 11/10
Replies: 0
Views: 1909

How to Run Batch Files silently in background on Windows 11/10

Code: Select all

START /MIN CMD.EXE /C mysecondbatchfile.bat
or

Code: Select all

START /MIN CMD.EXE /C someexecutable.exe