H1-4 commands Flashcards

1
Q

van user exec naar privileged exec gaan

A

enable

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

van privileged exec naar global configuration exec gaan

A

configure terminal

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

hoe verander je de naam van het systeem

A

configure terminal
hostname ‘name’

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

hoe ga je uit een bepaalde modus/exec

A

exit

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

hoe vindt je een aantal gegevens terug die nog niet zijn opgeslaan

A

show running-config

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

hoe vindt je een aantal gegevens terug die al wel zijn opgeslaan

A

show startup-config

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

hoe kan je bepaalde gegevens en commando’s enzo opslaan

A

copy running-config startup-config

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

hoe reboot je het toestel

A

reload

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

hoe laat je de tijd zien

A

show clock

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

hoe wis je de opgeslagen configuratie

A

erase startup-config

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

hoe stel je het wachtwoord cisco in wanneer je de console in wilt

A

configure terminal
line console 0
password cisco
login
exit

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

hoe stel je het wachtwoord cisco in wanneer iemand in de privileged exec wilt gaan

A

configure terminal
enable password cisco
exit

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

hoe maak je een ge-encrypteerd wachtwoord class in als je in de privileged exec wilt gaan

A

configure terminal
enable secret class
exit

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

hoe maak je de andere wachtwoorden ook ge-encrypteerd

A

configure terminal
service password-encryption
exit

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

hoe maak je een MOTD

A

configure terminal
banner motd “blablabla”
exit

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

hoe verwijder je een commando uit de running-config

A

eerst naar de config gaan waar dit commando gebruikt wordt en dan no ‘commando’ typen

17
Q

hoe check je of een connectie werkt

A

ping ‘ip-adres’

18
Q

hoe geef je een switch een ip-adres

A

configure terminal
interface ‘soort interface’ (bv Vlan 1)
ip address ‘ip-adres’ ‘subnet mask’
no shutdown
exit

19
Q

hoe maak je telnet beschikbaar op de switch met een username admin en een paswoord cisco

A

configure terminal
username admin password cisco
line vty 0 15
login local

20
Q

hoe maak je Secure Shell beschikbaar op de switch

A

configure terminal
username ‘blabla’ password ‘blabla’
hostname ‘blabla’
ip domain-name ‘blabla’
crypto key generate rsa
ip ssh version 2
line vty 0 15
transport input ssh
login local