wlan2eth/config/nat-config.sh.example

27 lines
762 B
Plaintext
Raw Permalink Normal View History

2023-06-20 12:03:35 -06:00
# Name of the Ethernet interface that the bridged client will plug into.
# This will be your LAN port.
2023-06-20 12:12:43 -06:00
ETH_IFACE="eth0"
2023-06-20 12:03:35 -06:00
# Name of the WiFi interface that will connect to the wider network.
# This will be your WAN port.
2023-06-20 12:12:43 -06:00
WLAN_IFACE="wlan0"
2023-06-20 12:03:35 -06:00
# Name of the WiFi network to connect to.
WIFI_SSID="Example-Network"
# "psk": WPA2-PSK auth.
# "peap": WPA2-Enterprise in PEAP mode. Make sure to fill out the RADIUS login details below.
# WIFI_AUTH_MODE="peap"
# TODO: implement psk mode
# RADIUS login
WIFI_USERNAME="username"
WIFI_PWD="password"
2023-06-20 12:12:43 -06:00
# Make this port accessible on the router and have its SSH server on it.
# The installer will modify the SSH server's config for you.
ROUTER_SSH_PORT=64535
2023-06-20 12:03:35 -06:00
# Don't prompt the user for confirmation
NON_INTERACTIVE=false