summaryrefslogtreecommitdiffstats
path: root/vagrant-demo/scripts/host2-cfg.sh
blob: 92a663ffc7bcaf19a479a0b34705c36726d8a3f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /bin/bash
#
# Script to configure host2.
#
# Copyright (c) 2016 Cisco Systems, Inc. and/or others.  All rights reserved.

if [ "$(id -un)" != "vagrant" ] || [ "$VM_NAME" != "(host2)" ]; then
    echo "ERROR: Must be run inside the vpp1 vagrant VM!"
    exit 1
fi

HOST1_IP_ADDR="172.16.10.11"
HOST2_IP_ADDR="172.16.10.12"
echo
echo "Configuring eth1 with $HOST2_IP_ADDR"
sudo ifconfig eth1 $HOST2_IP_ADDR/24 up
echo
echo "ifconfig eth1:"
ifconfig eth1
echo
echo "Run the following command to ping host1:"
echo "  ping $HOST1_IP_ADDR"
echo