summaryrefslogtreecommitdiff
path: root/config/obr/dhcpd.conf
blob: b6fcbf57cd01261b5032689f6115d65fac284df3 (plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
shared-network LAN {
  default-lease-time 3600;
  max-lease-time 3600;
  option domain-name "lan";
  #option domain-name-servers 194.246.118.118, 212.25.28.55;
  option domain-name-servers 192.168.1.1;
  option routers 192.168.1.1;
  option subnet-mask 255.255.255.0;
  allow booting;
  allow bootp;
  next-server 192.168.1.12;

  subnet 192.168.1.0 netmask 255.255.255.0 {
    option routers 192.168.1.1;
    range 192.168.1.128 192.168.1.249;
  }

  group {
    use-host-decl-names on;

    host europa1 {
      hardware ethernet 00:00:E2:3C:A2:3B;
      fixed-address 192.168.1.2;
      filename "pxelinux.0";
    }

    host europa5 {
      hardware ethernet 00:01:80:5F:5D:EB;
      fixed-address 192.168.1.6;
    }

    host europa6 {
      hardware ethernet 08:00:20:82:F1:1A;
      fixed-address 192.168.1.7;
    }

    host eeepc {
      hardware ethernet 00:1f:c6:5c:64:43;
      fixed-address 192.168.1.8;
    }

    host eurodata {
      hardware ethernet 00:08:9B:8D:20:34;
      fixed-address 192.168.1.9;
    }

    host eeepc-wifi {
      hardware ethernet 00:15:AF:A0:96:3;
      fixed-address 192.168.1.10;
    }

    host eurobuild3 {
      hardware ethernet 00:16:76:e0:d3:3f;
      fixed-address 192.168.1.12;
    }

    host europa10 {
      hardware ethernet 00:03:BA:00:D5:9B;
      fixed-address 192.168.1.13;
    }

    host eurobuild1 {
      hardware ethernet 00:40:05:a1:32:56;
      fixed-address 192.168.1.14;
    }

    host eurobuild2 {
      hardware ethernet 00:00:1C:B5:F3:43;
      fixed-address 192.168.1.5;
    }
 
    host euroweb {
      hardware ethernet b8:27:eb:2a:d9:c7;
      fixed-address 192.168.1.15;
    }

    host euroserver {
      hardware ethernet b8:27:eb:76:8e:67;
      fixed-address 192.168.1.16;
    }

    host eurohp1 {
      hardware ethernet 00:0f:20:d0:96:f1;
      fixed-address 192.168.1.17;
    }

    host eurobuild4 {
      hardware ethernet b8:27:eb:54:5f:13;
      fixed-address 192.168.1.18;
    }

    host phone {
      hardware ethernet 00:04:13:4B:35:8E;
      fixed-address 192.168.1.19;
    }

    host euromac {
       hardware ethernet 00:1b:63:9f:43:0c;
      fixed-address 192.168.1.20;
    }

    host eurobuild5 {
      hardware ethernet b8:27:eb:15:62:14;
      fixed-address 192.168.1.21;
    }

    host eurobuild6 {
      hardware ethernet 00:00:1c:b6:26:37;
      fixed-address 192.168.1.22;
    }

    host eurobuild7 {
      hardware ethernet 00:0E:2E:05:BF:88;
      fixed-address 192.168.1.23;
    }

    host eurotv {
      hardware ethernet B8:27:EB:A0:10:58;
      fixed-address 192.168.1.24;
    }

    host euroalix {
      hardware ethernet 00:0D:B9:0F:62:78;
      fixed-address 192.168.1.25;
      filename "pxelinux.0";
    }

    host eurounisys {
      hardware ethernet 00:00:E8:CD:05:88;
      fixed-address 192.168.1.26;
      filename "pxelinux.0";
    }

    host pxe486 {
      hardware ethernet 52:54:00:C0:F9:14;
      fixed-address 192.168.1.26;
      filename "pxelinux.0";
    }

  }
}