10일차
라우터는 다른 네트워크를 연결시켜준다.
192.168.10.0/24
192.168.10.1/24 192.168.10.254
192.168.0.0/24
ip 192.168.0.1/24 192.168.0.254
R2
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
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
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
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