Advanced Search
Search Results
389 total results found
Fandango
2002 Blue Book allegedly (wiki) there is a variation with a white interior normally the interior is grey. 2011 Color Shifters: Glow In The Dark 2011 Color Shifters: X-Raycers 2012 Max Steel Urban Storm 5-Pack 2022 Moster Maker allegedly (wiki), although ...
Super Tuned
2005 Wallgreens Battery Exclusive 2007 Car Crusher (allegedly) -- wiki Black and white DC Police deco, except with chrome interior instead of grey 2010 Multipack wiki
Fire Eater
'77 to '91 Shield BW with Hong Kong base Unknown Deco, France base
Memory Use
(2025-05-13) top-mem: #diag sys top-mem node (165): 44189kB forticron (173): 29644kB ipshelper (227): 24577kB cmdbsvr (142): 20290kB miglogd (182): 12413kB Top-5 memory used: 131113kB #diag sys top-mem 10 node (165): 44861kB forticron (173): 29612kB ipshelp...
Client DNS Resolver Behavior
How do Windows clients deal with having multiple DNS servers configured? With one server: Seconds since start Action 0 Query DNS server 1 If no answer, query DNS server 2 If no answer, query DNS server 4 If no answer, query DNS server 8 If no an...
Show FQDN IPs in DNS Cache
(2025-06-04) diagnose firewall fqdn list-ip diagnose firewall fqdn list-all dia firewall fqdn list | grep -A3 “gmail.com” dia test application dnsproxy 6
Show WAN interface public IPs
(2025-06-05) diagnose system waninfo ipify
Basic SDWAN Setup
(2025-06) What This Is About In the course of my day-to-day duties I've been seeing a lot of sdwan configs that are misbehaving, causing users to believe that their internet links are worse than they actually are. I've therefore put together a couple of sample...
Console Pager
(2025-06-17) No pager: config system console set output standard end Pager again: config system console set output more end
Debug PPPoE Connections
(2025-06-18) Commands to show what pppd is up to: diagnose debug reset diagnose debug disable diagnose debug app pppoed -1 diagnose debug app ppp -1 diagnose debug console timestamp enable diagnose debug enable
Debug messages with timestamp
(2025-06-18) diagnose debug console timestamp enable
Block QUIC in 7.2.x
(2025-07-03) To block the QUIC application signature in the CLI: config application list edit "your-application-filter-profile" set other-application-log enable config entries edit 1 set application 40169 ...
Removed Cached HSTS Attributes
(2025-07-07) Go to chrome://net-internals/#hsts and put in the zone you want to forget attributes about.
Dataset: vpn-Top-SSLVPN-Login-Failures-By-IP
Name: vpn-Top-SSLVPN-Login-Failures-By-IP Log type: Event Query: SELECT remip, COUNT (eventtime) AS totalnum FROM $log WHERE $filter AND logid='0101039426' GROUP BY remip ORDER BY totalnum DESC
Debug SSLVPN Authentication Issues
(20215-07-25) diagnose debug reset diagnose debug application sslvpn -1 diagnose debug application fnbamd -1 diagnose debug console timestamp enable diagnose debug enable Possibly useful: diagnose vpn ssl debug-filter src-addr4 <user_public_IP> diagnose debu...
Adding Disk To A LVM Partition
(2015-07-14) Problem Filesystem in LVM is full. Solution Obtain more disk (physical, virtual, whatever). Install in VM/system. Use fdisk to partition the new disk (assumed to be sdb in this example). Set the new partition to be of type 8e. Create a new PV on t...
Strip comments and blank lines from file
(2019-02-15) Problem Wordy config files that are all comments and whitespace. We want to see the actual configuration. Solution # sed -e 's/#.*$//g' -e '/^s*$/d' < FILE (Source: a Stack Overflow post I can't find right now.)
.bashrc
(2025-08-31) # .bashrc # User specific aliases and functions #if [ "$DOTBASHRC" ]; then # exit #fi #export DOTBASHRC="1" alias rm='rm -i' alias cp='cp -i' alias mv='mv -i' alias git-pull-master='git fetch upstream ; git merge upstream/master ; git push' ...
.bash_profile
(2025-08-31) # .bash_profile # Get the aliases and functions if [ -f ~/.bashrc ]; then . ~/.bashrc fi # User specific environment and startup programs PATH=$PATH:$HOME/bin export PATH
.inputrc
(2025-08-31) # Smart History Completion "\M-[A":history-search-backward "\M-[B":history-search-forward