add configs

This commit is contained in:
Cyberes 2023-06-20 12:12:43 -06:00
parent 6a17092fd1
commit ab23d8419a
2 changed files with 28 additions and 2 deletions

View File

@ -0,0 +1,22 @@
# 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"
# 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

View File

@ -1,10 +1,10 @@
# Name of the Ethernet interface that the bridged client will plug into. # Name of the Ethernet interface that the bridged client will plug into.
# This will be your LAN port. # This will be your LAN port.
ETH_IFACE="enp0s31f6" ETH_IFACE="eth0"
# Name of the WiFi interface that will connect to the wider network. # Name of the WiFi interface that will connect to the wider network.
# This will be your WAN port. # This will be your WAN port.
WLAN_IFACE="wlxc8d7193710f4" WLAN_IFACE="wlan0"
# Name of the WiFi network to connect to. # Name of the WiFi network to connect to.
WIFI_SSID="Example-Network" WIFI_SSID="Example-Network"
@ -18,5 +18,9 @@ WIFI_SSID="Example-Network"
WIFI_USERNAME="username" WIFI_USERNAME="username"
WIFI_PWD="password" WIFI_PWD="password"
# 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
# Don't prompt the user for confirmation # Don't prompt the user for confirmation
NON_INTERACTIVE=false NON_INTERACTIVE=false