blob: 09f5fb27b9f12874bd7ca57c64a836867db469c3 [file] [log] [blame]
tiernof7aa8c42016-09-06 16:43:04 +02001#!/bin/bash
2
3##
4# Copyright 2015 Telefónica Investigación y Desarrollo, S.A.U.
tierno9a61c6b2016-09-08 10:57:02 +02005# This file is part of openvim
tiernof7aa8c42016-09-06 16:43:04 +02006# All Rights Reserved.
7#
8# Licensed under the Apache License, Version 2.0 (the "License"); you may
9# not use this file except in compliance with the License. You may obtain
10# a copy of the License at
11#
12# http://www.apache.org/licenses/LICENSE-2.0
13#
14# Unless required by applicable law or agreed to in writing, software
15# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
16# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
17# License for the specific language governing permissions and limitations
18# under the License.
19#
20# For those usages not covered by the Apache License, Version 2.0 please
21# contact with: nfvlabs@tid.es
22##
23
24# Authors: Antonio Lopez, Pablo Montes, Alfonso Tierno
25# 2016 March 18
26# Modified to run on grub2 and efi boot
27
28# Personalize RHEL7.2 on compute nodes
29# Prepared to work with the following network card drivers:
30# tg3, igb drivers for management interfaces
31# ixgbe (Intel Niantic) and i40e (Intel Fortville) drivers for data plane interfaces
32
33# To download:
34# wget https://raw.githubusercontent.com/nfvlabs/openmano/master/scripts/configure-compute-node-RHEL7.1.sh
35# To execute:
36# chmod +x ./configure-compute-node-RHEL7.1.sh
37# sudo ./configure-compute-node-RHEL7.1.sh <user> <iface>
38
39# Assumptions:
40# All virtualization options activated on BIOS (vt-d, vt-x, SR-IOV, no power savings...)
41# RHEL7.2 installed without /home partition and with the following packages selection:
42# @base, @core, @development, @network-file-system-client, @virtualization-hypervisor, @virtualization-platform, @virtualization-tools
43
44# 2016 Aug 17 Antonio López
45# Changed virbrInf to virbrVIM, to reflect that this bridge is used to communicate with the VIM (OpenVIM)
46# Changed the vlan tag used by virbrVIM from 2000 to 1100
47
48function usage(){
Mirabalefd76602017-01-10 15:11:32 +000049 echo -e "Usage: sudo $0 [-f] <user-name> [ <iface-for-overlay-bridges> [<ip-address>|dhcp] ]"
tiernof7aa8c42016-09-06 16:43:04 +020050 echo -e " Configure compute host for VIM usage. (version 0.4). Params:"
Mirabalefd76602017-01-10 15:11:32 +000051 echo -e " -f do not prompt for confirmation. If a new user is created, the user name is set as password"
tiernof7aa8c42016-09-06 16:43:04 +020052 echo -e " <user-name> Create if not exist and configure this user for openvim to connect"
Mirabalefd76602017-01-10 15:11:32 +000053 echo -e " <iface-for-overlay-bridges> if suplied creates bridge interfaces on this interface, needed for older openvim versions"
tiernof7aa8c42016-09-06 16:43:04 +020054 echo -e " ip or dhcp if suplied, configure the interface with this ip address (/24) or 'dhcp' "
Mirabalefd76602017-01-10 15:11:32 +000055
tiernof7aa8c42016-09-06 16:43:04 +020056}
57
Mirabalefd76602017-01-10 15:11:32 +000058function _install_openvswitch(){
59
60 echo "Installing openvswitch"
61 curl -O http://openvswitch.org/releases/openvswitch-2.5.1.tar.gz
62 mkdir -p ~/rpmbuild/SOURCES
63 cp openvswitch-2.5.1.tar.gz ~/rpmbuild/SOURCES/
64 tar -zxvf openvswitch-2.5.1.tar.gz
65 cp -r openvswitch-2.5.1 ~/rpmbuild/SOURCES/
66 rpmbuild -bb --without check ~/rpmbuild/SOURCES/openvswitch-2.5.1/rhel/openvswitch.spec
67 yum -y localinstall /root/rpmbuild/RPMS/x86_64/openvswitch-2.5.1-1.x86_64.rpm
68 systemctl start openvswitch.service
69}
tiernof7aa8c42016-09-06 16:43:04 +020070
71#1 CHECK input parameters
72#1.1 root privileges
73[ "$USER" != "root" ] && echo "Needed root privileges" && usage && exit -1
74
75#1.2 input parameters
76FORCE=""
Mirabalefd76602017-01-10 15:11:32 +000077while getopts "f" o; do
tiernof7aa8c42016-09-06 16:43:04 +020078 case "${o}" in
Mirabalefd76602017-01-10 15:11:32 +000079 f)
tiernof7aa8c42016-09-06 16:43:04 +020080 FORCE="yes"
81 ;;
82 *)
83 usage
84 exit -1
85 ;;
86 esac
87done
88shift $((OPTIND-1))
89
90
91if [ $# -lt 1 ]
92then
93 usage
94 exit
95fi
96
97user_name=$1
98interface=$2
99ip_iface=$3
100
Mirabalefd76602017-01-10 15:11:32 +0000101
tiernof7aa8c42016-09-06 16:43:04 +0200102if [ -n "$interface" ] && ! ifconfig $interface &> /dev/null
103then
104 echo "Error: interface '$interface' is not present in the system"
105 usage
106 exit 1
107fi
108
Mirabalefd76602017-01-10 15:11:32 +0000109
tiernof7aa8c42016-09-06 16:43:04 +0200110echo '
111#################################################################
112##### INSTALL NEEDED PACKETS #####
113#################################################################'
114
115# Required packages
116yum repolist
117yum check-update
118yum update -y
Mirabalefd76602017-01-10 15:11:32 +0000119yum install -y screen virt-manager ethtool gcc gcc-c++ xorg-x11-xauth xorg-x11-xinit xorg-x11-deprecated-libs libXtst \
120 guestfish hwloc libhugetlbfs-utils libguestfs-tools numactl
121
122
123# gcc make python-devel openssl-devel kernel-devel graphviz \ kernel-debug-devel autoconf automake rpm-build redhat-rpm-config \ libtool
124
tiernof7aa8c42016-09-06 16:43:04 +0200125# Selinux management
126yum install -y policycoreutils-python
127
128echo '
129#################################################################
130##### INSTALL USER #####
131#################################################################'
132
133# Add required groups
134groupadd -f nfvgroup
135groupadd -f libvirt #for other operating systems may be libvirtd
136
137# Adds user, default password same as name
138if grep -q "^${user_name}:" /etc/passwd
139then
140 #user exist, add to group
141 echo "adding user ${user_name} to groups libvirt,nfvgroup"
142 usermod -a -G libvirt,nfvgroup -g nfvgroup $user_name
143else
144 #create user if it does not exist
145 [ -z "$FORCE" ] && read -p "user '${user_name}' does not exist, create (Y/n)" kk
146 if ! [ -z "$kk" -o "$kk"="y" -o "$kk"="Y" ]
147 then
148 exit
149 fi
150 echo "creating and configuring user ${user_name}"
151 useradd -m -G libvirt,nfvgroup -g nfvgroup $user_name
152 #Password
153 if [ -z "$FORCE" ]
154 then
155 echo "Provide a password for $user_name"
156 passwd $user_name
157 else
158 echo -e "$user_name\n$user_name" | passwd --stdin $user_name
159 fi
160fi
161
162#Setting default libvirt URI for the user
163echo "Setting default libvirt URI for the user"
164echo "if test -x `which virsh`; then" >> /home/${user_name}/.bash_profile
165echo " export LIBVIRT_DEFAULT_URI=qemu:///system" >> /home/${user_name}/.bash_profile
166echo "fi" >> /home/${user_name}/.bash_profile
167
168echo '
169#################################################################
170##### INSTALL HUGEPAGES ISOLCPUS GRUB #####
171#################################################################'
172
173# Huge pages 1G auto mount
174mkdir -p /mnt/huge
175if ! grep -q "Huge pages" /etc/fstab
176then
177 echo "" >> /etc/fstab
178 echo "# Huge pages" >> /etc/fstab
179 echo "nodev /mnt/huge hugetlbfs pagesize=1GB 0 0" >> /etc/fstab
180 echo "" >> /etc/fstab
181fi
182
183# Huge pages reservation service
184if ! [ -f /usr/lib/systemd/system/hugetlb-gigantic-pages.service ]
185then
186 echo "configuring huge pages service"
187 cat > /usr/lib/systemd/system/hugetlb-gigantic-pages.service << EOL
188[Unit]
189Description=HugeTLB Gigantic Pages Reservation
190DefaultDependencies=no
191Before=dev-hugepages.mount
192ConditionPathExists=/sys/devices/system/node
193ConditionKernelCommandLine=hugepagesz=1G
194
195[Service]
196Type=oneshot
197RemainAfterExit=yes
198ExecStart=/usr/lib/systemd/hugetlb-reserve-pages
199
200[Install]
201WantedBy=sysinit.target
202EOL
203fi
204# Grub virtualization options:
205
206# Get isolcpus
207isolcpus=`gawk 'BEGIN{pre=-2;}
208 ($1=="processor"){pro=$3;}
209 ($1=="core" && $4!=0){
210 if (pre+1==pro){endrange="-" pro}
211 else{cpus=cpus endrange sep pro; sep=","; endrange="";};
212 pre=pro;}
213 END{printf("%s",cpus endrange);}' /proc/cpuinfo`
214
215
216# Huge pages reservation file: reserving all memory apart from 4GB per NUMA node
217# Get the number of hugepages: all memory but 8GB reserved for the OS
218#totalmem=`dmidecode --type 17|grep Size |grep MB |gawk '{suma+=$2} END {print suma/1024}'`
219#hugepages=$(($totalmem-8))
220
221if ! [ -f /usr/lib/systemd/hugetlb-reserve-pages ]
222then
223 cat > /usr/lib/systemd/hugetlb-reserve-pages << EOL
224#!/bin/bash
225nodes_path=/sys/devices/system/node/
226if [ ! -d \$nodes_path ]; then
227 echo "ERROR: \$nodes_path does not exist"
228 exit 1
229fi
230
231reserve_pages()
232{
233 echo \$1 > \$nodes_path/\$2/hugepages/hugepages-1048576kB/nr_hugepages
234}
235
236# This example reserves all available memory apart from 4 GB for linux
237# using 1GB size. You can modify it to your needs or comment the lines
238# to avoid reserve memory in a numa node
239EOL
240 for f in /sys/devices/system/node/node?/meminfo
241 do
242 node=`head -n1 $f | gawk '($5=="kB"){print $2}'`
243 memory=`head -n1 $f | gawk '($5=="kB"){print $4}'`
244 memory=$((memory+1048576-1)) #memory must be ceiled
245 memory=$((memory/1048576)) #from `kB to GB
246 #if memory
247 [ $memory -gt 4 ] && echo "reserve_pages $((memory-4)) node$node" >> /usr/lib/systemd/hugetlb-reserve-pages
248 done
249
250 # Run the following commands to enable huge pages early boot reservation:
251 chmod +x /usr/lib/systemd/hugetlb-reserve-pages
252 systemctl enable hugetlb-gigantic-pages
253fi
254
255# Prepares the text to add at the end of the grub line, including blacklisting ixgbevf driver in the host
256
257textokernel="intel_iommu=on default_hugepagesz=1G hugepagesz=1G isolcpus=$isolcpus modprobe.blacklist=ixgbevf modprobe.blacklist=i40evf"
258
259# Add text to the kernel line
260if ! grep -q "intel_iommu=on default_hugepagesz=1G hugepagesz=1G" /etc/default/grub
261then
262 echo "adding cmdline ${textokernel}"
263 sed -i "/^GRUB_CMDLINE_LINUX=/s/\"\$/ ${textokernel}\"/" /etc/default/grub
264
265 # grub2 upgrade
266
267 # BIOS based systems
268 grub2-mkconfig -o /boot/grub2/grub.cfg
269
270 # UEFI based systems
271 grub2-mkconfig -o /boot/efi/EFI/redhat/grub.cfg
272
273fi
274
275echo '
276#################################################################
277##### OTHER CONFIGURATION #####
278#################################################################'
279
280# Disable requiretty
281if ! grep -q "#openmano" /etc/sudoers
282then
283 cat >> /home/${user_name}/script_visudo.sh << EOL
284#!/bin/bash
285cat \$1 | awk '(\$0~"requiretty"){print "#"\$0}(\$0!~"requiretty"){print \$0}' > tmp
286cat tmp > \$1
287rm tmp
288EOL
289 chmod +x /home/${user_name}/script_visudo.sh
290 echo "Disabling requitetty"
291 export EDITOR=/home/${user_name}/script_visudo.sh && sudo -E visudo
292 rm -f /home/${user_name}/script_visudo.sh
293fi
294
295#Configure polkint to run virsh as a normal user
296echo "Configuring polkint to run virsh as a normal user"
297cat >> /etc/polkit-1/localauthority/50-local.d/50-org.libvirt-access.pkla << EOL
298[libvirt Admin Access]
299Identity=unix-group:libvirt
300Action=org.libvirt.unix.manage
301ResultAny=yes
302ResultInactive=yes
303ResultActive=yes
304EOL
305
306# Links the OpenMANO required folder /opt/VNF/images to /var/lib/libvirt/images. The OS installation
307# should have only a / partition with all possible space available
308
309echo " link /opt/VNF/images to /var/lib/libvirt/images"
310if [ "$user_name" != "" ]
311then
312 #mkdir -p /home/${user_name}/VNF_images
313 #chown -R ${user_name}:nfvgroup /home/${user_name}/VNF_images
314 #chmod go+x $HOME
315
316 # The orchestator needs to link the images folder
317 rm -f /opt/VNF/images
318 mkdir -p /opt/VNF/
319 ln -s /var/lib/libvirt/images /opt/VNF/images
320 chown -R ${user_name}:nfvgroup /opt/VNF
321 chown -R root:nfvgroup /var/lib/libvirt/images
322 chmod g+rwx /var/lib/libvirt/images
323
324 # Selinux management
325 #echo "configure Selinux management"
326 #semanage fcontext -a -t virt_image_t "/home/${user_name}/VNF_images(/.*)?"
327 #cat /etc/selinux/targeted/contexts/files/file_contexts.local |grep virt_image
328 #restorecon -R -v /home/${user_name}/VNF_images
329else
330 mkdir -p /opt/VNF/images
331 chmod o+rx /opt/VNF/images
332fi
333
334echo "creating local information /opt/VNF/images/hostinfo.yaml"
335echo "#By default openvim assumes control plane interface naming as em1,em2,em3,em4 " > /opt/VNF/images/hostinfo.yaml
336echo "#and bridge ifaces as virbrMan1, virbrMan2, ..." >> /opt/VNF/images/hostinfo.yaml
337echo "#if compute node contain a different name it must be indicated in this file" >> /opt/VNF/images/hostinfo.yaml
338echo "#with the format extandard-name: compute-name" >> /opt/VNF/images/hostinfo.yaml
339if [ "$interface" != "" -a "$interface" != "em1" ]
340then
341 echo "iface_names:" >> /opt/VNF/images/hostinfo.yaml
342 echo " em1: ${interface}" >> /opt/VNF/images/hostinfo.yaml
343fi
344chmod o+r /opt/VNF/images/hostinfo.yaml
345
346# deactivate memory overcommit
347echo "deactivate memory overcommit"
348service ksmtuned stop
349service ksm stop
350chkconfig ksmtuned off
351chkconfig ksm off
352
353
354# Libvirt options (uncomment the following)
355echo "configure Libvirt options"
356sed -i 's/#unix_sock_group = "libvirt"/unix_sock_group = "libvirt"/' /etc/libvirt/libvirtd.conf
357sed -i 's/#unix_sock_rw_perms = "0770"/unix_sock_rw_perms = "0770"/' /etc/libvirt/libvirtd.conf
358sed -i 's/#unix_sock_dir = "\/var\/run\/libvirt"/unix_sock_dir = "\/var\/run\/libvirt"/' /etc/libvirt/libvirtd.conf
359sed -i 's/#auth_unix_rw = "none"/auth_unix_rw = "none"/' /etc/libvirt/libvirtd.conf
360
361#creating the polkit grant access for libvirt user.
362#This does not work !!!! so commented. No way to get running without uncomented the auth_unix_rw = "none" line
363#
364#cat > /etc/polkit-1/localauthority/50-local.d/50-org.example-libvirt-remote-access.pkla << EOL
365#[libvirt Management Access]
366# Identity=unix-user:n2;unix-user:kk
367# Action=org.libvirt.unix.manage
368# ResultAny=yes
369# ResultInactive=yes
370# ResultActive=yes
371#EOL
372
373# Configuration change of qemu for the numatune bug issue
374# RHEL7.1: for this version should not be necesary - to revise
375#if ! grep -q "cgroup_controllers = [ \"cpu\", \"devices\", \"memory\", \"blkio\", \"cpuacct\" ]" /etc/libvirt/qemu.conf
376#then
377#cat /etc/libvirt/qemu.conf | awk '{print $0}($0~"#cgroup_controllers"){print "cgroup_controllers = [ \"cpu\", \"devices\", \"memory\", \"blkio\", \"cpuacct\" ]"}' > tmp
378#mv tmp /etc/libvirt/qemu.conf
379#fi
380
381echo '
382#################################################################
383##### NETWORK CONFIGURATION #####
384#################################################################'
385# Network config (if the second parameter is net)
386if [ -n "$interface" ]
387then
388
389 # Deactivate network manager
390 systemctl stop NetworkManager
391 systemctl disable NetworkManager
392
393 # For management and data interfaces
394 #rm -f /etc/udev/rules.d/pci_config.rules # it will be created to define VFs
395
396 pushd /etc/sysconfig/network-scripts/
397
398 # Set ONBOOT=on and MTU=9000 on the interface used for the bridges
399 echo "configuring iface $interface"
400 cat ifcfg-$interface | grep -e HWADDR -e UUID > $interface.tmp
401 echo "TYPE=Ethernet
402NAME=$interface
403DEVICE=$interface
404TYPE=Ethernet
405ONBOOT=yes
406NM_CONTROLLED=no
407MTU=9000
408BOOTPROTO=none
409IPV6INIT=no" >> $interface.tmp
410 mv $interface.tmp ifcfg-$interface
411
Mirabalefd76602017-01-10 15:11:32 +0000412if [ -z $interface ]
413then
tiernof7aa8c42016-09-06 16:43:04 +0200414 # Management interfaces
415# integrated_interfaces=""
416# nb_ifaces=0
417# for iface in `ifconfig -a | grep ":\ " | cut -f 1 -d":"| grep -v "_" | grep -v "\." | grep -v "lo" | sort`
418# do
419# driver=`ethtool -i $iface| awk '($0~"driver"){print $2}'`
420# if [ $driver != "ixgbe" ] && [ $driver != "bridge" ]
421# then
422# integrated_interfaces="$integrated_interfaces $iface"
423# nb_ifaces=$((nb_ifaces+1))
424# eval iface${nb_ifaces}=$iface
425# fi
426# done
427
428 #Create infrastructure bridge, normally used for connecting to compute nodes, openflow controller, ...
429 echo "DEVICE=virbrVIM
430NAME=virbrVIM
431TYPE=Bridge
432ONBOOT=yes
433DELAY=0
434NM_CONTROLLED=no
435MTU=9000
436USERCTL=no" > ifcfg-virbrVIM
437[[ $ip_iface != "dhcp" ]] && [[ $ip_iface != "" ]] && echo -e "BOOTPROTO=static\nIPADDR=${ip_iface}\nNETMASK=255.255.255.0" >> ifcfg-virbrVIM
438
439 #Create VLAN for infrastructure bridge
440 echo "DEVICE=${interface}.1100
441NAME=${interface}.1100
442ONBOOT=yes
443NM_CONTROLLED=no
444USERCTL=no
445VLAN=yes
446MTU=9000
447BOOTPROTO=none
448BRIDGE=virbrVIM" > ifcfg-${interface}.1100
449
450
451 #Create bridge interfaces
452 echo "Creating bridge ifaces: "
453 for ((i=1;i<=20;i++))
454 do
455 i2digits=$i
456 [ $i -lt 10 ] && i2digits="0$i"
457 echo " virbrMan$i vlan 20$i2digits"
458 echo "DEVICE=virbrMan$i
459NAME=virbrMan$i
460TYPE=Bridge
461ONBOOT=yes
462DELAY=0
463NM_CONTROLLED=no
464MTU=9000
465USERCTL=no" > ifcfg-virbrMan$i
466
467#Without IP:
468#BOOTPROTO=static
469#IPADDR=10.10.10.$((i+209))
470#NETMASK=255.255.255.0" > ifcfg-virbrMan$i
471
472 # create the required interfaces to connect the bridges
473 echo "DEVICE=${interface}.20$i2digits
474NAME=${interface}.20$i2digits
475ONBOOT=yes
476NM_CONTROLLED=no
477USERCTL=no
478VLAN=yes
479BOOTPROTO=none
480MTU=9000
481BRIDGE=virbrMan$i" > ifcfg-${interface}.20$i2digits
482 done
Mirabalefd76602017-01-10 15:11:32 +0000483fi
tiernof7aa8c42016-09-06 16:43:04 +0200484 iface=$interface
485 if [ -n "$ip_iface" ]
486 then
487 echo "configuring iface $iface interface with ip $ip_iface"
488 # Network interfaces
489 # 1Gbps interfaces are configured with ONBOOT=yes and static IP address
490 cat ifcfg-$iface | grep -e HWADDR -e UUID > $iface.tmp
491 echo "TYPE=Ethernet
492NAME=$iface
493DEVICE=$iface
494TYPE=Ethernet
495ONBOOT=yes
496NM_CONTROLLED=no
497MTU=9000
498IPV6INIT=no" >> $iface.tmp
499 [ $ip_iface = "dhcp" ] && echo -e "BOOTPROTO=dhcp\nDHCP_HOSTNAME=$HOSTNAME" >> $iface.tmp
500 [ $ip_iface != "dhcp" ] && echo -e "BOOTPROTO=static\nIPADDR=${ip_iface}\nNETMASK=255.255.255.0" >> $iface.tmp
501 mv $iface.tmp ifcfg-$iface
502 fi
503 # Script to create vfs
504 echo "#!/bin/bash" > /root/activate-vfs.sh
505 chmod +x /root/activate-vfs.sh
506 for iface in `ifconfig -a | grep ": " | cut -f 1 -d":" | grep -v -e "_" -e "\." -e "lo" -e "virbr" -e "tap"`
507 do
508 # 10/40 Gbps interfaces
509 # Intel X520 cards: driver ixgbe
510 # Intel XL710 Fortville cards: driver i40e
511 driver=`ethtool -i $iface| awk '($0~"driver"){print $2}'`
512 if [ "$driver" = "i40e" -o "$driver" = "ixgbe" ]
513 then
514 echo "configuring dataplane iface $iface"
515
516 # Create 8 SR-IOV per PF by udev rules only for Fortville cards (i40e driver)
517 if [ "$driver" = "i40e" ]
518 then
519 pci=`ethtool -i $iface | awk '($0~"bus-info"){print $2}'`
520 echo "echo 8 > /sys/bus/pci/devices/$pci/sriov_numvfs" >> /root/activate-vfs.sh
521 fi
522
523 # Configure PF to boot automatically and to have a big MTU
524 # 10Gbps interfaces are configured with ONBOOT=yes and MTU=2000
525 cat ifcfg-$iface | grep -e HWADDR -e UUID > $iface.tmp
526 echo "TYPE=Ethernet
527NAME=$iface
528DEVICE=$iface
529ONBOOT=yes
530MTU=9000
531NM_CONTROLLED=no
532IPV6INIT=no
533BOOTPROTO=none" >> $iface.tmp
534 mv $iface.tmp ifcfg-$iface
535 fi
536 done
537 popd
538fi
539# add entry in rc.local for activate-vfs
540grep -q 'touch /var/lock/subsys/local' '/etc/rc.d/rc.local'
541if [[ $? == 0 ]]
542then
543 echo "/root/activate-vfs.sh" >> /etc/rc.local
544fi
545
546
547
548# Activate 8 Virtual Functions per PF on Niantic cards (ixgbe driver)
549if [[ `lsmod | cut -d" " -f1 | grep "ixgbe" | grep -v vf` ]]
550then
551 if ! grep -q "ixgbe" /etc/modprobe.d/ixgbe.conf
552 then
553 echo "options ixgbe max_vfs=8" >> /etc/modprobe.d/ixgbe.conf
554 fi
555
556fi
557
558# Executes dracut to load drivers on boot
559echo "Regenerating initramfs"
560dracut --force
561
562# To define 8 VFs per PF we do it on rc.local, because the driver needs to be unloaded and loaded again
563#if ! grep -q "NFV" /etc/rc.local
564#then
565# echo "" >> /etc/rc.local
566# echo "# NFV" >> /etc/rc.local
567# echo "modprobe -r ixgbe" >> /etc/rc.local
568# echo "modprobe ixgbe max_vfs=8" >> /etc/rc.local
569# echo "" >> /etc/rc.local
570
571# chmod +x /etc/rc.d/rc.local
572
573#fi
Mirabalefd76602017-01-10 15:11:32 +0000574_install_openvswitch
tiernof7aa8c42016-09-06 16:43:04 +0200575
Mirabalefd76602017-01-10 15:11:32 +0000576echo
tiernof7aa8c42016-09-06 16:43:04 +0200577echo "Do not forget to create a shared (NFS, Samba, ...) where original virtual machine images are allocated"
578echo
579echo "Do not forget to copy the public ssh key of openvim user into /home/${user_name}/.ssh/authorized_keys for authomatic login from openvim controller"
580echo
581
582echo "Reboot the system to make the changes effective"
583