close
Warning:
Failed to sync with repository "ogBrowser-Git": (1366, "Incorrect string value: '\\xF0\\x9F\\x93\\xA6 I...' for column 'message' at row 1"); repository information may be out of date. Look in the Trac log for more information including mitigation strategies.
- Timestamp:
-
Jul 12, 2012, 7:48:55 PM (13 years ago)
- Author:
-
adv
- Comment:
-
dhcp.conf opengnsys virtual lab
Legend:
- Unmodified
- Added
- Removed
- Modified
-
|
v42
|
v43
|
|
| 195 | 195 | copiamos el tar.gz y la iso a /tmp |
| 196 | 196 | descomprimimos el tar.gz en el /tmp |
| | 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 | }}} |