INTERFACE SERIAL
!-- R1(DCE)
R1(config)# interface serial 1
R1(config-if)# encapsulation ppp
R1(config-if)# ip address 192.168.2.1 255.255.255.0
R1(config-if)# bandwidth 64
R1(config-if)# clock rate 64000
R1(config-if)# no shutdown
R1(config-if)# end
!-- R1(DTE)
R2(config)# interface serial 1
R2(config-if)# encapsulation ppp
R2(config-if)# ip address 192.168.2.2 255.255.255.0
R2(config-if)# bandwidth 64
R2(config-if)# no shutdown
R2(config-if)# end
INTERFACE ETHERNET
!-- R1
R1(config)# interface ethernet 0
R1(config-if)# ip address 192.168.1.1 255.255.255.0
R1(config-if)# no shutdown
R1(config-if)# end
!-- Host
IP : 192.168.1.2
S.N : 255.255.255.0
G.W : 192.168.1.1
INTERFACE LOOPBACK
!-- R1
R1(config)# interface loopback 0
R1(config-if)# ip address 192.168.3.1 255.255.255.0
R1(config-if)# no shutdown
R1(config-if)# end
|