Link to home
Start Free TrialLog in
Avatar of driscojs
driscojs

asked on

Cisco won't stop logging errors to screen

Today's dumb question is: I can't make one of the embedded access points in a Cisco 871W stop printing some Dot11 messages to the console screen. The errors is similar to:
%DOT11-7-AUTH_FAILED: Station a417.314b.9994 Authentication failed

I know why they are failing, I just want he messages to stop. :) I tried terminal no monitor, turned off logging, etc. Thanks!


Current configuration : 2966 bytes
!
version 12.4
no service pad
no service timestamps debug uptime
no service timestamps log uptime
service password-encryption
!
hostname ap
!
no logging on

!
aaa new-model
!
!
aaa authentication login default local
!
aaa session-id common
ip domain name domaincom
ip name-server 1.1.1.1
no ip dhcp use vrf connected
!
ip dhcp pool WIRELESS
   network 192.168.100.0 255.255.255.0
   default-router 192.168.100.1
   dns-server 1.1.1.1
!
!
no dot11 syslog
!
dot11 ssid mySSID
   vlan 1
   authentication open
   authentication key-management wpa
   guest-mode
   mbssid guest-mode
   wpa-psk ascii 7 thekey
!
!
!
!
!
bridge irb
!
!
interface Dot11Radio0
 no ip address
 no ip route-cache
 !
 encryption mode ciphers aes-ccm
 !
 encryption vlan 1 mode ciphers tkip
 !
 broadcast-key vlan 1 change 30
 !
 !
 ssid mySSID
 !
 antenna gain 0
 mbssid
 speed  basic-1.0 basic-2.0 basic-5.5 basic-11.0 basic-6.0 basic-9.0 basic-12.0 basic-18.0 basic-24.0 basic-36.0 basic-48.0 basic-54.0 m0. m1. m2. m3. m4. m5. m6. m7. m8. m9. m10. m11. m12. m13. m14. m15.
 station-role root access-point
!
interface Dot11Radio0.1
 encapsulation dot1Q 1 native
 no ip route-cache
 bridge-group 1
 bridge-group 1 subscriber-loop-control
 bridge-group 1 block-unknown-source
 no bridge-group 1 source-learning
 no bridge-group 1 unicast-flooding
 bridge-group 1 spanning-disabled
!
interface Dot11Radio1
 no ip address
 no ip route-cache
 !
 encryption vlan 1 mode ciphers tkip
 !
 encryption mode ciphers aes-ccm
 !
 broadcast-key vlan 1 change 30
 !
 !
 ssid mySSID
 !
 antenna gain 0
 dfs band 3 block
 mbssid
 channel dfs
 station-role root
!
interface Dot11Radio1.1
 encapsulation dot1Q 1 native
 no ip route-cache
 bridge-group 1
 bridge-group 1 subscriber-loop-control
 bridge-group 1 block-unknown-source
 no bridge-group 1 source-learning
 no bridge-group 1 unicast-flooding
 bridge-group 1 spanning-disabled
!
interface GigabitEthernet0
 description the embedded AP GigabitEthernet 0 is an internal interface connecting AP with the host router
 no ip address
 no ip route-cache
!
interface GigabitEthernet0.1
 encapsulation dot1Q 1 native
 no ip route-cache
 bridge-group 1
 no bridge-group 1 source-learning
 bridge-group 1 spanning-disabled
!
interface BVI1
 ip address 192.168.1.15 255.255.255.0
 no ip route-cache
!
ip default-gateway 192.168.1.1
ip http server
no ip http secure-server
ip http help-path http://www.cisco.com/warp/public/779/smbiz/prodconfig/help/eag
no logging trap
bridge 1 protocol ieee
bridge 1 route ip
!
!
!
line con 0
 no activation-character
line vty 0 4
!
end
Avatar of markc56
markc56
Flag of United States of America image

Try "no logging console" in global configuration.
Avatar of driscojs
driscojs

ASKER

Yep, tried that, no luck.
Is it via console or vty?
ssh to the IP
from enable

#terminal no monitor
Did that too, still no luck.
ASKER CERTIFIED SOLUTION
Avatar of markc56
markc56
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Seems to have done it! Thanks!