본문 바로가기
工夫/Network

Dynamips-Basic 1

by 치세 2009. 8. 2.

라우터 1번 연결하기...

Router>enable
Router#config
Configuring from terminal, memory, or network [terminal]? t
Router#hostname R1
R1(config)#interface loopback 0
R1(config-if)#exit
R1(config)#interface serial 1/0
R1(config-if)#ip address 192.168.1.2 255.255.255.252
R1(config-if)#bandwidth 1024
R1(config-if)#encapsulation hdlc
R1(config-if)#no shutdown
R1(config-if)#end
R1#copy running-config startup-config
Destination filename [startup-config]?
Building configuration...
[OK]
R1#



라우터 2번 연결하기
Router>enable
Router#config
Configuring from terminal, memory, or network [terminal]? t
Router#hostname R2
R2(config)#interface fastEthernet 0/0
R2(config-if)#ip address 172.11.0.1 255.255.255.0
R2(config-if)#no shutdown
R2(config-if)#exit
R2(config)#interface serial 1/0
R2(config-if)#ip address 192.168.1.1 255.255.255.252
R2(config-if)#bandwidth 1024
R2(config-if)#encapsulation hdlc
R2(config-if)#no shutdown
R2(config-if)#end
R2#copy running-config startup-config
Destination filename [startup-config]?
Building configuration...
R2#
R2#ping 192.168.1.2

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.1.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 20/63/92 ms


● Loopback Interface
- Loopback Interface는 실제 물리적인 device 연결을 할 수 없는 상황이 발생할 때 그 문제를 해결하기 위한 가상 네트워크를 만들어 확인시켜줄 수 있는 인터페이스입니다.
- 실제 장비처럼 사용할 수 없으며, 실제 네트워크가 존재하는 것처럼 확인은 할수 있기 때문에 많은 곳에서 사용됩니다.
- Loopbak Interface는 다른 방비들과 연결하지 않는 독립적인 인터페이스기 때문에 장비와 장비간 통신을 할 수 있도록 만들어 주는 조건은 필요하지 않습니다. 만약 필요하다면 해당 가상 네트워크로 이동할 수 있는 IP Address만 있으면 됩니다.

'工夫 > Network' 카테고리의 다른 글

Dynamips - Static-LAB 라우터 구축하기  (0) 2009.08.03
Packet Tracer 를 이용한 라우터 연결 2  (0) 2009.08.02
Dynamips 설치하기  (0) 2009.08.02
Router 추가부팅 과정  (0) 2009.08.01
IP할당  (0) 2009.08.01

댓글