9일차
virtualBox 설치
https://www.virtualbox.org/wiki/Downloads
GNS3 설치
show ip
.iso 설치
https://rockylinux.org/ko-KR
**R1**
20250402
#은 관리자 모드
>은 일반 사용자 모드
config t
hostname HACKER
exit
show interface stats (연결 가능한 인터페이스 보기)
config t
interface FastEthernet0/0
ip address 192.168.0.254 255.255.255.0
no shutdown
exit
config t
interface Serial1/0
ip address 1.1.1.1 255.255.255.252
no shutdown
exit
ip route 192.168.1.0 255.255.255.0 1.1.1.2
**R2**
20250402
#은 관리자 모드
>은 일반 사용자 모드
config t
hostname HACKER
exit
show interface stats (연결 가능한 인터페이스 보기)
config t
interface FastEthernet0/0
ip address 192.168.1.254 255.255.255.0
no shutdown
exit
config t
interface Serial1/0
ip address 1.1.1.2 255.255.255.252
no shutdown
exit
ip route 192.168.0.0 255.255.255.0 1.1.1.1
