Hello Justin, your issue is the end redirection.
a quick fix is to edit
html/captive-portal/lib/captiveportal/PacketFence/Controller/CaptivePortal.pm
And replace:
if ( $c->request->secure ) {
$c->response->redirect( "http://"
. $Config{'general'}{'hostname'} . "."
. $Config{'general'}{'domain'}
. '/access?destination_url='
. uri_escape($destination_url) );
}
by:
if ( $c->request->secure ) {
$c->response->redirect( "http://10.3.0.3"
. '/access?destination_url='
. uri_escape($destination_url) );
}
Regards
Fabrice
Le 2015-01-06 13:06, Justin Nelson a écrit :
>
> I am running a Cisco WLC in web auth mode.
>
>
> Initial config seems to be working - ACL's, web redirect, but when I
> actually login, I get a server not found error. My device does get
> registered in PF, and I can continue on if I ignore it - but that wont
> work for production.
>
>
> So, i just did a screen cast so its easy to see exactly what i'm seeing.
>
>
> In my test environment i have:
>
>
> My registration vlan IP is: 10.3.0.3
>
>
> and my PF administration ip is 10.1.144.45 - i have this ip address
> resolvable to pf.my.domain
>
>
> here is a video of the login sequence:
>
>
> /_https://www.youtube.com/watch?v=PY7Ax4hYLQk&feature=youtu.be_/
>
>
> So, any guidance on what i've got setup wrong?
>
>
> thanks!
>
>
>
> ------------------------------------------------------------------------------
> Dive into the World of Parallel Programming! The Go Parallel Website,
> sponsored by Intel and developed in partnership with Slashdot Media, is your
> hub for all things parallel software development, from weekly thought
> leadership blogs to news, videos, case studies, tutorials and more. Take a
> look and join the conversation now. http://goparallel.sourceforge.net
>
>
> _______________________________________________
> PacketFence-users mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/packetfence-users
--
Fabrice Durand
[email protected] :: +1.514.447.4918 (x135) :: www.inverse.ca
Inverse inc. :: Leaders behind SOGo (http://www.sogo.nu) and PacketFence
(http://packetfence.org)
0xF78F957E.asc
Description: application/pgp-keys
------------------------------------------------------------------------------ Dive into the World of Parallel Programming! The Go Parallel Website, sponsored by Intel and developed in partnership with Slashdot Media, is your hub for all things parallel software development, from weekly thought leadership blogs to news, videos, case studies, tutorials and more. Take a look and join the conversation now. http://goparallel.sourceforge.net
_______________________________________________ PacketFence-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/packetfence-users
