kjh00n의 기록저장소

GNS3 기초 실습 본문

Network

GNS3 기초 실습

kjh00n 2024. 10. 26. 09:49

PC1
ip 10.10.10.1 255.255.255.0 10.10.10.254
PC2
ip 20.20.20.1 255.255.255.0 20.20.20.254
PC3
ip 30.30.30.1 255.255.255.0 30.30.30.254

R1
conf t
int fa 0/0
ip addr 10.10.10.254 255.255.255.0
no shu
int fa 0/1
ip addr 40.40.40.1 255.255.255.0
no shu
ip route 0.0.0.0 0.0.0.0 40.40.40.2

R2
conf t
int fa 0/0
ip addr 40.40.40.2 255.255.255.0
no shu
int fa 0/1
ip addr 50.50.50.2 255.255.255.0
no shu
int fa 1/0
ip addr 30.30.30.254 255.255.255.0
no shu
ip route 10.10.10.0 255.255.255.0 40.40.40.1
ip route 20.20.20.0 255.255.255.0 50.50.50.3

R3
conf t
int fa 0/0
ip addr 20.20.20.254 255.255.255.0
no shu
int fa 0/1
ip addr 50.50.50.3 255.255.255.0
no shu
ip route 0.0.0.0 0.0.0.0 50.50.50.2


ACL 설정했을 때

R1에 설정하는 경우
access-list 100 deny icmp host 10.10.10.1 host 20.20.20.1
access-list 100 permit icmp host 10.10.10.1 host 30.30.30.1
int fa 0/0
ip access-group 100 in

R3에 설정하는 경우
access-list 100 deny icmp host 20.20.20.1 host 10.10.10.1
access-list 100 permit icmp host 20.20.20.1 host 30.30.30.1
int fa 0/0
ip access-group 100 in

'Network' 카테고리의 다른 글

GNS3 통신 구간 Wireshark로 확인 실습  (0) 2024.10.26
GNS3 OSPF,ACL 실습  (0) 2024.10.26
Network Static Routing 실습  (0) 2024.10.26
Network RIP 실습  (0) 2024.10.26
Network Wan 실습  (0) 2024.10.26