wlan2eth/config/config.sh.example

20 lines
580 B
Plaintext
Raw Normal View History

2023-06-13 10:33:04 -06:00
# Interface names
ETH_IFACE="enp0s31f6"
WLAN_IFACE="wlxc8d7193710f4"
# IP address(es) of your DHCP servers. If multiple, separate
# them with a space.
DHCP_SERVERS="192.168.1.1 192.168.1.2"
# RADIUS login
WIFI_SSID="Example-Network"
WIFI_USERNAME="username"
WIFI_PWD="password"
2023-06-13 14:14:38 -06:00
# "transparent": the bridge device clones the client's MAC address and NATs traffic to a private LAN. Only supports one bridged client.
# TODO: support bridging multiple clients connected to an ethernet hub
# BRIDGE_MODE="transparent"
2023-06-13 10:33:04 -06:00
# Don't prompt the user for confirmation
NON_INTERACTIVE=false