Friday, May 21, 2021

Sonicwall Firewall - Gen 7 Diag Page

 To access the diag page on gen 7 firewalls go to 

/sonicui/7/m/mgmt/settings/diag

e.g.   https://10.1.1.1/sonicui/7/m/mgmt/settings/diag

Friday, April 2, 2021

Get DTMF to Work Between a Switchvox PBX and Vega Gateway

 Change the Switchvox PBX to use Inband DTMF in the SIP provider settings for the Sangoma gateway provider. 

The default on the PBX is RFC4733 and the default on the gateway is RFC2833 so I'm not sure why this is required. 

This worked on a Vega 60Gv2 gateway. 



   

Wednesday, March 24, 2021

Find hardware version of Raspberry Pi from the command line

 


Run
cat /proc/cpuinfo
look for revision and look it up on above page

! or 
cat /proc/cpuinfo | grep 'Revision' | awk '{print $3}' | sed 's/^1000//'

! web version - not always accurate/updated though and not well documented
rev=$(awk '/^Revision/ { print $3 }' /proc/cpuinfo) && curl -L perturb.org/rpi?rev=$rev

Monday, March 15, 2021

Windows Server Activation

Several Windows Server 2019 installs wouldn’t let me activate them normally. To do it, launch an elevated command prompt and use this command - 

cscript c:\windows\system32\slmgr.vbs /ipk <product-key>

Thursday, February 25, 2021

Cisco WLC AP Certificate Ignore

 For 7.4.140.0 and later:

(WLC)>config ap cert-expiry-ignore {mic|ssc} enable





https://community.cisco.com/t5/wireless/help-me-problem-with-wlc-and-ap/td-p/1958404

Tuesday, February 9, 2021

Thursday, December 3, 2020

Quick and Dirty Generate Random Words

 shuf -n20 /usr/share/dict/american-english

Thursday, October 22, 2020

Sonicwall Netextender SSL VPN Client - Trusted Certificates

Trusted certificate thumbprints are stored in the registry at 

HKLM\SOFTWARE\SonicWall\SSL-VPN NetExtender\Standalone\TrustCerts

Thursday, October 1, 2020

Cisco WLC Upgrade - Predownload Images to APs

 config ap image predownload primary all


show ap image all

(to check the status)


Thursday, September 24, 2020

Show AP Power Levels via CLI in Newer Versions of AireOS

show advanced 802.11a summary

show advanced 802.11b summary

Wednesday, January 15, 2020

WLC Upgrade Info

config ap image predownload primary all
show ap image all

Tuesday, December 19, 2017

Show Info on and Sync Configs to a Failover ASA

If your ASAs are in an HA pair with one active and one standby:

From the primary ASA you can use the failover exec mate commands. This has to be done from config mode for some strange reason.

conf t
failover exec mate show


To sync the configs from the primary to the secondary use write standby 

Wednesday, November 8, 2017

Show All AP Power Levels via CLI

show ap config 802.11a summary
show ap config 802.11b summary

Wednesday, February 8, 2017


WLC AireOS AP Support Comparision Between version 8.0.140.0 and 8.2.141.0
Reference: http://www.cisco.com/c/en/us/td/docs/wireless/compatibility/matrix/compatibility-matrix.html#pgfId-243612


APs Supported in both 8.0.140.0 and 8.2.141.0
1040
1140
1260
1600
1700
2600
2700
3500e
3500i
3500p
3600e
3600i
3600p
3702e
3702i
3702p
600 OEAP
700
700W
AP802

APs only supported in 8.2.141.0
1810 OEAP
1810W
1830
1850
2800
3800
ASA5506W-AP702
AP803

APs only supported in 8.0.140.0
1130
1240
1250
AP801

Tuesday, September 6, 2016

CUE SMTP VM to Email Debugs

no trace all
clear trace
trace voicemail msgnotif all
trace configapi smtp debug
trace entitymanager NotifDevice all
trace smtp all
sho trace buffer tail

https://voiceonbits.com/2010/08/10/cue-voicemail-notification-through-email/