View previous topic :: View next topic |
Author |
Message |
PyroBoy101 n00b
Joined: 07 Dec 2004 Posts: 37 Location: Bloomington NY
|
Posted: Mon Aug 01, 2005 5:20 pm Post subject: Gentoo wireless |
|
|
I've been playing with the gentoo wireless scripts found in the newer baselayouts and I must say that they're pretty cool. I'd recommend trying them to anyone who hasn't updated their baselayout in a while.
Theres only one issue that I'm having with it. It has the rather nifty pre and post authentication functions so you can have it do things after it connects to a wireless network. Is it possible to have it do certain things based on what AP I'm connecting too?
I had thought about making it call a seperate bash script that reads the current SSID and then goes from there but I figured this would be a cleaner approach.
Thanks for any suggestions _________________ We need an airstrike! |
|
Back to top |
|
|
UberLord Retired Dev
Joined: 18 Sep 2003 Posts: 6835 Location: Blighty
|
Posted: Mon Aug 01, 2005 6:27 pm Post subject: |
|
|
Code: |
postup() {
if [[ ${ESSID} == "foo" ]]; then
einfo "Doing stuff for ESSID foo"
fi
} |
Like that |
|
Back to top |
|
|
|