26 lines
701 B
Plaintext
26 lines
701 B
Plaintext
# Name of the Ethernet interface that the bridged client will plug into.
|
|
# This will be your LAN port.
|
|
ETH_IFACE="eth0"
|
|
|
|
# Name of the WiFi interface that will connect to the wider network.
|
|
# This will be your WAN port.
|
|
WLAN_IFACE="wlan0"
|
|
|
|
# The IP(s) of your DHCP servers. If multiple, seperate with space.
|
|
DHCP_SERVERS="192.168.1.1"
|
|
|
|
# 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"
|
|
|
|
# Don't prompt the user for confirmation
|
|
NON_INTERACTIVE=false
|