Skip to content

Commit

Permalink
Fixing default route search and code comment typo
Browse files Browse the repository at this point in the history
  • Loading branch information
igorpecovnik committed Oct 9, 2024
1 parent 388ce4e commit dcc33ca
Show file tree
Hide file tree
Showing 5 changed files with 211 additions and 62 deletions.
2 changes: 1 addition & 1 deletion lib/armbian-configng/config.ng.functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,7 @@ menu_options+=(
function process_input() {
local input="$1"
if [ "$input" = "No" ]; then
exit 1
return 1
fi
}

Expand Down
21 changes: 4 additions & 17 deletions lib/armbian-configng/config.ng.jobs.json
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@
"sub": [
{
"id": "N02",
"description": "Add interface",
"description": "Add / change interface",
"command": [
"network_config armbian"
],
Expand All @@ -419,17 +419,17 @@
},
{
"id": "N03",
"description": "Revert to defaults",
"description": "Revert to Armbian defaults",
"command": [
"default_network_config"
],
"status": "Preview",
"author": "Igor Pecovnik",
"condition": "[[ -f /etc/netplan/armbian.yaml ]] && ! cat /etc/netplan/armbian.yaml | diff -q 1>/dev/null <(netplan get all) - || [[ ! -f /etc/netplan/10-dhcp-all-interfaces.yaml ]] && ! cat /etc/netplan/10-dhcp-all-interfaces.yaml 2>/dev/null | diff -q 1>/dev/null <(netplan get all) -"
"condition": ""
},
{
"id": "N04",
"description": "Show draft configuration",
"description": "Show configuration",
"command": [
"show_message <<< \"$(netplan get all)\""
],
Expand All @@ -439,19 +439,6 @@
"author": "Igor Pecovnik",
"condition": "[[ -f /etc/netplan/armbian.yaml ]]"
},
{
"id": "N05",
"description": "Apply changes",
"prompt": "This will apply new network configuration\n\nwould you like to continue?",
"command": [
"netplan apply"
],
"status": "Preview",
"doc_link": "",
"src_reference": "",
"author": "Igor Pecovnik",
"condition": "[[ -f /etc/netplan/armbian.yaml ]] && ! cat /etc/netplan/armbian.yaml | diff -q 1>/dev/null <(netplan get all) - || [[ -f /etc/netplan/10-dhcp-all-interfaces.yaml ]]"
},
{
"id": "N06",
"description": "Show active status",
Expand Down
187 changes: 160 additions & 27 deletions lib/armbian-configng/config.ng.network.sh
Original file line number Diff line number Diff line change
Expand Up @@ -114,23 +114,78 @@ module_options+=(
["default_network_config,status"]="review"
)
#
# Function to revert network configuration to defaults
# Function to revert network configuration to Armbian defaults
#
function default_network_config() {

local renderer=networkd
local yamlfile=10-dhcp-all-interfaces

# remove all configs
rm -f /etc/netplan/*.yaml
netplan set --origin-hint ${yamlfile} renderer=${renderer}
netplan set --origin-hint ${yamlfile} ethernets.all-eth-interfaces.dhcp4=true
netplan set --origin-hint ${yamlfile} ethernets.all-eth-interfaces.dhcp6=true
netplan set --origin-hint ${yamlfile} ethernets.all-eth-interfaces.match.name=e*
show_message <<< "$(sudo netplan get ${type})"
# store current configs to temporal folder
store_netplan_config

get_user_continue "This action might disconnect you from network.\n\nAre you sure network was configured correctly?" process_input
if [[ $? == 0 ]]; then
# remove all configs
rm -f /etc/netplan/*.yaml
# disable hostapd
systemctl stop hostapd 2> /dev/null
systemctl disable hostapd 2> /dev/null
# reset netplan config
netplan set --origin-hint ${yamlfile} renderer=${renderer}
netplan set --origin-hint ${yamlfile} ethernets.all-eth-interfaces.dhcp4=true
netplan set --origin-hint ${yamlfile} ethernets.all-eth-interfaces.dhcp6=true
netplan set --origin-hint ${yamlfile} ethernets.all-eth-interfaces.match.name=e*
# drop and delete bridge interface in case its there
if [[ -n $(ip link show type bridge) ]]; then
ip link set br0 down
brctl delbr br0
networkctl reconfigure br0
fi
# remove networkd-dispatcher hook
rm -f /etc/networkd-dispatcher/carrier.d/armbian-ap
# uninstall packages
apt_install_wrapper apt-get -y purge hostapd networkd-dispatcher
# apply NetPlan
netplan apply
else
restore_netplan_config
fi
}

module_options+=(
["default_wireless_network_config,author"]="Igor Pecovnik"
["default_wireless_network_config,ref_link"]=""
["default_wireless_network_config,feature"]="default_wireless_network_config"
["default_wireless_network_config,desc"]="Stop hostapd, clean config"
["default_wireless_network_config,example"]="default_wireless_network_config"
["default_wireless_network_config,doc_link"]=""
["default_wireless_network_config,status"]="review"
)
function default_wireless_network_config(){

# defaul yaml file
local yamlfile=${1:-armbian}
local adapter=${2:-wlan0}

systemctl stop hostapd 2> /dev/null
systemctl disable hostapd 2> /dev/null
# remove from netplan
if [[ -f /etc/netplan/${yamlfile}.yaml ]]; then
sed -i -e 'H;x;/^\( *\)\n\1/{s/\n.*//;x;d;}' -e 's/.*//;x;/'$adapter':/{s/^\( *\).*/ \1/;x;d;}' /etc/netplan/${yamlfile}.yaml
sed -i -e 'H;x;/^\( *\)\n\1/{s/\n.*//;x;d;}' -e 's/.*//;x;/- '$adapter'/{s/^\( *\).*/ \1/;x;d;}' /etc/netplan/${yamlfile}.yaml
sed -i -e 'H;x;/^\( *\)\n\1/{s/\n.*//;x;d;}' -e 's/.*//;x;/wifis:/{s/^\( *\).*/ \1/;x;d;}' /etc/netplan/${yamlfile}.yaml
fi
# remove networkd-dispatcher hook
rm -f /etc/networkd-dispatcher/carrier.d/armbian-ap
# uninstall packages
apt_install_wrapper apt-get -y --no-install-recommends purge hostapd networkd-dispatcher
netplan apply
brctl delif br0 $adapter 2> /dev/null
networkctl reconfigure br0
}


module_options+=(
["network_config,author"]="Igor Pecovnik"
["network_config,ref_link"]=""
Expand All @@ -148,8 +203,10 @@ function network_config() {
# defaul yaml file
local yamlfile=${1:-armbian}

# delete default automatic DHCP on all wired networks setup
rm -f /etc/netplan/10-dhcp-all-interfaces.yaml
# store current configs to temporal folder
store_netplan_config



LIST=()
HIDE_IP_PATTERN="^dummy0|^lo|^docker|^virbr|^br"
Expand All @@ -170,15 +227,25 @@ function network_config() {
# Wireless networking
#
if [[ "$adapter" == w* ]]; then
# wireless
LIST=("sta" "Connect to access point")
LIST+=("ap" "Become an access point")

LIST=()
if systemctl is-active --quiet service hostapd; then
LIST+=("stop" "Disable access point")
else
LIST=("sta" "Connect to access point")
LIST+=("ap" "Become an access point")
fi
LIST_LENGTH=$((${#LIST[@]} / 2))
wifimode=$($DIALOG --title "Select wifi mode" --menu "" $((${LIST_LENGTH} + 8)) 60 $((${LIST_LENGTH})) "${LIST[@]}" 3>&1 1>&2 2>&3)
if [[ "${wifimode}" == "sta" && $? == 0 ]]; then
case $wifimode in
stop)
# disable hostapd and cleanup config
default_wireless_network_config "${yamlfile}" "${adapter}"
;;

sta)
ip link set ${adapter} up
systemctl stop hostapd 2> /dev/null
systemctl disable hostapd 2> /dev/null
default_wireless_network_config "${yamlfile}" "${adapter}"
LIST=()
LIST=($(iw dev ${adapter} scan 2> /dev/null | grep 'SSID\|^BSS' | cut -d" " -f2 | sed "s/(.*//g" | xargs -n2 -d'\n' | awk '{print $2,$1}'))
sleep 2
Expand All @@ -193,12 +260,19 @@ function network_config() {
netplan set --origin-hint ${yamlfile} wifis.$adapter.dhcp4=true
netplan set --origin-hint ${yamlfile} wifis.$adapter.dhcp6=true
show_message <<< "$(netplan get all)"
$DIALOG --title " Changing network settings " --yes-button "Yes" --no-button "Cancel" --yesno "This action might disconnect you from network.\n\nAre you sure network was configured correctly?" 9 50
if [[ $? = 0 ]]; then
netplan apply
else
restore_netplan_config
fi
fi
fi
elif [[ "${wifimode}" == "ap" ]]; then

check_if_installed hostapd && debconf-apt-progress -- apt-get -y --no-install-recommends hostapd
;;

ap)
default_wireless_network_config "${yamlfile}" "${adapter}"
! check_if_installed hostapd && apt_install_wrapper apt-get -y --no-install-recommends install hostapd networkd-dispatcher
SELECTED_SSID=$($DIALOG --title "Enter SSID for AP" --inputbox "" 7 50 3>&1 1>&2 2>&3)
if [[ -n "${SELECTED_SSID}" && $? == 0 ]]; then
SELECTED_PASSWORD=$($DIALOG --title "Enter new password for $SELECTED_SSID" --passwordbox "" 7 50 3>&1 1>&2 2>&3)
Expand All @@ -224,22 +298,45 @@ function network_config() {
wpa_pairwise=TKIP
rsn_pairwise=CCMP
EOF
netplan apply
# Start services
systemctl stop hostapd
systemctl unmask hostapd 2>/dev/null
systemctl stop hostapd 2>/dev/null
sleep 2
systemctl start hostapd
systemctl start hostapd 2>/dev/null
# Enable services on boot
systemctl enable hostapd
show_message <<< "$(netplan get all)"
systemctl enable hostapd 2>/dev/null
# Sometimes it fails to add to the bridge
brctl addif br0 $adapter 2>/dev/null
# workarounding bug in netplan for failing to add wireless adaptor to bridge
# this might not be needed on all versions
mkdir -p /etc/networkd-dispatcher/carrier.d/
cat <<- EOF > "/etc/networkd-dispatcher/carrier.d/armbian-ap"
#!/bin/sh
brctl addif br0 $adapter
netplan apply
exit 0
EOF
#show_message <<< "$(netplan get all)"
fi
fi
fi
;;

*)
echo -n "unknown"
exit
;;
esac

else

#
# Wireless networking
# Wired networking
#

# remove default configuration
rm -f /etc/netplan/10-dhcp-all-interfaces.yaml

LIST=("dhcp" "Auto IP assigning")
LIST+=("static" "Set IP manually")
wiredmode=$($DIALOG --title "Select IP mode" --menu "" $((${LIST_LENGTH} + 8)) 60 $((${LIST_LENGTH})) "${LIST[@]}" 3>&1 1>&2 2>&3)
Expand All @@ -251,16 +348,35 @@ function network_config() {
netplan set --origin-hint ${yamlfile} bridges.br0.dhcp4=yes
netplan set --origin-hint ${yamlfile} bridges.br0.dhcp6=yes
show_message <<< "$(netplan get all)"
$DIALOG --title " Changing network settings " --yes-button "Yes" --no-button "Cancel" --yesno "This action might disconnect you from network.\n\nAre you sure network was configured correctly?" 9 50
if [[ $? = 0 ]]; then
netplan apply
else
restore_netplan_config
fi
elif [[ "${wiredmode}" == "static" ]]; then
address=$(ip -br addr show dev $adapter | awk '{print $3}')
local ips=()
for f in /sys/class/net/*; do
local intf=$(basename $f)
# skip unwanted
if [[ $intf =~ ^dummy0|^lo|^docker|^virbr ]]; then
continue
else
local tmp=$(ip -4 addr show dev $intf | grep -v "$intf:avahi" | awk '/inet/ {print $2}' | uniq)
[[ -n $tmp ]] && ips+=("$tmp")
fi
done
address=${ips[@]}
[[ -z "${address}" ]] && address="1.2.3.4/5"
address=$($DIALOG --title "Enter IP for $adapter" --inputbox "\nValid format: $address" 9 40 "$address" 3>&1 1>&2 2>&3)
if [[ -n $address && $? == 0 ]]; then
defaultroute=$(ip route show default | grep "$adapter" | grep -Eo "[0-9]+\.[0-9]+\.[0-9]+\.[0-9]" | head 1 | xargs)
defaultroute=$(ip route show default | grep -Eo "[0-9]+\.[0-9]+\.[0-9]+\.[0-9]" | head -1 | xargs)
defaultroute=$($DIALOG --title "Enter IP for default route" --inputbox "\nValid format: $defaultroute" 9 40 "$defaultroute" 3>&1 1>&2 2>&3)
if [[ -n $defaultroute && $? == 0 ]]; then
nameservers="9.9.9.9,1.1.1.1"
nameservers=$($DIALOG --title "Enter DNS server" --inputbox "\nValid format: $nameservers" 9 40 "$nameservers" 3>&1 1>&2 2>&3)
else
restore_netplan_config
fi
if [[ -n $nameservers && $? == 0 ]]; then
netplan set --origin-hint ${yamlfile} renderer=${renderer}
Expand All @@ -270,9 +386,26 @@ function network_config() {
netplan set --origin-hint ${yamlfile} bridges.br0.addresses='['$address']'
netplan set --origin-hint ${yamlfile} bridges.br0.routes='[{"to":"0.0.0.0/0", "via": "'$defaultroute'","metric":200}]'
netplan set --origin-hint ${yamlfile} bridges.br0.nameservers.addresses='['$nameservers']'
else
restore_netplan_config
fi
if [[ $? == 0 ]]; then
show_message <<< "$(netplan get all)"
$DIALOG --title " Changing network settings " --yes-button "Yes" --no-button "Cancel" --yesno "This action might disconnect you from network.\n\nAre you sure network was configured correctly?" 9 50
if [[ $? = 0 ]]; then
netplan apply
else
restore_netplan_config
fi
fi
else
restore_netplan_config
fi
else
restore_netplan_config
fi
fi
else
restore_netplan_config
fi
}
42 changes: 42 additions & 0 deletions lib/armbian-configng/config.ng.system.sh
Original file line number Diff line number Diff line change
Expand Up @@ -390,3 +390,45 @@ function manage_dtoverlays () {
esac
done
}

module_options+=(
["store_netplan_config,author"]="Igor Pecovnik"
["store_netplan_config,ref_link"]=""
["store_netplan_config,feature"]="Storing netplan config to tmp"
["store_netplan_config,desc"]=""
["store_netplan_config,example"]=""
["store_netplan_config,status"]="Active"
)
#
# @description Storing Netplan configuration to temp folder
#
function store_netplan_config () {

# store current configs to temporal folder
restore_netplan_config_folder=$(mktemp -d /tmp/XXXXXXXXXX)
rsync --quiet /etc/netplan/* ${restore_netplan_config_folder}/ 2>/dev/null
trap restore_netplan_config 1 2 3 6

}

module_options+=(
["store_netplan_config,author"]="Igor Pecovnik"
["store_netplan_config,ref_link"]=""
["store_netplan_config,feature"]="Storing netplan config to tmp"
["store_netplan_config,desc"]=""
["store_netplan_config,example"]=""
["store_netplan_config,status"]="Active"
)
#
# @description Restoring Netplan configuration from temp folder
#
restore_netplan_config() {

echo "Restoring NetPlan configs" | show_infobox
# just in case
if [[ -n ${restore_netplan_config_folder} ]]; then
rm -f /etc/netplan/*
rsync -ar ${restore_netplan_config_folder}/. /etc/netplan
fi

}
Loading

0 comments on commit dcc33ca

Please sign in to comment.