Interesting you mention this because the NAT interfaces are the same
IP on both boxes.
10.0.2.15 = eth0 on Debian 0 and Debian 1

eth1 = 192.168.1.21 (Debian 1)
eth1 = 192.168.1.20 (Debian 0)



Debian 0's /etc/network/interface file

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo eth0 eth1
iface lo inet loopback

# The primary network interface
#allow-hotplug eth0
iface eth0 inet dhcp

iface eth1 inet static
  address 192.168.1.20
  netmask 255.255.255.0


Debian 1 /etc/network/interface file

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo eth0 eth1
iface lo inet loopback

# The primary network interface
#allow-hotplug eth0
iface eth0 inet dhcp

iface eth1 inet static
  address 192.168.1.21
  netmask 255.255.255.0


I don't even think I can try sending it to my NAT interface

Also, is this normal? I am using DHCP

On Mon, Sep 1, 2008 at 2:07 AM, Frank Mehnert <[EMAIL PROTECTED]> wrote:
> Just for testing. To make sure, you don't make a mistake and send
> the packets between the two VMs through the NAT interface.
>
> Please could you try to follow my advises? It seems to me that you
> only read parts of my posts...
>
> Frank
>
> On Monday 01 September 2008, Mag Gam wrote:
>> well, I would need the NAT for accessing the internet though. How
>> would I accomplish this then?
>>
>> On Sun, Aug 31, 2008 at 4:30 PM, Frank Mehnert <[EMAIL PROTECTED]>
> wrote:
>> > On Sunday 31 August 2008, Frank Mehnert wrote:
>> >> On Sunday 31 August 2008, Mag Gam wrote:
>> >> > I am using Debian as my guests and Ubuntu as Host.
>> >> > What is a TAP interface?
>> >>
>> >> TAP device == host interface networking. See the user manual for a
>> >> detailed description on how to set up this network interface on a
>> >> Linux host.
>> >>
>> >> > I am using PCNET FastIII as my interfaces.
>> >>
>> >> So could you check please if there is some difference in the performance
>> >> if you switch to E1000 instead?
>> >>
>> >> For comparison: I have a Debian/Sid host here and a Debian/Etch guest
>> >> connected with a Ubuntu/Gutsy guest over an internal network. With
>> >> wget I achieve a data rate of ~48 MByte/s from one VM to the other.
>> >>
>> >> You might also check with traceroute in the guest that the network
>> >> packets are routed only through the internal network interface.
>> >
>> > Keep in mind that an internal network interface does not receive
>> > an IP automatically because there is usually no DHCP server
>> > attached to such an interface. So you should assign an IP manually,
>> > for instance:
>> >
>> > VM1: ifconfig eth1 192.168.5.1 netmask 255.255.255.0
>> > VM2: ifconfig eth1 192.168.5.2 netmask 255.255.255.0
>> >
>> > I assume that eth0 is the NAT interface on both VMs and eth1 is
>> > the internal network. You also want to disable the NAT interface
>> > (perhaps disconnect the network cable in the VM settings) to make
>> > sure the traffic is NOT routed through the NAT interface.
>> >
>> > Kind regards,
>> >
>> > Frank
>> > --
>> > Dr.-Ing. Frank Mehnert    Sun Microsystems    http://www.sun.com/
>> >
>> > _______________________________________________
>> > vbox-users mailing list
>> > [email protected]
>> > http://vbox.innotek.de/mailman/listinfo/vbox-users
>>
>> _______________________________________________
>> vbox-users mailing list
>> [email protected]
>> http://vbox.innotek.de/mailman/listinfo/vbox-users
>
>
>
> --
> Dr.-Ing. Frank Mehnert    Sun Microsystems    http://www.sun.com/
>
> _______________________________________________
> vbox-users mailing list
> [email protected]
> http://vbox.innotek.de/mailman/listinfo/vbox-users
>
>

_______________________________________________
vbox-users mailing list
[email protected]
http://vbox.innotek.de/mailman/listinfo/vbox-users

Reply via email to