1 | #!/bin/bash
|
---|
2 | # Sun xVM VirtualBox
|
---|
3 | # VirtualBox VNIC setup script for Solaris hosts with Crossbow.
|
---|
4 | #
|
---|
5 | # Copyright (C) 2007 Sun Microsystems, Inc.
|
---|
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 | # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
16 | # Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
17 | # additional information or have any questions.
|
---|
18 | #
|
---|
19 |
|
---|
20 | if [ -z "$1" ]; then
|
---|
21 | echo "Missing MAC address."
|
---|
22 | echo
|
---|
23 | echo "Usage: $0 macaddress [vnicname]"
|
---|
24 | echo " A new VNIC is created if no vnicname is provided."
|
---|
25 | exit 1
|
---|
26 | fi
|
---|
27 |
|
---|
28 | mac=$1
|
---|
29 | # Create the VNIC if required
|
---|
30 | if [ -z "$2" ]; then
|
---|
31 | # Try obtain a physical NIC that is currently active
|
---|
32 | phys_nic=`/usr/sbin/dladm show-dev | /usr/bin/awk 'NF==7 && $3=="up" { print $1 }'`
|
---|
33 | if [ -z "$phys_nic" ]; then
|
---|
34 | # Try obtain a physical NIC that is currently active
|
---|
35 | phys_nic=`/usr/sbin/dladm show-dev | /usr/bin/awk 'NF==4 && $2=="up" { print $1 }'`
|
---|
36 | # Failed to get a currently active NIC, get the first available NIC.
|
---|
37 | phys_nic=`/usr/sbin/dladm show-link | /usr/bin/nawk '/legacy/ {next} {print $1; exit}'`
|
---|
38 | if [ -z "$phys_nic" ]; then
|
---|
39 | # Failed to get any NICs!
|
---|
40 | echo "Failed to get a physical NIC to bind to."
|
---|
41 | exit 1
|
---|
42 | fi
|
---|
43 | fi
|
---|
44 |
|
---|
45 | # To use a specific physical NIC, replace $phys_nic with the name of the NIC.
|
---|
46 | vnic_name="vnic"`/usr/lib/vna $phys_nic $mac`
|
---|
47 | if [ $? != 0 ]; then
|
---|
48 | exit 1
|
---|
49 | fi
|
---|
50 | else
|
---|
51 | vnic_name=$2
|
---|
52 | fi
|
---|
53 | vnic_id=${vnic_name##*[a-z]}
|
---|
54 |
|
---|
55 | if [ ${vnic_id} -lt 10 ]; then
|
---|
56 | host_ip="192.168.1.10${vnic_id}"
|
---|
57 | guest_ip="192.168.1.20${vnic_id}"
|
---|
58 | elif [ ${vnic_id} -lt 256 ]; then
|
---|
59 | host_ip="192.168.1.${vnic_id}"
|
---|
60 | guest_ip="192.168.2.${vnic_id}"
|
---|
61 | elif [ ${vnic_id} -gt 899 ]; then
|
---|
62 | let "temp_id = $vnic_id % 900"
|
---|
63 | host_ip="192.168.1.10${temp_id}"
|
---|
64 | guest_ip="192.168.1.20${temp_id}"
|
---|
65 | else
|
---|
66 | # VNIC ID is probably off the scale!
|
---|
67 | host_ip="192.168.1.10"
|
---|
68 | guest_ip="192.168.1.20"
|
---|
69 | fi
|
---|
70 |
|
---|
71 | netmask="255.255.255.0"
|
---|
72 |
|
---|
73 | if [ -z "$2" ]; then
|
---|
74 | /sbin/ifconfig $vnic_name plumb
|
---|
75 | /sbin/ifconfig $vnic_name $host_ip destination $guest_ip netmask $netmask up
|
---|
76 | #else
|
---|
77 | # Do existing VNIC configuration here if needed...
|
---|
78 | fi
|
---|
79 |
|
---|
80 | echo "$vnic_name"
|
---|
81 | exit 0
|
---|
82 |
|
---|