Log onto the VM through the VirtualBox console which will be shown when the VM has started.
The username is root and the password is oracle
1. When logged onto the desktop, right click and click on "Open Terminal" to bring up the terminal.
2. In the terminal edit /etc/sysconfig/network
No Format |
---|
[root@localhost ~]# vi /etc/sysconfig/network |
and change to:
No Format |
---|
NETWORKING=yes
NETWORKING_IPV6=no
HOSTNAME=source
|
3. Edit /etc/hosts and add the following two hosts entries
No Format |
---|
# Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1 localhost.localdomain localhost
::1 localhost6.localdomain6 localhost6
10.1.1.10 source-int source dbv01
10.1.1.11 target-int target dbv02 |
4. Set the network address for eth1
No Format |
---|
cd /etc/sysconfig/network-scripts |
No Format |
---|
vi ifcfg-eth1 |
Change the settings to the following (do NOT change the HWADDR)
No Format |
---|
# Advanced Micro Devices [AMD] 79c970 [PCnet32 LANCE]
DEVICE=eth1
BOOTPROTO=none
ONBOOT=yes
HWADDR=08:00:27:19:c2:f8
IPADDR=10.1.1.10
NETMASK=255.255.255.0 |
5. Restart the network interface
No Format |
---|
[root@source network-scripts]# /etc/init.d/network restart
Shutting down interface eth0: [ OK ]
Shutting down interface eth1: [ OK ]
Shutting down loopback interface: [ OK ]
Bringing up loopback interface: [ OK ]
Bringing up interface eth0:
Determining IP information for eth0... done.
[ OK ]
Bringing up interface eth1: |
6. View the network interface
No Format |
---|
[root@source network-scripts]# ifconfig
eth0 Link encap:Ethernet HWaddr 08:00:27:BF:36:00
inet addr:10.0.0.20 Bcast:10.0.0.255 Mask:255.255.255.0
inet6 addr: fe80::a00:27ff:febf:3600/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:118125 errors:0 dropped:0 overruns:0 frame:0
TX packets:682 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:31908626 (30.4 MiB) TX bytes:76611 (74.8 KiB)
Interrupt:10 Base address:0xd020
eth1 Link encap:Ethernet HWaddr 08:00:27:19:C2:F8
inet addr:10.1.1.10 Bcast:10.1.1.255 Mask:255.255.255.0
inet6 addr: fe80::a00:27ff:fe19:c2f8/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:120 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:23113 (22.5 KiB)
Interrupt:9 Base address:0xd060
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:35521 errors:0 dropped:0 overruns:0 frame:0
TX packets:35521 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:7421628 (7.0 MiB) TX bytes:7421628 (7.0 MiB) |
There are 2 network interfaces:
- eth0 which is a DHCP address so that a connection can be made from the host computer (your laptop). In this case the IP is 10.0.0.20. Example, to connect to the local VM use: ssh root@10.0.0.20
- eth1 which is a fixed IP address. This is used to connect between the source and target servers. This IP is 10.1.1.10
7. scp (secure copy) does not work because there is display output in ~oracle/.bashrc and ~oracle/.bash_profile. To fix this:
a. Edit .bashrc in the home directory of oracle
No Format |
---|
cd ~oracle |
No Format |
---|
vi .bashrc |
Put a # in front of the following lines:
No Format |
---|
#cat ~/Desktop/README.txt
#/sbin/ifconfig | grep "inet addr" |
b. Edit .bash_profile in the home directory of oracle
No Format |
---|
cd ~oracle
|
No Format |
---|
vi .bash_profile |
Put a # in front of the following lines:
...
When the machine_setup script has been edited to accept the EULA and the memory parameter adjusted, execute the script. The script takes about 5-10 minutes to execute depending on your host PC. When the script finishes, both the source and target machines should be running and available to log into.
Note |
---|
Before running the machine_setup script ensure that these two steps have been completed:
|
What the script does
Imports the source and target machines into VirtualBox, sets up the Host-only adapter in the network settings, sets up the shared folder drive, sets the snapshot folder and snapshot the machine as a fresh clean starting position that can be returned to if required. The machine_setup scrip will then start both source and target machines.
On Windows
In the %REP_HOME%\Rep Attack 11g XE directory, execute the machine_setup.bat script by double clicking on it. A command prompt window will open and the RepAttack source machine will be configured and started, followed by the target machine.
For example:
On Mac OS X and Linux machines:
Open a Terminal window and change directory to the REP_HOME directory.
Execute the machine_setup.bash script.
No Format |
---|
bash-3.2$ ./machine_setup.bash |