스마트시대

Router Interface 종류 - 2 본문

온프레미스/네트워크

Router Interface 종류 - 2

스마트시대 2021. 8. 26. 18:17
728x90

## Router Interface Configuration ##

 

- Router는 다른 Device와 연결된 Interface에 올바른 대역의 IP정보를 입력하고,

  해당 Interface를 활성화시켜야 통신이 가능하다.

 

 1. 다른 장치와 연결된 Interface에 들어간다.

 

 2. Interface 역할을 주석으로 입력한다.

 

 3. 할당받은 IP 정보를 입력한다.

 

 4. 필요한 경우 L2 Protocol, Clock rate, Bandwidth, Delay 등의 값을

    입력한다.(L2 Protocol, Clock rate WAN 구간에서만 입력)

 

 5. Interface는 기본적으로 비활성화(shutdown) 상태이다. 이를 활성화 상태로

 

    (no shutdown) 변경한다.

 

-------------------------------------------------

 

- verify -

show running-config

show ip interface brief

show ip route

show ip arp

  ....

 

-----------------------------------------------------------------------------

<공통>

en

conf t

no ip domain loo

enable secret ictsec321

lin con 0

 exec-time 0 0

 logging syn

 password cisco123

 login

exit

 

<Seoul>

Router(config)#hostname Seoul

Seoul(config)#interface fastethernet 0/1

Seoul(config-if)#description ##Seoul_HQ_Sales_Office##

Seoul(config-if)#ip address 211.100.7.158 255.255.255.224

Seoul(config-if)#no shutdown

 

Seoul(config)#interface fastethernet 0/0

Seoul(config-if)#description ##Seoul_HQ_MGR_Office##

Seoul(config-if)#ip address 150.8.100.174 255.255.255.240

Seoul(config-if)#no shutdown

 

Seoul(config)#interface serial 0/0

Seoul(config-if)#description ##SP_KT_WAN_Connection##

Seoul(config-if)#ip address 1.1.100.1 255.255.255.252

Seoul(config-if)#encapsulation hdlc

Seoul(config-if)#no shutdown

 

<SP>

hostname SP

interface serial 0/1

 description ##Cumtomer_A_Seoul_HQ##

 ip address 1.1.100.2 255.255.255.252

 encapsulation hdlc

 clock rate 128000

 no shutdown

!

interface serial 0/0

 description ##Cumtomer_A_Busan_Branch##

 ip address 1.1.100.5 255.255.255.252

 encapsulation hdlc

 clock rate 128000

 no shutdown

!

 

<Busan>

hostname Busan

interface fastethernet 0/0

 description ##Busan_Branch_Office_A##

 ip address 100.7.150.110 255.255.255.240

 no shutdown

 

exit

 

interface fastethernet 0/1

 description ##Busan_Branch_Office_B##

 ip address 100.7.150.118 255.255.255.248

 no shutdown

exit

 

interface serial 0/1

 description ##SP_KT_WAN_Connection##

 ip address 1.1.100.6 255.255.255.252

 no shutdown

exit

 

 

clock rate : wan구간에는 01010 0,1 구분할 없다. 초당 비트를 몇개당 처리했다는 시스템 -> 동기화 시스템

 

728x90
반응형

'온프레미스 > 네트워크' 카테고리의 다른 글

Router Interface 종류 - 4  (0) 2021.08.26
Router Interface 종류 - 3  (0) 2021.08.26
Router Interface 종류 - 1  (0) 2021.08.25
IP(Internet Protocol) Address  (0) 2021.08.25
TCP/IP Model과 OSI 7 Layer Model (그림 설명)  (0) 2021.08.25
Comments