=====================================================
www.sourceforge.net --> dynamips dyngen.dynamips 설치
winpcap 설치
=====================================================
simulator
시뮬레이션 --> 실 환경 아님
netsim
boson network simulator
packet tracer --> 현재 ( ccna / ccnp /wireless /voip )
emulator
실 환경 구동 ( 가상 )
dynamips / dynagen(구동환경)
dynamips-gui
GNS
장비 ( 일부 )
스위치 ( 지원안됨 )
cisco IOS ( 운영체제 ) 를 가상 --> cpu가상화
intel / AMD : x86 --> (CISC)
motorolar --> MIPS ( RISC)
라우터 구성
라우터와 연결된 피씨에서 터미널로 셋팅
enable
configure terminal
hostname R1
enable password cisco
ctrl + Z
copy runing-config startup-config
R1# configure terminal
R1(config)# interface fastEthernet 0/0
R1(config-if)# ip address 192.168.1.254 255.255.255.0
R1(config-if)# no shut
R1(config)# int serial 1/0
R1(config-if)# ip address 192.168.2.1 255.255.255.0
R1(config-if)# bandwidth 64
R1(config-if)# clock rate 56000 ( DCE 있는 쪽에만 설정한다 )
R1(config-if)# no shut
R1# ping 192.168.2.2 ( 양쪽 라우터에 설정을 한후에 실행해본다 )
R1# show ip route
R1(config)# ip route 192.168.3.0 255.255.255.0 s1.0
R1# show ip route
R1# copy run start
R1# ping 192.168.3.1 ( 양쪽 라우터에 설정을 한후에 실행해본다 )
R2# configure terminal
R2(config)# interface fastEthernet 0/0
R2(config-if)# ip address 192.168.3.254 255.255.255.0
R2(config-if)# no shut
R2(config)# int serial 1/0
R2(config-if)# ip address 192.168.2.2 255.255.255.0
R2(config-if)# bandwidth 64
R2(config-if)# no shut
R2# ping 192.168.2.1 ( 양쪽 라우터에 설정을 한후에 실행해본다 )
R2# show ip route
R2(config)# ip route 192.168.1.0 255.255.255.0 s1.0
R2# show ip route
R2# copy run start
R2# ping 192.168.1.1 ( 양쪽 라우터에 설정을 한후에 실행해본다 )