From ab23d8419a1569c91e29319315beaf78969993df Mon Sep 17 00:00:00 2001 From: Cyberes Date: Tue, 20 Jun 2023 12:12:43 -0600 Subject: [PATCH] add configs --- config/arp-config.sh.example | 22 ++++++++++++++++++++++ config/nat-config.sh.example | 8 ++++++-- 2 files changed, 28 insertions(+), 2 deletions(-) create mode 100644 config/arp-config.sh.example diff --git a/config/arp-config.sh.example b/config/arp-config.sh.example new file mode 100644 index 0000000..aad07a1 --- /dev/null +++ b/config/arp-config.sh.example @@ -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 diff --git a/config/nat-config.sh.example b/config/nat-config.sh.example index 0680db1..54a30fb 100644 --- a/config/nat-config.sh.example +++ b/config/nat-config.sh.example @@ -1,10 +1,10 @@ # Name of the Ethernet interface that the bridged client will plug into. # This will be your LAN port. -ETH_IFACE="enp0s31f6" +ETH_IFACE="eth0" # Name of the WiFi interface that will connect to the wider network. # This will be your WAN port. -WLAN_IFACE="wlxc8d7193710f4" +WLAN_IFACE="wlan0" # Name of the WiFi network to connect to. WIFI_SSID="Example-Network" @@ -18,5 +18,9 @@ WIFI_SSID="Example-Network" WIFI_USERNAME="username" 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 NON_INTERACTIVE=false