When using the pre-compiled binaries, it is safer to reboot, this should result in the everything loading.
I have VirtualBox v1.6 running with Tap and host connection successfully with Checkpoint's SecureClient. I created two scripts called vnic_start.sh and vnic_stop.sh which are used by VirtualBox for the creation and deletion of the tap0 interface. vnic_start.sh = = = = = = = #!/bin/sh tunctl -t tap0 ifconfig tap0 plumb ifconfig tap0 192.168.2.111 brdgadm -a nge0 brdgadm -a tap0 ifconfig tap0 up vnic_stop.sh = = = = = = = #!/bin/sh ifconfig tap0 down brdgadm -d tap0 brdgadm -d nge0 ifconfig tap0 unplumb tunctl -d tap0 My primary Network work interface is nge0 so change the script to reflect your default script. The IP address assigned in vnic_start.sh should be change to reflect your computer IP plus or minus one. The latest version of the Intel 82540EM driver requires Windows 2000 SP3 before it will install. Hope this helps. This message posted from opensolaris.org _______________________________________________ opensolaris-discuss mailing list [email protected]
