Netgate Discussion Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Search
    • Register
    • Login

    Pfsense, No internet when it is said "You are connected".

    Scheduled Pinned Locked Moved Captive Portal
    168 Posts 34 Posters 53.9k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • olakaraO
      olakara @Gertjan
      last edited by

      @gertjan said in Pfsense, No internet when it is said "You are connected".:

      Btw, as I already said : ones set up, and the captive portal settings are good, no need to change them any more. I wonder what setup makes it necessary that change these settings often ...

      i'm testing the CP in an environment with less than 300 devices, but some of the android devices not getting the login page. so the users have to do additional steps like clicking on the popup message "'sign in to Wi-Fi network'' or browse an http site. even throwing all users will not bring the login page on some devices - they have to disconnect the wifi and reconnect.

      sometimes disconnecting a single user from status will also make the same issue ...some of the new users will get the message 'you are connected''

      GertjanG 1 Reply Last reply Reply Quote 0
      • GertjanG
        Gertjan @olakara
        last edited by

        @olakara said in Pfsense, No internet when it is said "You are connected".:

        but some of the android devices not getting the login page. so the users have to do additional steps like clicking on the popup message "'sign in to Wi-Fi network''

        Well, it's up to the device - the OS, if it does a "captive portal presence test".
        Remember : the captive portal magic becomes close to transparent (no human intervention except the authentication itself) if it is also supported by the connected client and pfSense.
        pfSense by itself can't force the behavior od a connected device.

        In a worse case, it boils down to the manual way :
        @olakara said in Pfsense, No internet when it is said "You are connected".:

        browse an http site

        @olakara said in Pfsense, No internet when it is said "You are connected".:

        ometimes disconnecting a single user from status will also make the same issue ...some of the new users will get the message 'you are connected''

        Here is that "You are connected" message : https://github.com/pfsense/pfsense/blob/d188b7251a83b4a8a39ba50dfaf9a1cba35cad17/src/usr/local/captiveportal/index.php#L80

        Two lines above, you see the "elseif" condition.But first, look at line 62 https://github.com/pfsense/pfsense/blob/d188b7251a83b4a8a39ba50dfaf9a1cba35cad17/src/usr/local/captiveportal/index.php#L62

        $cpsession is initiated with what come back from

        captiveportal_isip_logged($clientip)
        

        This means that $cpsession will get loaded with what is present in the sqllight database, the table that contains all logged in users. It's this table that you see when you look at the connected portal users in the GUI.
        See here https://github.com/pfsense/pfsense/blob/d188b7251a83b4a8a39ba50dfaf9a1cba35cad17/src/etc/inc/captiveportal.inc#L2756 what "captiveportal_isip_logged($clientip)" does. Surprise : the IP is used in a 'SQL like' statement : "select where ip = $clientip
        This will return something (a row with session details) IF the user is in the database table, or to be more precise : his IP is found in the table.

        So, $cpsession contains data (an array with a connected user's device info) if a match for it's IP is found.

        You should check that, when you force logout a user/device that shows the issue, that the IP he is using is really gone from the "Connected users list" in the GUI.

        Back to

        } elseif (!empty($cpsession) && (!isset($_POST['logout_id']) || !isset($config['captiveportal'][$cpzone]['logoutwin_enable']))) {
        

        https://github.com/pfsense/pfsense/blob/d188b7251a83b4a8a39ba50dfaf9a1cba35cad17/src/usr/local/captiveportal/index.php#L80

        If $cpsession is empy (means no $clientip was found in the database) then

        !empty($cpsession)
        

        becomes False.
        The reminder && ( ................) of the elseif isn't important anymore : the entire elseif becomes False,
        "'You are connected" will not get shown, treatment continues and eventually, further below, the captive login page will be transferred to the client.

        But : You see the "'You are connected", so I tend to say : the IP that that device is using is present in the database.
        You didn't disconnected this user - or worse, you did, but it's still there - or the IP is there multiple times (dono if that's possible).
        Up to you to tell (show !) us what happens.

        Look at the "'You are connected" in the source.
        After showing the message, it's flushed to the connected user: he sees the message, and "return" right after that means : there will be no portal login page because pfSense found out that the user is already connected (== his IP is present in the table/database)

        Btw : your /usr/local/captiveportal/index.php file corresponds with this file https://github.com/pfsense/pfsense/blob/master/src/usr/local/captiveportal/index.php ?

        Your DHCP pool is big enough - something like 1000 IP's ?

        No "help me" PM's please. Use the forum, the community will thank you.
        Edit : and where are the logs ??

        olakaraO 1 Reply Last reply Reply Quote 1
        • olakaraO
          olakara @Gertjan
          last edited by

          @gertjan sorry, i wasn't aroud. the network is /22 and 90% of ips allotted in DHCP pool.

          1 Reply Last reply Reply Quote 0
          • F
            free4 Rebel Alliance @olakara
            last edited by free4

            @olakara said in Pfsense, No internet when it is said "You are connected".:

            Hello,
            I have the same issue ( 2.4.4-RELEASE-p1) and many others reported. The only solution is, don''t make any changes in CP settings when the users are connected. After making any changes, you need to "disconnect all user" from status. We have to wait until the bug get fixed.

            @johnpoz said in Pfsense, No internet when it is said "You are connected".:

            This? https://redmine.pfsense.org/issues/8616

            Hello,

            I made a fix for it : https://github.com/pfsense/pfsense/pull/4031

            You can now install this fix using patch package. Two things you need to know :

            • Please enter https://github.com/pfsense/pfsense/compare/master...Augustin-FL:patch-captivportal-reconfigure-no-configbump.diff as "URL/Commit ID". The pull request link above may not work properly because it has been designed for patching pfsense:master (which is the dev, future 2.4.5 version).
            • After installing the patch, click on "Disconnect All" in captive portal status page, otherwise you might have SQL errors in your logs (the errors should be about sqlite complaining of "unknown columns bw_up/bw_down").

            Don't hesitate to report me issues or to thumb up this PR on Github !

            EDIT : Netgate decided to fix this issue in a different way (using https://github.com/pfsense/pfsense/pull/4042). Please use this pull request instead. Here are updated steps :

            • Please enter https://github.com/pfsense/pfsense/compare/RELENG_2_4_4...Augustin-FL:fix-reconfig-for-2-4-4.diff as "URL/Commit ID". The pull request link above may not work properly because it has been designed for patching pfsense:master (which is the dev, future 2.5.0 version).
            • After installing the patch, click on "Disconnect All" in captive portal status page, otherwise you might have pipe leaks

            @gertjan said in Pfsense, No internet when it is said "You are connected".:

            You can ! Come over and I pay you even a beer or two while doing so ! ;)

            May i also request a beer ? ;)

            S GertjanG 2 Replies Last reply Reply Quote 2
            • S
              shood
              last edited by

              This post is deleted!
              1 Reply Last reply Reply Quote 0
              • S
                shood @free4
                last edited by

                @free4
                is the patch set up for 2.4.4-p2 ??

                F 1 Reply Last reply Reply Quote 0
                • F
                  free4 Rebel Alliance @shood
                  last edited by

                  @shood Yes. I just updated my previous post

                  1 Reply Last reply Reply Quote 0
                  • A
                    abuledi
                    last edited by

                    @free4 please help me to run this patch ...
                    Patch Fetched Successfully
                    but unable to apply or test getting below message .
                    Patch can NOT be applied cleanly (detail)
                    Patch can NOT be reverted cleanly (detail)

                    1 Reply Last reply Reply Quote 0
                    • A
                      abuledi
                      last edited by

                      Patch Test Output apply
                      /usr/bin/patch --directory=/ -t -p2 -i /var/patches/5c544011ac364.patch --check --forward --ignore-whitespace

                      Hmm... Looks like a unified diff to me...
                      The text leading up to this was:

                      |From 4573641589d50718b544b778cea864cfd725078a Mon Sep 17 00:00:00 2001
                      |From: jim-p
                      |Date: Tue, 15 Nov 2011 16:28:45 -0500
                      |Subject: [PATCH] Add a gui field to set the source tracking timeout for sticky
                      | connections.
                      |
                      |---
                      | etc/inc/filter.inc | 2 ++
                      | usr/local/www/system_advanced_misc.php | 20 +++++++++++++++++---
                      | 2 files changed, 19 insertions(+), 3 deletions(-)
                      |
                      |diff --git a/etc/inc/filter.inc b/etc/inc/filter.inc
                      |index 29864dfb08..fdd43b70aa 100644
                      |--- a/etc/inc/filter.inc

                      +++ b/etc/inc/filter.inc
                      No file to patch. Skipping...
                      Hunk #1 ignored at 280.
                      1 out of 1 hunks ignored while patching inc/filter.inc
                      Hmm... The next patch looks like a unified diff to me...
                      The text leading up to this was:

                      |diff --git a/usr/local/www/system_advanced_misc.php b/usr/local/www/system_advanced_misc.php
                      |index d25c96d9fe..e1da77245a 100644
                      |--- a/usr/local/www/system_advanced_misc.php

                      +++ b/usr/local/www/system_advanced_misc.php
                      No file to patch. Skipping...
                      Hunk #1 ignored at 56.
                      Hunk #2 ignored at 103.
                      Hunk #3 ignored at 192.
                      Hunk #4 ignored at 274.
                      Hunk #5 ignored at 284.
                      5 out of 5 hunks ignored while patching local/www/system_advanced_misc.php
                      done
                      1 Reply Last reply Reply Quote 0
                      • GertjanG
                        Gertjan
                        last edited by

                        What "URL/Commit ID" ae you using ?

                        No "help me" PM's please. Use the forum, the community will thank you.
                        Edit : and where are the logs ??

                        A 1 Reply Last reply Reply Quote 0
                        • A
                          abuledi @Gertjan
                          last edited by

                          @gertjan https://github.com/pfsense/pfsense/commit/4573641589d50718b544b778cea864cfd725078a.patch
                          colored text

                          1 Reply Last reply Reply Quote 0
                          • GertjanG
                            Gertjan @free4
                            last edited by

                            Why ?

                            @free4 said in Pfsense, No internet when it is said "You are connected".:

                            Hello,
                            I made a fix for it : https://github.com/pfsense/pfsense/pull/4031

                            No "help me" PM's please. Use the forum, the community will thank you.
                            Edit : and where are the logs ??

                            A 1 Reply Last reply Reply Quote 0
                            • A
                              abuledi @Gertjan
                              last edited by

                              @gertjan which one should I give url??

                              F 1 Reply Last reply Reply Quote 0
                              • GertjanG
                                Gertjan
                                last edited by

                                The issue discussed in this thread : https://github.com/pfsense/pfsense/pull/4031

                                Dono where you took your patch URL from (except that it is something proposed by @jimp last September, so ... old).

                                No "help me" PM's please. Use the forum, the community will thank you.
                                Edit : and where are the logs ??

                                A 1 Reply Last reply Reply Quote 0
                                • F
                                  free4 Rebel Alliance @abuledi
                                  last edited by free4

                                  @abuledi please use https://github.com/pfsense/pfsense/compare/master...Augustin-FL:patch-captivportal-reconfigure-no-configbump.diff as "URL/Commit ID"

                                  1 Reply Last reply Reply Quote 0
                                  • A
                                    abuledi @Gertjan
                                    last edited by

                                    @gertjan yes... Same issue I am facing but I am new here so mentioned patch is not compliang I have to execute this could please send me url so I can sync this patch to my box..

                                    1 Reply Last reply Reply Quote 0
                                    • GertjanG
                                      Gertjan
                                      last edited by

                                      What are the messages when you "Test" the patch ?

                                      No "help me" PM's please. Use the forum, the community will thank you.
                                      Edit : and where are the logs ??

                                      1 Reply Last reply Reply Quote 0
                                      • stephenw10S
                                        stephenw10 Netgate Administrator
                                        last edited by

                                        The patch applies fine for me against 2.4.4p2:

                                        0_1549123810235_Selection_563.png

                                        0_1549123869098_Selection_564.png

                                        I suspect you have entered the wrong URL.

                                        Steve

                                        A 1 Reply Last reply Reply Quote 1
                                        • A
                                          abuledi @stephenw10
                                          last edited by

                                          @stephenw10 please share that url thanks in advance...

                                          1 Reply Last reply Reply Quote 0
                                          • stephenw10S
                                            stephenw10 Netgate Administrator
                                            last edited by stephenw10

                                            It's this, the link that free4 posted above, twice:

                                            https://github.com/pfsense/pfsense/compare/master...Augustin-FL:patch-captivportal-reconfigure-no-configbump.diff

                                            Steve

                                            A 1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post
                                            Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.