การทำ DHCP บน Router
บนขา Interface ในโซนสีชมพู
ip dhcp excluded-address 192.168.1.1 192.168.1.10
ip dhcp pool tck-pool
network 192.168.1.0 255.255.255.0
default-router 192.168.1.1
dns-server 5.5.5.5
บนขา Interface ในโซนสีฟ้า
ip dhcp excluded-address 192.168.2.1 192.168.2.10
ip dhcp pool tck-pool-2
network 192.168.2.0 255.255.255.0
default-router 192.168.2.1
dns-server 8.8.8.8
ip dhcp excluded-address : เป็นการกัน IP address ไม่ให้ตัว Router ทำการแจกจ่าย
ip dhcp pool tck-pool : ตั้งชื่อให้ Pool
network 192.168.1.0 255.255.255.0 : ใส่ Subnet mask ที่ต้องการแจก
default-router 192.168.1.1 : ใส่ Default gateway
dns-server 8.8.8.8 : ใส่ dns server
คำสั่ง Show
show ip dhcp blinding : แสดงรายการทั้งหมดของ IP ที่ได้รับการแจกจ่ายให้กับเครื่อง Client
show ip dhcp pool [pool name] : แสดงค่าคอนฟิก
show ip dhcp server statistics : แสดงสถานะของ DHCP
show ip dhcp conflict
note:
เราเตอร์สามารถแบ่ง Broadcast Domain ได้
DHCP จะแบ่งตาม Broadcast Domain โดยจะเลือกให้ Match กับ network id ของ ขา Interface ด้วย
Download PKT