ASIC/FPGA  Design and Verification Out Source Services 
                            colinux conf eth defintions  
# Slirp for internet connection (outgoing)
# Inside running coLinux configure eth0 with this static settings:
# ipaddress 10.0.2.15   broadcast  10.0.2.255   netmask 255.255.255.0
# gateway   10.0.2.2    nameserver 10.0.2.3
#eth0=slirp
eth0=slirp,,tcp:22:22
# Tuntap as private network between guest and host on second linux device
#eth1=tuntap
eth1=pcap-bridge,"Local Area Connection",,
                            /etc/network/interfaces  
# 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
iface lo inet loopback
# The primary network interface (slirp)
auto eth0
iface eth0 inet static
    10.0.2.15
    broadcast 10.0.2.255
    netmask 255.255.255.0
    gateway 10.0.2.2
# Second network (tap-win32)
auto eth1
iface eth1 inet static
    address 192.168.0.79
    netmask 255.255.255.0
    gateway 192.168.0.1
                           |