Previous section   Next section

Recipe 3.13 Disabling Banners on a Port

3.13.1 Problem

You want to disable the banner on a particular port to prevent it from confusing an attached device such as a modem.

3.13.2 Solution

To disable banners on particular lines, use the following commands:

Router1#configure terminal 
Enter configuration commands, one per line.  End with CNTL/Z.
Router1(config)#line aux 0     
Router1(config-line)#no motd-banner 
Router1(config-line)#no exec-banner 
Router1(config-line)#end
Router1#

3.13.3 Discussion

By default, the router displays the configured banner messages on all of its lines. However, there are circumstances when these banner messages can confuse directly attached devices. For instance, modems connected to terminal server or AUX lines can react erratically to banner messages (particularly motd and login banners). In these situations, you will need to disable the banner on the associated line.

Note that you cannot disable the login banner on a line-by-line basis. So, if you find that you need to do this, you should use the motd banner instead of the login banner to display the warning message. The motd and the login banners are nearly identical, so this shouldn't cause any problems.

3.13.4 See Also

Recipe 3.12


  Previous section   Next section
Top