Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to stop terminal monitor

Status
Not open for further replies.

elvis123456789

IS-IT--Management
Mar 27, 2009
32
AL
How can i stop "Router#terminal monitor" this command without log out , because when i type this i see up down ports but it prevent me to work very well.
 
term no mon

**********************
Chris A.C, CCNA, CCSA
**********************
 
Router#conf t
router(config)#line con 0
router(config-line)#logg sync
router(config-line)#exit
router(config)#line vty 0 4
router(config-line)#logg sync
router(config-line)#end
router#wr

That is if you want to continue to monitor at the terminal, but when you type, the typing interrupts logging messages. You could also do

router(config)#logg mon ?
<0-7> Logging severity level
alerts Immediate action needed (severity=1)
critical Critical conditions (severity=2)
debugging Debugging messages (severity=7)
emergencies System is unusable (severity=0)
errors Error conditions (severity=3)
filtered Enable filtered logging
informational Informational messages (severity=6)
notifications Normal but significant conditions (severity=5)
warnings Warning conditions (severity=4)
xml Enable logging in XML
<cr>

and/or

router(config)#logg con ?
<0-7> Logging severity level
alerts Immediate action needed (severity=1)
critical Critical conditions (severity=2)
debugging Debugging messages (severity=7)
emergencies System is unusable (severity=0)
errors Error conditions (severity=3)
filtered Enable filtered logging
informational Informational messages (severity=6)
notifications Normal but significant conditions (severity=5)
warnings Warning conditions (severity=4)
xml Enable logging in XML
<cr>


Burt
 
By the way, the logging synchronous command will interrupt system logging messages when you type, not the other way around, i.e. you're typing, an interface goes down, the damn message pops up, and you lose your place...

/
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top