Compare commits

..

No commits in common. "c9cdf5d14d866d9bd838dccf03ed7ab949b05050" and "cef1a19058aea74da0d5f5aca7c6535e9cd35b64" have entirely different histories.

View File

@ -536,9 +536,10 @@ advanced_settings() {
while true; do
IPV4_METHOD=$(whiptail --backtitle "[dev] Proxmox VE Helper Scripts" \
--title "IPv4 Address Management" \
--menu "Select IPv4 Address Assignment Method:" 12 60 2 \
--menu "Select IPv4 Address Assignment Method:" 12 60 3 \
"dhcp" "Automatic (DHCP, recommended)" \
"static" "Static (manual entry)" \
"none" "Disabled (no IPv4 address)" \
3>&1 1>&2 2>&3)
exit_status=$?
@ -553,6 +554,12 @@ advanced_settings() {
echo -e "${NETWORK}${BOLD}${DGN}IPv4: DHCP${CL}"
break
;;
none)
NET="none"
GATE=""
echo -e "${NETWORK}${BOLD}${DGN}IPv4: Disabled${CL}"
break
;;
static)
# Static: call and validate CIDR address
while true; do