#!/bin/sh # -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*- # ex: ts=8 sw=4 sts=4 et filetype=sh # if there are no ifname parameters, just use NAME=KERNEL if ! getarg ifname= >/dev/null ; then return fi command -v parse_ifname_opts >/dev/null || . /lib/net-lib.sh { for p in $(getargs ifname=); do parse_ifname_opts $p if [ -f /tmp/ifname-$ifname_mac ]; then read oldif < /tmp/ifname-$ifname_mac fi if [ -f /tmp/ifname-$ifname_if ]; then read oldmac < /tmp/ifname-$ifname_if fi if [ -n "$oldif" -a -n "$oldmac" -a "$oldif" = "$ifname_if" -a "$oldmac" = "$ifname_mac" ]; then # skip same ifname= declaration continue fi [ -n "$oldif" ] && warn "Multiple interface names specified for MAC $ifname_mac: $oldif" [ -n "$oldmac" ] && warn "Multiple MAC specified for $ifname_if: $oldmac" printf 'SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="%s", ATTR{type}=="1", NAME="%s"\n' "$ifname_mac" "$ifname_if" echo $ifname_if > /tmp/ifname-$ifname_mac echo $ifname_mac > /tmp/ifname-$ifname_if done } >> /etc/udev/rules.d/80-ifname.rules
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
dhclient-script.sh | File | 8.32 KB | 0755 |
|
dhclient.conf | File | 262 B | 0644 |
|
dhcp-root.sh | File | 926 B | 0755 |
|
ifname-genrules.sh | File | 1.2 KB | 0755 |
|
ifup.sh | File | 13.6 KB | 0755 |
|
kill-dhclient.sh | File | 362 B | 0755 |
|
module-setup.sh | File | 4.72 KB | 0755 |
|
net-genrules.sh | File | 3.67 KB | 0755 |
|
net-lib.sh | File | 24.13 KB | 0755 |
|
netroot.sh | File | 2.72 KB | 0755 |
|
parse-bond.sh | File | 1.96 KB | 0755 |
|
parse-bridge.sh | File | 1.1 KB | 0755 |
|
parse-ibft.sh | File | 393 B | 0755 |
|
parse-ifname.sh | File | 662 B | 0755 |
|
parse-ip-opts.sh | File | 4.8 KB | 0755 |
|
parse-team.sh | File | 983 B | 0755 |
|
parse-vlan.sh | File | 532 B | 0755 |
|