티스토리 뷰
[예제] 네트워크를 구성해보자. (첨부파일)
[Step 1] 기본 네트워크 구성을 해야된다.
http://jeongzzang.com/33
- 위 링크를 한번 보고 오는것이 좋다.
- 라우터0 을 설정해야된다.
- 라우터와 스위치를 연결하기 위해 FastEthernet 포트에 IP를 할당합니다.
Router>enable
Router#configure terminalEnter configuration commands, one per line. End with CNTL/Z.
Router(config)#interface FastEthernet 0/0
Router(config-if)#ip address 192.168.10.254 255.255.255.0
Router(config-if)#no shutdownRouter(config-if)#
%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
- 이와 같이 설정을 하고 난 후
Router# show running-config
* 참고로 라우터가 3개이므로 반복해서 작성해주시되 IP 만 해당 라우터에 맞게 수정하면 된다.
- pc 설정은 위 사진과 같다.
- Step 1 을 완료 했으면 위와 같이 표시가 될 것이다.
- 이제 다른 라우터와 통신을 하기 위해 시리얼 슬롯에 IP를 설정한다.
Router>enable
Router#configure terminalEnter configuration commands, one per line. End with CNTL/Z.
Router(config)#interface Serial 1/0
Router(config-if)#ip address 192.168.110.1 255.255.255.0
Router(config-if)#no shutdownRouter(config-if)#
%LINK-5-CHANGED: Interface Serial 1/0 , changed state to up
- 이와 같이 설정한다.
- 나머지 라우터 역시 이와 같은 방법으로 설정 해준다.
[Step 3] 정적으로 라우터 주소를 연결해 줘야된다.
- 먼저 상대 라우터의 시리얼 슬롯에 IP를 설정야 된다. [Step 2] 를 이야기 하는 것이다.
Router>enable
Router#configure terminal
Router(config)#ip route 192.168.20.0 255.255.255.0 Serial 1/0
Router(config)#exit
- 이와 같이 설정한다.
Router#show ip route
- 설정 후 라우터 테이블을 확인 한다.
C 192.168.10.0/24 is directly connected, FastEthernet0/0
S 192.168.20.0/24 is directly connected, Serial1/0
S 192.168.30.0/24 is directly connected, Serial1/0
C 192.168.110.0/24 is directly connected, Serial1/0
- 왼쪽 라우터에서 입력했을 때 나오는 결과이다.
S 192.168.10.0/24 is directly connected, Serial1/1
C 192.168.20.0/24 is directly connected, FastEthernet0/0
S 192.168.30.0/24 is directly connected, Serial1/0
C 192.168.110.0/24 is directly connected, Serial1/1
C 192.168.120.0/24 is directly connected, Serial1/0
- 가운데 라우터는 이와 같은 결과가 나올 것이다.
- 시그널 슬롯도 양 옆으로 두개라는 걸 보아야 된다.
- 마무리가 되면 이와 같이 나올 것이며, 시뮬레이션을 통하여 메세지를 전송해서 확인해보아야 된다.
- 확인 방법은 아래 링크를 들어가서 참고하면 알수있다.
http://jeongzzang.com/33
'Cisco' 카테고리의 다른 글
[Cisco] 패킷트레이서 Vlan (Access) 설정 (0) | 2018.02.13 |
---|---|
[Cisco] Trunk 프로토콜 (0) | 2018.02.12 |
[Cisco] 패킷트레이서 기본 네트워크 구성 (1) | 2018.02.12 |
[Cisco] 스위치 ip 설정 (0) | 2018.02.09 |
[Cisco] 라우터 SSH 설정 (0) | 2018.02.08 |
- Total
- Today