Magellan Linux

Annotation of /tags/udev-166-r2/udev-persistent-net-generator.rules.magellan

Parent Directory Parent Directory | Revision Log Revision Log


Revision 823 - (hide annotations) (download)
Sat May 23 22:35:53 2009 UTC (14 years, 11 months ago) by niro
Original Path: trunk/udev/udev-persistent-net-generator.rules.magellan
File size: 4566 byte(s)
-updated rules to match udev-142

1 niro 121 # /etc/udev/rules/75-persistent-net-generator.rules: device naming rules for udev
2 niro 823 # $Header: /root/magellan-cvs/src/udev/udev-persistent-net-generator.rules.magellan,v 1.5 2009-05-23 22:35:53 niro Exp $
3 niro 515 #
4     # There are a number of modifiers that are allowed to be used in some
5     # of the different fields. They provide the following subsitutions:
6     # %n - the "kernel number" of the device.
7     # For example, 'sda3' has a "kernel number" of '3'
8     # %k - the kernel name for the device.
9     # %M - the kernel major number for the device
10     # %m - the kernel minor number for the device
11     # %b - the bus id for the device
12     # %c - the string returned by the PROGRAM. (Note, this doesn't work within
13     # the PROGRAM field for the obvious reason.)
14     # %s{filename} - the content of a sysfs attribute.
15     # %% - the '%' char itself.
16     #
17     # Try not to modify this file, if you wish to change things, create a new rule
18     # file that can be run before this one.
19     #
20 niro 121
21     # these rules generate rules for persistent network device naming
22 niro 515 #
23     # variables used to communicate:
24     # MATCHADDR MAC address used for the match
25     # MATCHID bus_id used for the match
26     # MATCHDRV driver name used for the match
27     # MATCHIFTYPE interface type match
28     # COMMENT comment to add to the generated rule
29     # INTERFACE_NAME requested name supplied by external tool
30     # INTERFACE_NEW new interface name returned by rule writer
31 niro 121
32 niro 294 ACTION!="add", GOTO="persistent_net_generator_end"
33     SUBSYSTEM!="net", GOTO="persistent_net_generator_end"
34 niro 121
35 niro 294 # ignore the interface if a name has already been set
36     NAME=="?*", GOTO="persistent_net_generator_end"
37    
38 niro 515 # device name whitelist
39 niro 717 KERNEL!="eth*|ath*|wlan*[0-9]|msh*|ra*|sta*|ctc*|lcs*|hsi*", GOTO="persistent_net_generator_end"
40 niro 515
41 niro 294 # ignore Xen virtual interfaces
42     SUBSYSTEMS=="xen", GOTO="persistent_net_generator_end"
43    
44 niro 515 # read MAC address
45     ENV{MATCHADDR}="$attr{address}"
46    
47     # match interface type
48     ENV{MATCHIFTYPE}="$attr{type}"
49    
50 niro 823 # These vendors are known to violate the local MAC address assignment scheme
51     # Interlan, DEC (UNIBUS or QBUS), Apollo, Cisco, Racal-Datacom
52     ENV{MATCHADDR}=="02:07:01:*", GOTO="globally_administered_whitelist"
53     # 3Com
54     ENV{MATCHADDR}=="02:60:60:*", GOTO="globally_administered_whitelist"
55     # 3Com IBM PC; Imagen; Valid; Cisco; Apple
56     ENV{MATCHADDR}=="02:60:8c:*", GOTO="globally_administered_whitelist"
57     # Intel
58     ENV{MATCHADDR}=="02:a0:c9:*", GOTO="globally_administered_whitelist"
59     # Olivetti
60     ENV{MATCHADDR}=="02:aa:3c:*", GOTO="globally_administered_whitelist"
61     # CMC Masscomp; Silicon Graphics; Prime EXL
62     ENV{MATCHADDR}=="02:cf:1f:*", GOTO="globally_administered_whitelist"
63     # Prominet Corporation Gigabit Ethernet Switch
64     ENV{MATCHADDR}=="02:e0:3b:*", GOTO="globally_administered_whitelist"
65     # BTI (Bus-Tech, Inc.) IBM Mainframes
66     ENV{MATCHADDR}=="02:e6:d3:*", GOTO="globally_administered_whitelist"
67     # Realtek
68     ENV{MATCHADDR}=="52:54:00:*", GOTO="globally_administered_whitelist"
69     # Novell 2000
70     ENV{MATCHADDR}=="52:54:4c:*", GOTO="globally_administered_whitelist"
71     # Realtec
72     ENV{MATCHADDR}=="52:54:ab:*", GOTO="globally_administered_whitelist"
73     # Kingston Technologies
74     ENV{MATCHADDR}=="e2:0c:0f:*", GOTO="globally_administered_whitelist"
75    
76 niro 515 # do not use "locally administered" MAC address
77     ENV{MATCHADDR}=="?[2367abef]:*", ENV{MATCHADDR}=""
78    
79     # do not use empty address
80     ENV{MATCHADDR}=="00:00:00:00:00:00", ENV{MATCHADDR}=""
81    
82 niro 823 LABEL="globally_administered_whitelist"
83    
84 niro 515 # build comment line for generated rule:
85 niro 294 SUBSYSTEMS=="pci", ENV{COMMENT}="PCI device $attr{vendor}:$attr{device} ($driver)"
86 niro 823 SUBSYSTEMS=="usb", ATTRS{idVendor}=="?*", ENV{COMMENT}="USB device 0x$attr{idVendor}:0x$attr{idProduct} ($driver)"
87 niro 294 SUBSYSTEMS=="pcmcia", ENV{COMMENT}="PCMCIA device $attr{card_id}:$attr{manf_id} ($driver)"
88 niro 121 SUBSYSTEMS=="ieee1394", ENV{COMMENT}="Firewire device $attr{host_id})"
89    
90 niro 717 # ibmveth likes to use "locally administered" MAC addresses
91     DRIVERS=="ibmveth", ENV{MATCHADDR}="$attr{address}", ENV{COMMENT}="ibmveth ($id)"
92    
93 niro 515 # S/390 uses id matches only, do not use MAC address match
94     SUBSYSTEMS=="ccwgroup", ENV{COMMENT}="S/390 $driver device at $id", ENV{MATCHID}="$id", ENV{MATCHDRV}="$driver", ENV{MATCHADDR}=""
95 niro 294
96 niro 515 # see if we got enough data to create a rule
97     ENV{MATCHADDR}=="", ENV{MATCHID}=="", ENV{INTERFACE_NAME}=="", GOTO="persistent_net_generator_end"
98 niro 294
99 niro 515 # default comment
100 niro 717 ENV{COMMENT}=="", ENV{COMMENT}="net device ($attr{driver})"
101 niro 515
102     # write rule
103     DRIVERS=="?*", IMPORT{program}="write_net_rules"
104    
105     # rename interface if needed
106 niro 121 ENV{INTERFACE_NEW}=="?*", NAME="$env{INTERFACE_NEW}"
107    
108     LABEL="persistent_net_generator_end"