File: statuses

package info (click to toggle)
dhcpd-pools 3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,124 kB
  • sloc: ansic: 31,353; sh: 4,915; perl: 277; javascript: 74; php: 63; makefile: 50
file content (31 lines) | stat: -rw-r--r-- 488 bytes parent folder | download | duplicates (11)
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
shared-network example1 {
	subnet 10.0.0.0  netmask 255.255.255.0 {
		pool {
			range 10.0.0.1 10.0.0.20;
		}
	}
	subnet 10.1.0.0  netmask 255.255.255.0 {
		pool {
			range 10.1.0.1 10.1.0.20;
		}
	}
}

shared-network example2 {
	subnet 10.2.0.0  netmask 255.255.255.0 {
		pool {
			range 10.2.0.1 10.2.0.20;
		}
	}
	subnet 10.3.0.0  netmask 255.255.255.0 {
		pool {
			range 10.3.0.1 10.3.0.20;
		}
	}
}

subnet 10.4.0.0  netmask 255.255.255.0 {
	pool {
		range 10.4.0.1 10.4.0.20;
	}
}