Please Enable JavaScript!
Mohon Aktifkan Javascript![ Enable JavaScript ]

라우터 인터페이스

2015. 7. 16. 01:14network

728x90



위와 같이 라우터1의 설정은 아래와 같다.


WIC-2T 카드를 라우터 뒤 포트에 넣어준다. 

이 카드는 아래와 같은데 아직 배우는 입장이라 나중에 좀더 자세히 찾아봐야겟다.


The dual-serial port WAN interface cards (WICs) feature Cisco`s new, compact, high-density Smart Serial connector to support a wide variety of electrical interfaces when used with the appropriate transition cable. Two cables are required to support the two ports on the WIC. Each port on a WIC is a different physical interface and can support different protocols such as Point-to-Point protocol (PPP) or Frame Relay and Data Terminal Equipment/Data Communications Equipment (DTE/DCE).


빨간색 선은 DCE, DTE 선이다.

 

 

DTE(Data Terminal Equivment)

- 사용자-네트워크 인터페이스의 사용자측에서 데이터 발신 장치나 수신 장치, 또는 두가지 겸용으로 사용된다.

- DTE에는 반드시 모뎀과 같은 DCE 장치를 통해 데이터 네트워크에 연결되며, 일반적으로 DCE에 의해 생성된 클

럭처리 신호를 사용한다.

- DTE에는 컴퓨터, 멀리플렉서, 라우터 등과 같은 장치가 포함된다.

DCE(Data Cummunication Equivment)

- 사용자-네트워크 인터페이스의 네트워크 측으로 구성되는 통신 네트워크 장비의 연결 수단

- DCE는 네트워크로 연결되는 물리적 수단이 되며, 트래픽을 전송하고, DCE 장치와 DTE장치 사이에서 데이터 전

송을 동기화 시키는데 사용된느 클럭신호를 제공

- DCE에는 모뎀과 인터페이스카드가 포함된다.

(출처 : http://www.cyworld.com/Gh0st/5144725)


검은색 점선은 라우터와 라우터 간에 연결시켜주는 크로스케이블이다.


라우터의 아이피 설정을 해주는 명령어는 다음과 같다.


enable->configure terminal-> interface Fastethernet 0/0


Router(config-if)#ip address 1.1.21.1 255.255.255.0


이런 방식으로 이더넷 IP 값을 설정해주고


interface serial 0/0


Router(config-if)#ip address 1.1.12.1 255.255.255.0


Serial 인터페이스(WAN) ip는 위와 같이 설정.


R22(config)#interface fastEthernet 0/0

R22(config-if)#ip address 1.1.21.2 255.255.255.0

R22(config-if)#exit

R22(config)#

R22(config)#interface serial 0/0

R22(config-if)#ip address 1.1.12.2 255.255.255.0

R22(config-if)#

R22#


연결된 두 케이블간에는 같은 Subnet 주소를 갖는다.

또한 링크간 캡슐화 타입이 같아야 한다.

한쪽이 HDLC링크면 다른쪽도 HDLC, PPP<->PPP ....


LAN 인터페이스는 Ethernet이나 FastEthernet 인터페이스와 같은 인터페이스로 

Router를 LAN에 연결하는데 사용.


WAN 인터페이스는 Serial, ISDN, 프레임 릴레이 인터페이스와 같은 인터페이스.

일반적으로 지리적 범위가 넓은 외부 네트워크에 라우터를 연결할 때 사용.


2계층 프로토콜에 따라 PPP, 프레임 릴레이, HDLC 등 서로 다른 종류가 될 수 있다.

MAC 주소는 Ethernet 인터페이스 상에서만 사용되며, WAN 인터페이스에서는사용되지 않음.


또한 라우터에 모든 인터페이스는 기본적으로 shutdown(비활성) 상태이다.

따라서 활성화 시켜야 한다.

이때 모든 명령어 맨 앞에 no 를 입력하면 그 명령의 반대명령이 들어간다.


비활성화 -> 활성화


R22(config)#interface fastEthernet 0/0

R22(config-if)#no shutdown


R22(config-if)#

%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up



R22(config)#interface serial 0/0

R22(config-if)#no shutdown


R22(config-if)#

%LINK-5-CHANGED: Interface Serial0/0, changed state to up


%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/0, changed state to up


위 명령어는 활성화 시키는 명령어. ( 이더넷 시리얼 활성화 )





위 그림과 같이 show ip interface brief 명령어를 통해

 FastEthernet0/0 과 Serial 0/0 부분에 Status 값이 up을 보면 활성화 되있는 것을 볼 수 있다.


Router#ping 1.1.21.2


Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 1.1.21.2, timeout is 2 seconds:

.!!!!

Success rate is 80 percent (4/5), round-trip min/avg/max = 0/0/1 ms


Router#


위처럼 ping으로 연결됨을 확인 할 수 있다. 빨간색 글씨로 .!!!! 있는데  '.' 점 부분은 연결이 안된거고 ! 부터 통신이 되고있는 것을 보고 있다. 통상 첫 번째 . 이 나온다고하는데 더 자세히 알아봐야겠다.


show controllers serial 0/0 명령을 입력하면 설정된 값을 볼 수 있는데 DCE라는 것을 알 수 있다.




728x90