mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-07 01:32:47 +01:00
[fix] Add more logic to network-only process
This commit is contained in:
@@ -1378,6 +1378,14 @@ minio_generate_keys() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
network_init() {
|
network_init() {
|
||||||
|
disable_ipv6
|
||||||
|
set_hostname
|
||||||
|
if [[ "$setup_type" == 'iso' ]]; then
|
||||||
|
set_management_interface
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
network_init_whiptail() {
|
||||||
case "$setup_type" in
|
case "$setup_type" in
|
||||||
'iso')
|
'iso')
|
||||||
whiptail_set_hostname
|
whiptail_set_hostname
|
||||||
@@ -1399,21 +1407,6 @@ network_init() {
|
|||||||
whiptail_management_nic
|
whiptail_management_nic
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
if [[ $is_minion ]]; then
|
|
||||||
whiptail_management_server
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ $is_minion || $is_iso ]]; then
|
|
||||||
whiptail_management_interface_setup
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Init networking so rest of install works
|
|
||||||
disable_ipv6
|
|
||||||
set_hostname
|
|
||||||
if [[ "$setup_type" == 'iso' ]]; then
|
|
||||||
set_management_interface
|
|
||||||
fi
|
|
||||||
}
|
}
|
||||||
|
|
||||||
network_setup() {
|
network_setup() {
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ if [ "$uid" -ne 0 ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Save the original argument array since we modify it
|
# Save the original argument array since we modify it
|
||||||
readarray -t original_args <<< "$@"
|
original_args=("$@")
|
||||||
|
|
||||||
cd "$(dirname "$0")" || exit 255
|
cd "$(dirname "$0")" || exit 255
|
||||||
|
|
||||||
@@ -174,12 +174,12 @@ if ! [[ -f $install_opt_file ]]; then
|
|||||||
if [[ $setup_type == 'iso' ]]; then
|
if [[ $setup_type == 'iso' ]]; then
|
||||||
whiptail_first_menu_iso
|
whiptail_first_menu_iso
|
||||||
if [[ $option == "Configure Network" ]] && ! [[ -f $net_init_file ]]; then
|
if [[ $option == "Configure Network" ]] && ! [[ -f $net_init_file ]]; then
|
||||||
|
network_init_whiptail
|
||||||
|
whiptail_management_interface_setup
|
||||||
network_init
|
network_init
|
||||||
printf '%s\n' \
|
printf '%s\n' \
|
||||||
"MNIC=$MNIC" \
|
"MNIC=$MNIC" \
|
||||||
"HOSTNAME=$HOSTNAME" \
|
"HOSTNAME=$HOSTNAME" > "$net_init_file"
|
||||||
"MSRV=$MSRV" \
|
|
||||||
"MSRVIP=$MSRVIP" > "$net_init_file"
|
|
||||||
whiptail --title "Security Onion Setup" \
|
whiptail --title "Security Onion Setup" \
|
||||||
--msgbox "Successfully set up networking, setup will now exit." 7 75
|
--msgbox "Successfully set up networking, setup will now exit." 7 75
|
||||||
exit 0
|
exit 0
|
||||||
@@ -259,9 +259,23 @@ if ! [[ -f $install_opt_file ]]; then
|
|||||||
check_requirements "import"
|
check_requirements "import"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -f $net_init_file ]]; then
|
[[ -f $net_init_file ]] && whiptail_net_reinit && reinit_networking=true
|
||||||
source "$net_init_file"
|
|
||||||
|
if [[ $reinit_networking ]] || ! [[ -f $net_init_file ]]; then
|
||||||
|
network_init_whiptail
|
||||||
else
|
else
|
||||||
|
source "$net_init_file"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ $is_minion ]]; then
|
||||||
|
whiptail_management_server
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ $is_minion ]] || [[ $reinit_networking ]] || ! [[ -f $net_init_file ]]; then
|
||||||
|
whiptail_management_interface_setup
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ $reinit_networking ]] || ! [[ -f $net_init_file ]]; then
|
||||||
network_init
|
network_init
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|||||||
@@ -771,7 +771,11 @@ whiptail_management_interface_setup() {
|
|||||||
|
|
||||||
if [[ $is_iso ]]; then
|
if [[ $is_iso ]]; then
|
||||||
if [[ $minion_msg != "" ]]; then
|
if [[ $minion_msg != "" ]]; then
|
||||||
|
if [[ -f $net_init_file ]]; then
|
||||||
|
msg=$minion_msg
|
||||||
|
else
|
||||||
msg="initialize networking and $minion_msg"
|
msg="initialize networking and $minion_msg"
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
msg="initialize networking"
|
msg="initialize networking"
|
||||||
fi
|
fi
|
||||||
@@ -978,6 +982,12 @@ whiptail_network_notice() {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
whiptail_net_reinit() {
|
||||||
|
[ -n "$TESTING" ] && return
|
||||||
|
|
||||||
|
whiptail --title "Security Onion Setup" --yesno "The management interface has already been configured. Do you want to reconfigure it?" 8 75
|
||||||
|
}
|
||||||
|
|
||||||
whiptail_node_advanced() {
|
whiptail_node_advanced() {
|
||||||
|
|
||||||
[ -n "$TESTING" ] && return
|
[ -n "$TESTING" ] && return
|
||||||
|
|||||||
Reference in New Issue
Block a user