Sei sulla pagina 1di 3

*Configuraci�n Nombre:

Enable
conf t
hostname R-MATRIZ
enable secret cisco
exit
-------------------------------
*Activaci�n de Interfaces

configure terminal
interface fastEthernet 0/0
ip address 10.0.0.113 255.255.255.240
no shutdown
interface fastEthernet 0/1
ip address 192.168.1.1 255.255.255.0
no shutdown
exit
--------------------------------------------------------------------------------
*Configura IP a puerto Serial

interface serial 0/1/1


ip address 10.0.0.126 255.255.255.252
clock rate 56000
no shutdown
exit
--------------------------------------------------------------------------------
*Protocolo de Enrutamiento Rip v2

router rip

network 1.1.1.1
network 10.0.0.64
netwprk
version 2
redistribute static
redistribute connected
-----------------------------------------------------------

*Configuracion de router mitad rip mitad ospf

passive-interface Loopback0
passive-interface FastEthernet0/0
exit
--------------------------------------------------------------------------------
*Asigna Ruta Estatica

ip route 192.168.1.0 255.255.255.0 fastEthernet 0/0


ip route 192.168.2.0 255.255.255.0 fastEthernet 0/0
ip route 200.20.20.0 255.255.255.0 serial 0/1/1
ip route 0.0.0.0 0 0.0.0.0 fastEthernet 0/0

--------------------------------------------------------------------------------
*Seguridad

line console 0
password consola
login10
exit
no cdp run
--------------------------------------------------------------------------------
*Habilita TelNet

line vty 0 4
password cisco
login
exit
banner motd c****Router_RED_A-FC****c
-------------------------------------------------------------------------------
*Pone Nombre y Clave al router

hostname RED_A
enable secret 123
exit
-------------------------------------------------------------------------------
*Respalda la configuracion en servidor tftp

copy running-config startup-config


copy running-config tftp
Address or name of remote host []? 12.0.16.2
Destination filename [RED_C-confg]? CONFIGURACION_ROUTER_C

--------------------------------------------------------------------------------
********Habilitar OSPF por medio del comando:

Router(config)# router ospf 1


Router(config-router)#log-adjacency-change
Router(config-router)#network (red directamente conectada) wilcard area 0
Router(config-router)#redistribute eigrp 10 subnets

********Habilitar EIGRP por medio del comando:

Router(config)# router eigrp 10


Router(config-router)#no auto-summary
Router(config-router)#network (red directamente conectada) wilcard area 0
Router(config-router)#redistribute ospf 10 metric 10000 100 255 1 1500
rip metric 10000 100 255 1 1500
---------------------------------------------------------------------------------
********modificaci�n del ID de router OSPF

Router(config)#interface loopback number


Router(config-if)#ip address ip-address subnet-mask
La modificaci�n de la prioridad de router implica cambiar la prioridad OSPF
de una interfaz por medio del siguiente comando:

Router(config-if)#ip ospf priority number


Router#show ip ospf interface type number

----------------------------------------------------------------------------------
********modificar ancho de banda sobre la interfaz

Router(config)#interface serial 0/0


Router(config-if)#bandwidth 64

------------------------------ree ---------
****modificar metrica
Router(config)#interface serial 0/0
Router(config-if)#bandwidth 64

-----------------------------------------------------------------------------------
********comando de configuraci�n de interfaz para cambiar el coste del enlace:

Router(config-if)#ip ospf cost number

-----------------------------------------------------------------------------------
***********autenticaci�n OSPF

Router(config-if)#ip ospf authentication-key password


Router(config-router)#area area-number authentication
Router(config-if)#ip ospf message-digest-key key-id md5 encryption-type key
Router(config-router)#area area-id authentication message-digest

-----------------------------------------------------------------------------------

*CONFIGURACION DE INTERVALOS Hello y de Dead en una interfaz


Router(config-if)#ip ospf hello-interval seconds
Router(config-if)#ip ospf dead-interval seconds

-----------------------------------------------------------------------------------
-
*Configuraci�n de EIGRP

router(config)#router eigrp 240


router(config-router)#network network-number
router(config-if)#bandwidth kilobits
router(config-router)#eigrp log-neighbor-changes

router eigrp 240: especifica como protocolo de enrutamiento a EIGRP


para el sistema autonomo 240, este valor varia de 1 a 65535

network: espec�fica las redes directamente conectadas al router que ser�n


anunciadas
por EIGRP

bandwidth el proceso de enrutamiento utiliza el comando bandwidth para calcular la


m�trica
y es conveniente configurar el comando para que coincida con la
velocidad de l�nea de la interfaz.

log-neighbor-changes habilita el registro de los cambios de adyacencia de vecinos


para monitorear la estabilidad
del sistema de enrutamiento y para ayudar a detectar problemas.

En versiones actuales de IOS EIGRP agrega al comando network la correspondiente


wilcard esto permite al protocolo la identificaci�n de subredes,
router(config)#router eigrp 240
router(config-router)#network 192.168.16.0 0.0.0.255

Potrebbero piacerti anche