How to enable GUI for a Cisco 1841?

How to enable GUI for a Cisco 1841?

Hi,
install SDM or CCP on your PC then on the router :
en
conf t
ip dhcp excluded-address 192.168.1.254
ip dhcp pool MYPOOL
network 192.168.1.0 255.255.255.0
default-router 192.168.1.254
ip http server
ip http authentication local
username xxx privilege 15 secret   xxxx
int f0/0
ip address 192.168.1.254 255.255.255.0
no shutdown
Regards.
Alain.

Similar Messages

  • How to enable SSL for policy service?

    Hi all,
    My application is using SunONE's C API to communicate with the Identity Server.
    In order to enable SSL, I have changed the following lines in amconfig.properties:
    com.sun.am.namingURL = https://id01.core.development.net:443/amserver/namingservice
    com.sun.am.policy.am.loginURL = https://id01.core.development.net:443/amserver/UI/Login
    com.sun.am.policy.am.library.loginURL = https://id01.core.development.net:443/amserver/UI/Login
    After operating these changes, everything continued to work fine...but then, I checked with a network sniffer what data is being sent to IS:
    - The login and naming data were over SSL
    - Policy and session items were plain HTTP
    My questions are:
    1. How to enable SSL for policy evaluation requests?
    2. How to enable SSL for sessionservice requests?
    3. What are the changes required on the server/client?
    Many thanks,
    Dan

    There might a better different forum for this question.

  • Does anybody know how to write GUI for J2ME?

    Does anybody know how to write GUI for J2ME?
    Thanks!

    Hi..! I don't know exactly... it's a good question. I refered something. U visit below URL's.
    http://www.java-pro.com/upload/free/features/javapro/2000/13iss00/rg0013/rg0013.asp
    http://developer.java.sun.com/developer/technicalArticles/wireless/midpui/

  • How to write GUI for J2ME?

    Does anybody know how to write GUI for J2ME?
    is there any reference books, web sites, etc?
    Thank you!

    Thank you!
    i will take a look.

  • How to enable logging for the Web Proxy

    Hi,
    Does anyone know how to enable logging for the Web Proxy feature under "Web" in Server Admin?

    Aren't the web proxy hits logged in the standard apache logs? /var/log/httpd/access_log

  • How to enable history for settypes?

    Hi,
    We are using few custom settypes in our project and want to track any changes made to their attributes.
    I can see two tables created for each settype, one of which ends with 'H', which is a history table.
    But this table is always blank, even if i make any changes to the settype attributes. How can I enable history for settypes? Any idea?
    Regards,
    Vikrant.

    there is one xml or .dat file which your Basis team would be having, which need to be placed in the directory where your GUI is installed... without which nothing can be done after these many trials on options provided.
    some ppl know it as sticky memory too... search for OSS or in sap support..
    Re: History gets disbaled with SAP GUI 7.10 Patch 11
    Edited by: Jay Sadaram on Dec 4, 2009 1:59 AM

  • How to enable logging for mail.app in Mountain Lion

    I am at my wits end trying to figure this out....
    Does anyone have a clue how to enable the logging for mail.app under Mountain Lion?
    In the past, you could open up Console and click on Console.log and see the logging of mail. Under mountain Lion, there is no more console.log. I cannot figure out how to enable it.
    I have tried to run the AppleScript of "Turn On Logging" but the script errors out under Mountain Lion.
    Does anyone know how to do this or a better way, maybe a tool or something that can help you troubleshoot mail.app issues?
    Thanks in advanced

    Hello,
    I have a similar problem. The script "Turn on Logging.scpt" runs without error, but I do not see any socket logging. I only get two messages, which I also get when I start mail without the script by just clicking the mail.app icon in the dock. The Messages are:
    1/10/13 3:43:32.618 PM Mail[11276]: Using V2 Layout
    1/10/13 3:43:36.388 PM Mail[11276]: *** -[IADomainCache init]: IA domains cache is out of date.
    Any help would be appreciated

  • How to enable GUI in a non global zone in solaris11?

    How to enable graphical logon in a non global zone in solaris11, so the zone can be login by Xmanager? Thanks!

    This guide will cover how to setup a basic VNC connection to a Solaris 11 machine. There is also an optional step to allow for persistent VNC connections.
    Step 1
    Configure GDM to include ‘[security] DisallowTCP=false’ and ‘[xdmcp] Enable=true’.
    $ sudo gedit /etc/gdm/custom.conf
    # GDM configuration storage
    [daemon]
    [security]
    DisallowTCP=false
    [xdmcp]
    Enable=true
    [greeter]
    [chooser]
    [debug]
    Step 2
    Configure X-Server to accept remote connections.
    # svccfg -s application/x11/x11-server
    svc:/application/x11/x11-server> setprop options/tcp_listen = boolean: true
    svc:/application/x11/x11-server> end
    Step 3
    Configure the VNC service (you could change the ‘-geometry 1280×720′ to whatever resolution you would like).
    # svccfg -s xvnc-inetd
    svc:/application/x11/xvnc-inetd> setprop inetd_start/exec = astring: "/usr/bin/Xvnc -desktop sol11:0 -geometry 1024x768 -inetd -query localhost -once securitytypes=none"
    svc:/application/x11/xvnc-inetd> setprop inetd/wait = boolean: true
    svc:/application/x11/xvnc-inetd> end
    ** The line highlighted red is optional – only do this if you want your VNC connection to persist (as well as any potential security issues)
    or
    # svccfg -s xvnc-inetd
    svc:/application/x11/xvnc-inetd> editprop
    search for # setprop inetd_start/exec = astring: "/usr/bin/Xvnc
    copy the line, uncomment the copy, makethe changes above, write the file out.
    svcadm refresh xvnc-inetd
    Step 4
    Disable and the re-enable the GDM and VNC-inetd services for the changes to take effect.
    $ su root
    Password:
    # svcadm disable gdm xvnc-inetd; svcadm enable gdm xvnc-inetd
    If still in maintenance, reboot (I had to, don't know why).
    Step 5
    Point your favourite VNC client at your Solaris server and test if it accepts your VNC connection – you should be presented with a Username/Password login screen.
    If you performed the optional step to make your connections persist – close your favourite VNC client and then reconnect – if you remained logged in you have a persistent connections.
    Greg on said:
    After a fresh text install of Solaris-11 (11/11) both xvnc-inetd and gdm are not present. After installing them (# pkg install xvnc-inetd gdm) I can’t get gdm to start:
    # svcadm enable gdm
    # svcs gdm
    offline 10:24:03 svc:/application/graphical-login/gdm:default
    Any thoughts?
    Ron on said:
    You are missing some X packages. Do the following:
    pkg install slim_install           # installs 400+ packages
    svcadm enable gdm && exit      # gdm now works
    pkg uninstall slim_install           # uninstalls the installer package only

  • How to enable DFF for a particular country on a Standard OA Framework page

    Hi All,
    I have a requirement for iExpense. Here I need to enable a DFF and that should be display only for a particular country say 'India'. I have done this for the core apps forms but for OA Framework pages I am not sure.
    In core apps we have used context senstive rather than Global.
    Could you please help me on this that how can I enable DFF for a particular country.
    Thanks,
    Sam

    hi
    i think u r talking about Domestic and Recoverability DFF,u need to find out the id of those LOV fields ,u can find them going in view source ,right click go to view source and search the fields against the prompt appearing against these LOV like (Recoverability) u will get the id of this field ,then extend your CO and hide this field in processRequest method of extendedCO according to your org id .
    thanx
    Pratap

  • How to enable "Check For Updates" ??

    how can I to enable "Check For Updates" in the Help menu ??

    There is an outside chance you can download the updates and install them, but in the case you have that probably would not work. Are you logged in as an administrator?

  • How to enable hyperlink for a cell in excel thru OLE?

    Hi,
    Iam using OLE2 to download data from an internal table into excel sheet.I want to enable hyperlink for one cell in each line of the excel. Please advice how to go abt it?
    Regards,
    Shambu

    To hyperlink to the specific sheet in your workbook, you need to first create the sheet and use the parameter #3 of the Hyperlink's ADD method.
    Try like this:
    *.....Hyperlink to another sheet
      GET PROPERTY OF e_appl 'Range' = e_range
        exporting
        #1 = 'A1'
        #2 = 'A1'.
      GET PROPERTY OF e_activesheet 'Hyperlinks' = e_hyperlink.
      get property of e_work 'Sheets' = e_sheets.
      CALL METHOD OF e_sheets 'Add' = e_work2.
      CALL METHOD OF e_hyperlink 'Add'
        EXPORTING
        #1 = e_range
        #2 = ''
        #3 = 'Sheet2!A1'.   "Targeted Sheet & Cell
    *.....Hyperlink to another sheet
    Regards,
    Naimesh Patel

  • How to enable cookies for a single web page or site?

    How do I enable cookies for just one site or web page, without enabling cookies for ever site?

    They should be enabled out-of-the-box, but it's worth checking.
    Gingerbread: Menu > More > Settings > "Privacy & Security" section
    On newer versions of Android, the menu may be organized differently, but hopefully you can still find Settings.

  • How to enable https for a single webapp in tomcat 5.5 ?

    Hi ,
    I want to enable https for my web app in Tomcat 5.5(with JDK 1.5, in WinXP) without affecting other webapps running in the same server . Any idea how to do it ? Pl. note , I dont want to make the entire tomcat as SSL enabled.
    Regards
    Diana

    You specify SSL in web.xml of your application. So, in that case other web applications in same server would not be affected.
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>myresources</web-resource-name>
    <url-pattern>/*</url-pattern>
    </web-resource-collection>
    <user-data-constraint>
    <transport-guarantee>CONFIDENTIAL</transport-guarantee>
    </user-data-constraint>
    </security-constraint>Following link will help you to setup SSL in tomcat:
    [http://techtracer.com/2007/09/12/setting-up-ssl-on-tomcat-in-3-easy-steps/|http://techtracer.com/2007/09/12/setting-up-ssl-on-tomcat-in-3-easy-steps/]
    Thanks,
    Mrityunjoy

  • How to enable chekbox for cookies

    HI,
    I want to enable end user to clear cookies from IE. At present this option is grayed out. How to enable this using GPMC?
    Regards,
    Ram Kudva P 

    Its for Windows 2008 R2. Do you have any sample script ?
    I have checked the option in user settings , but no luck. All options like clear history, clear data are enable except cookies. 

  • How to avoid GUI for development

    hi
    I am learning SAP / ABAP with NetWeaver trial
    is it possible to develop applications without using the GUI?
    In Microsoft-land I usually build whole system just by typing (TSQL or CSharp etc.) ... it is more time efficient and precise

    I think what I am looking for is just an ABAP report
    that creates ABAP Dictionary objects using function modules such as DDIF_*
    I am not happy using GUI for development as it doesn't allow you to:
    - capture your effort
    - apply global changes quickly
    - copy and paste code fragments
    now I have to find out how to quickly try a design and then rollback
    when sketching schemas in TSQL I do this:
    restore database WIP from disk = 'WIP.bak'
    go
    create tables ...
    create views ...
    create procs ...
    insert initial data ...
    insert test data ...
    and this lets me quickly iterate a high quality design
    the same process is just not going to work using a GUI
    as it takes hours and hours of clicking with a mouse !
    I suppose there is no equivalent of DDL in OpenSQL for Dictionary objects ?

Maybe you are looking for

  • Getting Item Text  from sale order items

    Hi All, I am trying to get sale order item text using Include text in smartforms. my text object  is VBBP and my text id is 0004. What should I pass in Text Name  ?.---Order Number or Item Nunmber or Both. If both can you guys explain how to pass bot

  • Contextual menu on links in mail doesn't work

    I had hoped that this annoying bug was fixed in release 10.10.1 of Yosemite. It is not and I have to ask the question. There is a contextual menu in mail if you option click on a link: The problem is: it doesn't work! All the three options do nothing

  • Rotating a movie in QT pro 10.0

    Hi, I'd like to rotate the orientation of a .mov movie. I've searched this forum as well as Googled for an answer but only found advice using QT 7 which doesn't apply to my situation. I'd appreciate any suggestions as to how to accomplish this. Thank

  • Macbook air 11'' crash

    I'm on Mac Book Air 10.7 I was downloading a pdf file and mac crashes. I've tried: command+option+escape, but there's no answer, it's still working on this download. I let the battery run off and restarted in the same screen... please help

  • E-mail print is suddenly miniscule & cannot be adjusted. Needed ASAP for major e-mail.

    e-mail text print was suddenly miniscule--so small it cannot be read.--Even if I paste in larger print, Even if I select print size larger, Even if I use Ctrl->, Even though I restarted the e-mail repeatedly. How do I set the default so it stays at a