|
楼主 |
发表于 2005-7-25 10:50:13
|
显示全部楼层
我是个菜鸟的菜鸟!不知道啊!只知道要增加上网的电脑的话要编辑这个:
# dhcpd.conf
#
# Sample configuration file for ISC dhcpd
#
# option definitions common to all supported networks...
option domain-name "beyonics.com";
option domain-name-servers 218.2.135.1, 61.147.37.1;
default-lease-time 600;
max-lease-time 7200;
ddns-update-style none; ddns-updates off;
authoritative;
log-facility local7;
subnet 192.168.0.0 netmask 255.255.255.0 {
}
# This is a very basic subnet declaration.
subnet 192.168.0.0 netmask 255.255.255.0 {
range 192.168.0.101 192.168.0.200;
option routers 192.168.0.1;
}
# host statements. If no address is specified, the address will be
# allocated dynamically (if possible), but the host-specific information
# will still come from the host declaration.
host passacaglia {
hardware ethernet 0:0:c0:5d:bd:95;
server-name "toccata.fugue.com";
}
# Fixed IP addresses can also be specified for hosts. These addresses
# should not also be listed as being available for dynamic assignment.
# Hosts for which fixed IP addresses have been specified can boot using
# BOOTP or DHCP. Hosts for which no fixed address is specified can only
# be booted with DHCP, unless there is an address range on the subnet
# to which a BOOTP client is connected which has the dynamic-bootp flag
# set.
#Range of Internet enabled IP is 192.168.0.20 - 192.168.0.80 assigned
#Start from 192.168.0.21
#All others are not allowed through this proxy server
host MIS-NB4 {
hardware ethernet 00:0D:60:7E:8C:17;
fixed-address 192.168.0.21;
}
#
host KELLY {
hardware ethernet 00:0D:87:D6:3B:E7;
fixed-address 192.168.0.30;
}
#
host JERRY {
hardware ethernet 00:0A:EB:8E:0C:03;
fixed-address 192.168.0.31;
}
#
host PAULINE {
hardware ethernet 52:54:AB:34:A4:18;
fixed-address 192.168.0.32;
}
#
host LIMIN {
hardware ethernet 52:54:AB:3B:1A:F4;
fixed-address 192.168.0.33;
}
#
host SIM {
hardware ethernet 00:10:5C:F5:9E:5F;
fixed-address 192.168.0.34;
}
#
host Yongping {
hardware ethernet 00:D0:F8:3C:CF:67;
fixed-address 192.168.0.35;
}
#
host CAIWV2 {
hardware ethernet 00:05:5D:02:F9:8D;
fixed-address 192.168.0.36;
}
#
host CAIWV3 {
hardware ethernet 00:01:01:76:19:50;
fixed-address 192.168.0.37;
}
#
host BE1 {
hardware ethernet 00:11:11:1B:79:49;
fixed-address 192.168.0.38;
}
#
host TPY {
hardware ethernet 00:40:05:14:7C:08;
fixed-address 192.168.0.39;
}
#
host btl-lautc {
hardware ethernet 00:08:74:E6:AA:5B;
fixed-address 192.168.0.40;
}
#
host IBM {
hardware ethernet 00:0D:60:CB:09:0B;
fixed-address 192.168.0.41;
}
#
host HUFEI {
hardware ethernet 00:D0:F8:01:BD:46;
fixed-address 192.168.0.42;
}
#
host LEICHAO {
hardware ethernet 52:54:AB:3B:07:F7;
fixed-address 192.168.0.43;
}
#
host Tc {
hardware ethernet 00:12:3F:03:D3:1C;
fixed-address 192.168.0.45;
}
#
host RIMAN {
hardware ethernet 00:10:4B:E3:72:ED;
fixed-address 192.168.0.44;
}
#
host LUDAWENG {
hardware ethernet 00:E0:4C:B0:04:FB;
fixed-address 192.168.0.22;
}
#
host WANGSHUXIN {
hardware ethernet 00:11:09:B1:EE:47;
fixed-address 192.168.0.23;
}
#
host YEJIAN {
hardware ethernet 00:E0:4C:E7:C8:3B;
fixed-address 192.168.0.24;
}
#
#
#
#
#
######END####### |
|