Report googleapis phishing:
https://support.google.com/webmasters/thread/29210246?hl=en
Help prevent spoofing, phishing, and spam:
https://support.google.com/a/topic/9061731?hl=en&ref_topic=9202&sjid=6915846243950097125-EU
https://support.google.com/webmasters/thread/29210246?hl=en
https://support.google.com/a/topic/9061731?hl=en&ref_topic=9202&sjid=6915846243950097125-EU
https://www.digitalocean.com/community/tutorials/how-to-protect-an-nginx-server-with-fail2ban-on-ubuntu-22-04
https://linux-notes.org/ustanovka-fail2ban/
https://github.com/Bebef/fail2ban-filter.d
https://stackoverflow.com/questions/19794107/fail2ban-error-can“t-ban-with-lighttpssd-auth
https://easyengine.io/tutorials/nginx/fail2ban/
fail2ban-client status JAILNAME
https://forums.rocket.chat/t/fail2ban-and-rocket-chat-integration/2544
https://habr.com/ru/post/238303/
fail2ban-regex /var/log/somelog.log /etc/fail2ban/filter.d/somefilter.conf
Add –print-all-missed or –print-all-matched to see missed and matched lines.
https://cway.cisco.com/sncheck/
https://pyatilistnik.org/kak-nastroit-kommutatoryi-cisco-3-urovnya-na-primere-cisco-3560/
https://pyatilistnik.org/kak-nastroit-marshrutizator-cisco-organizatsiya-seti-dlya-nebolshogo-ofisa/
https://pyatilistnik.org/staticheskaya-marshrutizatsiya-cisco/
delete /force /recursive flash:FOLDERNAME
https://arny.ru/education/ccnp-enterprise/rasshirennaya-bezopasnost-cisco/
https://fatmin.com/2015/09/29/how-to-reset-cisco-catalyst-3560-back-to-factory-defaults
First you need to power down the switch. Once the switch is powered off, hold down the mode button, and power the switch on. The switch will boot up and you should see the switch prompt as shown below.
Now type flash_init. Your output should be similar to what you see below.
Check out the contents of flash and locate config.text and vlan.dat (if it exists).
Now delete the vlan.dat and config.text.
Reboot switch
Push Ctrl and Break (use submenu in Putty) before the device start loading firmware.
https://www.cisco.com/c/en/us/support/docs/switches/catalyst-2950-series-switches/41845-192.html
show run all
http://wiki.ciscolinux.co.uk/index.php/Cisco_1941_with_EHWIC-4G-LTE-G
https://jakondo.ru/nastrojka-modulya-cisco-ehwic-4g-lte-g-na-rabotu-s-mobilnym-operatorom-yota/
IP SLA is needed, in particular, for setting up redundancy in networks with static routing.
https://www.practicalnetworking.net/stand-alone/cisco-ip-sla-using-a-cisco-router-to-generate-traffic/
https://learningnetwork.cisco.com/s/question/0D53i00000Kt0s9CAB/ip-sla-tracking-issue
Configure delay for flapping links:
https://packetpushers.net/blog/using-ip-sla-delay-feature-to-safely-monitor-lossy-links/
For example I’ve currently configured my home router like this:
track 1 ip sla 1 reachability
delay down 0 up 120
because my main home provider often fails for less than a minute and I’m experiencing frequent unneeded reconnects while working.
https://www.practicalnetworking.net/stand-alone/configuring-vlans/
Increase the TFTP block size, experimentally choose which size is better:
ip tftp block 8192
Sometimes you are facing a situation where there isn’t enough space on the flash: to store new firmware.
Before you delete old firmware files and upload new ones, you should backup old files to some place from where you’ll be able to restore them to a Cisco device if something will go wrong with the new IOS.
I’m using SCP for this purpose (read next article).
On Cisco device:
Create username with privileges:
username SCPUSER privilege 15 secret SECRET
Enable SCP server:
ip scp server enable
On Windows device:
In CMD:
scp -O SCPUSER@XXX.XXX.XXX.XXX:flash:/FILENAME DISK:\
But ofcourse Windows won’t want to connect so easily, probably you will get errors.
In case of “Unable to negotiate: no matching key exchange method found.” add algorhytm that goes after “Their offer:”, for example
-o KexAlgorithms=+diffie-hellman-group-exchange-sha1
In case of “Unable to negotiate: no matching host key type found.” add algorhytm that goes after “Their offer:”, for example
-o HostKeyAlgorithms=+ssh-rsa scp
Almost 100% you’ll need to add both of them, so the complete input will be:
scp -O -o KexAlgorithms=+diffie-hellman-group-exchange-sha1 -o HostKeyAlgorithms=+ssh-rsa SCPUSER@XXX.XXX.XXX.XXX:flash:/FILENAME DISK:\
After you finish downloading all needes files, disable SCP server and delete user:
no username SCPUSER
ip scp server disable