forked from apache/cloudstack
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathnetusage.sh
More file actions
executable file
·154 lines (134 loc) · 3.4 KB
/
Copy pathnetusage.sh
File metadata and controls
executable file
·154 lines (134 loc) · 3.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
#!/usr/bin/env bash
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
# netusage.sh -- create iptable rules to gather network stats, running within DomR
source /root/func.sh
lock="biglock"
locked=$(getLockFile $lock)
if [ "$locked" != "1" ]
then
exit 1
fi
usage() {
printf "Usage: %s -[c|g|r] [-[a|d] <public interface>]\n" $(basename $0) >&2
}
create_usage_rules () {
iptables-save|grep "INPUT -j NETWORK_STATS" > /dev/null
if [ $? -eq 0 ]
then
return $?
fi
iptables -N NETWORK_STATS > /dev/null
iptables -I FORWARD -j NETWORK_STATS > /dev/null
iptables -I INPUT -j NETWORK_STATS > /dev/null
iptables -I OUTPUT -j NETWORK_STATS > /dev/null
iptables -A NETWORK_STATS -i eth0 -o eth2 > /dev/null
iptables -A NETWORK_STATS -i eth2 -o eth0 > /dev/null
iptables -A NETWORK_STATS -o eth2 ! -i eth0 -p tcp > /dev/null
iptables -A NETWORK_STATS -i eth2 ! -o eth0 -p tcp > /dev/null
return $?
}
add_public_interface () {
local pubIf=$1
iptables-save|grep "NETWORK_STATS -i eth0 -o $pubIf" > /dev/null
if [ $? -eq 0 ]
then
return $?
fi
iptables -A NETWORK_STATS -i eth0 -o $pubIf > /dev/null
iptables -A NETWORK_STATS -i $pubIf -o eth0 > /dev/null
iptables -A NETWORK_STATS -o $pubIf ! -i eth0 -p tcp > /dev/null
iptables -A NETWORK_STATS -i $pubIf ! -o eth0 -p tcp > /dev/null
return $?
}
delete_public_interface () {
local pubIf=$1
echo $pubIf >> /root/removedVifs
return $?
}
get_usage () {
iptables -L NETWORK_STATS -n -v -x | awk '$1 ~ /^[0-9]+$/ { printf "%s:", $2}'; > /dev/null
if [ -f /root/removedVifs ] ; then iptables -Z NETWORK_STATS ; fi; > /dev/null
/root/clearUsageRules.sh > /dev/null
if [ $? -gt 0 -a $? -ne 2 ]
then
printf $?
return 1
fi
}
reset_usage () {
iptables -Z NETWORK_STATS > /dev/null
if [ $? -gt 0 -a $? -ne 2 ]
then
return 1
fi
}
#set -x
cflag=
gflag=
rflag=
iflag=
aflag=
dflag=
while getopts 'cgria:d:' OPTION
do
case $OPTION in
c) cflag=1
;;
g) gflag=1
;;
r) rflag=1
;;
a) aflag=1
publicIf="$OPTARG"
;;
d) dflag=1
publicIf="$OPTARG"
;;
i) #Do nothing, since it's parameter for host script
;;
?) usage
unlock_exit 2 $lock $locked
;;
esac
done
if [ "$cflag" == "1" ]
then
#create_usage_rules
unlock_exit $? $lock $locked
fi
if [ "$gflag" == "1" ]
then
get_usage
unlock_exit $? $lock $locked
fi
if [ "$rflag" == "1" ]
then
reset_usage
unlock_exit $? $lock $locked
fi
if [ "$aflag" == "1" ]
then
#add_public_interface $publicIf
unlock_exit $? $lock $locked
fi
if [ "$dflag" == "1" ]
then
#delete_public_interface $publicIf
unlock_exit $? $lock $locked
fi
unlock_exit 0 $lock $locked