2 kinds of access at the same place?

I have a large library integrally covered with AEBS.
Actually this access is open to the public, hence the
network access is tightly filtered through a firewall
router.
Nonetheless, more and more of my users (researchers and ingeneers) are getting AirPort addict.
I would like to grant them an access larger than the
actual one for public (visitors, foreigners).
Is it possible to configure these AEBS to use a RADIUS
server so as to give easily 2 different access profiles to
known (identified through MAC or 802.1X) and unknown users?
I do this for our PPP access through a RADIUS server.
Known users have a given ACL giving them access to our
internal servers. Foreigners do have a more
restrictive one giving them access to our public servers
only.

Thank you.
I do have a Radius server running.
The above article clearly says:
"you can maintain user profiles in a central database that all base stations can share, instead of having to store all the user information on individual base stations."
I haven't been able to locate any other reference to
these "user profiles" in the knowledge base and in
the documentation "Designing AirPort Networks"
(version 2005).
Where are documented these "user profiles"?

Similar Messages

  • How to keep desktop folders in the same place?

    I use an iMac (with Mac OS X V.10.6.6) and I have some folders and files on my desktop. However, lately after I shutdown my iMac and start it again, all the folders and files on my desktop move and scatter. I want to keep them in the same order that I originally arranged. How do I keep them in the same place? Is it normal for them to move around after shutdown?
    It´s a new iMac (with about 6 monts old) and it only appens sometimes...
    PS. I don't want to sort them out by name or date modified or anything like that. I just want to keep them in the same order that I put them.

    As this oddity strikes also on my machine, I wrote this script.
    --[SCRIPT récupérerrestaurer_positionicônes]
    Enregistrer le script en tant que Progiciel (Application sous 10.6.x) : récupérerrestaurer_positionicônes.app
    Installer dans le Dock.
    Sélectionner les icônes du bureau dont la position doit pouvoir être rétablie.
    Lancer le script
    Cliquer le bouton "Enregistrer leur position"
    Un fichier texte contenant les informations relatives à ces icônes sera créé dans le dossier défini à partir de la property 'dest'
    Par défaut c'est dans "<startupVolume>:Users:<userAccount>:Library:Application Support:".
    Pour remettre les icônes en place, lancer l'application et cliquer le bouton "Rétablir leur position"
    --=====
    Save the script as an Application Bundle (Application under 10.6.x) : récupérerrestaurer_positionicônes.app
    Install it in the Dock for easy access.
    Select Desktop's icons whose location must be reset when needed.
    Run the script.
    Click the button "Get there position".
    A text file containing the datas linked to these icons will be created in the folder defined according to the property 'dest'.
    Default location is : "<startupVolume>:Users:<userAccount>:Library:Application Support:".
    Run the script and click the button "Reset there position" to move the icons back to their original location.
    --=====
    KOENIG (VALLAURIS, France)
    2010/03/16
    --=====--=====
    property toutlebureau : true
    property dest : 3
    1 = liste dans : "<startupVolume>:Users:<userAccount>:Library:Preferences:"
    2 = liste dans : "<startupVolume>:Users:<userAccount>:Applications:Utilities:"
    3 = liste dans : "<startupVolume>:Users:<userAccount>:Library:Application Support:"
    property nomDuRapport : "position des icones.txt"
    property rapport : {}
    --=====
    on run
    run script mon_script
    end run
    script mon_script
    my nettoie()
    if dest = 1 then
    set p2d to path to preferences as text (*
    "<startupVolume>:Users:<userAccount>:Library:Preferences:" *)
    else if dest = 2 then
    set p2d to path to utilities folder from user domain as text (*
    "<startupVolume>:Users:<userAccount>:Applications:Utilities:" *)
    else
    set p2d to (path to library folder from user domain as text) & "Application Support:" (*
    "<startupVolume>:Users:<userAccount>:Library:Application Support:" *)
    end if
    set p2r to p2d & nomDuRapport
    if my parleAnglais() then
    set prompt to "What to do with icons ?"
    set {btn1, btn2, btn3} to {"Cancel", "Get their position", "Reset their position"}
    else
    set prompt to "Que faire avec les icônes ?"
    set {btn1, btn2, btn3} to {"Abandonner", "Enregistrer leur position", "Rétablir leur position"}
    end if
    set maybe to button returned of (display dialog prompt buttons {btn1, btn2, btn3} default button 3)
    if maybe is btn1 then (*
    Cancel / Annuler *)
    error number -128
    else if maybe is btn2 then (*
    Get their position / Enregistrer leur position *)
    tell application "Finder"
    set itms to name of every item of the desktop
    repeat with itm in itms
    try
    set {x, y} to get desktop position of item itm
    copy "" & itm & return & x & ", " & y to end of my rapport
    end try
    end repeat
    end tell -- Finder
    set rapport to my recolle(my rapport, return)
    crée un fichier texte dans le dossier "Bibliothèque:Application Support" du compte utilisateur *)
    tell application "System Events"
    if exists file p2r then delete file p2r
    make new file at end of folder p2d with properties {name:nomDuRapport}
    end tell -- System Events
    write rapport to (p2r as alias)
    else (*
    Reset there position / Rétablir leur position *)
    set my rapport to paragraphs of (read file p2r)
    repeat with i from 1 to ((count of rapport) - 1) by 2
    try
    set itm to item i of rapport
    tell application "Finder" to set desktop position of item itm to my decoupe(item (i + 1) of rapport, ", ")
    end try
    end repeat
    tell application "Finder" to update folder p2d
    end if
    my nettoie()
    end script
    --=====
    on nettoie()
    set my rapport to {}
    end nettoie
    --=====
    on decoupe(t, d)
    local l
    set AppleScript's text item delimiters to d
    set l to text items of t
    set AppleScript's text item delimiters to ""
    return l
    end decoupe
    --=====
    on recolle(l, d)
    local t
    set AppleScript's text item delimiters to d
    set t to l as text
    set AppleScript's text item delimiters to ""
    return t
    end recolle
    --=====
    on parleAnglais()
    local z
    try
    tell application "Finder" to set z to localized string "AL1"
    on error
    set z to "Cancel"
    end try
    return (z is not "Annuler")
    end parleAnglais
    --=====
    --[/SCRIPT]
    I run it by hand to get the icons positions.
    I may also run it to restore these positions but in real life, I use a subset of the same script which is automatically ran when I boot the machine.
    This subset retain only the code restoring the icons positions.
    --[SCRIPT récupérerrestaurer_positionicônes]
    Enregistrer le script en tant que Progiciel (Application sous 10.6.x) : récupérerrestaurer_positionicônes.app
    Installer dans le Dock.
    Sélectionner les icônes du bureau dont la position doit pouvoir être rétablie.
    Lancer le script
    Cliquer le bouton "Enregistrer leur position"
    Un fichier texte contenant les informations relatives à ces icônes sera créé dans le dossier défini à partir de la property 'dest'
    Par défaut c'est dans "<startupVolume>:Users:<userAccount>:Library:Application Support:".
    Pour remettre les icônes en place, lancer l'application et cliquer le bouton "Rétablir leur position"
    --=====
    Save the script as an Application Bundle (Application under 10.6.x) : récupérerrestaurer_positionicônes.app
    Install it in the Dock for easy access.
    Select Desktop's icons whose location must be reset when needed.
    Run the script.
    Click the button "Get there position".
    A text file containing the datas linked to these icons will be created in the folder defined according to the property 'dest'.
    Default location is : "<startupVolume>:Users:<userAccount>:Library:Application Support:".
    Run the script and click the button "Reset there position" to move the icons back to their original location.
    --=====
    KOENIG (VALLAURIS, France)
    2010/03/16
    --=====--=====
    property toutlebureau : true
    property dest : 3
    1 = liste dans : "<startupVolume>:Users:<userAccount>:Library:Preferences:"
    2 = liste dans : "<startupVolume>:Users:<userAccount>:Applications:Utilities:"
    3 = liste dans : "<startupVolume>:Users:<userAccount>:Library:Application Support:"
    property nomDuRapport : "position des icones.txt"
    property rapport : {}
    --=====
    on run
    run script mon_script
    end run
    script mon_script
    my nettoie()
    if dest = 1 then
    set p2d to path to preferences as text (*
    "<startupVolume>:Users:<userAccount>:Library:Preferences:" *)
    else if dest = 2 then
    set p2d to path to utilities folder from user domain as text (*
    "<startupVolume>:Users:<userAccount>:Applications:Utilities:" *)
    else
    set p2d to (path to library folder from user domain as text) & "Application Support:" (*
    "<startupVolume>:Users:<userAccount>:Library:Application Support:" *)
    end if
    set p2r to p2d & nomDuRapport
    if my parleAnglais() then
    set prompt to "What to do with icons ?"
    set {btn1, btn2, btn3} to {"Cancel", "Get their position", "Reset their position"}
    else
    set prompt to "Que faire avec les icônes ?"
    set {btn1, btn2, btn3} to {"Abandonner", "Enregistrer leur position", "Rétablir leur position"}
    end if
    set maybe to button returned of (display dialog prompt buttons {btn1, btn2, btn3} default button 3)
    if maybe is btn1 then (*
    Cancel / Annuler *)
    error number -128
    else if maybe is btn2 then (*
    Get their position / Enregistrer leur position *)
    tell application "Finder"
    set itms to name of every item of the desktop
    repeat with itm in itms
    try
    set {x, y} to get desktop position of item itm
    copy "" & itm & return & x & ", " & y to end of my rapport
    end try
    end repeat
    end tell -- Finder
    set rapport to my recolle(my rapport, return)
    crée un fichier texte dans le dossier "Bibliothèque:Application Support" du compte utilisateur *)
    tell application "System Events"
    if exists file p2r then delete file p2r
    make new file at end of folder p2d with properties {name:nomDuRapport}
    end tell -- System Events
    write rapport to (p2r as alias)
    else (*
    Reset there position / Rétablir leur position *)
    set my rapport to paragraphs of (read file p2r)
    repeat with i from 1 to ((count of rapport) - 1) by 2
    try
    set itm to item i of rapport
    tell application "Finder" to set desktop position of item itm to my decoupe(item (i + 1) of rapport, ", ")
    end try
    end repeat
    tell application "Finder" to update folder p2d
    end if
    my nettoie()
    end script
    --=====
    on nettoie()
    set my rapport to {}
    end nettoie
    --=====
    on decoupe(t, d)
    local l
    set AppleScript's text item delimiters to d
    set l to text items of t
    set AppleScript's text item delimiters to ""
    return l
    end decoupe
    --=====
    on recolle(l, d)
    local t
    set AppleScript's text item delimiters to d
    set t to l as text
    set AppleScript's text item delimiters to ""
    return t
    end recolle
    --=====
    on parleAnglais()
    local z
    try
    tell application "Finder" to set z to localized string "AL1"
    on error
    set z to "Cancel"
    end try
    return (z is not "Annuler")
    end parleAnglais
    --=====
    --[/SCRIPT]
    As it was for my own use, I didn't change the explanations at the beginning.
    Yvan KOENIG (VALLAURIS, France) jeudi 3 février 2011 12:37:56

  • HT201335 I started playing games on my iPhone 5 and bought the iPad air wand to link phone with iPad so all the information from the game is on my iPad so I don't have to start the game over  I should be able to start from the same place in the game on ei

    I need to link all of my games on my iPhone 5 to my iPad air so I don't have to start all my games over. In the Game Center all the information from my games are there but it's like I have to start the game over on my iPad. I should be able to resume the game from the same place on either device with the same trophies $ coins help help help PLEASE I have a lot of money invested in one game and don't want to start completely over

    Transferring from old to new
    http://support.apple.com/kb/HT2109

  • String objects with the same string pointing to the same place but?

    Hi,
    Here is a simple sample
    String str1 = "a";
    String str2 = "a";I understand that in Java str1 and str2 pointing to the same place in memory and Java compiler wouldn't save the string "a" in two different places in memory. Am I right?
    If so, if the value of str1 changes to something else as following:
    String str1 = "a";
    String str2 = "a";
    str1 = "b";why str2 which has been pointing to the same place as str1 before is still containing ?a? and not ?b????
    Thanks!

    Maria1990 wrote:
    Hi,
    Here is a simple sample
    String str1 = "a";
    String str2 = "a";I understand that in Java str1 and str2 pointing to the same place in memory and Java compiler wouldn't save the string "a" in two different places in memory. Am I right?Correct.
    Maria1990 wrote:
    If so, if the value of str1 changes to something else as following:
    String str1 = "a";
    String str2 = "a";
    str1 = "b";why str2 which has been pointing to the same place as str1 before is still containing ?a? and not ?b????Because str2 is pointing to the same "a", but it is not pointing to str1.
    This is what happens:
    String str1 = "a";
    /*                 +---+
             str1 ---->| a |
                       +---+
    String str2 = "a";
    /*                 +---+
             str1 --+->| a |
                    |  +---+
                    |
             str2 --+
    NOT:
                       +---+
         +-> str1 ---->| a |
         |             +---+
         |
         +- str2
    str1 = "b";
                       +---+
                 +---->| b |
                 |     +---+
                 |
                 |     +---+
            str1-+  +->| a |
                    |  +---+
                    |
             str2 --+
    */

  • Before the recent updates to Firefox, clicking on the back button always brought me back to the same place on the page where I had been, but now it brings me to the top of the page. How do I restore the previous feature?

    Before the recent updates to Firefox, when I would go to another page in the same window and then clickon the back button, Firefox used to bring me back to the same place on the page where I had been, but now it brings me to the top of the page, meaning that I have to laboriously scroll down to the old place. How do I restore the previous feature?

    That change was made in Firefox 4, 6 months ago.
    Click-hold the unified Back / Forward button <br />
    or <br />
    right-click it to get the Back / Forward history for that tab.
    Or install this extension to get the old "drop-marker" button restored. <br />
    https://addons.mozilla.org/en-US/firefox/addon/backforedrop/

  • When I try to restore my iPod, it stops restoring at the same place and doesn't work. How do I fix this and make it completely restore itself?

    When I try to restore my iPod, it stops restoring at the same place and doesn't work. How do I fix this and make it completely restore itself?

    Did you make sure that your security software allows iTunes to contact Apple during the restore process? http://support.apple.com/kb/TS3125

  • Image map (Open a link in the same place not a new Window)

    Image map (Open a link in the same place not a new Window)
    I'm using image map From KM a made a Image and I put the link like this "documents/images/image.jpg" okay, its works, but when I click on the link open other page, How to open on the same page ???????

    Hi Marcus,
    Try out this link. It may be helpful to you.
    Opening of IView in New Window
    Regards
    gEorgE

  • Open application windows in the same place consistently

    Hello,
    I am hoping to find out if anyone knows of a good way to convince application windows to open in the same location on the screen every time, consistently. This is, clearly, a minor problem, but perhaps you know how to do it. For example, I tend to use Safari with the window open over the entire screen, but every time I open a new window it locates itself with a couple mm between left side of the screen and left side of the Safari window, and the right side of the Safari window (the scroll bar) is partially off the screen (because the window is shifted). So every time I open a new Safari window I have to click the top bar and drag it a little bit to place it where I want it. Is there a way to "teach" Safari where I want it to open so that it will open in the same place every time? Maybe the problem is that I have a hidden dock on the left side of the screen and Safari does not want to come too close to the dock?
    (I also have the same issue with Mail, because though I use that program with the application window only open over part of the total screen area it always opens in the same place on the screen which is always slightly off from where I want it to be)
    Any suggestions? Thanks!!
    PS I apologize if this has been posted before; I tried several searches but the only results that came up were not at all related to my actual question.

    I don’t think there is a way to teach Safari not to shift the window when a new one is created. And I don’t think it is related to the position of the Dock.
    I leave a few cm of space on the right side of the Safari window and have the screen filled from top to bottom with the Safari window. Then when I make a new window, it opens shifted a little to the right of the previous window, but it doesn’t put the scroll bar off the screen and because the screen is filled from top to bottom, it doesn’t shift down, just right next to the previous window.
    You might try using tabs. When you click a link that you want in a new window, hold the Command key down. It will open in a new tab in the same window and you can change between the window tabs by clicking on it on the top of the window. The X on the tab will close the tab.

  • HT4914 My wife and I both have iPhones and iPads. Can we both have access to the same iTunes Match library or do we have to have separate subscriptions?  Our devices are synced to the same computer and we currently download titles from the same library.

    My wife and I both have iPhones and iPads. Can we both have access to the same iTunes Match library or do we have to have separate subscriptions?  Our devices are synced to the same computer and we currently download titles from the same library.  We both use separate apple id's on our devices.

    You need to reconfigure your phone for use with your Apple ID. I suggest you restore yours as new then reconfigure it with your information and Apple ID. Be sure to disable Find My Phone, if it's enabled, before proceeding.
    Locked Out, Forgot Lock or Restrictions Passcode, or Need to Restore Your Device: Several Alternative Solutions
    A
    1. iOS- Forgotten passcode or device disabled after entering wrong passcode
    2. iPhone, iPad, iPod touch: Wrong passcode results in red disabled screen
    3. Restoring iPod touch after forgotten passcode
    4. What to Do If You've Forgotten Your iPhone's Passcode
    5. iOS- Understanding passcodes
    6. iTunes 10 for Mac- Update and restore software on iPod, iPhone, or iPad
    7. iOS - Unable to update or restore
    Forgotten Restrictions Passcode Help
                iPad,iPod,iPod Touch Recovery Mode
    You will need to restore your device as New to remove a Restrictions passcode. Go through the normal process to restore your device, but when you see the options to restore as New or from a backup, be sure to choose New.
    You can restore from a backup if you have one from BEFORE you set the restrictions passcode.
    Also, see iTunes- Restoring iOS software.

  • How do I get all the accounts on my mac to have access to the same itunes library?

    How do I get all the accounts on my mac to have access to the same itunes library?

    Move the entire iTunes folder to: Macintosh HD > Users > Shared.
    Hold the option key when launching iTunes (for each user).
    Click Choose Library.
    Navigate to Macintosh HD > Users > Shared > iTunes.
    Open the iTunes Library.itl file.

  • Profile manager shows only one profile but I have two profiles located in the same place and I want to change

    I have had a Firefox crash and uninstalled then reinstalled three times. For some reason Mozbackup won't back up my files. In checking profiles, I have two profiles with different names and both marked default, located in the same place. I would like to use the old profile but the profile manager only shows one profile.
    How can I get to use the old profile?
    Thanks, Joe

    Antaeus00 wrote:
    I tried sending a request for help,
    But did you succeeed in sending a request for help?
    Did you receive a response? How long has it been since you sent a request?
    but I need someone with more authority to talk to.
    There is no one with more authority than iTunes store support. We herem are only users.

  • In the slide show view how can you pin the "next" Arrow to the ultimate edge so it is in the same place as the full screen image, it will pin to the left edge but not the right.

    In the slide show view how can you pin the "next" Arrow to the ultimate edge so it is in the same place as the full screen image, it will pin to the left edge but not the right.

    Hello,
    Please make sure that the next button is pinned to the right side as there in the attached image.
    If it is already pinned, you can try removing any embedded HTML code and checking it.
    Regards,
    Neha

  • When i play back an mp3 dj mix i,ve burn,t to cd in my car when i turn the engine of and then restart the car the cd starts back from the beginning how do i solve this problem so that when i turn the engine on end off the cd plays from the same place

    when i play back an mp3 dj mix i,ve burn,t to cd in my car when i turn the engine of and then restart the car the cd starts back from the beginning how do i solve this problem so that when i turn the engine on end off the cd plays from the same place it did before i turned the engine off

    It could be that the CD player will only playback "Redbook" CD's from the previous position.
    And starts mp3 type CD's from the beginnig.
    However.. it's not Logic related.
    pancenter-

  • I sometimes have blue and red square-shaped dots appear on my MBP; especially but not exclusively when I'm watching videos.  The dots don't stay in the same place; and also they are not there all the time.

    I sometimes have blue and red square-shaped dots appear on my MBP; especially but not exclusively when I'm watching videos.  The dots don't stay in the same place; and also they are not there all the time.  Also, sometimes my animations (applications opening, windows being dragged, etc.) will glitch as well.  Again, this is not a continual thing; it just happens variously throughout my day.  MBP Model A1212, OS X 10.6.8, 2.33 Ghz 3GB RAM.

    Did the original songs that do not appear on the car player play in the Music app on the iPod? Sometimes glitches happen and they do not. Also, If y ohave a 5G iPod/iOS 7, purchase songs  will show with an cloud icon by them if they are not downloaded if Shall All is turned on in Settings>iTunes and App Store

  • My Itunes library is skipping some songs which is also affecting my ipod, it is always the same songs that skip at the same place, it is not all songs.

    Since moving my Itunes to a Vista, it found songs that I downloaded a long time ago and added them to my library but now some songs (not just the ones that were lost in apple land) are skipping after playing a few seconds then it moves onto another song.  The same songs are skipping at the same place when played on a computer and also my ipod.

    i noticed this as a bug in iTunes. make sure the correct file is selected in the preferences menus. It does not have to be the default location directiory as Vazandrew stated. your iTunes music library can be anywhere you want it. i have mine on an external cuz i'm a dj and have over 80,000 songs.
    once you select/verify the location of your music library, simply drag the folder into the left panel in iTunes from a finder window. iTunes does not automatically add the items like it use to for some reason.

Maybe you are looking for

  • HELP! I need to get rid of my headache.

    My JSP program works in this way: 1. It is runing in Server A and will import a text file from Server B. --I make this part work by using java.net.URL. I import the file and save it on the hard drive of Server A. 2. After obtaining the file from serv

  • How to record who run a runbook and with some parameters?

    Hello, I would like to record who run the runbook and with some parameters. There is some option build in at Orchestrator that will give me that info? Thanks!

  • Database parameter in an ABAP program

    Hi Everyone, Can you tell me if we can set a DB parameter like the one below: ALTER SESSION SET "_B_TREE_BITMAP_PLANS" = FALSE in an ABAP program? if yes then do let me know. Regards, Sugopa

  • EXPORT 와 OPTIMIZER MODE

    제품 : ORACLE SERVER 작성날짜 : 2002-04-08 EXPORT 와 OPTIMIZER MODE 관계 ============================= PURPOSE 다음은 EXPORT와 OPTIMIZER MODE의 관계에 대해 알아본다. Explanation EXPORT시 5 분 걸리던 작업이 init.ora 에 optimizer_mode=first_rows 로 하면 20 시간이 걸리는 현상이 발생된다. 이는 BUG# 3916

  • TS3988 Change email address in iCloud

    I have changed my email address on apple Id . How can I change my email address on ICloud account. It won't let me in. Please advice