Ing. Ricardo Fernando Marroquín
HDLC (High Level Data Link Control)
HDLC (High Level Data Link Control)
Comando | Descripción |
---|---|
R1(config)#interface serial 0/0 | Ingresar a la interfaz |
R1(config)#encapsulation HDLC | Configura HDLC cn su protocolo WAN capa 2 |
R1#show interface serial 0/0 | Muestra la información general de la interfaz serial. |
PPP (Point to Point)
PPP (Point to Point)
PAP(Pasword authentication protocol) CHAP (Challenge Handshake Authentication Protocol)
PPP (Point to Point)
Comando | Descripción |
---|---|
R1(config)#interface serial 0/0 | Ingresar a la interfaz |
R1(config)#encapsulation ppp | Habilita el protocolo PPP |
R1#show interface serial 0/0 | Muestra la información general de la interfaz serial. |
Comando | Descripción |
---|---|
R1(config)#username XX password XX | Se debe configurar el username y password remotos |
R1(config)#interface s0/0/0 | Acceder a la interfaz |
R1(config-if)#ppp authentication PAP | Habilita la autenticación PAP |
R2(config)#username XX2 password XX2 | Se debe configurar el username y password remotos |
R2(config)#interface s0/0/0 | Acceder a la interfaz |
R2(config-if)#ppp pap sent-username XX password XX | Se debe configurar esta opción con el username y password locales |
R1(config-if)#ppp pap sent-username XX2 password XX2 | Se debe configurar esta opción con el username y password locales |
Comando | Descripción |
---|---|
R1(config)#interface s0/0/0 | Acceder a la interfaz |
R1(config-if)#ppp authentication CHAP | Habilita la autenticación CHAP |
R1(config)#username XX2 password XX2 | Se debe configurar HOSTNAME y password REMOTO |
R2(config)#username XX1 password XX1 | Se debe configurar HOSTNAME y password REMOTO |
router# debug ppp authentication | Provee la información en tiempo real de la autenticación del protocolo PPP |
Ing. Ricardo Fernando Marroquín