File: dhcpd.conf

package info (click to toggle)
ns2 2.35%2Bdfsg-2.1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 78,780 kB
  • ctags: 27,490
  • sloc: cpp: 172,923; tcl: 107,130; perl: 6,391; sh: 6,143; ansic: 5,846; makefile: 816; awk: 525; csh: 355
file content (34 lines) | stat: -rw-r--r-- 680 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#
# dhcpd.conf for testing of emulation environment
#

server-identifier coot.ee.lbl.gov;

option domain-name "ee.lbl.gov";
option domain-name-servers 10.0.1.1;

#
# for Kfall's Hitachi laptop
#
host bit {
	hardware ethernet 00:00:e1:08:8c:eb;
	fixed-address bit.ee.lbl.gov;
}
#
# for thinkpad
#
host bit {
	hardware ethernet 00:a0:24:64:e2:2c;
	fixed-address bit.ee.lbl.gov;
}

shared-network EMULTEST-NET {
	option routers 10.0.1.1;
	option subnet-mask 255.255.255.255;
	# static routes are <dest> <router to dest>
	option static-routes 10.0.1.0 131.243.1.86, 131.243.1.0 10.0.1.1;
	subnet 10.0.1.0 netmask 255.255.255.0 {
	}
	subnet 131.243.1.86 netmask 255.255.255.255 {
	}
}