blob: 8f50b305cb25da04c961e58f6bb35667bed988f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class site_config::vagrant {
# class for vagrant nodes
include site_shorewall::defaults
# eth0 on vagrant nodes is the uplink if
shorewall::interface { 'eth0':
zone => 'net',
options => 'tcpflags,blacklist,nosmurfs';
}
}
|