|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# pxelinux provides macaddr '-' separated, but we need ':'
|
|
|
|
fix_bootif() {
|
|
|
|
local macaddr=${1}
|
|
|
|
local IFS='-'
|
|
|
|
macaddr=$(for i in ${macaddr} ; do echo -n $i:; done)
|
|
|
|
macaddr=${macaddr%:}
|
|
|
|
echo $macaddr
|
|
|
|
}
|
|
|
|
|
|
|
|
# Don't continue if we don't need network
|
|
|
|
[ -z "$netroot" ] && return;
|
|
|
|
|
|
|
|
# Write udev rules
|
|
|
|
{
|
|
|
|
# bridge: attempt only the defined interface
|
|
|
|
if [ -e /tmp/bridge.info ]; then
|
|
|
|
. /tmp/bridge.info
|
|
|
|
IFACES=$ethname
|
|
|
|
fi
|
|
|
|
|
multinic support: Add bootdev cmdline argument
This introduces a new cmdline argument bootdev, to support the case
where multiple nics need to be up before the netroot handler is called.
Cases involved might be bonding, iscsi multipathing, bonding, ...
This argument is required to decide which interface is the primary to
use for dhcp root-path, default gw, etc.
When multiple ip= items are present on the cmdline, the ip= parser
now enforces the presence of <dev> further demands that the new argument
bootdev contains the name of the primary interface. Configurtion if of
course still delegated to netroot but in is enhance to ensure that netroot
"waits" for all required interfaces to be up.
Example: root=dhcp ip=eth0:dhcp ip=client-ip:::netmask::eth1:off bootdev=eth0
First, the ip= cmdline parser ensures that all ip items contain a <dev> then
checks the ip items and checks as well that an ip= item for the given bootdev
was found.
When the first netroot starts, probably for eth1, it checks wheter interface
configuration for all interfaces is available. If not it exits. The second
start of netroot (eth0, which was a bit delayed because of dhcp) sees that
all interfaces are present, configures them and continues.
16 years ago
|
|
|
# BOOTIF says everything, use only that one
|
|
|
|
BOOTIF=$(getarg 'BOOTIF=')
|
|
|
|
if [ -n "$BOOTIF" ] ; then
|
|
|
|
BOOTIF=$(fix_bootif "$BOOTIF")
|
|
|
|
printf 'ACTION=="add", SUBSYSTEM=="net", ATTR{address}=="%s", RUN+="/sbin/ifup $env{INTERFACE}"\n' "$BOOTIF"
|
multinic support: Add bootdev cmdline argument
This introduces a new cmdline argument bootdev, to support the case
where multiple nics need to be up before the netroot handler is called.
Cases involved might be bonding, iscsi multipathing, bonding, ...
This argument is required to decide which interface is the primary to
use for dhcp root-path, default gw, etc.
When multiple ip= items are present on the cmdline, the ip= parser
now enforces the presence of <dev> further demands that the new argument
bootdev contains the name of the primary interface. Configurtion if of
course still delegated to netroot but in is enhance to ensure that netroot
"waits" for all required interfaces to be up.
Example: root=dhcp ip=eth0:dhcp ip=client-ip:::netmask::eth1:off bootdev=eth0
First, the ip= cmdline parser ensures that all ip items contain a <dev> then
checks the ip items and checks as well that an ip= item for the given bootdev
was found.
When the first netroot starts, probably for eth1, it checks wheter interface
configuration for all interfaces is available. If not it exits. The second
start of netroot (eth0, which was a bit delayed because of dhcp) sees that
all interfaces are present, configures them and continues.
16 years ago
|
|
|
|
|
|
|
# If we have to handle multiple interfaces, handle only them.
|
|
|
|
elif [ -n "$IFACES" ] ; then
|
|
|
|
for iface in $IFACES ; do
|
|
|
|
printf 'ACTION=="add", SUBSYSTEM=="net", KERNEL=="%s", RUN+="/sbin/ifup $env{INTERFACE}"\n' "$iface"
|
multinic support: Add bootdev cmdline argument
This introduces a new cmdline argument bootdev, to support the case
where multiple nics need to be up before the netroot handler is called.
Cases involved might be bonding, iscsi multipathing, bonding, ...
This argument is required to decide which interface is the primary to
use for dhcp root-path, default gw, etc.
When multiple ip= items are present on the cmdline, the ip= parser
now enforces the presence of <dev> further demands that the new argument
bootdev contains the name of the primary interface. Configurtion if of
course still delegated to netroot but in is enhance to ensure that netroot
"waits" for all required interfaces to be up.
Example: root=dhcp ip=eth0:dhcp ip=client-ip:::netmask::eth1:off bootdev=eth0
First, the ip= cmdline parser ensures that all ip items contain a <dev> then
checks the ip items and checks as well that an ip= item for the given bootdev
was found.
When the first netroot starts, probably for eth1, it checks wheter interface
configuration for all interfaces is available. If not it exits. The second
start of netroot (eth0, which was a bit delayed because of dhcp) sees that
all interfaces are present, configures them and continues.
16 years ago
|
|
|
done
|
|
|
|
|
|
|
|
# Default: We don't know the interface to use, handle all
|
|
|
|
else
|
|
|
|
printf 'ACTION=="add", SUBSYSTEM=="net", RUN+="/sbin/ifup $env{INTERFACE}"\n'
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Udev event 'online' only gets fired from ifup/dhclient-script.
|
|
|
|
# No special rules required
|
|
|
|
printf 'ACTION=="online", SUBSYSTEM=="net", RUN+="/sbin/netroot $env{INTERFACE}"\n'
|
|
|
|
} > /etc/udev/rules.d/60-net.rules
|