1.VM ware를 통해 내부ip(192.168.1.xx /24 )를 가진 서버를 생성한다.
2.Vmware를 통하여 외부ip(10.xx.xx.xx / 8)를 가진 client를 생성한다.(GUI로 생성)
3.Destination NAT를 통하여 client가 server에 통신이 가능하도록 해보자.

#VMnet1(내부 네트워크) 설정

#외부 네트워크 설정

#R1
R1(config)#int f0/0 | |
R1(config-if)#ip add 192.168.1.250 255.255.255.0 | ip를 정적으로 설정 |
R1(config-if)#no shu | |
R1(config-if)#ip nat inside | nat inside 포트 설정 |
R1(config-if)#int f0/1 | |
R1(config-if)#ip add dhcp | ip를 동적으로 설정 |
R1(config-if)#no shu | |
R1(config-if)#ip nat outside | natoutside 포트 설정 |
R1(config)#do sh ip int br | 동적으로 절정한 f0/1의 ip 확인 |
R1(config)#ip nat inside source static 192.168.1.80 10.10.90.246 | 192.168.1.80의 정보를 10.10.90.246만 통신 가능하면확인 할 수 있도록 Destination NAT 설정 |