| 197 | |
| 198 | == fichero dhcp opengnsys virutal lab == |
| 199 | NOTA: revisar en el dhcp el option routers tras la instalación. |
| 200 | {{{ |
| 201 | ddns-update-style none; |
| 202 | option domain-name "example.org"; |
| 203 | log-facility local7; |
| 204 | not-authoritative; |
| 205 | |
| 206 | subnet 192.168.2.0 netmask 255.255.255.0 { |
| 207 | option domain-name-servers 10.0.4.2; |
| 208 | option routers 192.168.2.254; |
| 209 | option broadcast-address 192.168.2.255; |
| 210 | default-lease-time 600; |
| 211 | max-lease-time 7200; |
| 212 | next-server 192.168.2.10; |
| 213 | filename "grldr"; |
| 214 | use-host-decl-names on; |
| 215 | |
| 216 | host ogClient01 { |
| 217 | hardware ethernet 08:00:27:29:bf:01; |
| 218 | fixed-address 192.168.2.11; |
| 219 | } |
| 220 | |
| 221 | host ogClient02 { |
| 222 | hardware ethernet 08:00:27:29:bf:02; |
| 223 | fixed-address 192.168.2.12; |
| 224 | } |
| 225 | |
| 226 | host ogClient03 { |
| 227 | hardware ethernet 08:00:27:29:bf:03; |
| 228 | fixed-address 192.168.2.13; |
| 229 | } |
| 230 | |
| 231 | |
| 232 | host ogClient04 { |
| 233 | hardware ethernet 08:00:27:29:bf:04; |
| 234 | fixed-address 192.168.2.14; |
| 235 | } |
| 236 | |
| 237 | } |
| 238 | |
| 239 | }}} |