802.1x with wireless - pls help :(

I am trying to configure 802.1x on my wireless router (877) but no luck. Here is a part of my config. Radius is on Small Business Server 2008
aaa new-model
aaa group server radius rad_eap
server 172.16.1.x auth-port 1812 acct-port 1813
aaa group server radius rad_acct
server 172.16.1.x auth-port 1812 acct-port 1813
aaa authentication login eap_methods group rad_eap
aaa authentication login mac_methods local
aaa authorization ipmobile default group rad_pmip
aaa accounting network acct_methods start-stop group rad_acct
dot11 ssid xxxx
   vlan x
   authentication open eap eap_methods
   authentication network-eap eap_methods
   authentication key-management wpa'
   mbssid guest-mode
radius-server host 172.16.1.x auth-port 1812 acct-port 1813 key xxxx
With this config above I go to my laptop and try to connect like to a normal wiif, I can see username/pass box. I type and it fails. But at least the router tries to go to Radius (I can see a lot of debug messages). On Radius it fails with 'IAS INVALID AUTH'. probably because the card is not set up with 802.1x
When I remove the line 'authentication key-management wpa' I am able to configure my wirless card with 802.1x but when I try to connect, my router does not contact with Radius at all (I know it as I turned on debug for radius and dot1x)

Hi,
Here is the configuration example link which gived step by step procedure to complete the task.. please follow the same and let me know if this helps!!
http://www.cisco.com/en/US/tech/tk722/tk809/technologies_configuration_example09186a0080608364.shtml
Please dont forget to rate the usefull posts!!
Regards
Surendra

Similar Messages

  • Every time i sync in my music in my iphone 5 it would have to back up my iphone and every time i back up the loading bar would freeze then my itunes with crash pls help my iphone 5 coat a lot from my savings

    every time i sync in my music in my iphone 5 it would have to back up my iphone and every time i back up the loading bar would freeze then my itunes with crash pls help my iphone 5 cost a lot from my savings

    Syncing requires a backup as part of the sync process.
    Delete any existing backups in iTunes under Edit > Preferences > Devices (or simply move them to a different folder on the computer) then try a backup or sync.

  • NAC Framework NAC-L2-802.1x with Wireless AP1242AG?

    Hi
    Can anyone provide some info on setting up NAC-L2-802.1x with a Wireless AP1242AG (not using the NAC Appliance, but the Framework). I cant seem to find the equivalent dot1x port control auto commands on the access-point. Thanks
    Jason

    NAC assesses the state, or posture, of a host to prevent unauthorized or vulnerable endpoints from accessing the network. Enforcement is performed through an authorization policy that is centrally defined on a single ACS server or delegated to multiple NAC posture validation servers

  • Problem with Eclipse  -- pls help

    hi
    When i execute the application in debug mode with one break point :
    These are the errors i get and the compiler is not stopping at the break point .
    Pls help :
    Thread [main] (Suspended (exception ClassNotFoundException))     
         ClassLoader.findBootstrapClass(String) line: not available [native method]     
         Launcher$ExtClassLoader(ClassLoader).findBootstrapClass0(String) line: not available     
         Launcher$ExtClassLoader(ClassLoader).loadClass(String, boolean) line: not available     
         Launcher$AppClassLoader(ClassLoader).loadClass(String, boolean) line: not available     
         Launcher$AppClassLoader.loadClass(String, boolean) line: not available     
         Launcher$AppClassLoader(ClassLoader).loadClass(String) line: not available     
         Launcher$AppClassLoader(ClassLoader).loadClassInternal(String) line: not available

    If the compiler is not stopping at your breakpoint, then it probably means that the java code you're looking at and the compiled class file are out of synch. If you're getting a classnotfound, then your classfile most likely is either not there or is not where expected.
    Check the output folder in project's properties (which may or may not be the default), and see if your classfiles are actually there. Perhaps there is some error that is preventing your classfile from being generated (Eclipse sometimes won't even be able to compile), so check the problems dialog.
    Try refreshing your project, and if all else fails, restart Eclipse/delete & create the project again. That sometimes magically fixes things. Otherwise, welcome to the quirkiness of dealing with Eclipse!

  • NetBeans Problem with package, pls help.....

    Hi all, I have a package problem. With the following 2 classes, I can compile fine in dos with
    c:\java> javac WapDev3\*.java
    but wont compile in Netbeans 3.4 Pls help.
    The classes are
    -------------------class sample1 at c:\java\WapDev3------------------
    package WapDev3;
    class sample1 {
    public sample1() {
    System.out.println("hi");
    --------------------class sample2 at c:\WapDev3------------------
    package WapDev3;
    class sample2 {
    public sample2() {
    public static void main(String[] args) {
    sample1 osample1 = new sample1();

    I don't know for certain whether this is causing your problem, but in Netbeans, the package structure is considered to be identical to the directory structure, relative to the mountingpoint, so if your files are in java/wapdev, Netbeans wants you to make the package java/wapdev.
    This can be cured by mounting a subdirectory, using a relative mounting point.
    In your case, you should mount C:\java (I assume you've mounted C:\).
    Good luck.

  • Creating lists items form a recordset DWCS5 with php PLS help

    Hi there I have another question about lists with recordset and php.
    Here is my example:
    <ul>
    <li>Let us all live</li>
    <li>Help my soul.</li>
    <li>Please have a wonderfull life.</li>
    <li>Do you want another.</li>
    <li>Will you assist me with.</li>
    <li>Let us go now.</li>
    </ul>
    I have all these lines of text in one table all in rows in my mysql database they all have an id, I need it to display it on my website as my example above, not sure where to start because all the examples i have seen are nested lists can anybody help. When I create my recordset and use the repeat region I get "  Let us all live.Help my soul.Please have a wonderfull life.Will you assist me with.Let us go now."
    here is my code
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    mysql_select_db($database_datexdatabase, $datexdatabase);
    $query_rsSwiftPOStableFeatures = "SELECT title, discribtion FROM `table service restaurant` ORDER BY id ASC";
    $rsSwiftPOStableFeatures = mysql_query($query_rsSwiftPOStableFeatures, $datexdatabase) or die(mysql_error());
    $row_rsSwiftPOStableFeatures = mysql_fetch_assoc($rsSwiftPOStableFeatures);
    $totalRows_rsSwiftPOStableFeatures = mysql_num_rows($rsSwiftPOStableFeatures);
    ?>
    <div id="content"><?php do { ?>
              <?php echo $row_rsSwiftPOStableFeatures ['discribtion']; ?>
              <?php } while ($row_rsSwiftPOStableFeatures = mysql_fetch_assoc($rsSwiftPOStableFeatures)); ?>
          </div>
    Regards

    Just change this:
    <div id="content"><?php do { ?>
              <?php echo $row_rsSwiftPOStableFeatures ['discribtion']; ?>
              <?php } while ($row_rsSwiftPOStableFeatures = mysql_fetch_assoc($rsSwiftPOStableFeatures)); ?>
          </div>
    To this:
    <div id="content"><ul><?php do { ?>
         <?php echo "<li>".$row_rsSwiftPOStableFeatures['discribtion']."</li>"; ?>
         <?php } while ($row_rsSwiftPOStableFeatures = mysql_fetch_assoc($rsSwiftPOStableFeatures)); ?>
    </ul>
    </div>
    Also I highly recommend reading up on the basics of PHP programing to understand these things because while DW gives you a good starting point, once you want to grow from that you will need to further understand the code.

  • Stuck with servlets -pls help!!

    am connected from my local machine to the server which hosts the tom cat server 3.2. Now i created a simpel html file & put it under webapps dir and frm my brower viwed it. To do the same with my first servlet code i did teh same, but getting page not found error. teh code is frm tutorial so error free.the foll is the code:
    import javax.servlet.*;
    public void doGet (HttpServletRequest request,
         HttpServletResponse response)
    throws ServletException, IOException
         PrintWriter          out;
         String          title = "Simple Servlet Output";
    response.setContentType("text/html");
    out = response.getWriter();
    out.println("<HTML><HEAD><TITLE>");
         out.println(title);
         out.println("</TITLE></HEAD><BODY>");
         out.println("<H1>" + title + "</H1>");
         out.println("<P>This is output from SimpleServlet.");
         out.println("</BODY></HTML>");
         out.close();
    Now if i run javac SimpleServelet.java frm my m/c i get the compiler error: package javax not found in importand superclass HttpServelet not found. How exactly do i run thsi prgm in the server & view output in my browser. plsssssssss someone..been struggling for a while :(
    thanx in advance.

    try this
    name the method above
    protected void processRequest (HttpServletRequest request, HttpServletResponse response) throws ServletException, java.io.IOExceptionset method doGet as follows
    protected void doGet(HttpServletRequest request, HttpServletResponse response)
        throws ServletException, java.io.IOException {
            processRequest(request, response);
        }compile your servlet, put che .class file under /[your_app]/WEB-INF/classes/ and call it writing in the address bar http://[hostname]:[port]/[your_app]/servlet/[your_servlet]
    if this doesn't work, try modifying the web.xml file under /[your_app]/WEB-INF/ following this documentation. http://jakarta.apache.org/tomcat/tomcat-4.0-doc/appdev/index.html
    HOPE this helps...

  • Need to get rid of persistent images created with as3 - pls help

    I have used the following as3 code, courtesy of Jody Hall at theflashconnection.com .  It's a drag and drop that works great. Problem is the drag and drop images persist when I move on to other frames. How do I clear the images when finished so they don't appear in subsequent frames? Thank you in advance.
    import flash.events.MouseEvent;
    import flash.display.MovieClip;
    import flash.media.Sound;
    import flash.media.SoundChannel;
    var sndExplode:explode_sound;
    var sndExplodeChannel:SoundChannel;
    var dragArray:Array = [host1, agent1, physical1, social1, host2, agent2, physical2, social2, host3, agent3, physical3, social3];
    var matchArray:Array = [targethost1, targetagent1, targetphysical1, targetsocial1, targethost2, targetagent2, targetphysical2, targetsocial2, targethost3, targetagent3, targetphysical3, targetsocial3];
    var currentClip:MovieClip;
    var startX:Number;
    var startY:Number;
    for(var i:int = 0; i < dragArray.length; i++) {
        dragArray[i].buttonMode = true;
        dragArray[i].addEventListener(MouseEvent.MOUSE_DOWN, item_onMouseDown);
        matchArray[i].alpha = 0.2;
    function item_onMouseDown(event:MouseEvent):void {
        currentClip = MovieClip(event.currentTarget);
        startX = currentClip.x;
        startY = currentClip.y;
        addChild(currentClip); //bring to the front
        currentClip.startDrag();
        stage.addEventListener(MouseEvent.MOUSE_UP, stage_onMouseUp);
    function stage_onMouseUp(event:MouseEvent):void {
        stage.removeEventListener(MouseEvent.MOUSE_UP, stage_onMouseUp);
        currentClip.stopDrag();
        var index:int = dragArray.indexOf(currentClip);
        var matchClip:MovieClip = MovieClip(matchArray[index]);
        if(matchClip.hitTestPoint(currentClip.x, currentClip.y, true)) {
            //a match was made! position the clip on the matching clip:
            currentClip.x = matchClip.x;
            currentClip.y = matchClip.y;
            //make it not draggable anymore:
            currentClip.removeEventListener(MouseEvent.MOUSE_DOWN, item_onMouseDown);
            currentClip.buttonMode = false;
            sndExplode=new explode_sound();
            sndExplodeChannel=sndExplode.play();
        } else {
            //match was not made, so send the clip back where it started:
            currentClip.x = startX;
            currentClip.y = startY;
    DRAG AND DROP (I JUST DID THE LAST FOUR FOR THIS EXAMPLE)
    MOVING ON TO NEXT FRAME, YOU STILL SEE THE RECTANGLES.

    Thank you SO muchNed Murphy
    I'm a newbie to AS3 and I was trying to figure it out for past 2 weeks that why did swapChildren or setChildIndex or addChild, all of these made my Target Movieclip remain/duplicate/persist on the stage even after the layer containing the Target Movieclip has blank keyframes. I surfed so many forums and tutorials for the answer but turns out it was my lack of knowledge of basic concepts. I remember checking out this specific forum as well past week but due to it being "Not Answered" I skipped it. This should be marked as a "Correct Answer", The Empty MovieClip did the trick!
    I needed this solution for a Drag and Drop game, so that the current item that is being dragged is above all other graphic layers. And when all items are dropped on their correct targets, there is gotoAndPlay to Success frame label.
    I created a movieclip on the top layer with the same dimensions as the stage and put it at x=0 y=0 position. Instance name: emptymc
    And deleted the emptymc from the timeline during the Success frame label.
    Here is some code I used,
    1. MovieClip.prototype.bringToFront = function():void {
       emptymc.addChild(this);
    2.  function startDragging(event:MouseEvent):void {
      event.currentTarget.startDrag();
      event.currentTarget.bringToFront();
    I didn't know how to put the addChild and refer to the currentTarget in the startDragging function itself, for example
    emptymc.addChild(event.currentTarget);
    - This one didn't work inside the startDragging function "emptymc.addChild(this); "
    Is there a correct way I could have done it properly?
    Thanks,
    Dipak.

  • How To Work With Jtree Pls Help

    I heared about JTree but dont have idea to use it in form6i where i can get
    help or sample form can i use jtree in forms 6i

    JTree is a Java component - do you really mean JTree or do you just want to use the Forms Tree control.
    You'd need to check out the documentation on Java Beans in Forms which is on otn.oracle.com/products/forms
    For JTree documentation try googling...we don't have a JTree example on OTN that I am aware of.
    Regrads
    Grant

  • RMI with JMF - Pls help

    Hi all,
    I am trying to develop some program to allow user to activate video recording over the network. The basic idea of what I am doing is this: I have implement a Object to handle recording from a web cam. The recording work fine on a single JVM. The code follows
    // Get the processor's output, create a DataSink and connect the two.
    DataSource outputDS = processor.getDataOutput();
    try {
    MediaLocator m2 = new MediaLocator("file://c:"+fileName+"." +"avi");
    datasink = Manager.createDataSink(outputDS, m2);
    datasink.open();
    datasink.start();
    In order to achieve the remote invocation of the method, I expose the method as an RMI interface. However an exception : java.lang.RuntimeException: No permission to write files from applets is thrown when the program attempts to execute datasink.open().
    The policy file that was use is as follows
    grant {
    permission java.security.AllPermission;
    Any advise is appreciated. Thanks in advance
    Regards
    Sze Kong

    In the Sun Java control panel, in the runtime parameters box, type
    -Djava.security.policy=c:\mypolicy.policy
    where c:\mypolicy.policy is the policy file you are using.
    Warning : your setting of
    grant { permission java.security.AllPermission; };
    will allow all applets, even ones from the Internet, full access to your machine.
    At least put machine specific permissions in.
    regards,
    Owen

  • Pls help   how to check the condition in java server faces.....???

    Hi All
    I have strucked with code pls help....
    How can i check the codition in java server faces.....?
    like in my Application when user provides the in put like some state name in the next page i have to display some url for that state .......if he provide some other state name it will be different url .....pls help me how can i do that,,,,,,???
    thanks in advance..

    There are certainly ways to do that. E.g. using the rendered attribute, using conditional statements in EL, using a specialized getter for that (lazily loaded if necessary), etcetera. But your functional requirement is unclear, so I can't go in detail with that.
    In the future, please try to write normal English sentences. Don't write like SMS talk and save the periods and commas. The more effort you put in your question, the more chance you will be taken for serious and the more effort others will post in their answers.
    Also, in the future, JSF related questions should be posted in the JSF forum.
    Edited by: BalusC on 12-aug-2008 7:47

  • Ipod 4g needs to be restored...pls help!!!

    how to fix this error?  "iTunes has detected an Ipod in recovery mode.  You must restore this ipod before it can be used with itunes"
    pls help!
    thanks!
    Ipod touch 4g

    Thanks! my ipod is running again...yey!!!
    First, i did the manual reset and then restore it through iTunes. good thing is i have the back-up and now its syncing!
    Happy me! Thanks for the help

  • I have an old PowerPC and a Macbook Pro running 10.6.7 sitting side by side. Both are using AirPort to connect to the internet wirelessly to the same router, but the old Mac connects with full bars, but the MBP struggles with only 2. Pls help, thanks!

    I have an old PowerPC running 10.4.11 and a Macbook Pro running 10.6.7 sitting side by side. Both are using AirPort to connect to the internet wirelessly to the same wireless router. The old Mac connects with full bars but the MBP struggles with only 2 bars. Pls help, thanks!

    BDAqua,
    Thanks for the response.
    Apple has used the term "Digital Audio" to identify this machine.  System Profiler has the following information:
    Machine Name:          Power Mac G4
      Machine Model:          PowerMac3,5
      CPU Type:          PowerPC G4  (2.1)
      Number Of CPUs:          1
      CPU Speed:          800 MHz
      L2 Cache (per CPU):          256 KB
      Memory:          768 MB
      Bus Speed:          133 MHz
      Boot ROM Version:          4.3.3f2
      Serial Number:          XBxxxxxMK9
      Sales Order Number:
    Yes, I could connect them by ethernet if all I wanted to do was transfer files, but I would like to network them so I could use wireless internet.  The machines are not always so close together, I did that to simplify the testing.  With the very slow transfer speeds I am reluctant to move ahead with the internet step. 
    <Edited By Host>

  • My iphone 4s siri is not working, it just worked for a while and stopped. I've checked the data plan and it is intact, i even switched my sim to a friends phone and his siri worked but mine refused even with a wireless network. pls help.

    My iphone 4s siri is not working, it just worked for a while and stopped. I've checked the data plan and it is intact, i even switched my sim to a friends phone and his siri worked but mine refused even with a wireless network. pls help.

    Troubleshooting Siri
    http://support.apple.com/kb/TS4079

  • Hello friends ,   i have a unlocked iphone 4 . i just want to know is that work on chart wireless . i allready cutt a microsim card with sim cutter and when i insert the sim card in it says no sim card install. pls help me . thks

    hello friends ,   i have a unlocked iphone 4 . i just want to know is that work on chart wireless . i allready cutt a microsim card with sim cutter and when i insert the sim card in, it says no sim card install. pls help me . thks

    Why don't you ask chart wireless?

Maybe you are looking for

  • HT201328 What SIM card to use when unlocking my iPhone?

    I currently live in Istanbul, Turkey.   I have an iphone that is eligible to be unlocked.  In the instructions it says "make sure there is a SIM card inserted in your iphone"  Do they mean the original SIM card from ATT, or one from the new carrier h

  • Batch Combining two files together into one

    hi everyone, first time poster here and i would greatly appreciate any help in my dilemma. im trying to batch process images into a single file using a script i got from the link below. Ok, my problem....merging two unique files batch Process my only

  • ABAP Tutorials for SSF_SIGN and SSF_VERIFY?

    Are there any ABAP tutorials for the SSFG function group function modules.  Especially SSF_SIGN and SSF_VERIFY? Thank you, Dean Atteberry. Edited by: Dean Atteberry on Jan 21, 2009 11:25 PM

  • PSU for Oracle Restart 11.2.0.1 AIX 6.1

    Hi Gurus, I have applied the patch 9655006 to GI for standalone i,e Oracle Restart.The patch went through fine but changed the owner on the grid directory and permissions.The grid directory under /u01/app/11.2.0/grid should be owned by root, instead

  • Yosemite my CS4 Illustrator has problems

    Since installing Yosemite my CS4 suite has problems. E.g. Illustrator warns that it can't load additional modules. It crashes when told to print, it does not export pdf etc. Any well tried solution would be welcome.