How to use Mikrotik SSTP server with windows 7 and above
First of all you need to create cerficates: CA (Certification authority) and Server
You can use openssl or create certificate right in mikrotik (http://wiki.mikrotik.com/wiki/Manual:Create_Certificates)
In this case we generate certificates in Mikrotik RouterOS 6
Make certificate templates
/certificate add name=ca-template common-name=CA key-usage=key-cert-sign,crl-sign add name=server-template common-name=server
Sign certificates and add CRL url. We will use IP address of the server as CRL URL.
/certificate sign ca-template name=CA ca-crl-host=IP_ADDRESS sign server-template ca=CA name=server
If certificate does not have T flag then you need to set it as trusted before using it:
/certificate set CA trusted=yes set server trusted=yes
Export client certificates with keys and CA certificate:
/certificate export-certificate CA
After this command see your certificate in Files with name cert_export_CA.crt
Install cert_export_CA.crt in Windows certmgr.msc in Trusted Root Certificates for local computer https://technet.microsoft.com/en-us/library/cc754841(v=ws.11).aspx
Setup Mikrotik SSTP server
/interface sstp-server server
set authentication=mschap2 certificate=server default-profile=default-encryption enabled=yes force-aes=yes max-mru=1400 max-mtu=1400 mrru=1500 pfs=yes
Original https://kb.vmware.com/s/article/2042141 Backing up ESXi host configuration data To synchronize the configuration changed with persistent…
vCenter Converter Standalone 6.6.0 download (далее…)
VMware remote console (VMRC) 12.0.5 download Last version: VMware Remote Console 12.0.5 28 NOV 2023…
SELECT col_sizes.TABLE_SCHEMA, col_sizes.TABLE_NAME, SUM(col_sizes.col_size) AS EST_MAX_ROW_SIZE FROM ( SELECT cols.TABLE_SCHEMA, cols.TABLE_NAME, cols.COLUMN_NAME, CASE cols.DATA_TYPE WHEN…
UPDATE DB SET column = DATE(STR_TO_DATE(column, '%Y-%d-%m')) WHERE DATE(STR_TO_DATE(column, '%d-%m-%Y')) <> '0000-00-00'
echo 1 > /sys/class/block/sda/device/rescan #maybe run under root> sudo fdisk /dev/sda2 > d > 2…