Category: CCNA Study Guide

Logging Synchronous Command on CISCO Router/Switch

Command Logging Synchronous Use When enabled on a console, logging synchronous causes all router status messages to be displayed on a new line. Syntax Router(config-line)#logging synchronous Example For this example, logging synchronous was disabled for console 0 on R2. R2(config-line)#no logging synchronous Notice now that when status messages …

Delay Command on CISCO Router/Switch

Command Delay Use This command is used to logically set the delay of an interface, some protocols such as EIGRP use delay for its metric calculations.. Syntax Router(config-if)#Delay <tens of microseconds> Example In this example we set R1’s Fa0/0 interface to have a delay of 200. R1(config-if)#do show …

IP NAT Enable Command on CISCO Router/Switch

Command IP NAT Enable Use This command is used to enable NAT on an interface. This command figures out whether the interface is inside or outside based on the source IP addresses of packets. IP NAT enable can not translate local router traffic. Syntax Router(config-if)#ip bandwidth-percent eigrp <AS> …

Frame-Relay Inverse-Arp Command on CISCO Router/Switch

Command Frame-Relay Inverse-Arp Use This command enables frame-relay inverse-arp. Frame-relay uses inverse-map to dynamically learn remote IP addresses and its local DLCIs. Syntax Router(config-if)#frame-relay inverse-arp OR Router(config-if)#frame-relay inverse-arp ip <dlci> Example In this example we will configure R4 to use frame-relay. R4(config)#int s0/0 R4(config-if)#encapsulation frame-relay R4(config-if)#ip add 10.4.4.4 255.255.255.0 …

Encapsulation Frame-Relay Command on CISCO Router/Switch

Command Encapsulation Frame-Relay Use This command enables frame-relay on a serial interface. Syntax Router(config-if)#encapsulation frame-relay Example In this example we will configure R4 to use frame-relay as per the diagram above. R4(config)#int s0/0 R4(config-if)#encapsulation frame-relay R4(config-if)#ip add 10.4.4.4 255.255.255.0 R4(config-if)#no shut After that we configure frame relay on …

PPP CHAP Hostname Command on CISCO Router/Switch

Command PPP CHAP Hostname Use This command is used to send a hostname to a remote CHAP server for authentication. Syntax Router(config-if)#ppp chap hostname <hostname> Example In this example R1’s S1/1 interface is configured to authenticate R3 using CHAP. R1(config)#int s1/1 R1(config-if)#encapsulation ppp R1(config-if)#ppp authentication chap R1(config-if)# *Mar …

IP Split-Horizon EIGRP Command on CISCO Router/Switch

Command IP Split-Horizon EIGRP Use Split Horizon protects against routing loops by not accepting routes on the same interface that a router sends updates out. This normally has to be turned off in hub and spoke topologies to ensure full reachability. Syntax Router(config-router)#network <ip address> OR Router(config-router)#network <ip …

Speed Command on CISCO Router/Switch

Command Speed Use This command is used to set the speed at which an interface opertates at. Syntax Router(config-if)#speed <number or auto> Options <number> Sets the interface to a given speed, can be 10, 100, 1000 depending on the interface type. <auto> Will autonegotiate the speed of the …

CDP Enable Command on CISCO Router/Switch

Command CDP Enable Use This command is used to enable CDP on interfaces. By default it is enabled on most interfaces except for frame-relay interfaces. Syntax Router(config-if)#cdp enable Example In this example R1’s S1/1 interface is configured to authenticate R3 using PAP. R1(config)#int fa0/0 R1(config-if)#cdp enable Here we …

IP OSPF Network Point to Multipoint Command on CISCO Router/Switch

Command IP OSPF Network Point to Multipoint Use This command manually sets the OSPF network type to point-to-multipoint. The point-to-multipoint network type does not have an election. Syntax Router(config-if)#ip ospf network point-to-multipoint Example In this example, we will configure R4’s frame-relay link to use the point-to-multipoint network type. …