<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Linking one guest portal to another guest portal in Network Access Control</title>
    <link>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467541#M531736</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, even better in 2.2 we could use a simple HTML page redirect as well (have to capture the session ID on that page though, not sure if possible)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Mar 2017 14:17:36 GMT</pubDate>
    <dc:creator>Jason Kunst</dc:creator>
    <dc:date>2017-03-03T14:17:36Z</dc:date>
    <item>
      <title>Linking one guest portal to another guest portal</title>
      <link>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467537#M531732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;We just spent some time to build a link from a hotspot portal to a guestportal. Just thought I would share the code we inserted in the opt content 2 on the hotspot page. The trick is to take the sessionId from the current url on the hotspot page and add it to the link. Also want to give creds to Christophe Landrain who did most of this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$(window).ready(function() {&lt;/P&gt;&lt;P&gt;var hostname = window.location.hostname;&lt;/P&gt;&lt;P&gt;var WebSessionId = window.location.href.substr(window.location.href.search("\\?")).split("=")[2];&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;jQuery('.cisco-ise-body').append(' &amp;lt;center&amp;gt;&amp;lt;a href="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://'+hostname+':8449/portal/gateway?sessionId='+WebSessionId+'&amp;amp;portal=a23657f0-d7e2-11e6-a31c-0050568a29f5&amp;amp;action=cwa" rel="nofollow" target="_blank"&gt;https://'+hostname+':8449/portal/gateway?sessionId='+WebSessionId+'&amp;amp;portal=a23657f0-d7e2-11e6-a31c-0050568a29f5&amp;amp;action=cwa&lt;/A&gt;&lt;SPAN&gt;" style="color: rgb(0,255,0)"&amp;gt;&amp;lt;font color="212121"&amp;gt;Go to Guest Portal&amp;lt;/font&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/center&amp;gt;');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;});&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Gunnar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2017 09:04:24 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467537#M531732</guid>
      <dc:creator>gthermae</dc:creator>
      <dc:date>2017-03-03T09:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: Hotspot page with link to guestportal</title>
      <link>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467538#M531733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great job!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just tested this script and it works.&amp;nbsp; Remember to open with &amp;lt;script&amp;gt; and close with &amp;lt;/script&amp;gt; or the var calls will not work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using ISE 2.2 and had to place the WebSessionID after the PortalID.&amp;nbsp; (I am also using a different port for my Guest Portal).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;&amp;lt;script&amp;gt;&lt;/P&gt;
&lt;P&gt;jQuery(window).ready(function() {&lt;/P&gt;
&lt;P&gt;var hostname = window.location.hostname;&lt;/P&gt;
&lt;P&gt;var WebSessionId = window.location.href.substr(window.location.href.search("\\?")).split("=")[2];&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;jQuery('.cisco-ise-body').append(' &amp;lt;center&amp;gt;&amp;lt;a href="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://'+hostname+':8443/portal/PortalSetup.action?portal=3c379d60-fceb-11e5-b628-005056a49fb9&amp;amp;sessionId='+WebSessionId+'&amp;amp;action=cwa" rel="nofollow" target="_blank"&gt;https://'+hostname+':8443/portal/PortalSetup.action?portal=3c379d60-fceb-11e5-b628-005056a49fb9&amp;amp;sessionId='+WebSessionId+'&amp;amp;action=cwa&lt;/A&gt;&lt;SPAN&gt;" style="color: rgb(0,255,0)"&amp;gt;&amp;lt;font color="212121"&amp;gt;Go to Guest Portal&amp;lt;/font&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/center&amp;gt;');&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;});&lt;/P&gt;
&lt;P&gt;&amp;lt;/script&amp;gt;&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again for putting in the time to get this done.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2017 13:36:37 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467538#M531733</guid>
      <dc:creator>Charlie Moreton</dc:creator>
      <dc:date>2017-03-03T13:36:37Z</dc:date>
    </item>
    <item>
      <title>Re: Linking one guest portal to another guest portal</title>
      <link>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467539#M531734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Guys great stuff! I love the community, thanks for your help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have had this asked recently from a customer who wanted to have 2 separate portals (depending on who was self-registering). Example Portal1 for Conference1 and Portal2 for Conference2. This allowed them to know who was attending by having a passcode different for each portal as well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2017 13:56:35 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467539#M531734</guid>
      <dc:creator>Jason Kunst</dc:creator>
      <dc:date>2017-03-03T13:56:35Z</dc:date>
    </item>
    <item>
      <title>Re: Linking one guest portal to another guest portal</title>
      <link>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467540#M531735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great Idea!&amp;nbsp; Now we just need someone to give the code to turn the links into buttons and we're all set!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="HotspotMenu2.PNG" class="image-1 jive-image" src="https://community.cisco.com/legacyfs/online/fusion/105096_HotspotMenu2.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If we start with the script for "Hotspot as a Message Portal" we can use it as a menu for the end users to choose the portal through which they can log on.&amp;nbsp; 'Student' can be a Sponsored Guest Portal with AD Credentials, 'Athletic Event' can be a traditional Hotspot, 'Conference' can be Self-Registered Guest, etc...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is HUGE with potential and possibilities.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2017 14:13:57 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467540#M531735</guid>
      <dc:creator>Charlie Moreton</dc:creator>
      <dc:date>2017-03-03T14:13:57Z</dc:date>
    </item>
    <item>
      <title>Re: Linking one guest portal to another guest portal</title>
      <link>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467541#M531736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, even better in 2.2 we could use a simple HTML page redirect as well (have to capture the session ID on that page though, not sure if possible)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2017 14:17:36 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467541#M531736</guid>
      <dc:creator>Jason Kunst</dc:creator>
      <dc:date>2017-03-03T14:17:36Z</dc:date>
    </item>
    <item>
      <title>Re: Linking one guest portal to another guest portal</title>
      <link>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467542#M531737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The simple way to make them into buttons is just to add the html needed.&lt;/P&gt;&lt;P&gt;&amp;lt;button type="submit"&amp;gt;Go to Guest Portal&amp;lt;/button&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Complete script would be:&lt;/P&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;P&gt;&amp;lt;script&amp;gt;&lt;/P&gt;&lt;P&gt;jQuery(window).ready(function() {&lt;/P&gt;&lt;P&gt;var hostname = window.location.hostname;&lt;/P&gt;&lt;P&gt;var WebSessionId = window.location.href.substr(window.location.href.search("\\?")).split("=")[2];&lt;/P&gt;&lt;P&gt;jQuery('.cisco-ise-body').append(' &amp;lt;center&amp;gt;&amp;lt;a href="&lt;A class="jive-link-external-small" href="https://%27+hostname+%27:8443/portal/PortalSetup.action?portal=3c379d60-fceb-11e5-b628-005056a49fb9&amp;amp;sessionId=%27+WebSessionId+%27&amp;amp;action=cwa" rel="nofollow" target="_blank"&gt;https://'+hostname+':8443/portal/PortalSetup.action?portal=3c379d60-fceb-11e5-b628-005056a49fb9&amp;amp;sessionId='+WebSessionId+'&amp;amp;action=cwa&lt;/A&gt;" style="color: rgb(0,255,0)"&amp;gt;&amp;lt;font color="212121"&amp;gt;&amp;lt;button type="submit"&amp;gt;Go to Guest Portal&amp;lt;/button&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/center&amp;gt;');&lt;/P&gt;&lt;P&gt;});&lt;/P&gt;&lt;P&gt;&amp;lt;/script&amp;gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2017 15:30:02 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467542#M531737</guid>
      <dc:creator>gthermae</dc:creator>
      <dc:date>2017-03-03T15:30:02Z</dc:date>
    </item>
    <item>
      <title>Re: Linking one guest portal to another guest portal</title>
      <link>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467543#M531738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Simple enough!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="HotspotMenu3.PNG" class="image-1 jive-image" src="https://community.cisco.com/legacyfs/online/fusion/105110_HotspotMenu3.PNG" style="height: 217px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2017 16:05:14 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467543#M531738</guid>
      <dc:creator>Charlie Moreton</dc:creator>
      <dc:date>2017-03-03T16:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: Linking one guest portal to another guest portal</title>
      <link>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467544#M531739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can anyone confirm that this works with a portal built via isepb?&amp;nbsp; Testing it out now &amp;amp; it does not seem to work via the portal that I imported.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jan 2018 11:03:38 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467544#M531739</guid>
      <dc:creator>JHILL2</dc:creator>
      <dc:date>2018-01-18T11:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: Linking one guest portal to another guest portal</title>
      <link>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467545#M531740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Likely not, you would need to ask that team for support&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sent from my iPhone&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jan 2018 12:35:19 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467545#M531740</guid>
      <dc:creator>Jason Kunst</dc:creator>
      <dc:date>2018-01-18T12:35:19Z</dc:date>
    </item>
    <item>
      <title>Re: Linking one guest portal to another guest portal</title>
      <link>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467546#M531741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can someone confirm, that the redirect after clicking the button is not working on iOS Devices?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2018 16:01:51 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467546#M531741</guid>
      <dc:creator>Marc Aemmer</dc:creator>
      <dc:date>2018-01-31T16:01:51Z</dc:date>
    </item>
    <item>
      <title>Re: Linking one guest portal to another guest portal</title>
      <link>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467547#M531742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you using the Apple mini browser captive network assistant? It may have problems switching not sure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are can you enable captive portal bypass on the controller to see if that maybe causing it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2018 17:34:07 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467547#M531742</guid>
      <dc:creator>Jason Kunst</dc:creator>
      <dc:date>2018-01-31T17:34:07Z</dc:date>
    </item>
    <item>
      <title>Re: Linking one guest portal to another guest portal</title>
      <link>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467548#M531743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you try this script for ISEPB portal:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;script&amp;gt;&lt;/P&gt;&lt;P&gt;setTimeout(function() {&lt;/P&gt;&lt;P&gt;var hostname = window.location.hostname;&lt;/P&gt;&lt;P&gt;var WebSessionId = window.location.href.substr(window.location.href.search("\\?")).split("=")[2];&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;jQuery('.t-root .t-block_content').append(' &amp;lt;center&amp;gt;&amp;lt;a href="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://'+hostname+':8443/portal/PortalSetup.action?portal=3c379d60-fceb-11e5-b628-005056a49fb9&amp;amp;sessionId='+WebSessionId+'&amp;amp;action=cwa" rel="nofollow" target="_blank"&gt;https://'+hostname+':8443/portal/PortalSetup.action?portal=3c379d60-fceb-11e5-b628-005056a49fb9&amp;amp;sessionId='+WebSessionId+'&amp;amp;action=cwa&lt;/A&gt;&lt;SPAN&gt;" style="color: rgb(0,255,0)"&amp;gt;&amp;lt;font color="212121"&amp;gt;Go to Guest Portal&amp;lt;/font&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/center&amp;gt;');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;}, 2000);&lt;/P&gt;&lt;P&gt;&amp;lt;/script&amp;gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2018 09:12:41 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467548#M531743</guid>
      <dc:creator>Serhii Pustovit</dc:creator>
      <dc:date>2018-02-01T09:12:41Z</dc:date>
    </item>
    <item>
      <title>Re: Linking one guest portal to another guest portal</title>
      <link>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467549#M531744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tried it on portal page customization on ISE but no link is shown in the preview.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2018 12:24:54 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467549#M531744</guid>
      <dc:creator>Marc Aemmer</dc:creator>
      <dc:date>2018-02-01T12:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: Linking one guest portal to another guest portal</title>
      <link>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467550#M531745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The little preview? Try the portal test url&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sent from my iPhone&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2018 12:58:40 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467550#M531745</guid>
      <dc:creator>Jason Kunst</dc:creator>
      <dc:date>2018-02-01T12:58:40Z</dc:date>
    </item>
    <item>
      <title>Re: Linking one guest portal to another guest portal</title>
      <link>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467551#M531746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately, nothing is showing up with the script provided from Serhii Pustovit. I already tried it with the portal test url.&lt;SPAN class="j-post-author"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Feb 2018 13:58:13 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467551#M531746</guid>
      <dc:creator>Marc Aemmer</dc:creator>
      <dc:date>2018-02-02T13:58:13Z</dc:date>
    </item>
    <item>
      <title>Re: Linking one guest portal to another guest portal</title>
      <link>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467552#M531747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 12px; font-family: arial; color: #3d3d3d;"&gt;Could you please try this one? I've increased timeout.&lt;/P&gt;&lt;P style="font-size: 12px; font-family: arial; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: arial; color: #3d3d3d;"&gt;&amp;lt;script&amp;gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: arial; color: #3d3d3d;"&gt;setTimeout(function() {&lt;/P&gt;&lt;P style="font-size: 12px; font-family: arial; color: #3d3d3d;"&gt;var hostname = window.location.hostname;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: arial; color: #3d3d3d;"&gt;var WebSessionId = window.location.href.substr(window.location.href.search("\\?")).split("=")[2];&lt;/P&gt;&lt;P style="font-size: 12px; font-family: arial; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;jQuery('.t-root .t-block_content').append(' &amp;lt;center&amp;gt;&amp;lt;a href="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://%27+hostname+%27:8443/portal/PortalSetup.action?portal=3c379d60-fceb-11e5-b628-005056a49fb9&amp;amp;sessionId=%27+WebSessionId+%27&amp;amp;action=cwa" rel="nofollow" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #0a63a7;" target="_blank"&gt;https://'+hostname+':8443/portal/PortalSetup.action?portal=3c379d60-fceb-11e5-b628-005056a49fb9&amp;amp;sessionId='+WebSessionId+'&amp;amp;action=cwa&lt;/A&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;" style="color: rgb(0,255,0)"&amp;gt;&amp;lt;font color="212121"&amp;gt;Go to Guest Portal&amp;lt;/font&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/center&amp;gt;');&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: arial; color: #3d3d3d;"&gt;}, &lt;STRONG&gt;5000&lt;/STRONG&gt;);&lt;/P&gt;&lt;P style="font-size: 12px; font-family: arial; color: #3d3d3d;"&gt;&amp;lt;/script&amp;gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: arial; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: arial; color: #3d3d3d;"&gt;Here is default ISEPB portal with that link.&lt;/P&gt;&lt;P style="font-size: 12px; font-family: arial; color: #3d3d3d;"&gt;&lt;IMG alt="certif.png" class="image-1 jive-image" src="https://community.cisco.com/legacyfs/online/fusion/114987_certif.png" style="height: 203px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Feb 2018 14:20:10 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467552#M531747</guid>
      <dc:creator>Serhii Pustovit</dc:creator>
      <dc:date>2018-02-02T14:20:10Z</dc:date>
    </item>
    <item>
      <title>Re: Linking one guest portal to another guest portal</title>
      <link>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467553#M531748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I copied the script but no success. That's where I entered your script:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="portal_customization.jpg" class="image-1 jive-image" src="https://community.cisco.com/legacyfs/online/fusion/114985_portal_customization.jpg" style="height: 492px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;The Link is not shown on the login page:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="portal_live.jpg" class="jive-image image-2" src="https://community.cisco.com/legacyfs/online/fusion/114989_portal_live.jpg" style="height: 227px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Feb 2018 14:42:20 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467553#M531748</guid>
      <dc:creator>Marc Aemmer</dc:creator>
      <dc:date>2018-02-02T14:42:20Z</dc:date>
    </item>
    <item>
      <title>Re: Linking one guest portal to another guest portal</title>
      <link>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467554#M531749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The link is now shown on the login page with the following script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;script&amp;gt;&lt;/P&gt;&lt;P&gt;setTimeout(function() {&lt;/P&gt;&lt;P&gt;var hostname = window.location.hostname;&lt;/P&gt;&lt;P&gt;var WebSessionId = window.location.href.substr(window.location.href.search("\\?")).split("=")[2];&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;jQuery('.cisco-ise-body').append(' &amp;lt;center&amp;gt;&amp;lt;a href="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://'+hostname+':8443/portal/PortalSetup.action?portal=463330a2-05cb-11e8-ab68-005056875f3d&amp;amp;sessionId='+WebSessionId+'&amp;amp;action=cwa" rel="nofollow" target="_blank"&gt;https://'+hostname+':8443/portal/PortalSetup.action?portal=463330a2-05cb-11e8-ab68-005056875f3d&amp;amp;sessionId='+WebSessionId+'&amp;amp;action=cwa&lt;/A&gt;&lt;SPAN&gt;" style="color: rgb(0,255,0)"&amp;gt;&amp;lt;font color="212121"&amp;gt;Go to Employee Login Page&amp;lt;/font&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/center&amp;gt;');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;}, 1000);&lt;/P&gt;&lt;P&gt;&amp;lt;/script&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But still, when using the link in the CWA (captive network assistant) on a apple device, nothing is happening. Verified it on two apple iphone's. This is working fine on windows and android devices.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Feb 2018 15:44:33 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467554#M531749</guid>
      <dc:creator>Marc Aemmer</dc:creator>
      <dc:date>2018-02-02T15:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: Linking one guest portal to another guest portal</title>
      <link>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467555#M531750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would suggest a webex instead of back and forth here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please email isepb@external.cisco.com&amp;lt;mailto:isepb@external.cisco.com&amp;gt; and will try to work through this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Feb 2018 15:47:47 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467555#M531750</guid>
      <dc:creator>Jason Kunst</dc:creator>
      <dc:date>2018-02-02T15:47:47Z</dc:date>
    </item>
    <item>
      <title>Re: Linking one guest portal to another guest portal</title>
      <link>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467556#M531751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am also struggling with the Apple mini browser of the captive network assistant. As suggested before activating Captive-Bypass and using Safari is working just fine but I'd rather get it working with Apple CNA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Were you guys able to get the link working for Apple CNA?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2018 11:34:26 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/linking-one-guest-portal-to-another-guest-portal/m-p/3467556#M531751</guid>
      <dc:creator>JP_Berlin</dc:creator>
      <dc:date>2018-04-30T11:34:26Z</dc:date>
    </item>
  </channel>
</rss>

