blob: dcea8370dd1faad196c192f258173265274d1bdf (
plain) (
tree)
|
|
#!/bin/bash
IPT="/usr/sbin/iptables"
SPAMLIST="blockedip"
SPAMDROPMSG="BLOCKED IP DROP"
# 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"
# static machine ip address
PUB_IP="10.0.0.254"
# public interface facing gateway
PUB_IF="enp8s0"
# wifi interface
WIFI_IF="wlp7s0"
# static wifi ip network address
WIFI_NET="10.0.0.0/8"
|