안녕하세요.. 요새는 조금 자주 나타나죠..?? ^^ 이번시간에는 전 시간에 이어서 라우터에서의 DHCP 구성을 실제 해보도록 하겠습니다.. 먼저 라우터에서 DHCP 서버를 구성해주기 위해서는 다음 명령을 입력해 주어야 합니다. Router_A#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Router_A(config)#service dhcp
즉 라우터에서 DHCP 서버나 전달 에이전트를 Enable 해주는 거죠.. 디폴트 값이 Enable 이기 때문에 특별히 해주지 않아도 되지만 저는 항상 확실히 해주고 넘어가는 편이라서요^^
그다음은
Router_A(config)#ip dhcp pool ccna
Router_A(dhcp-config)#
Router_A(dhcp-config)#network 210.240.10.0 255.255.255.0
Router_A(dhcp-config)#default-router 210.240.10.1
Router_A(dhcp-config)#?
DHCP pool configuration commands:
bootfile Boot file name
client-identifier Client identifier
client-name Client name
default-router Default routers
dns-server DNS servers
domain-name Domain name
exit Exit from DHCP pool configuration mode
hardware-address Client hardware address
host Client IP address and mask
lease Address lease time
netbios-name-server NetBIOS (WINS) name servers
netbios-node-type NetBIOS node type
network Network number and mask
next-server Next server in boot process
no Negate a command or set its defaults
option Raw DHCP options
Router_A(dhcp-config)#
위에 구성한 예를 보면서 한번 설명을 시작해 볼까요..?? 위를 보시면서 설명을 읽으시면 좋겠죠..??
Ip dhcp pool ccna 처럼 DHCP 주소의 Pool (영역) 을 지정해 줍니다. 먼저 Pool 의 이름을 만들어주는데 우리는 ccna 라고 주었습니다. 여기서 이름은 아무거나 주어도 됩니다.
여러분 기분에 맞게 하나 주심 됩니다.
자 이렇게 Pool 이름을 지정하고 나니까 프롬프트가 Router_A(config)# 에서 Router_A(dhcp-config)# 로 바뀌었습니다. 즉 DHCP 구성 모드로 들어온 것입니다. 여기서 가장 먼저 해주어야 하는 구성은 바로 IP Pool 의 지정입니다.
network 210.240.10.0 255.255.255.0 로 Pool 을 지정한 것은 IP 주소의 범위가 210.240.10.1 ~ 210.240.10.254 까지 임을 뜻합니다. 즉 이 범위의 IP 주소를 가지고 있다가 IP 주소에 대한 요청이 들어오면 하나씩 나누어 주는 겁니다.
어때요..아직까진 별게 아니죠..??
그담은 다음시간에..계속 설명드리기로하고..오늘은 그만 안녕..^^
댓글을 달아 주세요