728x90
반응형
Question.A network associate is configuring a router for the weaver company to provide internet access. The ISP has provided the company six public IP addresses of 198.18.184.105 198.18.184.110. The company has 14 hosts that need to access the internet simultaneously. The hosts in the company LAN have been assigned private space addresses in the range of 192.168.100.17 – 192.168.100.30 .
나름해석) weaver 라는 회사에 인터넷을 설치할라고 한다.
ISP 업체로부터 여섯개의 공인 IP 를 받았다.(198.18.184.105~198.18.184.110)
인터넷을 사용할 직원이 14명이다. 내부용 IP 는 192.168.100.17~192.168.100.30 니까 셋팅 함 해봐라.
Configuration information
router name - Weaver
inside global address - 198.18.184.105 198.18.184.110/29
inside local address - 192.168.100.17 - 192.168.100.30/28
number of inside hosts - 14
Router>en
• password:***** <- 암호는 cisco 이다.
• Router#config terminal
• Router(config)#hostname Weaver
• Weaver(config)#ip nat pool test 198.18.184.105 198.18.184.110 netmask 255.255.255.248
- global address 에 대해서 pool 설정을 한다.
• Weaver(config)#access-list 1 permit 192.168.100.16 0.0.0.15
- local address 에 대해서 acl 을 permit 시켜줘야 한다. wildcard Mask 사용
• Weaver(config)#ip nat inside source list 1 pool test overload
- nat 시킬 source acl 과 pool 을 매핑시킨다.
• Weaver(config)#interface serial 0/0
• Weaver(config-if)#ip nat outside
- serial interface 에 outside 설정
• Weaver(config-if)#exit
• Weaver(config-if)#interface fastethernet 0/0
• Weaver(config-if)#ip nat inside
- local interface 에 inside 설정
• Weaver(config-if)#end
• Weaver#copy running-config startup-config <-- write 로 대체 가능
728x90
반응형
'IT 이야기 > 네트워크(Network)' 카테고리의 다른 글
cisco dhcp 를 이용한 mac address 고정IP 설정 (0) | 2012.07.18 |
---|---|
ip dhcp smart-relay (0) | 2012.01.11 |
UTP Cable 상태 확인 명령(Cisco cable-diagnostics tdr) (4) | 2011.08.26 |
Cisco IOS Upgrade(overwrite) (3) | 2011.04.12 |
라우터를 이용한 Password 암호화 해독하기 (password decryption) (4) | 2011.04.07 |
내 PC의 네트워크 대역폭, 숨겨진 20%를 끄집어 내자. (0) | 2011.03.25 |
Ping 명령 활용하기 (ping output text file) (2) | 2011.03.25 |
Cisco 장비의 S/N 확인명령 (show inventory) (0) | 2011.02.24 |