IDS ย่อมาจาก Intrusion Detection Systemเอาไว้วิเคราะห์ package หาข้อมูลเพิ่มเติมได้จาก
www.snort.org
แต่สำหรับ IPS (Intrusion Prevention System) แล้วนอกจากจะวิเคราะห์ Package แล้วยังสามารถ drop package ได้ด้วย หาข้อมูลได้จาก
http://snort-inline.sourceforge.net/
Tuesday, December 21, 2004
Monday, December 20, 2004
การ start DHCP server บน Linux
ืทำได้โดยการ edit file /etc/dhcpd.conf และใส่ข้อมูลเหล่านี้ลงไป
----
ืทำได้โดยการ edit file /etc/dhcpd.conf และใส่ข้อมูลเหล่านี้ลงไป
----
subnet 192.168.100.0 netmask 255.255.255.0 {
range 192.168.100.200 192.168.100.240;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.100.255;
option routers 192.168.100.3;
option domain-name-servers 192.168.100.3;
option domain-name "mydomain.cxm";
option ip-forwarding on;
option netbios-node-type 8;
}
-----
Subscribe to:
Posts (Atom)