본문 바로가기
Programming/Hacking & Security

[CCNA] 라우터간 Interface 설정 실습 By 용호

by ★용호★ 2010. 3. 18.


2010년 3월 18일 목요일

실습내용

 IP는 YY.YY.XY.X/24 방식으로 한다.
(날짜.날짜.통신라우터번호.라우터 - 오늘 18일 통신하는 라우터 R1, R2일경우 → R1 : 18.18.12.1, R2 : 18.18.12.2)

1. hostname
2. enable password(cisco)
3. console option 3개
4. telnet setup
4-1. R1, R2 Password 인증 (Password : CCNA)
4-2. R3, R4 Local 인증 (User : CCNA, Password : CCNP)




4개의 라우터를 통신할 수 있도록 연결하기 위해 각각의 라우터당 두개의 아이피씩 할당했다.  R1은 R2,R4와 통신하기 위해, R2는 R1,R3와, R3는 R2,R4, R4는 R1, R3 이렇게 연결 했다.  우선 R1은 R2와 통신할때 R1이 DCE로 설정, R2는 R3와 통신할때 DCE, R3는 R4와 통신할때 DCE, R4는 R1과 통신할때 DCE로 되어 있다.
 -요약-
R1(DCE) → R2
R2(DCE) → R3
R3(DCE) → R4
R4(DCE) → R1


R1 설정

 기본 셋팅
Router#conf terminal
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#hostname R1
R1(config)#line vty 0 4
R1(config-line)#password CCNA
R1(config-line)#login
R1(config-line)#exit
R1(config)#enable password cisco
R1(config)#line console 0
R1(config-line)#exec-timeout 0
R1(config-line)#logging syn
R1(config-line)#logging synchronous
R1(config-line)#exit

R1과 R2통신을 위한 Interface 설정
R1(config)#interface serial 0/0
R1(config-if)#encapsulation ppp
R1(config-if)#ip address 18.18.12.1 255.255.255.0
R1(config-if)#bandwidth 64
R1(config-if)#clock rate 64000       (DCE일 경우에만)
R1(config-if)#no shutdown

R1과 R4통신을 위한 Interface 설정
R1(config)#interface serial 0/1
R1(config-if)#ip address 18.18.14.1 255.255.255.0
R1(config-if)#bandwidth 64
R1(config-if)#no shutdown

→R2도 R1과 같은 방식으로 설정되어 있음



R3 설정

기본 셋팅
Router#conf terminal
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#hostname R3
R3(config)#enable password cisco
R3(config)#line vty 0 4
R3(config-line)#password cisco
R3(config-line)#login
R3(config-line)#exit
R3(config)#line console 0
R3(config-line)#exec-timeout 0
R3(config-line)#logging synchronous
R3(config-line)#exit

사용자 계정 생성
R3(config)#username CCNA password CCNP
R3(config)#line console 0
R3(config-line)#login local
R3(config-line)#exit

R3와 R2통신을 위한 Interface 설정
R3(config)#interface serial 0/1
R3(config-if)#ip address 18.18.23.3 255.255.255.0
R3(config-if)#bandwidth 64
R3(config-if)#no shutdown

R3와 R4통신을 위한 Interface 설정
R3#conf terminal
Enter configuration commands, one per line.  End with CNTL/Z.
R3(config)#interface serial 0/0
R3(config-if)#encapsulation ppp
R3(config-if)#ip address 18.18.34.3 255.255.255.0
R3(config-if)#bandwidth 64
R3(config-if)#clock rate 64000       (DCE일 경우에만)
R3(config-if)#no shutdown


→R4도 R3과 같은 방식으로 설정되어 있음


보완점

1. DCE를 모든 라우터가 하나씩 갖게끔 했는데 한쪽으로 몰아주는것이 간편하다. R1과 R3에 DCE를 주고, R2와 R4는 DTE로만 사용
2. R3, R4의 경우 telnet 접속시 UserDB에 등록된 사용자 ID로 로그인하라고 지시되어 있는데 콘솔에 사용자 ID를 사용하게 만들었다.
 line console 0 에 login local을 주면 콘솔 로그인시 사용자 ID를 이용하는 것이고 line vty 0 4에 login local을 주면 telnet 접속시 사용자 ID로 로그인할 수 있다.


- Packet Trace 저장 파일




댓글