What is Login command in VTY configuration
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2008 02:28 AM - edited 03-05-2019 11:26 PM
Pls information in usage of Login command in VTY configuration in brief
- Labels:
-
LAN Switching
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2008 02:38 AM
aaa new-model
aaa authentication login default line
line vty 0 X
password 0 MYPASSWORD
login authentication default
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2008 02:45 AM
Login command is used in VTY for password that is specified to be checked at login. If you do not use login command you will not able to use the specified password for the vty to login.
Login can also be used with login local. In which you can config a username and password on the router to be auth.
below is the link.
Hope this helps.
Pravin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2008 03:34 AM
Hi,
Login is used to control VTY access, it generally has 4 cases when AAA is not configured, and with AAA it serves another purpose:
Without AAA:
One of the following methods must be explicitly configure otherwise there can't be VTY access to the router.
1. "no login" > No password is required for VTY access
2. "login" + "password xxxx" > This password is required for login.
3. "login local" + "username xxxx password xxxx" (global configuration) > a local configured username and password are required for login.
4. "login tacacs" + "tacacs-server host x.x.x.x" (global configuration) > Use TACACS or Extended TACACS server for login.
With AAA:
With AAA it can be used to specify a custom AAA authentication method using the "login authentication xxxx" command under the VTYs.
NOTE TACACS+ can be enabled only through AAA commands.
I hope that i've been informative.
BR,
Mohammed Mahmoud.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2008 10:38 PM
Thanx a lotttttt......got it
