diff options
author | Darren 'Tadgy' Austin <darren@afterdark.org.uk> | 2020-11-18 18:46:37 +0000 |
---|---|---|
committer | Robby Workman <rworkman@slackware.com> | 2021-02-27 23:47:58 -0600 |
commit | ad904fdd379ee2fd3861ec2f130bf92917100584 (patch) | |
tree | 86ea55be7081fc77f74beb20ed29c36eefc4177c /netconfig | |
parent | 75fd4729ec786c1d538b4c8a73c69477539950bc (diff) | |
download | slacknetsetup-ad904fdd379ee2fd3861ec2f130bf92917100584.tar.xz |
Use an IPv4 specific bounce file with IPv4 config.
Diffstat (limited to 'netconfig')
-rw-r--r-- | netconfig | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -632,18 +632,18 @@ If a net mask is not specified a default of 24 will be used. The first address entered will become the primary IPv4 address of this host. If you do not want to configure a static IPv4 address, just leave it blank or select 'Skip'." \ - 17 69 "${IPADDRS[*]}" 2> $TMP/SeTlip + 17 69 "${IPADDRS[*]}" 2> $TMP/SeTIPSv4 ERRNO="$?" if [ "$ERRNO" = "1" ]; then IPADDRS=() - rm -f $TMP/SeTIPSv4 $TMP/SeTlip + rm -f $TMP/SeTIPSv4 break elif [ "$ERRNO" = "255" ]; then - rm -f $TMP/SeTIPSv4 $TMP/SeTlip + rm -f $TMP/SeTIPSv4 exit fi - IPADDRS=($(cat $TMP/SeTlip)) - rm -f $TMP/SeTlip + IPADDRS=($(cat $TMP/SeTIPSv4)) + rm -f $TMP/SeTIPSv4 if [ "${IPADDRS[*]}" = "" ]; then rm -f $TMP/SeTIPSv4 break @@ -677,7 +677,7 @@ Valid net masks will be in the range 1-32." 6 65 continue 2 fi done - rm -f $TMP/SeTIPSv4 $TMP/SeTlip + rm -f $TMP/SeTIPSv4 break done @@ -701,7 +701,6 @@ Enter IPv4 gateway address:" 14 68 "$GATEWAY" 2> $TMP/SeTgateway4 GATEWAY="`cat $TMP/SeTgateway4`" rm -f $TMP/SeTgateway4 if [ "$GATEWAY" = "" ]; then - #echo > $TMP/SeTgateway4 break fi syntax_check_v4 "$GATEWAY" 4 WARN @@ -943,6 +942,7 @@ Netmask: 255.255.255.0 Is this correct? Press 'Yes' to continue, or 'No' to reconfigure." 10 70 RETVAL=$? +# FIXME: Need to actually set IPADDRS=127.0.0.1/8 here elif [ "$LOOPBACK" = "yes" -a "$NETWORKMANAGER" = "yes" ]; then dialog --title "NETWORK SETUP COMPLETE" --yesno "Your networking \ system is now configured to use NetworkManager for |