blob: 63b101f343d71914587a0a7e1488b684f54c6e1c (
plain) (
tree)
|
|
#!/bin/bash
IPT="/usr/sbin/iptables"
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"
|