Serial Interface


 


WAN 구간을 연결 시 사용되는 Interface이며
Ethernet과는 달리 Layer 2 Protocol 및 전송속도 , 대역폭을 지정해주어야 한다.
[근거리에서는 Back-to-back Cable을 사용하며 원거리 연결 시 CSU/DSU를 사용하여 연결 실시]


                          192.168.12.0/24                          192.168.23.0/24
                  S1/0                              S1/1    S1/0                              S1/1
              R1-------------------------------R2-------------------------------R3
               |                                             |                                            |
            Fa0/0                                        Fa0/0                                     Fa0/0
               |                                             |                                            |
             SW1                                        SW2                                        SW3
       192.168.1.0/24                            192.168.2.0/24                           192.168.3.0/24


# R1    [DTE]
R1(config)# interface serial 1/0
R1(config-if)# no shutdown
R1(config-if)# encapsulation hdlc
R1(config-if)# bandwidth 64
R1(config-if)# ip address 192.168.12.1 255.255.255.0

# R2    [DCE]
R2(config)# interface serial 1/1
R2(config-if)# no shutdown : Layer 1 활성화 상태로 전환 (shutdown은 비활성화 상태로 전환)
R2(config-if)# encapsulation hdlc    : Layer 2 Protocol지정 (Cisco Router의 Serial은 기본적으로 HDLC로 동작을 실시)
R2(config-if)# bandwidth 64 : 대역폭 지정 [단위 : Kbps]
R2(config-if)# clock rate 64000       : 대역폭에 따른 전송 속도 지정 [단위 : bps]
R2(config-if)# ip address 192.168.12.2 255.255.255.0  :  Layer 3 주소 할당
!
R2(config)# interface serial 1/0
R2(config-if)# no shutdown : Layer 1 활성화 상태로 전환 (shutdown은 비활성화 상태로 전환)
R2(config-if)# encapsulation hdlc    : Layer 2 Protocol지정 (Cisco Router의 Serial은 기본적으로 HDLC로 동작을 실시)
R2(config-if)# bandwidth 64 : 대역폭 지정 [단위 : Kbps]
R2(config-if)# clock rate 64000       : 대역폭에 따른 전송 속도 지정 [단위 : bps]
R2(config-if)# ip address 192.168.23.2 255.255.255.0  :  Layer 3 주소 할당
!

# R3    [DTE]
R3(config)# interface serial 1/1
R3(config-if)# no shutdown
R3(config-if)# encapsulation hdlc
R3(config-if)# bandwidth 64
R3(config-if)# ip address 192.168.23.3 255.255.255.0


* 정보 확인

R1# show ip route
R1# show interface serial 1/0
R1# show controller serial 1/0
R1# show ip interface brief
R1# ping 192.168.12.2

R2# show ip route
R2# show interface serial 1/0   : Serial interface의 기본 정보 확인
R2# show interface serial 1/1   : Serial interface의 기본 정보 확인
R2# show controller serial 1/0  : Serial interface이 DCE , DTE , Clock rate값 확인
R2# show controller serial 1/1  : Serial interface이 DCE , DTE , Clock rate값 확인
R2# show ip interface brief      : Interface의 상태 정보 확인
R2# ping 192.168.12.1       : R1 Next-hop 구간 통신
R2# ping 192.168.23.3       : R3 Next-hop 구간 통신

R3# show ip route
R3# show interface serial 1/1
R3# show controller serial 1/1
R3# show ip interface brief
R3# ping 192.168.23.2

+ Recent posts