Archives :

  • Cisco Nexus FEX and Fabric Path

    —Default username and password 7K titanium admin admin —–Fex Fex uplink on 2x Nexus 5K. must apply to both interface Po101 description UPLINK FEX-01 vpc 101 switchport mode fex-fabric fex associate 101 no shut interface Ethernet1/1 description UPLINK FEX-01 switchport mode fex-fabric fex associate 101 channel-group 101 no shut interface Ethernet1/9 description UPLINK FEX-01 switchport […]

    READ MORE
  • Packet Capture Netstat

    netstat tail -f “UDP” Port 161 netstat -ano 2 | find “161” netstat tail -f TCP IP Address 8.8.8.8 netstat -ano 1 | findstr 8.8.8.8 netstat tail -f TCP IP Address 8.8.8.8 netstat -ano 1 | find “8.8.8.8”

    READ MORE
  • Polycom Trio 8800

    —Default password WEB+Advanced username: admin password 456 ——-Format the device and place a new configuration Download the latest firmware and extract to a FAT32 USB Add the cfg files to /config folder 1Ensure that the phone is powered off. 2Plug in a USB device. 3Power up the phone. 4When the Polycom logo displays, press and […]

    READ MORE
  • Powershell Configuration

    —-Connect to the Domain Connect to domain over powershell Rename-Computer -NewName “Server044” -DomainCredential Domain01\Admin01 -Restart ——Set an IP Address in powershell (CORE) Get-newIPaddress New-NetIPaddress -InterfaceIndex 12 -IPAddress 192.0.2.2 -PrefixLength 24 -DefaultGateway 192.0.2.1 — Check if a TCP Port is open on a remote machine tnc cloud2web.com.au -port 443 —-Check every interval if a port is […]

    READ MORE
  • vbs script process kill explorer

    —–Script——— Option Explicit Dim objWMIService, objProcess, colProcess Dim strComputer, strProcessKill strComputer = “.” strProcessKill = “‘explorer.exe’” Set objWMIService = GetObject(“winmgmts:” _ & “{impersonationLevel=impersonate}!\\” _ & strComputer & “\root\cimv2”) Set colProcess = objWMIService.ExecQuery _ (“Select * from Win32_Process Where Name = ” & strProcessKill ) For Each objProcess in colProcess objProcess.Terminate() Next WScript.Quit

    READ MORE
  • Creating a Proxy pac proxy.pac file

    ———-Chrome Settings //Reload the proxy.pac file in chrome chrome://net-internals/#proxy Force PAC Update Key: HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\CurrentVersion\Internet Settings Value: EnableAutoproxyResultCache (REG_DWORD) 1 (default) = enable caching and 0 = disable caching —-Sample Proxy.pac file function FindProxyForURL(url, host){     //Define local subnets which should bypass the proxy and route directly using the isInNet expression     if (isInNet(host, […]

    READ MORE
  • QNAP Configuration

    —-Turn swap memory file on or off swapoff -a swapon -a —Enable NFSv3 on ESX vCenter

    READ MORE
  • Ruckus Wireless Bridge – Default IP and Password

    Default IP Root           192.168.2.1 Default IP non-Root    192.168.2.254 Default password username : super password : sp-admin

    READ MORE
  • Visual Studio Charts

    you should use the “Manage NuGet Packages” command from PROJECT menu, and install the “WinForms.DataVisualization” package. Then you can drag the Chart control from Toolbox.

    READ MORE
  • Windows 10 – Auto Log Off

    My computer auto logs off CMD Administrator= powercfg -attributes SUB_SLEEP 7bc4a2f9-d8fc-4469-b07b-33eb785aaca0 -ATTRIB_HIDE Control panel now under sleep has system unattended loggoff

    READ MORE