aboutsummaryrefslogtreecommitdiffstats
path: root/vnfs/vFW/scripts/v_sink_init.sh
blob: 7975d4350e91999c366a1433ba0d07d8453e49d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

# Convert Network CIDR to Netmask
cdr2mask () {
	# Number of args to shift, 255..255, first non-255 byte, zeroes
	set -- $(( 5 - ($1 / 8) )) 255 255 255 255 $(( (255 << (8 - ($1 % 8))) & 255 )) 0 0 0
	[ $1 -gt 1 ] && shift $1 || shift
	echo ${1-0}.${2-0}.${3-0}.${4-0}
}

# Set the IP address of the protected network interface of the vFirewall as a default gateway to the unprotected network
PROTECTED_NET_GW=$(cat /opt/config/protected_net_gw.txt)
UNPROTECTED_NET=$(cat /opt/config/unprotected_net.txt | cut -d'/' -f1)
BITS=$(cat /opt/config/unprotected_net.txt | cut -d"/" -f2)
NETMASK=$(cdr2mask $BITS) 

route add -net $UNPROTECTED_NET netmask $NETMASK gw $PROTECTED_NET_GW