Changes between Version 40 and Version 41 of EscenariosVirtuales


Ignore:
Timestamp:
Jul 12, 2012, 11:25:07 AM (12 years ago)
Author:
adv
Comment:

Lab virtual interfaces

Legend:

Unmodified
Added
Removed
Modified
  • EscenariosVirtuales

    v40 v41  
    116116* tecleamos sh ./VirtualBoxLinuxAdittion.run
    117117
     118
     119=== Configuramos las interfaces de red ===
     120{{{
     121# The loopback network interface
     122auto lo
     123iface lo inet loopback
     124
     125# The primary network interface: connect with opengnsys lab
     126auto eth0
     127iface eth0 inet static
     128address 192.168.2.10
     129netmask 255.255.255.0
     130gateway 192.168.2.254
     131
     132
     133# The second network interface: connect to host vboxnet0
     134auto eth1
     135iface eth1 inet static
     136address 192.168.56.10
     137netmask 255.255.255.0
     138
     139# The third network interface: NAT to hots eth0
     140#auto eth2
     141iface eth2 inet dhcp
     142
     143}}}
     144
     145
    118146#* Activamos la eth2 (nat)# route del default && ifup eth2 && ifconfig && route && apt-get update
    119147