Re: annoying line after config t

2000-11-30 Thread Robert O'Brien

Chuck,

This should help.

I currently work in a reasonable size network (for a private network any way) of some
200 network devices and remembering numbers or looking them up is a real pain. DNS
lookups is MUCH easier on the grey matter.

Also, if you use the following on all vty/console lines, the line you are typing will 
be
immediately rewritten after a log line on the screen. This has the benifit of still
seeing any debug lines or whatever, but still being able to read your commands.

Router (config-line)# logging synchronous




Robert O'Brien
CCNA
Canberra, Australia


whatshakin wrote:

 You are exactly right.

 Perhaps your previous statement did not come out on paper as it did in your
 head...I quote "I suppose there are situations where you may want
 lookups -such as when you are using a host file so you can telnet to
 different routers using a pneumonic rather than an ip address"

 Lookups refers to DNS lookups I presume.  Typically, one uses either hosts
 files or DNS to find name to address mappings, just not both at the same
 time.  That said, I have used both methods simultaneously when
 troubleshooting various problems.  The ip domain-lookup command will force
 your IOS to use DNS for name resoution.  Your router will use the entries in
 the internal hosts file regardless of whether you have lookups enabled or
 not.

 - Original Message -
 From: Chuck Larrieu [EMAIL PROTECTED]
 To: whatshakin [EMAIL PROTECTED]; [EMAIL PROTECTED]
 Sent: Saturday, November 25, 2000 10:45 AM
 Subject: RE: annoying line after config t

  Hhhmmm.. interesting food for thought.
 
  Coming from a background in small networks, I suppose my view is a bit
  limited. So let's see if I can discern why the domain lookup function even
  exists in the IOS.
 
  In reasonably well organized larger networks, folks run their own DNS
  internally. Network guys take advantage of the command ip name-server
  a.b.c.d to point the router to their DNS server, which in turn has been
  configured with  router names and ip addresses.  Makes telnetting around a
  bit easier, particularly when router names follow some logical convention.
  E.g. telnet BranchOffice or telnet 3rdfloor rather than the non-intuitive
 ip
  addresses
 
  Can you folks who work/have worked in such environments offer an opinion?
 
  Chuck
 
  -Original Message-
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of
  whatshakin
  Sent: Saturday, November 25, 2000 10:12 AM
  To: [EMAIL PROTECTED]
  Subject: Re: annoying line after config t
 
  The whole point of a hosts file is so you don't need lookups!
 
  - Original Message -
  From: Chuck Larrieu [EMAIL PROTECTED]
  To: Dennis Laganiere [EMAIL PROTECTED]; [EMAIL PROTECTED]
  Sent: Saturday, November 25, 2000 9:27 AM
  Subject: RE: annoying line after config t
 
 
   Another one I recently have come across is the ip tcp synwait-time,
 which
   allows one to manually set the time the router waits for a tcp
 connection
  to
   become established. While the documentation states that the purpose is
 to
   allow for long wait times because of slow links, congestion, or slow
   response from hosts, and can also adjust the wait downwards, limiting
 the
   wait time for those domain lookups.
  
   Of course the no ip domain-lookup accomplishes the same thing.on the
   other hand, I suppose there are situations where you may want lookups -
  such
   as when you are using a host file so you can telnet to different routers
   using a pneumonic rather than an ip address.
  
   Chuck
  
   -Original Message-
   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of
   Dennis Laganiere
   Sent: Thursday, November 23, 2000 10:40 AM
   To: '[EMAIL PROTECTED]'
   Subject: annoying line after config t
  
   Isn't there a command to suppress the annoying "00:01:35:
 %SYS-5-CONFIG_i:
   Configured from console by console" line and dramatic pause every time
 you
   exit the config term?  I was so happy to learn the "no ip domain-lookup"
   command to suppress the pause every time you mistype a command, but this
  one
   still stumps me.  You help is appreciated.  Thanks...
- Dennis
  
   _
   FAQ, list archives, and subscription info:
   http://www.groupstudy.com/list/cisco.html
   Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
  
   _
   FAQ, list archives, and subscription info:
  http://www.groupstudy.com/list/cisco.html
   Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
  
 
  _
  FAQ, list archives, and subscription info:
  http://www.groupstudy.com/list/cisco.html
  Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
 
 

 _
 FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
 Report misconduc

Re: [RE: annoying line after config t]

2000-11-26 Thread Faisal Athar

If you want to get rid of messages coming on console but still want these
messages for Troubleshooting purpose.you need to use these commands.

First disable the Console logging by command:

no logging console

Then use this command whihc would store all the console messages in memory
buffer so you can see them any time by using command "Show Log"

logging buffered 10240 debugging
 
Hope that helps.

FAISAL ATHAR


"Chuck Larrieu" [EMAIL PROTECTED] wrote:

 - 
   Attachment:  
   MIME Type: multipart/alternative 
 - 
RE: annoying line after config twhat would be some of the downsides to doing
a no logging console?

as I turn my attention to Lab preparation, I find myself having to think in
terms of tradeoffs. Those logging messages can be quite useful in
troubleshooting situations.

Chuck
  -Original Message-
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
Taylor, Don
  Sent: Thursday, November 23, 2000 11:11 AM
  To: 'Dennis Laganiere'; '[EMAIL PROTECTED]'
  Subject: RE: annoying line after config t


  I believe you want "no logging console."

  - Don

  -Original Message-
  From: Dennis Laganiere [mailto:[EMAIL PROTECTED]]
  Sent: Thursday, November 23, 2000 10:40 AM
  To: '[EMAIL PROTECTED]'
  Subject: annoying line after config t



  Isn't there a command to suppress the annoying "00:01:35: %SYS-5-CONFIG_i:
  Configured from console by console" line and dramatic pause every time you
  exit the config term?  I was so happy to learn the "no ip domain-lookup"
  command to suppress the pause every time you mistype a command, but this
one
  still stumps me.  You help is appreciated.  Thanks...
   - Dennis

  _
  FAQ, list archives, and subscription info:
http://www.groupstudy.com/list/cisco.html
  Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]




Get free email and a permanent address at http://www.netaddress.com/?N=1

_
FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]



RE: annoying line after config t

2000-11-25 Thread Chuck Larrieu

Another one I recently have come across is the ip tcp synwait-time, which
allows one to manually set the time the router waits for a tcp connection to
become established. While the documentation states that the purpose is to
allow for long wait times because of slow links, congestion, or slow
response from hosts, and can also adjust the wait downwards, limiting the
wait time for those domain lookups.

Of course the no ip domain-lookup accomplishes the same thing.on the
other hand, I suppose there are situations where you may want lookups - such
as when you are using a host file so you can telnet to different routers
using a pneumonic rather than an ip address.

Chuck

-Original Message-
From:   [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of
Dennis Laganiere
Sent:   Thursday, November 23, 2000 10:40 AM
To: '[EMAIL PROTECTED]'
Subject:annoying line after config t

Isn't there a command to suppress the annoying "00:01:35: %SYS-5-CONFIG_i:
Configured from console by console" line and dramatic pause every time you
exit the config term?  I was so happy to learn the "no ip domain-lookup"
command to suppress the pause every time you mistype a command, but this one
still stumps me.  You help is appreciated.  Thanks...
 - Dennis

_
FAQ, list archives, and subscription info:
http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]

_
FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]



RE: annoying line after config t

2000-11-25 Thread Chuck Larrieu
Title: RE: annoying line after config t



what 
would be some of the downsides to doing a no logging 
console?

as I 
turn my attention to Lab preparation, I find myself having to think in terms of 
tradeoffs. Those logging messages can be quite useful in troubleshooting 
situations.

Chuck

  -Original Message-From: [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED]]On Behalf Of Taylor, DonSent: 
  Thursday, November 23, 2000 11:11 AMTo: 'Dennis Laganiere'; 
  '[EMAIL PROTECTED]'Subject: RE: annoying line after config 
  t
  I believe you want "no logging console." 
  - Don 
  -Original Message- From: 
  Dennis Laganiere [mailto:[EMAIL PROTECTED]] 
  Sent: Thursday, November 23, 2000 10:40 AM To: '[EMAIL PROTECTED]' Subject: annoying 
  line after config t 
  Isn't there a command to suppress the annoying "00:01:35: 
  %SYS-5-CONFIG_i: Configured from console by console" 
  line and dramatic pause every time you exit the config 
  term? I was so happy to learn the "no ip domain-lookup" command to suppress the pause every time you mistype a command, but 
  this one still stumps me. You help is 
  appreciated. Thanks...  
  - Dennis 
  _ FAQ, 
  list archives, and subscription info: http://www.groupstudy.com/list/cisco.html Report misconduct and Nondisclosure violations to 
  [EMAIL PROTECTED] 


Re: annoying line after config t

2000-11-25 Thread whatshakin

The whole point of a hosts file is so you don't need lookups!

- Original Message -
From: Chuck Larrieu [EMAIL PROTECTED]
To: Dennis Laganiere [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Saturday, November 25, 2000 9:27 AM
Subject: RE: annoying line after config t


 Another one I recently have come across is the ip tcp synwait-time, which
 allows one to manually set the time the router waits for a tcp connection
to
 become established. While the documentation states that the purpose is to
 allow for long wait times because of slow links, congestion, or slow
 response from hosts, and can also adjust the wait downwards, limiting the
 wait time for those domain lookups.

 Of course the no ip domain-lookup accomplishes the same thing.on the
 other hand, I suppose there are situations where you may want lookups -
such
 as when you are using a host file so you can telnet to different routers
 using a pneumonic rather than an ip address.

 Chuck

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of
 Dennis Laganiere
 Sent: Thursday, November 23, 2000 10:40 AM
 To: '[EMAIL PROTECTED]'
 Subject: annoying line after config t

 Isn't there a command to suppress the annoying "00:01:35: %SYS-5-CONFIG_i:
 Configured from console by console" line and dramatic pause every time you
 exit the config term?  I was so happy to learn the "no ip domain-lookup"
 command to suppress the pause every time you mistype a command, but this
one
 still stumps me.  You help is appreciated.  Thanks...
  - Dennis

 _
 FAQ, list archives, and subscription info:
 http://www.groupstudy.com/list/cisco.html
 Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]

 _
 FAQ, list archives, and subscription info:
http://www.groupstudy.com/list/cisco.html
 Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]


_
FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]



RE: annoying line after config t

2000-11-25 Thread Chuck Larrieu

Hhhmmm.. interesting food for thought.

Coming from a background in small networks, I suppose my view is a bit
limited. So let's see if I can discern why the domain lookup function even
exists in the IOS.

In reasonably well organized larger networks, folks run their own DNS
internally. Network guys take advantage of the command ip name-server
a.b.c.d to point the router to their DNS server, which in turn has been
configured with  router names and ip addresses.  Makes telnetting around a
bit easier, particularly when router names follow some logical convention.
E.g. telnet BranchOffice or telnet 3rdfloor rather than the non-intuitive ip
addresses

Can you folks who work/have worked in such environments offer an opinion?

Chuck

-Original Message-
From:   [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of
whatshakin
Sent:   Saturday, November 25, 2000 10:12 AM
To: [EMAIL PROTECTED]
Subject:Re: annoying line after config t

The whole point of a hosts file is so you don't need lookups!

- Original Message -
From: Chuck Larrieu [EMAIL PROTECTED]
To: Dennis Laganiere [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Saturday, November 25, 2000 9:27 AM
Subject: RE: annoying line after config t


 Another one I recently have come across is the ip tcp synwait-time, which
 allows one to manually set the time the router waits for a tcp connection
to
 become established. While the documentation states that the purpose is to
 allow for long wait times because of slow links, congestion, or slow
 response from hosts, and can also adjust the wait downwards, limiting the
 wait time for those domain lookups.

 Of course the no ip domain-lookup accomplishes the same thing.on the
 other hand, I suppose there are situations where you may want lookups -
such
 as when you are using a host file so you can telnet to different routers
 using a pneumonic rather than an ip address.

 Chuck

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of
 Dennis Laganiere
 Sent: Thursday, November 23, 2000 10:40 AM
 To: '[EMAIL PROTECTED]'
 Subject: annoying line after config t

 Isn't there a command to suppress the annoying "00:01:35: %SYS-5-CONFIG_i:
 Configured from console by console" line and dramatic pause every time you
 exit the config term?  I was so happy to learn the "no ip domain-lookup"
 command to suppress the pause every time you mistype a command, but this
one
 still stumps me.  You help is appreciated.  Thanks...
  - Dennis

 _
 FAQ, list archives, and subscription info:
 http://www.groupstudy.com/list/cisco.html
 Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]

 _
 FAQ, list archives, and subscription info:
http://www.groupstudy.com/list/cisco.html
 Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]


_
FAQ, list archives, and subscription info:
http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]

_
FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]



Re: annoying line after config t

2000-11-25 Thread whatshakin

You are exactly right.

Perhaps your previous statement did not come out on paper as it did in your
head...I quote "I suppose there are situations where you may want
lookups -such as when you are using a host file so you can telnet to
different routers using a pneumonic rather than an ip address"

Lookups refers to DNS lookups I presume.  Typically, one uses either hosts
files or DNS to find name to address mappings, just not both at the same
time.  That said, I have used both methods simultaneously when
troubleshooting various problems.  The ip domain-lookup command will force
your IOS to use DNS for name resoution.  Your router will use the entries in
the internal hosts file regardless of whether you have lookups enabled or
not.


- Original Message -
From: Chuck Larrieu [EMAIL PROTECTED]
To: whatshakin [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Saturday, November 25, 2000 10:45 AM
Subject: RE: annoying line after config t


 Hhhmmm.. interesting food for thought.

 Coming from a background in small networks, I suppose my view is a bit
 limited. So let's see if I can discern why the domain lookup function even
 exists in the IOS.

 In reasonably well organized larger networks, folks run their own DNS
 internally. Network guys take advantage of the command ip name-server
 a.b.c.d to point the router to their DNS server, which in turn has been
 configured with  router names and ip addresses.  Makes telnetting around a
 bit easier, particularly when router names follow some logical convention.
 E.g. telnet BranchOffice or telnet 3rdfloor rather than the non-intuitive
ip
 addresses

 Can you folks who work/have worked in such environments offer an opinion?

 Chuck

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of
 whatshakin
 Sent: Saturday, November 25, 2000 10:12 AM
 To: [EMAIL PROTECTED]
 Subject: Re: annoying line after config t

 The whole point of a hosts file is so you don't need lookups!

 - Original Message -
 From: Chuck Larrieu [EMAIL PROTECTED]
 To: Dennis Laganiere [EMAIL PROTECTED]; [EMAIL PROTECTED]
 Sent: Saturday, November 25, 2000 9:27 AM
 Subject: RE: annoying line after config t


  Another one I recently have come across is the ip tcp synwait-time,
which
  allows one to manually set the time the router waits for a tcp
connection
 to
  become established. While the documentation states that the purpose is
to
  allow for long wait times because of slow links, congestion, or slow
  response from hosts, and can also adjust the wait downwards, limiting
the
  wait time for those domain lookups.
 
  Of course the no ip domain-lookup accomplishes the same thing.on the
  other hand, I suppose there are situations where you may want lookups -
 such
  as when you are using a host file so you can telnet to different routers
  using a pneumonic rather than an ip address.
 
  Chuck
 
  -Original Message-
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of
  Dennis Laganiere
  Sent: Thursday, November 23, 2000 10:40 AM
  To: '[EMAIL PROTECTED]'
  Subject: annoying line after config t
 
  Isn't there a command to suppress the annoying "00:01:35:
%SYS-5-CONFIG_i:
  Configured from console by console" line and dramatic pause every time
you
  exit the config term?  I was so happy to learn the "no ip domain-lookup"
  command to suppress the pause every time you mistype a command, but this
 one
  still stumps me.  You help is appreciated.  Thanks...
   - Dennis
 
  _
  FAQ, list archives, and subscription info:
  http://www.groupstudy.com/list/cisco.html
  Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
 
  _
  FAQ, list archives, and subscription info:
 http://www.groupstudy.com/list/cisco.html
  Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
 

 _
 FAQ, list archives, and subscription info:
 http://www.groupstudy.com/list/cisco.html
 Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]



_
FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]



annoying line after config t

2000-11-23 Thread Dennis Laganiere

Isn't there a command to suppress the annoying "00:01:35: %SYS-5-CONFIG_i:
Configured from console by console" line and dramatic pause every time you
exit the config term?  I was so happy to learn the "no ip domain-lookup"
command to suppress the pause every time you mistype a command, but this one
still stumps me.  You help is appreciated.  Thanks...
 - Dennis

_
FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]



Re: annoying line after config t

2000-11-23 Thread Brian

On Thu, 23 Nov 2000, Dennis Laganiere wrote:

 Isn't there a command to suppress the annoying "00:01:35: %SYS-5-CONFIG_i:
 Configured from console by console" line and dramatic pause every time you
 exit the config term?  I was so happy to learn the "no ip domain-lookup"
 command to suppress the pause every time you mistype a command, but this one
 still stumps me.  You help is appreciated.  Thanks...

You can adjust the log level for the console logging.  Also you can set
"logging buffered" so that your log output goes to a buffer which you can
view when you want to.

Brian


  - Dennis

 _
 FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
 Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]


---
Brian Feeny, CCNP, CCDP   [EMAIL PROTECTED]
Network Administrator
ShreveNet Inc. (ASN 11881)

_
FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]



RE: annoying line after config t

2000-11-23 Thread Taylor, Don
Title: RE: annoying line after config t





I believe you want no logging console.


- Don


-Original Message-
From: Dennis Laganiere [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 23, 2000 10:40 AM
To: '[EMAIL PROTECTED]'
Subject: annoying line after config t



Isn't there a command to suppress the annoying 00:01:35: %SYS-5-CONFIG_i:
Configured from console by console line and dramatic pause every time you
exit the config term? I was so happy to learn the no ip domain-lookup
command to suppress the pause every time you mistype a command, but this one
still stumps me. You help is appreciated. Thanks...
 - Dennis


_
FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]