kjh00n의 기록저장소

실습2 본문

Network

실습2

kjh00n 2024. 10. 21. 17:10

※VMnet8과 연결되어 있는 라우터에는 무조건 NAT-PAT를 해야한다.(근데 안해도 통신이 됨)

 

 

 

●내가 한 것

R1
conf t
int fa 0/0
ip addr 10.10.10.1 255.255.255.0
no shu
int fa 0/1
ip addr 20.20.20.1 255.255.255.0
no shu
int fa 1/0
ip addr 192.168.50.254 255.255.255.0
no shu
ip route 0.0.0.0 0.0.0.0 192.168.50.2
router ospf 1
network 10.10.10.0 0.0.0.255 area 1
network 20.20.20.0 0.0.0.255 area 1
network 192.168.50.0 0.0.0.255 area 1

R2
conf t
int fa 0/0
ip addr 100.100.100.254 255.255.255.0
no shu
int fa 0/1
ip addr 10.10.10.2 255.255.255.0
no shu
ip route 0.0.0.0 0.0.0.0 192.168.50.2
router ospf 1
network 100.100.100.0 0.0.0.255 area 1
network 10.10.10.0 0.0.0.255 area 1

R3
conf t
int fa 0/0
ip addr 200.200.200.254 255.255.255.0
no shu
int fa 0/1
ip addr 20.20.20.3 255.255.255.0
no shu
ip route 0.0.0.0 0.0.0.0 192.168.50.2
router ospf 1
network 200.200.200.0 0.0.0.255 area 1
network 20.20.20.0 0.0.0.255 area 1

VMnet8
ip 192.168.50.222
GW 192.168.50.254

VMnet2
ip 200.200.200.1
GW 200.200.200.254

 

●정석

R1에 ip route 0.0.0.0 0.0.0.0 192.168.50.2를 해주고

나머지 라우터들에는 static route를 해준다.

ospf 안쓴다.

'Network' 카테고리의 다른 글

실습4  (0) 2024.10.24
(실습3) 공인 ip가 2개 필요할 때  (0) 2024.10.21
다른 네트워크끼리의 통신하는 법  (0) 2024.10.21
실습1  (0) 2024.10.18
Inter Vlan,Multi Layer Switch 설정방법  (0) 2024.10.17