blob: 0c1e129a0c6423874685fe384b3a0fde5d7bb8fe (
plain)
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
|
firewall {
family inet {
replace:
/*
** $Id: ./filters/sample_tug_wlc_fw.jcl $
** $Date: 2015/03/26 $
**
** this is a sample output filter that generates
** multiplatform for tug wlc protection
*/
filter fw_tug_wlc_protect {
interface-specific;
term permit-icmp {
from {
destination-address {
109.105.104.16/28; /* Wireless Controller net */
}
protocol icmp;
}
then {
accept;
}
}
term permit-traceroute {
from {
destination-address {
109.105.104.16/28; /* Wireless Controller net */
}
protocol udp;
destination-port 33434-33534;
}
then {
accept;
}
}
term permit-NORDUnet {
from {
source-address {
109.105.96.0/19;
130.242.82.30/32; /* AP FRE POP */
130.242.121.137/32; /* AP LULE POP */
193.10.252.0/24;
193.10.254.0/24;
193.11.3.0/24;
194.68.13.0/24;
}
destination-address {
109.105.104.16/28; /* Wireless Controller net */
}
}
then {
accept;
}
}
term default-deny {
then {
discard;
}
}
}
}
}
|