From f42cce0d57212059585ae04d2090cc24debc264c Mon Sep 17 00:00:00 2001 From: Bruce Dubbs Date: Sun, 8 Feb 2015 06:17:24 +0000 Subject: [PATCH] Update ifup and ipv4-static to better support multiple IP addresses on an interface. git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10838 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- bootscripts/ChangeLog | 4 ++++ bootscripts/lfs/lib/services/ipv4-static | 4 ++++ bootscripts/lfs/sbin/ifup | 1 + bootscripts/lfs/sbin/ifup.8 | 10 ++++++++-- chapter01/changelog.xml | 5 +++++ packages.ent | 2 +- 6 files changed, 23 insertions(+), 3 deletions(-) diff --git a/bootscripts/ChangeLog b/bootscripts/ChangeLog index 39465e6c9..df4087927 100644 --- a/bootscripts/ChangeLog +++ b/bootscripts/ChangeLog @@ -1,3 +1,7 @@ +2015-02-08 Bruce Dubbs + * Modify ipv4-static to support ethernet labels + * Output a newline if an interface is skipped during boot + 2014-12-24 Bruce Dubbs * Clarify rationale for sysklog run levels diff --git a/bootscripts/lfs/lib/services/ipv4-static b/bootscripts/lfs/lib/services/ipv4-static index 2d9dad39c..33fe4c21b 100755 --- a/bootscripts/lfs/lib/services/ipv4-static +++ b/bootscripts/lfs/lib/services/ipv4-static @@ -36,6 +36,10 @@ elif [ -n "${PEER}" ]; then args="${args} ${IP} peer ${PEER}" fi +if [ -n "${LABEL}" ]; then + args="${args} label ${LABEL}" +fi + if [ -n "${BROADCAST}" ]; then args="${args} broadcast ${BROADCAST}" fi diff --git a/bootscripts/lfs/sbin/ifup b/bootscripts/lfs/sbin/ifup index bb25176ad..317223b0b 100755 --- a/bootscripts/lfs/sbin/ifup +++ b/bootscripts/lfs/sbin/ifup @@ -90,6 +90,7 @@ fi # is not set to yes if [ "${IN_BOOT}" = "1" -a "${ONBOOT}" != "yes" ]; then log_info_msg2 "skipped" + echo exit 0 fi diff --git a/bootscripts/lfs/sbin/ifup.8 b/bootscripts/lfs/sbin/ifup.8 index 7c3a007d6..e0ca9db37 100644 --- a/bootscripts/lfs/sbin/ifup.8 +++ b/bootscripts/lfs/sbin/ifup.8 @@ -46,7 +46,8 @@ EXAMPLES /etc/sysconfig/ifconfig.eth0:2 ONBOOT=no - IFACE=eth0:2 + IFACE=eth0 + LABEL=eth0:2 SERVICE=dhcpcd DHCP_START="--waitip" @@ -122,6 +123,11 @@ NOTES number of the interface. The default, if not specified, is 24. + LABEL - The label to be assigned to the interface. + This is normally specified for assigning + additional IP addresses to a network + device. Example: eth0:2 (optional) + BROADCAST - The brodcast address for this interface, e.g 192.168.1.255. If not specified, the broadcast address will be calculated @@ -176,4 +182,4 @@ AUTHORS SEE ALSO ip(8). -IFUP/IFDOWN 8 April 2012 ifup(8) +IFUP/IFDOWN 8 February 2015 ifup(8) diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index aed101d67..44dc26737 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -38,6 +38,11 @@ 2015-02-08 + + [bdubbs] - Update ipv4-static, ifup, and ifup.8 + in bootscripts to better support multiple IP addresses + on an interface. + [Chris] - Updated FHS URL to new location. diff --git a/packages.ent b/packages.ent index caacfe37e..6986478a1 100644 --- a/packages.ent +++ b/packages.ent @@ -352,7 +352,7 @@ - +