regdos 1848 Zgłoś post Napisano Luty 1, 2013 Znacie jakąś metodę (prostą) żeby w przypadku większej ilości kart sieciowych niż 1 w komputerze przy starcie komputera zawsze miały ten sam numer? Wcześniej załatwiałem to regułami UDEV ale od wersji 197 wyłączyli taką możliwość i doprowadza mnie do szału, że po każdym restarcie numeracja kart jest losowa. Udostępnij ten post Link to postu Udostępnij na innych stronach
Syndrom 95 Zgłoś post Napisano Luty 1, 2013 http://www.cyberciti.biz/faq/howto-linux-rename-ethernet-devices-named-using-udev/ Identyfikacja na podstawie hwaddr Udostępnij ten post Link to postu Udostępnij na innych stronach
kovalsky 22 Zgłoś post Napisano Luty 1, 2013 (edytowany) You basically have three options: You disable the assignment of fixed names, so that the unpredictable kernel names are used again. For this, simply mask udev's rule file for the default policy: ln -s /dev/null /etc/udev/rules.d/80-net-name-slot.rules You create your own manual naming scheme, for example by naming your interfaces "internet0", "dmz0" or "lan0". For that create your own udev rules file and set the NAME property for the devices. Make sure to order it before the default policy file, for example by naming it /etc/udev/rules.d/70-my-net-names.rules You alter the default policy file, for picking a different naming scheme, for example for naming all interface names after their MAC address by default: cp /usr/lib/udev/rules.d/80-net-name-slot.rules /etc/udev/rules.d/80-net-name-slot.rules, then edit the file there and change the lines as necessary. Ta opcja z NAME jest opisana w tym linku podanym przez @Syndrom. Edytowano Luty 1, 2013 przez kovalsky (zobacz historię edycji) Udostępnij ten post Link to postu Udostępnij na innych stronach