blob: cc51f125d0c07d83c73b11ff13d1f9aa5f8a44bf (
plain) (
tree)
|
|
#!/bin/bash
IPT="/usr/sbin/iptables"
IPT6="/usr/sbin/ip6tables"
SPAMLIST="/etc/iptables/blockedip"
SPAMDROPMSG="BLOCKED IP: "
# bridge interface with interface facing gateway
#BR_IF="br0"
# bridge ip network address
BR_NET="10.0.0.0/8"
# network gateway
GW="10.0.0.1"
# external dns
#DNS="212.55.154.174"
DNS="10.0.0.254"
# static machine ip address
PUB_IP="10.0.0.4"
# public interface facing gateway
PUB_IF="ens3"
# wifi interface
#WIFI_IF="wlp7s0"
# static wifi ip network address
#WIFI_NET="10.0.0.0/8"
|