diff options
author | Marco Platania <platania@research.att.com> | 2017-05-17 22:58:06 -0400 |
---|---|---|
committer | Marco Platania <platania@research.att.com> | 2017-05-17 22:58:06 -0400 |
commit | 3e1ebbd542935a5b3fa0c2326a53df79c4ce93ea (patch) | |
tree | b458f341f24596e5bc18b4c24b1ff0381bd65afc /vnfs/vLB/scripts/v_lb_install.sh | |
parent | 4fa3b7340ce5393aac18e0b01840e0d92b7297f3 (diff) |
Add public interface to vLB in OpenStack
Change-Id: Ibca9220dcb511f6875aede0ecda47ddc9dd446ba
Signed-off-by: Marco Platania <platania@research.att.com>
Diffstat (limited to 'vnfs/vLB/scripts/v_lb_install.sh')
-rw-r--r-- | vnfs/vLB/scripts/v_lb_install.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/vnfs/vLB/scripts/v_lb_install.sh b/vnfs/vLB/scripts/v_lb_install.sh index 254a4753..8bfe9fcd 100644 --- a/vnfs/vLB/scripts/v_lb_install.sh +++ b/vnfs/vLB/scripts/v_lb_install.sh @@ -17,14 +17,14 @@ then echo " address $VLB_PRIVATE_IP_O" >> /etc/network/interfaces echo " netmask 255.255.255.0" >> /etc/network/interfaces -# VLB_PRIVATE_IP_1=$(cat /opt/config/oam_private_ipaddr.txt) -# echo "auto eth2" >> /etc/network/interfaces -# echo "iface eth2 inet static" >> /etc/network/interfaces -# echo " address $VLB_PRIVATE_IP_1" >> /etc/network/interfaces -# echo " netmask 255.255.255.0" >> /etc/network/interfaces + VLB_PRIVATE_IP_1=$(cat /opt/config/oam_private_ipaddr.txt) + echo "auto eth2" >> /etc/network/interfaces + echo "iface eth2 inet static" >> /etc/network/interfaces + echo " address $VLB_PRIVATE_IP_1" >> /etc/network/interfaces + echo " netmask 255.255.255.0" >> /etc/network/interfaces ifup eth1 -# ifup eth2 + ifup eth2 fi # Download required dependencies |