1. Router0 에 NAT 해주기
Router0(config)#int f0/0
Router0(config-subif)#ip nat inside
Router0(config)#int f1/0
Router0(config-if)#ip nat outside
2. 주소변환 - 조건 정책 설정 (사설IP정보->ACL )
Router0(config)#access-list 1 permit 10.10.23.0 0.0.0.255
3. NAT 정책 설정 (공인IP가 설정 된 outside interface 를 이용 )
Router0(config)# ip nat inside source list 1 int f1/0 overload
4. Default routing 을 인터넷세계로 연결 ( 이건 고대로치면 됨 )
Router0(config)# ip route 0.0.0.0 0.0.0.0 200.200.200.254 // 나가는 문 주소
+) 5. 조원과 통신을 위한 static route 설정
Router0(config)# ip route 10.10.45.0 255.255.255.0 192.168.0.100
Router0(config)# ip route 10.10.94.0 255.255.255.0 192.168.0.100
'INFOSEC > NETWORK' 카테고리의 다른 글
네트워크 보안 운영 (0) | 2019.10.02 |
---|---|
DHCP Attack (0) | 2019.10.02 |
DHCP (0) | 2019.09.27 |
IDS - Port Mirroring - SPAN 실습 (0) | 2019.09.26 |
시스템보안운영 (0) | 2019.09.20 |