From 2f67aec5bb346cc3e7b05cdb6e92c01774d3e75a Mon Sep 17 00:00:00 2001 From: Dmytro Bogovych Date: Mon, 18 Dec 2023 08:59:47 +0000 Subject: [PATCH] - new AP script - relies on Network Manager --- config/ap/add_ap.sh | 7 +++ config/ap/etc/default/hostapd | 23 ------- config/ap/etc/dhcpcd.conf | 64 -------------------- config/ap/etc/dnsmasq.conf | 5 -- config/ap/etc/hostapd.conf | 8 --- config/ap/lib/systemd/system/dnsmasq.service | 31 ---------- 6 files changed, 7 insertions(+), 131 deletions(-) create mode 100755 config/ap/add_ap.sh delete mode 100644 config/ap/etc/default/hostapd delete mode 100644 config/ap/etc/dhcpcd.conf delete mode 100644 config/ap/etc/dnsmasq.conf delete mode 100644 config/ap/etc/hostapd.conf delete mode 100644 config/ap/lib/systemd/system/dnsmasq.service diff --git a/config/ap/add_ap.sh b/config/ap/add_ap.sh new file mode 100755 index 0000000..62c89db --- /dev/null +++ b/config/ap/add_ap.sh @@ -0,0 +1,7 @@ +#!/bin/bash +# +sudo nmcli con add con-name hotspot ifname wlan0 type wifi ssid "AGENT_GSM" +#sudo nmcli con modify hotspot wifi-sec.key-mgmt wpa-psk +#sudo nmcli con modify hotspot wifi-sec.psk "159357159357" +sudo nmcli con modify hotspot 802-11-wireless.mode ap 802-11-wireless.band bg ipv4.method shared ipv6.method shared + diff --git a/config/ap/etc/default/hostapd b/config/ap/etc/default/hostapd deleted file mode 100644 index 978f3e0..0000000 --- a/config/ap/etc/default/hostapd +++ /dev/null @@ -1,23 +0,0 @@ -# Defaults for hostapd initscript -# -# WARNING: The DAEMON_CONF setting has been deprecated and will be removed -# in future package releases. -# -# See /usr/share/doc/hostapd/README.Debian for information about alternative -# methods of managing hostapd. -# -# Uncomment and set DAEMON_CONF to the absolute path of a hostapd configuration -# file and hostapd will be started during system boot. An example configuration -# file can be found at /usr/share/doc/hostapd/examples/hostapd.conf.gz -# -DAEMON_CONF="/etc/hostapd/hostapd.conf" - -# Additional daemon options to be appended to hostapd command:- -# -d show more debug messages (-dd for even more) -# -K include key data in debug messages -# -t include timestamps in some debug messages -# -# Note that -B (daemon mode) and -P (pidfile) options are automatically -# configured by the init.d script and must not be added to DAEMON_OPTS. -# -#DAEMON_OPTS="" diff --git a/config/ap/etc/dhcpcd.conf b/config/ap/etc/dhcpcd.conf deleted file mode 100644 index 8c637d9..0000000 --- a/config/ap/etc/dhcpcd.conf +++ /dev/null @@ -1,64 +0,0 @@ -# A sample configuration for dhcpcd. -# See dhcpcd.conf(5) for details. - -# Allow users of this group to interact with dhcpcd via the control socket. -#controlgroup wheel - -# Inform the DHCP server of our hostname for DDNS. -hostname - -# Use the hardware address of the interface for the Client ID. -clientid -# or -# Use the same DUID + IAID as set in DHCPv6 for DHCPv4 ClientID as per RFC4361. -# Some non-RFC compliant DHCP servers do not reply with this set. -# In this case, comment out duid and enable clientid above. -#duid - -# Persist interface configuration when dhcpcd exits. -persistent - -# Rapid commit support. -# Safe to enable by default because it requires the equivalent option set -# on the server to actually work. -option rapid_commit - -# A list of options to request from the DHCP server. -option domain_name_servers, domain_name, domain_search, host_name -option classless_static_routes -# Respect the network MTU. This is applied to DHCP routes. -option interface_mtu - -# Most distributions have NTP support. -#option ntp_servers - -# A ServerID is required by RFC2131. -require dhcp_server_identifier - -# Generate SLAAC address using the Hardware Address of the interface -#slaac hwaddr -# OR generate Stable Private IPv6 Addresses based from the DUID -slaac private - -# Example static IP configuration: -#interface eth0 -#static ip_address=192.168.0.10/24 -#static ip6_address=fd51:42f8:caae:d92e::ff/64 -#static routers=192.168.0.1 -#static domain_name_servers=192.168.0.1 8.8.8.8 fd51:42f8:caae:d92e::1 - -# It is possible to fall back to a static IP if DHCP fails: -# define static profile -#profile static_eth0 -#static ip_address=192.168.1.23/24 -#static routers=192.168.1.1 -#static domain_name_servers=192.168.1.1 - -# fallback to static profile on eth0 -#interface eth0 -#fallback static_eth0 -# -# -interface wlan0 -static ip_address=192.168.45.1/24 -static routers=192.168.45.1 diff --git a/config/ap/etc/dnsmasq.conf b/config/ap/etc/dnsmasq.conf deleted file mode 100644 index 850f1e6..0000000 --- a/config/ap/etc/dnsmasq.conf +++ /dev/null @@ -1,5 +0,0 @@ -interface=wlan0 # Listening interface -dhcp-range=192.168.45.10,192.168.45.20,255.255.255.0,24h # Pool of IP addresses for wireless clients -domain=wlan # Domain -address=/gw.wlan/192.168.45.1 # Alias for router - diff --git a/config/ap/etc/hostapd.conf b/config/ap/etc/hostapd.conf deleted file mode 100644 index b1982fa..0000000 --- a/config/ap/etc/hostapd.conf +++ /dev/null @@ -1,8 +0,0 @@ -country_code=GB -interface=wlan0 -ssid=AGENT_GSM -hw_mode=g -channel=7 -macaddr_acl=0 -auth_algs=1 -ignore_broadcast_ssid=0 diff --git a/config/ap/lib/systemd/system/dnsmasq.service b/config/ap/lib/systemd/system/dnsmasq.service deleted file mode 100644 index 16f6df9..0000000 --- a/config/ap/lib/systemd/system/dnsmasq.service +++ /dev/null @@ -1,31 +0,0 @@ -[Unit] -Description=dnsmasq - A lightweight DHCP and caching DNS server -Requires=network.target -Wants=network-online.target -Before=nss-lookup.target -After=network-online.target - -[Service] -Type=forking -PIDFile=/run/dnsmasq/dnsmasq.pid - -# Test the config file and refuse starting if it is not valid. -ExecStartPre=/usr/sbin/dnsmasq --test - -# We run dnsmasq via the /etc/init.d/dnsmasq script which acts as a -# wrapper picking up extra configuration files and then execs dnsmasq -# itself, when called with the "systemd-exec" function. -ExecStart=/etc/init.d/dnsmasq systemd-exec - -# The systemd-*-resolvconf functions configure (and deconfigure) -# resolvconf to work with the dnsmasq DNS server. They're called like -# this to get correct error handling (ie don't start-resolvconf if the -# dnsmasq daemon fails to start. -ExecStartPost=/etc/init.d/dnsmasq systemd-start-resolvconf -ExecStop=/etc/init.d/dnsmasq systemd-stop-resolvconf - - -ExecReload=/bin/kill -HUP $MAINPID - -[Install] -WantedBy=multi-user.target