and Answers
command to show which router connection is set as the clock DCE? - Answer-do show
con s0/0/1 or s0/0/0 depending on which serial the cable is connected to.
set the clock rate to 4000000 - Answer-clock rate 4000000
show the ip of interface s0/0/1 - Answer-do show ip int s0/0/1
show the status of interface s0/0/1 - Answer-do show int s0/0/1
show the status of all the connections in a router - Answer-do show ip int brief
set encapsulation to ppp on a router int s0/0/1 - Answer-config t
int s0/0/1
enc ppp
do wr
end
Note: make sure to set both clock and receiving int to the same encapsulation protocol.
a point to point link is associated to what subnet mask - Answer-255.255.255.252 or /30
OSPF stands for - Answer-Open Shortest Path First
disable routing - Answer-no ip routing
enable dhcp client on interface f0/0 - Answer-int f0/0
ip address dhcp
Configure DHCP on a router using a pool named POOL1 with a lease of 7 days -
Answer-ip dhcp pool POOL1
net 192.168.100.0 255.255.255.0
dns-server 192.168.100.1
default-router 192.168.100.1
lease 7
do show run
int f0/0
ip address 192.168.100.1 255.255.255.0
no shut
do wr