VirtualBox

source: vbox/trunk/src/VBox/Devices/Network/solaris/vnicinit_solaris.sh@ 6483

Last change on this file since 6483 was 5998, checked in by vboxsync, 17 years ago

Fix incorrect file headers that make filemuncher.pl choke.

  • Property svn:eol-style set to LF
  • Property svn:executable set to *
  • Property svn:keywords set to Revision Id
File size: 2.3 KB
Line 
1#!/bin/bash
2# innotek VirtualBox
3# VirtualBox VNIC setup script for Solaris hosts with Crossbow.
4#
5# Copyright (C) 2007 innotek GmbH
6#
7# This file is part of VirtualBox Open Source Edition (OSE), as
8# available from http://www.virtualbox.org. This file is free software;
9# you can redistribute it and/or modify it under the terms of the GNU
10# General Public License (GPL) as published by the Free Software
11# Foundation, in version 2 as it comes in the "COPYING" file of the
12# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
13# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
14#
15
16if [ -z "$1" ]; then
17 echo "Missing MAC address."
18 echo
19 echo "Usage: $0 macaddress [vnicname]"
20 echo " A new VNIC is created if no vnicname is provided."
21 exit 1
22fi
23
24# Try obtain a physical NIC that is currently active
25phys_nic=`/usr/sbin/dladm show-dev | /usr/bin/awk 'NF==7 && $3=="up" { print $1 }'`
26if [ -z "$phys_nic" ]; then
27 # Failed to get a currently active NIC, get the first available NIC.
28 phys_nic=`/usr/sbin/dladm show-link | /usr/bin/nawk '/legacy/ {next} {print $1; exit}'`
29 if [ -z "$phys_nic" ]; then
30 # Failed to get any NICs!
31 echo "Failed to get a physical NIC to bind to."
32 exit 1
33 fi
34fi
35vnic_id=0
36vnic_name=""
37mac=$1
38
39# Create the VNIC if required
40if [ -z "$2" ]; then
41 # To use a specific physical NIC, replace $phys_nic with the name of the NIC.
42 vnic_id=`/usr/lib/vna $phys_nic $mac`
43 if [ $? != 0 ]; then
44 exit 1
45 fi
46 vnic_name=vnic${vnic_id}
47else
48 vnic_name=$2
49 vnic_id=${vnic_name##*[a-z]}
50fi
51
52if [ ${vnic_id} -lt 10 ]; then
53 host_ip="192.168.1.10${vnic_id}"
54 guest_ip="192.168.1.20${vnic_id}"
55elif [ ${vnic_id} -lt 256 ]; then
56 host_ip="192.168.1.${vnic_id}"
57 guest_ip="192.168.2.${vnic_id}"
58elif [ ${vnic_id} -gt 899 ]; then
59 let "temp_id = $vnic_id % 900"
60 host_ip="192.168.1.10${temp_id}"
61 guest_ip="192.168.1.20${temp_id}"
62else
63 # VNIC ID is probably off the scale!
64 host_ip="192.168.1.10"
65 guest_ip="192.168.1.20"
66fi
67
68netmask="255.255.255.0"
69
70if [ -z "$2" ]; then
71 /sbin/ifconfig $vnic_name plumb
72 /sbin/ifconfig $vnic_name $host_ip destination $guest_ip netmask $netmask up
73#else
74# Do existing VNIC configuration here if needed...
75fi
76
77echo "$vnic_name"
78exit $?
79
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette