Posts

Xiaomi wifi router WAN remote management

1st>Common settings>Local area network settings> Regional network IP address Change,  192.168.31.1 To 192.168.0.254 2nd>Advanced settings>Connection port forwarding>List of port forwarding rules:>Add Rules Name: Remote protocol: TCP External connection port: 8080 Internal IP address: 254 Internal connection port: 80 Save & Active

V SOL OLT NTP Server

NTP Server Address 182.16.156.5 103.174.50.128

Lock Your Folders In Windows Lock & Unlock

 @ECHO OFF if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK if NOT EXIST Private goto MDPrivate :CONFIRM echo Are you sure to lock this folder? (Y/N) set/p "cho=>" if %cho%==Y goto LOCK if %cho%==y goto LOCK if %cho%==n goto END if %cho%==N goto END echo Invalid choice. goto CONFIRM :LOCK ren Private "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" echo Folder locked goto End :UNLOCK echo Enter password to Unlock Your Secure Folder set/p "pass=>" if NOT %pass%== YOUR-PASSWORD goto FAIL attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Private echo Folder Unlocked successfully goto End :FAIL echo Invalid password goto end :MDPrivate md Private echo Private created successfully goto End :End Lock & Unlock

BDCOM Switch OLT NTP Server

time-zone tz 6 0  ntp server 183.177.72.201   ntp server 182.16.156.246  ntp server 216.239.35.4

BDCOM Switch switchport rate-limit

For  Switch  port Switch #config Switch_config#interface g ig 0/2 Switch_config_g0/1#switchport rate-limit ?   <1-16383>   -- Configure Bandwidth(unit:64kbps)   bandwidth  -- Configure Bandwidth(unit:1% of physical bandwidth) Switch_config_g0/2#switchport rate-limit  1600   ingress  -- Config port rate-limit ingress incoming traffic   egress   -- Config port rate-limit egress outgoing traffic Switch_config_g0/2#switchport rate-limit 1600 ingress Switch_config_g0/2#switchport rate-limit 1600 egress NB:  Here,  1 meaning 64Kbps, 2 meaning 128Kbps, 10 meaning 640Kbps and 1600 meaning (1600 x 64) = 102,400Kbps which is 100Mbps  switchport rate-limit (1024*Mbps/64=??) ingress switchport rate-limit (1024*Mbps/64=??) egress

MikroTik Router OS

Image
Main Package Only 👉  MikroTik Router OS v6  👈 👉  MikroTik Router OS v7  👈 Download mikrotik routeros

Automatically Send Router Backup Over Email in Mikrotik Router

 /tool e-mail set address=74.125.130.108 from=wcl.mawna@gmail.com password="woca jooa rcec sapl" port=587 start-tls=yes user=wcl.mawna@gmail.com /system scheduler add interval=1w3d name=Email-Backup on-event="/export file=export\r\     \n/tool e-mail send to=\"wcl.mawna@gmail.com\" subject=\"\$[/system identity get name] export\" \\\r\     \nbody=\" configuration file \$[/system clock get date]\" file=export.rsc"  add interval=1w3d name="Send to Mail" on-event="/tool e-mail send to=\"wcl.mawna@gmail.com\" subject=\"Bipu_Sreepur\" body=\"Backup Created On \$[/system clock get date]\" file=\"Bipu_Sreepur\" start-tls=yes" /system script add dont-require-permissions=no name=Backup policy=ftp,reboot,read,write,policy,test,password,sniff,sensitive,romon source=Email-Backup