Login configuration & concepts Flashcards

consol, telnet, SSH, all types

1
Q

How to configure Console Login ?

A

> Line con 0 - 0 is the amount of connection available
password 0 - no encryption
password 7 - password encrypted
login - enable password to be asked for

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How to configure Telnet Login

Telnet = Remote login, not encrypted, but TCP

A

> line vty 0 - 15 - 0 is the amount of connection available
password - same a console
login - is set by default

Above is not encrypted - message can be captured by wire shark and read

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

After configuring Consol and Telent.-
What does the below config do ?

> No Login

A

> no login

  • this will remove the password being asked, goes straight into enable mode
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Enable = Setting password on the privilage exec mode

A

> enable password ___

  • this is not encrypted at all. Also in clear text in config file
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Enable secret is ?

A

difference is it hides the password from the running config. Take priority over enable password if already configured.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

how to configure enable secret ?

A

> enable secret _____

  • Take priority over existing enable password if set

This is MD5# = type 7 strength - hacking is required to break it

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is SSH stand for and used for ?

A

SSH = secure shell - Remote login that is encrypted

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How to configure SSH ?

with explanation of each part

A
  1. > host name ____ - this is needed
  2. > ip domain-name ___ - these two are needed for the self generated certificate
  3. > crypto key generate RSA 1024
    - generate encrypted keys - Public & Private Key
    - Sym 64, 128, 256 bits. Default is sugeested 512 this is asymmetric key set
  4. > iP ssh version 2 - enable SSH & Key
  5. > Username ____ password ______
    - Create Local user account & password

or. > username ____ secret ________
- same as enable secret hides password & MD5 hashing

    • Allow telnet or ssh or both. ssh only disables telnet
      > Line vty 0 - 15
      > transport input ___ all or ssh,telnet
  1. Login
    > login Local or Tacacs
    - username & password from local database
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How to configure SSH ?

whole process in order - with no explanation

A

whole process in order

1 - Hostname
2 - ip Domain-name
3 - crypto key generate RSA [512] 1024
4 - ip ssh version 2
5 - username \_\_\_ password/secret \_\_\_\_\_
6 - line vty 0-15
    transport input all or ssh
7 - Login Local
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is - Terminal timeout ?

How to configure it ?

A

Terminal timeout = how long before session and idle kick out

> Line con 0
Line Vty 0 - 15 - For both of these

> exec-timeout 5 10 - 5 is the min, 10 is the seconds

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is Logging synchronous ?

How to configure it ?

A

Logging synchronous = when typing command and screen message disrupts, this setting makes sure the command is displayed on a fresh line

> Line con 0
Line Vty 0 - 15 - For both of these

> Logging synchronous

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is Service password-encryption ?

How to configure it ?

A

Service password-encryption = This just hides all password on running config on device - This can be easily decrypted on websites(ifm)

from global config

> Service password-encryption

This can be easily decrypted on websites(ifm)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What are the encryption strengths ?

A

Enable secret is =
This is MD5# = type 7 strength - hacking is required to break it

Enable password & service password encrypt =
This just hides all password on running config

How well did you know this?
1
Not at all
2
3
4
5
Perfectly