Posts

Showing posts from November, 2023

Firefox - ERR_SSL_VERSION_OR_CIPHER_MISMATCH

Image
ERR_SSL_VERSION_OR_CIPHER_MISMATCH about:config => security.tls.version.enable-deprecated = true

Hyper-V - WARNING: neither Intel VT-x or AMD-v found

Image
  WARNING: neither Intel VT-x or AMD-v found (EVE-NG) Set-VMProcessor -VMName "eve-ng" -ExposeVirtualizationExtensions $True

Windows Hyper-V NAT Mode

Image
  Step 1: Creating Internal NAT Virtual Switch: To create NAT switch, we need to run the below command on Windows Administrator PowerShell and check the status. PS C:\> New-VMSwitch -Name NATSWITCH -SwitchType Internal After running the command you will get the display shown below. Run the Get-NetAdapter command to get the ifindex (connected interface) and Virtual Switch details. Step 2: Run the below command to configure NAT Gateway IP. PS C:\> New-NetIPAddress –IPAddress 192.168.103.185 -PrefixLength 24 -InterfaceIndex 14 For above command: NAT Switch IP Address is: 192.168.103.185(NAT GATEWAY IP) Prefix Length: 24 (Subnet mask) Interface Index: 14 Connected interfaces (See above screenshot for interfaces) After running this command and it displays the required brief details, refer below screenshot. Step3: Now run the below command in order to configure NAT Network. To assign NAT IP segment(192.168.103.0/24), we have to use Host Machine VMs. PS C:\> New-NetNat -Name NATS...

Mikrotik v.7 Using cell lock on LHG LTE18

Image
  There  is  a way to do a cell lock on EG18-EA modem, it worked for me on LHG LTE18 kit. All information below is taken from  this thread on the Quectel forum . You will need to figure out PHY-CELLID (ID of the cell itself) and EARFCN (frequency that will be locked as primary band). You can get a list of cells around you and corresponding frequencies using cell monitor via web UI or console with: Code:  Select all interface / lte / cell - monitor lte1 You will get something like this: Code:  Select all PHY - CELLID BAND EARFCN RSRP RSRQ RSSI AGE 247 B7 2850 - 99dBm - 9dB - 68dBm 1s 99 B7 2850 - 104dBm - 15dB - 79dBm 1s 258 B7 2850 - 107dBm - 16dB - 83dBm 1s 69 B7 2850 - 111dBm - 20dB - 79dBm 1s 362 B7 2850 - 115dBm - 20dB - 85dBm 1s Next, use the following command to  set a cell lock : Code:  Select all interface /...