212 | | * '''Get ssh access''' - Install bridge-utils and configure `/etc/network/interfaces` to look like this (make changes as needed to IP Address information. |
213 | | |
214 | | {{{ |
215 | | 0 florence:~# cat /etc/network/interfaces |
216 | | auto lo |
217 | | iface lo inet loopback |
218 | | # |
219 | | auto br0 |
220 | | |
221 | | iface br0 inet static |
222 | | address 216.66.22.48 |
223 | | netmask 255.255.255.224 |
224 | | gateway 216.66.22.33 |
225 | | bridge_ports eth0 |
226 | | 0 florence:~# |
227 | | }}} |
228 | | * As of May 16, 2013, we still have a MAC Address bug (see #5743). The first created guest will need to have the MAC Address created manually by editing the `/etc/sv/kvm/GUEST_NAME/env/MAC` file and creating a manually randomized MAC Address. |
229 | | * '''This is an example of a broken MAC Address''' (the middle four columns should not be zeros, instead change them to numbers and letters. |
230 | | {{{ |
231 | | 0 baubo:/etc/sv/kvm/yippie/env# cat MAC |
232 | | 02:00:00:00:00:01 |
233 | | 0 baubo:/etc/sv/kvm/yippie/env# |
234 | | }}} |
| 209 | |