Skip to main content

login on-failure log - not logging?


Recently I needed to enable logging of failed logon attempts in Cisco IOS. There is a "login on-failure log" configuration command which helped me accomplish my goal. While testing I noticed that enabling it on its own didn't produce expected results. Basically failed login attempts didn't show up in the log upon enabling it. In the end I found out that it must be used in conjunction with "login block-for" command to actually log logon attempts.

R3#show login failures
*** No logged failed login attempts with the device.***

This the defualt configuration:

R4#sh login
     No login delay has been applied.
     No Quiet-Mode access list has been configured.


     Router NOT enabled to watch for login Attacks


This is what we see after enabling "login on-failure log":

R3#sh login
     No login delay has been applied.
     No Quiet-Mode access list has been configured.
     All failed login is logged.


     Router NOT enabled to watch for login Attacks


This is configuration that we need in order for the router to actually log failed attempts:

R3#sh login
     A default login delay of 1 seconds is applied.
     No Quiet-Mode access list has been configured.
     All failed login is logged.


     Router enabled to watch for login Attacks.
     If more than 3 login failures occur in 60 seconds or less,
     logins will be disabled for 10 seconds.


     Router presently in Normal-Mode.
     Current Watch Window
         Time remaining: 27 seconds.


To set it up we need to do the following:

1. Create local user:

username test privilege 1 password cisco

2. Force use of local authentication database for vty lines:

line vty 0 4 
login local 

3. Enable logging of failed attempts:

login on-failure log

4. Enable block-for feature:

login block-for 10 attempts 3 within 60


Now the router will log failures:


R3#show login failures
Total failed logins: 1
Detailed information about last 50 failures


Username        SourceIPAddr    lPort Count TimeStamp
test            10.0.0.2        23    1     00:08:40 UTC Fri Mar 1 2002


R3#sh login
     A default login delay of 1 seconds is applied.
     No Quiet-Mode access list has been configured.
     All failed login is logged.


     Router enabled to watch for login Attacks.
     If more than 3 login failures occur in 60 seconds or less,
     logins will be disabled for 10 seconds.


     Router presently in Normal-Mode.
     Current Watch Window
         Time remaining: 27 seconds.
         Login failures for current window: 0.
     Total login failures: 1.


More details on Cisco site: https://www.cisco.com/en/US/docs/ios/sec_user_services/configuration/guide/sec_login_enhance.html

Comments

Popular posts from this blog

x.509 Certificates - Critical vs non-critical extensions

Extensions are used to associate additional information with the user or the key.  Each certificate extension has three attributes - extnID, critical, extnValue extnID - Extension ID - an OID that specifies the format and definitions of the extension critical - Critical flag - Boolean value extnValue - Extension value  Criticality flag specifies whether the information in an extension is important. If an application doesn't recognize the extension marked as critical, the certificate cannot be accepted. If an extension is not marked as critical (critical value False) it can be ignored by an application. In Windows, critical extensions are marked with a yellow exclamation mark,  View certificate extensions using OpenSSL: # openssl x509 -inform pem -in cert.pem -text -noout (output abbreviated)         X509v3 extensions:             X509v3 Key Usage: critical                 Digital Signature, Key Encipherment             X509v3 Subject Key Identifier

DNS response and error types

In this post we explore common DNS response codes. We will cover the following responses: NOERROR SERVFAIL NXDOMAIN NODATA REFUSED Throughout article we’ll refer to the following RFCs: RFC 1034 - DOMAIN NAMES - CONCEPTS AND FACILITIES RFC 2308 - Negative Caching of DNS Queries (DNS NCACHE) RFC 2136 - Dynamic Updates in the Domain Name System (DNS UPDATE) RFC 8914 - Extended DNS Errors Response Codes - RCODEs The DNS RCODES are best defined in RFC2316 .  They signify what type of response was sent by the server. “RCODE   Response code - this four bit field is undefined in requests and set in responses.”   The table below shows the summary of the currently defined RCODEs. Mnemonic Val Description NOERROR 0 No error condition.

Count number of lines - 'findstr'

How do I count number of lines in a command output? findstr /r/n "^" | find /c ":" Above commands will display number of lines output by whatever command (well, nearly whatever) you specify in the front.  For example:  C:\>ping localhost | findstr /r/n "^" | find /c ":" FINDSTR: // ignored 12 This comes handy if you want to find out how many OUs you have in Active Directory: dsquery ou  -limit 0 | findstr /r/n "^" | find /c ":" How many user accounts there are: dsquery user -limit 0 | findstr /r/n "^" | find /c ":" Computers: dsquery computer -limit | findstr /r/n "^" | find /c ":"