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, 9:25:07 AM (13 years ago)
- Author:
-
adv
- Comment:
-
Lab virtual interfaces
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v40
|
v41
|
|
116 | 116 | * tecleamos sh ./VirtualBoxLinuxAdittion.run |
117 | 117 | |
| 118 | |
| 119 | === Configuramos las interfaces de red === |
| 120 | {{{ |
| 121 | # The loopback network interface |
| 122 | auto lo |
| 123 | iface lo inet loopback |
| 124 | |
| 125 | # The primary network interface: connect with opengnsys lab |
| 126 | auto eth0 |
| 127 | iface eth0 inet static |
| 128 | address 192.168.2.10 |
| 129 | netmask 255.255.255.0 |
| 130 | gateway 192.168.2.254 |
| 131 | |
| 132 | |
| 133 | # The second network interface: connect to host vboxnet0 |
| 134 | auto eth1 |
| 135 | iface eth1 inet static |
| 136 | address 192.168.56.10 |
| 137 | netmask 255.255.255.0 |
| 138 | |
| 139 | # The third network interface: NAT to hots eth0 |
| 140 | #auto eth2 |
| 141 | iface eth2 inet dhcp |
| 142 | |
| 143 | }}} |
| 144 | |
| 145 | |
118 | 146 | #* Activamos la eth2 (nat)# route del default && ifup eth2 && ifconfig && route && apt-get update |
119 | 147 | |