kfirlavi / Amalia

Testbed for network testing
1 stars 0 forks source link

when ltsp load ath0 it will change everytime the ath_pci module is loaded #52

Closed kfirlavi closed 15 years ago

kfirlavi commented 15 years ago

{{{ modprobe ath_pci }}} will load it to be ath0[[BR]] Then when deleting all the wlan and ath modules and again {{{ modprobe ath_pci }}} we'll have ath1. This continue to ath2... [[BR]] It seems that it remembers the last ath used, even if unloading all the modules. [[BR]] It happens in the environment of the LTSP, and it doesn't happen in regular environment.

kfirlavi commented 15 years ago

Author: kfir Ok solved, [[BR]] Look at the tturrisi post here: http://ubuntuforums.org/archive/index.php/t-633649.html

[[BR]] We need to do: edit {{{/etc/udev/persistent-net-generator.rules}}}

change this: {{{

ignore "secondary" raw interfaces of the madwifi driver

KERNEL=="ath*", ATTRS{type}=="802", GOTO="persistent_net_generator_end" }}} to this: {{{

ignore "secondary" raw interfaces of the madwifi driver

KERNEL=="ath*", GOTO="persistent_net_generator_end" }}}