import from old webserver
This commit is contained in:
commit
ef633b2cf4
182 changed files with 69233 additions and 0 deletions
51
noc/configs/dhcp3/dhcpd.conf
Normal file
51
noc/configs/dhcp3/dhcpd.conf
Normal file
|
@ -0,0 +1,51 @@
|
|||
#
|
||||
#
|
||||
#ddns-update-style none;
|
||||
ddns-update-style interim;
|
||||
ddns-domainname "easterhegg.de";
|
||||
authoritative;
|
||||
|
||||
# option definitions common to all supported networks...
|
||||
option domain-name "easterhegg.de";
|
||||
option domain-name-servers 172.16.0.1;
|
||||
min-lease-time 3600;
|
||||
default-lease-time 7200;
|
||||
max-lease-time 14400;
|
||||
ping-check true;
|
||||
update-optimization false;
|
||||
|
||||
#subnet 204.254.239.0 netmask 255.255.255.224 {
|
||||
# range 204.254.239.10 204.254.239.20;
|
||||
# option broadcast-address 204.254.239.31;
|
||||
# option routers prelude.fugue.com;
|
||||
#}
|
||||
|
||||
# Kabel
|
||||
subnet 172.16.0.0 netmask 255.255.252.0 {
|
||||
range 172.16.2.2 172.16.2.254;
|
||||
range 172.16.3.2 172.16.3.254;
|
||||
option broadcast-address 172.16.3.255;
|
||||
option routers 172.16.0.1;
|
||||
}
|
||||
|
||||
# WLAN
|
||||
subnet 172.16.4.0 netmask 255.255.252.0 {
|
||||
range 172.16.6.2 172.16.6.254;
|
||||
range 172.16.7.2 172.16.7.254;
|
||||
option broadcast-address 172.16.7.255;
|
||||
option routers 172.16.4.1;
|
||||
}
|
||||
|
||||
# NOC
|
||||
subnet 172.16.42.0 netmask 255.255.255.0 {
|
||||
range 172.16.42.128 172.16.42.254;
|
||||
option broadcast-address 172.16.42.255;
|
||||
option routers 172.16.42.1;
|
||||
}
|
||||
|
||||
# AFU-Druck
|
||||
subnet 172.16.25.0 netmask 255.255.255.0 {
|
||||
range 172.16.25.2 172.16.25.199;
|
||||
option broadcast-address 172.16.25.255;
|
||||
option routers 172.16.25.1;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue