Changes between Version 42 and Version 43 of EscenariosVirtuales


Ignore:
Timestamp:
Jul 12, 2012, 7:48:55 PM (13 years ago)
Author:
adv
Comment:

dhcp.conf opengnsys virtual lab

Legend:

Unmodified
Added
Removed
Modified
  • EscenariosVirtuales

    v42 v43  
    195195copiamos el tar.gz y la iso a /tmp
    196196descomprimimos el tar.gz en el /tmp
     197
     198== fichero dhcp opengnsys virutal lab ==
     199NOTA: revisar en el dhcp el option routers tras la instalación.
     200{{{
     201ddns-update-style none;
     202option domain-name "example.org";
     203log-facility local7;
     204not-authoritative;
     205
     206subnet 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}}}