Subido por Adán Gómez Reyes

Configuración router

Anuncio
PROMPT
LÍNEA
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
Router>
Router>
Router#
Router(config)#
R1(config)#
R1(config-line)#
R1(config)#
R1(config-line)#
R1(config)#
R1(config-if)#
R1(config)#
R1(config-if)#
R1(config)#
R1(config-router)#
R1#
!ROUTER R1
enable
configure terminal
hostname R1
enable password utn1
enable secret utn2
no ip domain-lookup
banner motd #
------------------------------------------------------------------------------------------------------------------------NO ENTRE A ESTE SITIO PRIVADO
------------------------------------------------------------------------------------------------------------------------#
line console 0
password utn3
login
loggin synchronous
exec-timeout 20
exit
line vty 0 4
password utn4
login
exec-timeout 20
exit
interface fastethernet 0/0
description LAN DE R1
ip address 192.192.192.1 255.255.255.0
no shutdown
exit
interface serial 0/0/0
description ENLACE DE R1 CON R2
ip address 193.193.193.1 255.255.255.0
clock rate 128000
no shutdown
exit
router rip
network 192.192.192.0
network 193.193.193.0
end
copy running-config startup-config
Material didáctico Curso de Redes.
!!!!!!!!! ROUTER R2
enable
configure terminal
hostname R2
enable password utn1
enable secret utn2
no ip domain-lookup
banner motd #
------------------------------------------------------------NO ENTRE A ESTE SITIO PRIVADO
-------------------------------------------------------------#
line console 0
password utn3
login
loggin synchronous
exec-timeout 20
exit
line vty 0 4
password utn4
login
exec-timeout 20
exit
interface fastethernet 0/0
description LAN DE R2
ip address 194.194.194.1 255.255.255.0
no shutdown
exit
interface serial 0/0/0
description ENLACE DE R2 CON R1
ip address 193.193.193.2 255.255.255.0
no shutdown
exit
router rip
network 193.193.193.0
network 194.194.194.0
end
copy running-config startup-config
Descargar