Unable to access WEB UI of WiSM2

Bear with me as this is my first install of a 6500 and WiSM module.
The backgroud is that we are small, but management used to be in networking and basically forced the the purchase of a 6509E.  Most of my experience is with 3560X and 2950 switches.
I have followed the basic deployment guide here:http://www.cisco.com/c/en/us/support/docs/interfaces-modules/catalyst-6500-series-7600-series-wireless-services-module-wism/112968-wism2-deploy-guide-00.html.  My problem is that I have a flat network (see why I didn't want a 6500) so the management network and the production network is on VLAN 1.  Yes I know how bad this is, but apparently wireless is more important than adhering to good security practices.
My problem is I am unable to access the Web UI of the controller.  I am however able to ping the address for the management IP.  I will give as much output as I can think would be helpful right now (and more if needed), but any assistance I can get would be appreciated.
#show module
Mod Ports Card Type                              Model              Serial No.
  2    4  WiSM 2 WLAN Service Module             WS-SVC-WISM2-K9    SAL172579DM
  6    5  Supervisor Engine 2T 10GE w/ CTS (Acti VS-SUP2T-10G       SAL1706YCQJ
Mod MAC addresses                       Hw    Fw           Sw           Status
  2  30f7.0d0b.9820 to 30f7.0d0b.982f   1.1   12.2(18r)S1  15.1(1)SY1   Ok
  6  ccef.4838.97d5 to ccef.4838.97dc   1.4   12.2(50r)SYS 15.1(1)SY1   Ok
Mod  Sub-Module                  Model              Serial       Hw     Status
  6  Policy Feature Card 4       VS-F6K-PFC4        SAL17299W2L  2.1    Ok
  6  CPU Daughterboard           VS-F6K-MSFC5       SAL1706YBTQ  1.5    Ok
Mod  Online Diag Status
  2  Pass
  6  Pass
#sh wism module 2 controller 1 st
WiSM Controller 1 in Slot 2 configured with auto-lag
Operational Status of the Controller : Oper-Up
Service VLAN                         : 50
Service Port                         : 3
Service Port Mac Address             : 6c20.562c.2c61
Service IP Address                   : 192.168.2.51
Management IP Address                : 40.96.0.2
Software Version                     : 7.0.116.0
Port Channel Number                  : 403
Allowed-vlan list                    : 1
Native VLAN ID                       : 1
WCP Keep Alive Missed                : 0
#do sh wism st
Service Vlan : 50, Service IP Subnet : 192.168.2.1/255.255.254.0
      WLAN
Slot  Controller  Service IP       Management IP    SW Version    Controller Type    Status
----+-----------+----------------+----------------+------------+------------------+---------------
2     1           192.168.2.51     40.96.0.2        7.0.116.0    WS-SVC-WISM-2-K9   Oper-Up
HQR1#sh ip int brief
Interface              IP-Address      OK? Method Status                Protocol
TenGigabitEthernet2/1  unassigned      YES unset  up                    up
TenGigabitEthernet2/2  unassigned      YES unset  down                  down
GigabitEthernet2/3     unassigned      YES unset  up                    up
GigabitEthernet2/4     unassigned      YES unset  administratively down down
GigabitEthernet6/1     unassigned      YES unset  up                    up
GigabitEthernet6/2     unassigned      YES unset  down                  down
GigabitEthernet6/3     unassigned      YES unset  down                  down
TenGigabitEthernet6/4  unassigned      YES NVRAM  administratively down down
TenGigabitEthernet6/5  unassigned      YES NVRAM  administratively down down
Port-channel403        unassigned      YES unset  up                    up
Vlan1                  40.96.0.1       YES NVRAM  up                    up
Vlan50                 192.168.2.1     YES NVRAM  up                    up

Well I feel stupid, apparrently, either by default or by my commands "Web mode" and Secure Web Mode" was disabled.  after enabling, it works.

Similar Messages

  • Unable to access Web Method after deploying into the server

    Hi,
    I'm Unable to access Web method after deploying into the server.
    My Web method is 
    [WebMethod]
    [ScriptMethod(ResponseFormat = ResponseFormat.Json )]
    public object getOwners()
    DataTable dt = _qbObj.returnDDLData("employeedetails", "EmpID", "EmpFirstName");
    if (dt == null)
    return new { Result = "Error", Options = "Error getting data" };
    string[] strAttributes = { "ID", "Name" };
    string[] strColName = { "EmpID", "EmpFirstName" };
    List<SolOwners> lstObject = convertToList(dt, strAttributes, strColName, new SolOwners());
    var owners = lstObject.Select(c => new { DisplayText = c.Name, Value = c.ID });
    return new { Result = "OK", Options = owners };
    When I.m accessing that method after deploying into server, I got following error.
    System.InvalidOperationException: There was an error generating the XML document. ---> System.InvalidOperationException: &lt;&gt;f__AnonymousType9`2[System.String,System.Collections.Generic.IEnumerable`1[&lt;&gt;f__AnonymousTypea`2[System.String,System.String]]] cannot be serialized because it does not have a parameterless constructor.
    at System.Xml.Serialization.TypeScope.GetTypeDesc(Type type, MemberInfo source, Boolean directReference, Boolean throwOnError)
    at System.Xml.Serialization.XmlSerializationWriter.CreateUnknownTypeException(Type type)
    at System.Xml.Serialization.XmlSerializationWriter.WriteTypedPrimitive(String name, String ns, Object o, Boolean xsiType)
    at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationWriter1.Write1_Object(String n, String ns, Object o, Boolean isNullable, Boolean needType)
    at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationWriter1.Write71_anyType(Object o)
    at System.Xml.Serialization.XmlSerializer.Serialize(XmlWriter xmlWriter, Object o, XmlSerializerNamespaces namespaces, String encodingStyle, String id)
    --- End of inner exception stack trace ---
    at System.Xml.Serialization.XmlSerializer.Serialize(XmlWriter xmlWriter, Object o, XmlSerializerNamespaces namespaces, String encodingStyle, String id)
    at System.Xml.Serialization.XmlSerializer.Serialize(TextWriter textWriter, Object o, XmlSerializerNamespaces namespaces)
    at System.Web.Services.Protocols.XmlReturnWriter.Write(HttpResponse response, Stream outputStream, Object returnValue)
    at System.Web.Services.Protocols.WebServiceHandler.WriteReturns(Object[] returnValues)
    at System.Web.Services.Protocols.WebServiceHandler.Invoke()Please help me to solve that issue.Thank you.

    Hi Vani,
    What project are you developing? According to your code looks like an Asp.Net application? Am i right?
    If so , please repost in  ASP.Net Forum
    http://forums.asp.net for more efficient responses.
    This forum is discuss problems of C# development.
    Have a nice day!
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Unable to Access Web Site (with same name) outside of Local Network

    Hi everyone,
    I have my web site (and some other services) hosted outside of my network by my hosting provider, but handle all other items using OS X Server on my network (i.e. Wiki and so forth).
    The problem is now that I am unable to access my website at www.mydomain.com from within the network. I have external DNS set up for www.mydomain.com to point to my website, while mydomain.com points to my OS X Server (static IP address). Internally in OS X Server's DNS settings this used to work when I had www.mydomain.com resolving to the IP address of my web host, in addition to the default domain settings that OS X had set up. For some reason this is no longer working, and I am unable to figure out why.
    Using latest version of OS X Server 3.0.2.
    Any help is greatly appreciated. Thanks!
    Update: this ended up being a redirect issue on the web host. I added another subdomain that was hosted externally, and it worked fine. For some reason my web host is redirecting www.mydomain.com to domain.com.

    I am in Texas and cannot get to that site either. Do you know for sure the site is up and working? It could just be down (for days, a site I support was down for almost 4 full days a few weeks ago due to a virus problem).
    This may (again, may) be your problem: I see you have a173.48.x.x (you really should x-out the last two octets of your IP address for privacy reasons), I am on a 173.74.x.x address; I know some people have had problems with getting to some sites now that they have a 173.x.x.x address. I think Verizon obtained addresses in that range and some of the addresses apparently previously belonged to spammers or some malicious folks.Some sites (web sites, intermeidate routers, etc.) blocked those addresses, and may not have updated their filters to remove the block on those addresses because they don't know that Verizon now owns them. If this is the problem, eventually those filters will get updated and you will be able to access the site, but this could be a fairly long time.
    If you know how to contact that site I suggest you email them about the problem. You can also try turning off your router overnight and when you turn it back on the next day you may find that you have a different address (one that doesn't start with 173) that will allow you to get to the site.
    I don't think there is much Verizon can do to help, it is not their site that is blocking your address (at least I don't think it is).
    Hope this helps.
    Justin
    Verizon FiOS TV, Internet, and phone
    IMG 1.6.2, Build 08.58
    Keller, TX 76248

  • Unable to access web setup from 4 different Win7 machines with IE9 / FireFox

    I Hope someone can help, I suspect this may have something to do with a recent update to Windows or IE since this worked at least a couple of months ago.
    I'm unable to access the  web setup screen from 4 different windows machines running IE 9 or Firefox (various combinations of wireless, wired, etc.). When I get to the certificate error and hit the "yes, i understand, continue", it comes back with a 'can't be reached' page and looking into the details says the 'connection was dropped'.  However If I connect from a MacBook / safari, I'm able to reach the page fine (and admin the router).
    Summary:
    Using a wrt610n
    I am connected to the router, the ip address hasn't changed, the password hasn't changed
    I can use the router & connect to the internet
    I have the router set to require HTTPS, but switching it to allow HTTP doesn't help.
    Both Wired & Wireless Win 7 / IE9 machines can't connect.
    Tried setting the router ip address to 'trusted' zone in IE
    Tried setting the router ip address to the 'compatibility' mode in IE
    Tried using latest version of Firefox with the same results.
    Thanks in Advance!
    Stephen

    Before I suggest you any troubleshooting steps, I would like to ask few question. Like did you try opening the “https://192.168.1.1” in Internet Explorer 8. If not, then try to open the Router Management page in the same manner in Internet Explorer 8 and check whether it opens or not. As it should show up.

  • Interactive Statement unable to access Web Service

    I have a working Flash Builder project from which I generate a nav file which I use to generate an Interactive Statement using a process in Workbench.
    The Interactive Statement works fine with all the Flash content and data merged from xml.
    When I incorporate using a Web Service in the Flash Builder project code to populate a data grid, and regenerate the nav file to generate the interactive statement, the interactive statement gives the following security error when opened:
    Security error accessing url
    Destination: DefaultHTTP
    It seemed that this issue is related to cross domain policy or something like that, BUT I do not get this error when:
    1. I run the Flash Builder project directly from Flash Builder that fires up IE and my flash content works perfectly fine in the HTML wrapper, including the web service call that works fine. This works fine both from the bin-debug and the bin-release folders of my Flash Builder project.
    2. I created an AIR application from scratch, and consumed the same webservice as used in the earlier Flash Builder project being used to generate nav file for Interactive Statement. The AIR application also works perfectly fine in invoking the web service and does not give any errors.
    Question: Why is my Interactive Statement unable to access the web service and gives the error as mentioned above when the same web service is being accessed and consumed successfully by the same flash content in an html wrapper and in an AIR application. How to make my flash content embedded in the PDF container to access and consume the web service?

    Hi Muhammad,
    Acrobat has different crossdomain restrictions.  Try a crossdomain file that looks like to test the connection:
    <?xml version="1.0"?>
    <!DOCTYPE cross-domain-policy SYSTEM "/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
    <site-control permitted-cross-domain-policies="all"/>
    <allow-access-from domain="*" to-ports="*" />
    <allow-http-request-headers-from domain="*" headers="*"/>
    </cross-domain-policy>
    Following there are a couple of good articles dealing with web services calls:
    http://forums.adobe.com/message/3784114#3784114
    http://tv.adobe.com/watch/flex-in-a-week-day-2/retrieving-and-handling-data-using-webservi ce/
    http://blogs.4point.com/brad.white/2008/12/4-ways-to-invoke-a-webservice-in-flex-with-mxml -and-actionscript.html
    http://blog.flexexamples.com/2008/04/14/calling-a-simple-web-service-from-flex-using-the-w ebservice-class/
    Regards,
    Oana

  • Unable to access Web based emails with latest version of Firefox

    Having downloaded the latest version of Firefox, which I am very impressed with, I am unable to open my web based emails, I get the following message "You have undefined new mails in your inbox".
    I have to use Internet exploree to view my emails.
    Any way to change this.

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Unable to access web sites

    A couple days ago I was having trouble accessing my long-time email web site bookmarked on Firefox and assumed their server was down which happens. Then I discovered that I also can't get to my local bank. The message I get is some version of "Server Not Found" or it just hangs. Then my husband discovered he could get to all of them easily on his Dell.
    I tried other web browsers like Safari, downloaded Firefox again, deleted cookies and caches and downloaded Opera with no luck. I can access all my other web sites and bookmarks through any of these browsers. There have been no crashes or major events.
    We are in Tajikistan now (Central Asia) with the nearest Apple Store several countries away! We use a dial-up modem but have had great internet success--especially with my iBook--since September. We leave for home in a couple weeks but would like to clear this up now since I use the internet often.
    The odd thing is that we live in Williamstown, Massachusetts, and the two web sites I can't access both start with "Williams". You don't think it's some sort of cryptic message that they don't want me back, do you? Or have I been in Central Asia too long?
    Thanks, Kathryn

    Hello Kathryn & Welcome to Apple Discussions!!
    Could you paste the links here of the sites you can not access, so we can try them?
    The odd thing is that we live in Williamstown, Massachusetts, and the two web sites I can't access both start with "Williams". You don't think it's some sort of cryptic message that they don't want me back, do you?
    mmh, no I don't think so ; )
    Message was edited by: Eme

  • Unable to access web service through SOAP

    My script is as follows:
    var bank = "Yolo FCU";
    var cURL = "https://vdevcluster01.drmain.local/AcrobatIntegration/1.0/VOService.svc?wsdl";
    var service = SOAP.connect(cURL);
    var response = service.GetVODStringByFinancialInstution(bank);
    I can connect to many other public web services but am having trouble connecting to my company's.
    The full error message is as follows:
    Batch undefined:Exec
    1
    RaiseError:
    SOAP.request:1:Batch undefined:Exec
    ===>
    12
    255
    65535
    Error()@:0
    ("Yolo FCU")@1:1
    @Batch:Exec:5
    I'm not extremely knowledgeable about web services but as a general question, is there an issue with my code or the web service, or is it impossible for anyone to tell me since it's on a private server?
    Any suggestions for me to ask my IT dept. or any help at all would be appreciated. Thanks

    I have imported the cert. But the problem still persists.
    In the Adobe LiveCycle Designer, when i make a new Data Connection for WSDL.
    If I key in http://server_IP:port/webservices/webmethod?WSDL, it works.
    But If I key in https://server_IP:ssl_port/webservices/webmethod?WSDL,
    it prompted back
    Cannot load "https://server_IP:ssl_port/webservices/webmethod?WSDL". Check  that the path is correct and that the file
    is a valid WSDL file. Also ensure you have access rights to the file.

  • NAC CAM 4.8 Unable to Access Web GUI Interface

                     Hello, we were working on trying to get the CAM and CAS to talk by using a Microsoft CA, we imported the Certs that we generated and shortly after that we lost Web GUI access, we are still able to access via SSH and everything appears ok, reloading the server didnt help. Is it possible the Cert was corrupted preventing us from accessing the web GUI interface, how can I regenerate cert and install it from the CLI? Should I look at something else like log files, if so what do I look for?
    Thank you,
    Mark

    Hi Mark,
    this problem also happend to me,
    U might want to check perfigo status with this command :
    /perfigo/common/bin/fostate.sh

  • TS3899 Unable to access web link within a received emails, how to correct?

    Recently I am not able total on web links embedded within emails I receive. Can anyone help?

    Have you tried restarting or resetting your iPad?
    Restart: Press On/Off button until the Slide to Power Off slider appears, select Slide to Power Off and, after It shuts down, press the On/Off button until the Apple logo appears.
    Reset: Press the Home and On/Off buttons at the same time and hold them until the Apple logo appears (about 10 seconds).

  • Unable to access web pages by typing in the IP address in the address bar?

    I hooked up a HP 7520.  HP was walking me through some set up options and they asked me to type in the IP address 10.0.1.3 into the addrss bar to bring up the web page.  Page remains blank or I get the Safari can't connect to the server.  HP stated it was an issue with the setting on the Airport Express.  What should the setting be in order for the IP address to load?

    10.0.1.3 is a local network IP address. I am assuming that is the IP address of your HP 7520. Since this is a local address there is no additional settings on the AirPort Express that you can make.
    I am assuming that you have your Express in its default mode. That is, it is acting as in wireless router and that it is connected directly to your Internet modem ... correct?
    If so, your Express will hand out local IP addresses in the 10.0.1.2 to 10.0.1.200 range. Note that this is a dynamic address. The provided IP addresses may change over time which is what I think has happened in your case. By that I mean, you HP received a new IP address and why you can find it in the web browser at 10.0.1.3.
    What I would recommend that you do is assign a "static" local IP address to the HP. You can do this using the AirPort Utility. Specifically, you want to set up a DHCP Reservation for this device.
    To do so:
    Run the AirPort Utility.
    Select the AirPort Express, and then, select Edit.
    Select the Network tab.
    Under DHCP Reservations, click on the plus button.
    For Description, enter: HP 7520 or anything else you like.
    Reserve Address By: MAC Address
    MAC Address: Enter the MAC Address of the HP. This would either be the HP's Ethernet or wireless address whichever is appropriate on how you have it connected to the network.
    IPv4 Address: Choose an IP address between 10.0.1.2 & 10.0.1.200. This will be the IP address that you will reserve for the HP.
    Select Save.
    Select Update and allow the Express to restart.

  • Unable to Access Web Analysis

    Hi All,
    While working with web analysis, it is getting stuck-up frequently. So, can anyone help me on this issue what could be the reason for such issue.
    And also please let me know how to put headers and footers in web analysis.
    Thanks & Regards
    Ambica Atluri

    Please verify if all Hyperion Services are running.
    Restart the Hyperion Services in Oracle's Recomended order.
    Hope this helps.
    Regards,
    Manmohan Sharma

  • Unable to access Workspace through Apache web server

    Hi,
    I have configured Hyperion 9.3.1. products in windows.
    I am getting the following error message when trying to access Workspace through Apache web server(port 19000). But, able to access through Weblogic Application server(port 45000).
    please assist me in resolving this issue.
    Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.
    Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
    More information about this error may be available in the server error log.
    Apache/2.0.63 (Win32) mod_jk/1.2.8 Server at nasbydapp04 Port 19000
    Thanks,
    Siva

    I re-configured the BIPlus components and even now, i am unable to access workspace through Apache web server.
    But now, i am getting a different error
    Error:
    HTTP 404 - File not found
    Internet Explorer
    Can anyone help me in resolving this issue.
    I have updated httpd.conf and HYSL-Weblogic.conf file in Apache server.

  • Unable to access end point while invoking web service from bpel

    We are trying to Consume Web Service in our SOA Application and we are getting the following error:-
    "java.lang.Exception: oracle.sysman.emSDK.webservices.wsdlapi.SoapTestException: oracle.fabric.common.FabricInvocationException: Unable to access the following endpoint(s): http://xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/yyyyyyy.svc ".
    Scenario*:-
    1.The Web Service that we are trying to consume is built on Microsoft Dynamics AX Framework and is using Windows Authentication and we are using Oracle Soa Suite 11g(11.1.1.5) to access it.
    2.The Web Serice is Hosted on IIS server 7.0 . The Soa server and IIS server both are on the same domain(Also need to confirm that is there any need to pass credentials while consuming Web Services when both the servers are on same domain??).
    3.We have tested the Web Service in SOAP UI and is working fine only when we pass the Username,Password and Domain.And if we do not pass the User Credentials then we get the following error:-
    " 401 - Unauthorized: Access is denied due to invalid credentials.
    You do not have permission to view this directory or page using the credentials that you supplied."
    4.We can even access the WSDL from the browser.
    Plz help me out to resolve this issue.Will be really greatfull
    Edited by: 937798 on May 31, 2012 2:36 AM

    910764
    1:- I have not begged or requested for marking all answers as helpful. If answers are helpful then post author can do that.
    2:- I also follow same practice. I dont blindly mark all answers correct or helpful. It can waste other's time. Correct marking is very important. Hence my all question are not having close end.Few are still open for correct answers. I will happily mark them correct if you can help me in that.
    In the end , I will say Kindly refrain yourself using this platform as facebook or other social networking websites.
    I hope you will understand seriousness of this forum and utilize its member's posts at the most.
    Thanks,
    Ashu

  • Unable to access calendar, because the web service is configured incorrectly

    When attempting to access my web based calender I recieve the following error, "Unable to access calendar, because the web service is configured incorrectly." I have both the web service and iCal server configured to use SSL.
    Thanks for any help

    I have the same problem, with a temporary solution :
    http://forums.macosxhints.com/showthread.php?t=111059
    In the Server Admin - iCal Server Settings page there's a place where you specify the ports to be used, 8008 without SSL and 8443 (? out of my memory, not sure) for SSL.
    The issue was caused because left of the SSL port I selected "redirect" instead of "use".
    After I changed that it worked right away.
    Laurent

Maybe you are looking for