Changing AnyConnect URL

All,
I need to change the URL that AnyConnect clients connect with and I'm looking for the easiest way of doing so without requiring clients to manually change the URL on their existing installations. This will also include going from a self-signed SSL cert on the old address to a publicly signed SSL on the new address. Could I use AnyConnect client profiles to do this even though I'm not using profiles at all now? Basically saying anyone connecting with the old address are somehow automatically forwarded to the new address. 

I believe you could use a profile and make your server list refer to the FQDN and not the IP address.
Once clients had connected and their local profiles update to include the FQDN, your DNS record pointing to the new address would direct them to the desired place.
Here's where that's set in Profile Editor:
http://www.cisco.com/c/en/us/td/docs/security/vpn_client/anyconnect/anyconnect31/administration/guide/anyconnectadmin31/ac03vpn.html#pgfId-1798377 

Similar Messages

  • How do I use Sun Web Server 7.0u1 reverse proxy to change public URLs?

    Some of our installations use the Sun Web Server 7.0 (update 1, usually)
    for hosting some of the public resource and reverse-proxying other parts
    of the URI namespace from other backend servers (content, application
    and other types of servers).
    So far every type of backend server served a unique part of the namespace
    and there was no collision of names, and the backend resources were
    published in a one-to-one manner. That is, a backend resource like, say,
    http://appserver:8080/content/page.html would be published in the internet
    as http://www.publicsite.com/content/page.html
    I was recently asked to research whether we can rename some parts of
    the public URI namespace, to publish some or all resources as, say,
    http://www.publicsite.com/data/page.html while using the same backend
    resources.
    Another quest, possibly related in solution, was to make a tidy url for the
    first page the user opens of the site. That is, in the current solution when
    a visitor types the url "www.publicsite.com" in his or her browser, our web
    server returns an HTTP-302 redirect to the actual first page URL, so the
    browser sends a second request (and changes the URL in its location bar).
    One customer said that it is not "tidy". They don't want the URL to change
    right upon first rendering the page. They want the root page to be rendered
    instantly i the first HTTP request.
    So far I found that I can't solve these problems. I believe these problems
    share a solution because it relies on ability to control the actual URI strings
    requested by Sun Web Server from backend servers.
    Some details follow, now:
    It seems that the reverse proxy (Service fn="service-passthrough") takes
    only the $uri value which was originally requested by the browser. I didn't
    yet manage to override this value while processing a request, not even if
    I "restart" a request. Turning the error log up to "finest" I see that even
    when making the "service-passthrough" operation, the Sun Web Server
    still remembers that the request was for "/test" (in my test case below);
    it does indeed ask the backend server for an URI "/test" and that fails.
    [04/Mar/2009:21:45:34] finest (25095) www.publicsite.com: for host xx.xx.xx.83
    trying to GET /content/MainPage.html while trying to GET /test, func_exec reports:
    fn="service-passthrough" rewrite-host="true" rewrite-location="true"
    servers="http://10.16.2.127:8080" Directive="Service" DaemonPool="2b1348"
    returned 0 (REQ_PROCEED)My obj.conf file currently has simple clauses like this:
    # this causes /content/* to be taken from another (backend) server
    NameTrans fn="assign-name" from="/content" name="content-test" nostat="/content"
    # this causes requests to site root to be HTTP-redirected to a certain page URI
    <If $uri =~ '^/$'>
        NameTrans fn="redirect"
            url="http://www.publicsite.com/content/MainPage.html"
    </If>
    <Object name="content-test">
    ### This maps http://public/content/* to http://10.16.2.127:8080/content/*
    ### Somehow the desired solution should instead map http://public/data/* to http://10.16.2.127:8080/content/*
        Service fn="service-passthrough" rewrite-host="true" rewrite-location="true" servers="http://10.16.2.127:8080"
        Service fn="set-variable" set-srvhdrs="host=www.publicsite.com:80"
    </Object>
    I have also tried "restart"ing the request like this:
        NameTrans fn="restart" uri="/data"or desperately trying to set the new request uri like this:
        Service fn="set-variable"  uri="/magnoliaPublic/Main.html"Thanks for any ideas (including a statement whether this can be done at all
    in some version of Sun Web Server 7.0 or its opensourced siblings) ;)
    //Jim

    Some of our installations use the Sun Web Server 7.0 (update 1, usually)please plan on installing the latest service pack - 7.0 Update 4. these updates addresses potentially critical bug fixes.
    I was recently asked to research whether we can rename some parts of
    the public URI namespace, to publish some or all resources as, say,
    http://www.publicsite.com/data/page.html while using the same backend
    resources.> now, if all the resources are under say /data, then how will you know which pages need to be sent to which back end resources. i guess, you probably meant to check for /data/page.html should go to <back-end>/content/page.html
    yes, you could do something like
    - edit your corresponding obj.conf (<hostname>-obj.conf or obj.conf depending on your configuration)
    <Object name=¨default¨>
    <If $uri = ¨/page/¨>
    #move this nametrans SAF (for map directive - which is for reverse proxy within <if> clause)
    NameTrans.. fn=map
    </If
    </Object>
    and you could do https-<hostname>/bin/reconfig (dynamic reconfiguration) to check out if this is what you wanted. also, you might want to move config/server.xml <log-level> to finest and do your configuration . this way, you would get enough information on what is going on within your server logs.
    finally,when you are satisfied, you might have to run the following command to make your manual change into admin config repository.
    <install-root>/bin/wadm pull-config user=admin config=<hostname> <hostname>
    <install-root>/bin/wadm deploy-config --user=admin <hostname>
    you might want to check out this for more info on how you could use <if> else condition to handle your requirement.
    http://docs.sun.com/app/docs/doc/820-6599/gdaer?a=view
    finally, you might want to refer to this doc - which explains on ws7 request processing overview. this should provide you with some pointers as to what these different directives mean
    http://docs.sun.com/app/docs/doc/820-6599/gbysz?a=view
    >
    One customer said that it is not "tidy". They don't want the URL to change
    right upon first rendering the page. They want the root page to be rendered
    instantly i the first HTTP request.
    please check out the rewrite / restart SAF. this should help you.
    http://docs.sun.com/app/docs/doc/820-6599/gdada?a=view
    pl. understand that - like with more web servers - ordering of directives is very important within obj.conf. so, you might want to make sure that you verify the obj.conf directive ordering is what you want it to do..
    It seems that the reverse proxy (Service fn="service-passthrough") takes
    only the $uri value which was originally requested by the browser. I didn't
    yet manage to override this value while processing a request, not even if
    I "restart" a request. Turning the error log up to "finest" I see that even
    when making the "service-passthrough" operation, the Sun Web Server
    still remembers that the request was for "/test" (in my test case below);
    it does indeed ask the backend server for an URI "/test" and that fails.
    now, you are in the totally wrong direction. web server 7 includes a highly integrated reverse proxy solution compared to 6.1. unlike 6.1, you don´t have to download a separate plugin . however, you will need to manually migrate your 6.1 based reverse proxy settings into 7.0. please check out this blog link on how to set up a reverse proxy
    http://blogs.sun.com/amit/entry/setting_up_a_reverse_proxy
    feel free to post to us if you need any futher help
    you are probably better off - starting fresh
    - install ws7u4
    - use gui or CLI to create a reverse proxy and map one on one - say content
    http://docs.sun.com/app/docs/doc/820-6601/create-reverse-proxy-1?a=view
    if you don´t plan on using ws7 integrated web container (ability to process jsp/servlet), then you could disable java support as well. this should reduce your server memory footprint
    <install-root>/bin/wadm disable-java user=admin config=<hostname>
    <install-root>/bin/wadm create-reverse-proxy user=admin uri-prefix=/content server=<http://your back end server/ config=<hostname> --vs=<hostname>
    <install-root>/bin/wadm deploy-config --user=admin <hostname>
    now, you can check out the regular express processing and <if> syntax from our docs and try it out within <https-<hostname>/config/<hostname>-obj.conf> file and restart the server. pl. note that once you disable java, ws7 admin server creates <vs>-obj.conf and you need to edit this file and not default obj.conf for your changes to be read by server.
    >
    I have also tried "restart"ing the request like this:
    NameTrans fn="restart" uri="/data"
    ordering is very important here... you need to do this some thing like
    <Object name=default>
    <If not $restarted>
    NameTrans fn=restart uri from=/¨ uri=/foo.
    </If>

  • How to change the URL

    Hi All,
    I have created a web dynpro application and now I  need to change the URL of this application to some basic message type URL for eg:
    let's say our URL is "http://testdoc/post?mssg" and I now want to change this to as "OPEN DOCUMENT" and when user clicks on ""OPEN DOCUMENT" it will still direct to the original destination that is our original URL.
    Thanks,
    Rajat

    I used the following syntax:
    <A href="http://forums.sdn.sap.com/">display SDN</A
    >
    Edited by: rajatg on Oct 6, 2010 4:43 AM

  • How to change the URL of a URL-iView over Code ?

    Hi all,
    i am getting started with the Portal-Application-Developement and want to change the URL of an URL-iView on runtime with java-code.
    i have read the context and can get the Property url with this statement.
    endContext.getProfile().getProperty("url")
    But if i change this property, nothing is done.
    endContext.getProfile().setProperty("url", "http://www.yahoo.com");
    Where is my fault.
    Thanks for help.
    Regards Jürgen

    Hi,
    the context is of Type IPortalComponentContext.
    I cant find no method getParameter() at the context or the profile.
    The methods to read the properties of the URL-iView are
    context.getProfile().getProperty("url")
    context.getProfile().getAttributeValue("url")
    But if i want to set (change) this attribute, nothing is done.
    Regards Jürgen

  • How to change Workspace URl in 11.1.2.3 and change the image in login

    I recently upgraded to 11.1.2.3 Everything works fine but the Planning Application is not working from the regular URL. We have a custom URL where it does not shows the server name When I try to access it with the regular URL with the server name it works fine. I want to know if there is a way that I can change the URL to custom I want to know if there was a way to change the login image in the workspace This is for Version 11.1.2.3

    Check below blog for workspace image change:
    http://www.orahyplabs.com/2012/01/customizing-epm-workspace-1112.html
    Also, check *mod*.conf file for port number of planning, it will be under ORACLE_INSTANCE/httpconfig/config/OHS/ohs_component.
    Hope this resolve your issue!
    Cheers!
    Sh!va

  • How to Change attachment URL on a Purchase Req?

    Attachments in the EBP shopping carts are transferred to an ITS server and are linked to a back end R/3 Purchase Requisition. 
    Note that the attachments are physically stored on ITS server and the link (URL) to the attachment and Purchase Req is stored in SAP. 
    As a part of decommissioning, the server which was used for storing attachments is replaced with a new server and all the attachments are moved to new server.  
    Since the link associated to the Purchase Req and attachment is not changed, when user is trying to open the Purchase Req attachment, it is not displaying becuase all the attachments are moved to new server. 
    How to change the link (URL) in the Purchase Req so that it will point out to the new server instead of old server. 
    Due to the following reasons manually changing the URL is not advisable.
    1) 40,000 attachments link need to be changed.
    2) System is not allowing to change the URL manually because of the user differences.  All the attachment links are attached to Purchase Reqs by RFC user (since these are transferred from EBP environment). 
    Please advise what should be the feasible solution to change the URL (link) on the Purchase Req so that business can open the attachment with no issues.
    Thanks in advance

    According to SAP, since purchase order is a legal document they do not support the process of changing document number.  They suggested I do the change with debug and replace at my own risk.  In ME22N go to debug and type MEPO_TOPLINE-BEDAT.  The values for this field show up as 29991231 that should be changed to 20191231 and press F8, then save the purchase order.

  • How can I change my URL in the iTunes store

    I recently got approved by iTunes but have since changed the URL. How can I notify iTunes of this and get it changed as quickly as possible...thanx

    You must add the itunes redirect tag within the <channel> element of your feed. Its doubtful that a 3rd party app would support this tag, but its possible. If you have access to the actual xml file, you can add the redirect feed manually using any text editor.
    <itunes:new-feed-url>http://yournewdomain.com/podcast.xml</itunes:new-feed-url>
    The itunes redirect tag simply tells iTunes users where your podcast has been moved to, and updates their local settings accordingly. The next time they visit your podcast, they will go directly to your new feed specified in the redirect tag.
    For non-iTunes users, the itunes redirect tag doesn't help. Thats where the 301 redirect comes in, however it is a bit complicated depending on the type of host your podcast is on. If you don't want to tackle the 301 redirect, keep reading.
    One method of updating non-iTunes users...if you can still post an episode to your old feed, then one option is to post a text file that directs people to your new feed. You could also post a brief audio clip stating the same thing. Leave this episode up for a couple of weeks and then kill your old feed.
    <item>
    <title>PODCAST UPDATE: Please Read!</title>
    <link>http://yournewdomain.com/newfeed.txt</link>
    <enclosure url='http://yournewdomain.com/newfeed.txt' type='text/plain' />
    </item>

  • Is it possible to change the URL of an iTunes Podcast page itself (NOT the Feed URL)?

    My company has an usual question:
    While keeping all the individual podcasts the same, and the subject matter of the whole podcast series the same, my company would like to change the URL that Apple iTunes has assigned us.  Is this possible, and how can it be done?
    Again, I am talking about the URL that Apple iTunes has assigned us.  The one that begins:
    http://itunes.apple.com/us/podcast/career-...
    We are having a small change in marketing emphasis.  So my company wants to change one of the dashed English words in the URL, after:
    http://itunes.apple.com/us/podcast/
    These English words were based on the original title of our podcast.  The original title of our podcast has changed slightly, with no problem.  Now my company just wants to change the URL assigned to us by Apple.
    Let me emphasize: There is no purpose of misdirection, evasion, or deceit here -- not in the slightest.  My company is simply taking a different marketing angle.  Our category is staying the same.  The podcasts themselves are staying the same.  My company would just like to update the URL assigned to us by Apple to reflect our new podcast series name.
    ALSO:
    We are a category-leading, very popular podcast.  If we do change our iTunes podcast URL, we do not at all want to jeopardize our leading status in our podcast subject category.  We want all our download stats to move with us over to the new URL.  This is extremely important to us.
    AND FURTHER:
    If we do change our iTunes podcast URL, we want all our listeners to automatically find us at the new URL.  We don't want any of them to lose their subscription because we changed our URL.
    So in summary:
    1. CAN we change our podcast URL (the one assigned to us by iTunes)?
    2. Can we change the URL, but still keep our category-leading position and stats, exaclty as they are now?  That is, will our old download stats move with us to the new URL, so we can retain our category-leading position?
    3. Will podcast listeners going to the old URL automatically be forwarded to the new URL?  Might any of our current listeners become unsubscribed as a result of the URL change?
    I know this is an unusual, complicated, and multi-part question.  I am looking for definitive, authoritative answers to all these questions.
    Thank you very much for your help!!
    David

    You can omit the title altogether in the URL (together with the succeeding slash, of course). For example, my own podcast URL in the Store is
    https://itunes.apple.com/gb/podcast/the-sound-of-78s/id166389425?mt=2
    but this works perfectly well:
    https://itunes.apple.com/podcast/id166389425
    Indeed you can even put your own title:
    https://itunes.apple.com/podcast/any_old_title/id166389425
    So it's as simple as that!

  • Is it possible to change the URL of an application?

    Hi All,
              I was working with the oracle apex and created few applications almost a year back, due to my higher studies there is a gap with the tool..and finally I am in.
    Am planning to create an application which will be similar like a personal website.My doubt here is ..whether it's possible to change the URL by keeping a simple one which includes my name also
    instead of having this big..
    http://apex.oracle.com/pls/apex/f?p=10221:1:116416608594529
    I can understand that the whole URL describes the appln no,page no and session ID but its my doubt possible or not..If possible then how to proceed?
    Thanks
    with Regards,
    Ramya.

    My doubt here is ..whether it's possible to change the URL by keeping a simple one which includes my name also
    instead of having this big..
    http://apex.oracle.com/pls/apex/f?p=10221:1:116416608594529
    I can understand that the whole URL describes the appln no,page no and session ID but its my doubt possible or not..If possible then how to proceed?
    If you are just looking for a nice and short URL to start your application, why not just use a URL shortener service like goo.gl ?
    Just put in your long URL and it will create a nice and short URL for you... for example, the above URL is now http://goo.gl/FijYxn
    - Morten
    http://ora-00001.blogspot.com

  • Is it possible to change the URL of the browser corresponding to changes in the timeline?

    Hello,
    I'm trying to create a whole website in Edge. Is it possible to change the browser URL for different sections of the animation. For example me.com/part1 leads to 2.0 seconds in the animation. And for example when you type me.com/part2 the browser would go to 4th second of the animation. And vice versa, when the animation reaches the 4th second the browser URL would change to me.com/part2. It would be really great if that were possible. Any ideas on how to accomplish it?
    Thanks!

    Hi there, Joel's example seems to be exactly what you're trying to do. All you need to do is replace his functions with your functions.
    There are two main parts to his example: 1) reacting to a URL change directly in the URL bar, 2) reacting to a button click, and setting the URL
    Regarding Item 1: this line (this adds a listener for when the URL hash is changed, and calls the 'sym.animate' function in his example). Note that he is linking the value after the # with the symbol names 'panel1', etc. This line enables the functionality for you to be able to directly change the URL to: testStep95.html#panel2, and the site will change pages.
    $(window).on("hashchange", function(){sym.animate(location.hash.replace("#",""), sym.onStage)});
    Regarding Item 2: he's setting the page title (based on the active panel symbol) and URL hash, in the  'sym.animate' function. He calls the 'sym.animate' function on click of btn1, btn2, btn3:
    document.title = panelIn;
    window.location.hash = panelIn;
    Props to Joel for his slick example!

  • When creating a custom SearchPlugin, is it possible to add more code such as uppercase conversion of the SearchText and IF statements that change the URL depending on what is typed?

    When creating a custom SearchPlugin, is it possible to add more code such as uppercase conversion of the searchTerms and IF statements that change the URL depending on the searchTerms? Every time I try to add something firefox doesn't want to add it as a search plugin. I need to create a more powerful search tool for personal use.

    I've found some external software applications that will do it, so that leads me to believe its not possible within ID CC.

  • How to change the url of "Add New Item" of a particular list in SharePoint 2013???

    Hi Guys,
    How to change the url of "Add New Item" of a particular list in SharePoint 2013???
    I need to redirect it into the page where I have created my Visual web part.
    Please suggest
    Warm Regards,
    Tony Joy

    Hi,
         There are multiple ways to change the form url like javascript, SharePoint designer, custom code, editing default form to have custom web part etc, Please follow the url below that describe diffent methods and steps
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/ec2769a0-683c-4023-8804-b596e4f92a3a/change-default-forms-on-custom-list?forum=sharepointcustomizationlegacy
    Hope it helps!!!
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. Thanks, Ajeet

  • Is it possible to change the URL of displaytag's sortable function?

    Basically, I've got a jsp page with the displaytag code on it such as:
    <display:table name="result">
    <display:column sortable="true" property="title" />
    <display:column sortable="true" property="author" />
    <display:column sortable="true" property="status" />
    <display:column sortable="true" property="location" />
    <display:column property="image" />
    </display:table>
    The way it loads the data is that in a servlet, a line of code creates the arraylist called "result", and passes that through the HTTP header onto the jsp. The jsp gets it and displaytag handles it. However, whenever I click one of the sortable headings, none of the data is found because the jsp currently needs to have the arraylist sent to it from a servlet. Clicking a sort link doesn't go through a servlet, just adds some arguments.
    Is there a way to change the sortable URL to go back through a servlet and then add the sorting code (which is something usually like ?d-49653-s=0&d-49653-o=2&d-49653-p=1)?
    Thanks
    Ed

    Hi there, Joel's example seems to be exactly what you're trying to do. All you need to do is replace his functions with your functions.
    There are two main parts to his example: 1) reacting to a URL change directly in the URL bar, 2) reacting to a button click, and setting the URL
    Regarding Item 1: this line (this adds a listener for when the URL hash is changed, and calls the 'sym.animate' function in his example). Note that he is linking the value after the # with the symbol names 'panel1', etc. This line enables the functionality for you to be able to directly change the URL to: testStep95.html#panel2, and the site will change pages.
    $(window).on("hashchange", function(){sym.animate(location.hash.replace("#",""), sym.onStage)});
    Regarding Item 2: he's setting the page title (based on the active panel symbol) and URL hash, in the  'sym.animate' function. He calls the 'sym.animate' function on click of btn1, btn2, btn3:
    document.title = panelIn;
    window.location.hash = panelIn;
    Props to Joel for his slick example!

  • Changing feed URL from ODEO

    I used to use Odeo.com to publish my podcast feed and that is the URL I submitted to iTunes. I now wish to change to URL to a different site (my own). I am fully aware of the <iTunes:new-feed-url> tag system, but it does not help me as I do not have direct access to the feed to add this tag. Odeo seems unwilling to help as well, and suggests I submit the new feed TO ODEO, and "claim" it. That is my point, I do not want to be on Odeo anymore. So now I am stuck keeping my old feed on Odeo up to date and I cannot find a way to contact Apple directly to change my feed. Please advise me on what I should do next. Thank you for any assistance.

    There are only two ways of changing the feed. The use of a 301 redirect...which would need to be done on the server..most likely by an administrator....or the <itunes:new-feed-url>.
    I'm pretty sure Apple can't/won't change it for you...
    If you can't sweet talk Odeo into adding the new-feed-url tag for you...about your only other option would be to start a new one and submit it as a new feed. You then could publish an episode on your Odeo feed telling people to subscribe to your new feed.
    Erik

  • Changing tthe url of application developed by HTMLDB

    Hi all,
    I have developed an application using htmldb.
    I have this htmldb in windows environment.
    Right now i am using url as http://localhost:7777/pls/htmldb/f?p=107:101
    now i want to change the url some http://site1.xyz.com
    i have tried by putting followong in dads.conf
    =====================================
    <Location /pls/htmldb>
    SetHandler pls_handler
    Order deny,allow
    Allow from all
    AllowOverride None
    PlsqlDatabaseUsername HTMLDB_PUBLIC_USER
    ServerName site1.xyz.com
    ServerAlias site1.xyz.com
    ProxyPreserveHost On
    RewriteEngine On
    RewriteRule ^/$ /pls/htmldb/f?p=107:101 [R]
    ProxyPass /pls/htmldb http://IP_address:7777/pls/htmldb
    ProxyPassReverse /pls/htmldbl http://IP_address:7777/pls/htmldb
    ProxyPass /i http://IP_address:7777/i
    ProxyPassReverse /i http://IP_address:7777/i
    </Location>
    ==============================
    after that i am trying to access as http://site1.xyz.com
    but no luck..
    I have refrered the folloing links.....
    Re: How change the HTMLDB URL  ?
    Re: Rename current url in htmldb
    still i have some queries..
    1.name of the conf file that need to be modified?
    2.path of the file in windows environment..
    please any one help me regarding this..
    your earliest reply is appreciated..
    regards,
    malli.

    I think you want to change the httpd.conf file (as well). Not real versed in it, but you would probably need a virtual host directive. hope it gets you in the right direction.
    chet

Maybe you are looking for

  • Is there any way this can be done?

    I have a 30GB video Ipod(2005  Fifth Gen I think) I had my ipod hooked up to my PC for a couple of years and it worked fine. Then it just stopped recognizing my ipod all together. I didn't really care that much because I had lots of music on it but n

  • What is better/easier  GUI Interface and Code

    I'm trying to write a GUI interface that will constantly update a bunch of variables with whatever the user inputs. Is it better to make a GUI and then try to pass the updates back to other underlying code which is in seperate Classes and methods or

  • The photos in a slideshow do not advance automatically. What can I do to fix it?

    I have created a slideshow but the photos do not advance automatically after 3 seconds.  What can I do to fix it?

  • Pivoting; dynamic pivot_in_clause

    I have this situation: create table pivot_data (group_id NUMBER(10), address_state VARCHAR2(20), address_zip VARCHAR2(5), skill_id NUMBER(10), person_id NUMBER(10), person_name VARCHAR2(20) INSERT INTO pivot_data VALUES (1,'VIRGINIA','22222',10,100,'

  • How to create audio unit presets

    When used with some applications, some audio units show presets. But there is apparently no way to create, save and load presets, for example for the AU GraphicEq... Is there a solution to do so ? Thanks N. PowerMac G4 1x1,25 GHz   Mac OS X (10.4.3)