blob: 3874cee3f3e73b276fb84c1adc0cdb42f6d594f4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/bash
TYPE=bridge
#TYPE=server
SPAMLIST="blockedip"
SPAMDROPMSG="BLOCKED IP DROP"
# public interface to network/internet
BR_IF="br0"
BR_NET="10.0.0.0/8"
GW="10.0.0.1"
#DNS="10.0.0.254"
DNS="212.55.154.174"
PUB_IP="10.0.0.254"
PUB_IF="enp8s0"
# private interface for virtual/internal
WIFI_IF="wlp7s0"
WIFI_NET="192.168.1.0/24"
|