UBports Robot Logo UBports Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login

    Enabling MAC randomization

    Scheduled Pinned Locked Moved Unsolved Support
    21 Posts 5 Posters 572 Views 4 Watching
    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.
      • U Offline
        uxes @gpatel-fr
        last edited by

        @gpatel-fr

        While I don't have a formal, tangible report to cite, my practical experience dealing with a network of around a hundred devices daily at my company confirms this: Android, iOS, and macOS absolutely randomize their MAC addresses. This behavior makes reliable device tracking within the company difficult, though it admittedly ensures a better degree of anonymity for our users.

        https://source.android.com/docs/core/connect/wifi-mac-randomization-behavior

        https://support.apple.com/en-us/102509
        By default, your device improves privacy by using a different MAC address for each Wi-Fi network.

        G 1 Reply Last reply Reply Quote 0
        • Vlad NirkyV Offline
          Vlad Nirky @gpatel-fr
          last edited by

          @gpatel-fr
          You could fix IP (as I did)

          G 1 Reply Last reply Reply Quote 0
          • G Online
            gpatel-fr @Vlad Nirky
            last edited by

            @Vlad-Nirky said in Enabling MAC randomization:

            @gpatel-fr
            You could fix IP

            The option does not seem to be available in the phone UI - I guess that it can be done with some command line trickery. This is not something that is commonly done in Wifi networks where devices are rarely servers.

            Vlad NirkyV 1 Reply Last reply Reply Quote 0
            • G Online
              gpatel-fr @uxes
              last edited by

              @uxes said in Enabling MAC randomization:

              Android, iOS, and macOS absolutely randomize their MAC addresses

              there seem to be yet some level of configuration:

              https://android.stackexchange.com/questions/225839/get-new-random-mac-for-same-ssid-without-factory-reset-on-android-10

              what is done by the trick I posted is mostly the highest level, non persistent randomization (except the 'new Mac address every few days'). The article suggests that this can be too strong for some internal 'enterprise' networks that have special requirements. So some level of configuration could be necessary, no size fits all. When adding options in the UI, it gets so much more complicated to program that you begin to understand why it was not done before for UT.

              1 Reply Last reply Reply Quote 0
              • Vlad NirkyV Offline
                Vlad Nirky @gpatel-fr
                last edited by Vlad Nirky

                @gpatel-fr
                Not so hard and usefull
                you must know which yaml file is used for the wifi in /etc/netplan
                as root cd /etc/netplan and cat yaml files.
                nano 90-NM-5f1fe55a-2996-4485-b6b3-a75fe76edc62.yaml (ie)
                Then in the wifi one
                replace

                      dhcp4: true 
                with
                      dhcp4: false
                      addresses:
                        - [your wanted IP]/24 (or less)
                      routes:
                        - to: default
                          via: [your router IP]
                      nameservers:
                        addresses: [your DNS1, your DNS2]
                

                save it
                and validate it by
                netplan apply

                G 1 Reply Last reply Reply Quote 0
                • G Online
                  gpatel-fr @Vlad Nirky
                  last edited by

                  @Vlad-Nirky said in Enabling MAC randomization:

                  Not so hard and usefull

                  yes that's a possibility. Another could be to stop and disable the mount unit + restarting the phone when staying at home.

                  1 Reply Last reply Reply Quote 0
                  • nielsbasjesN Offline
                    nielsbasjes @nielsbasjes
                    last edited by

                    What we did:

                    To test

                    The /run/ is reset on every reboot so we first created /run/NetworkManager/conf.d/20-randomwifimacaddress.conf with

                    [device]
                    wifi.scan-rand-mac-address=yes
                    
                    [connection]
                    wifi.cloned-mac-address=random
                    
                    • Restart NetworkManager: systemctl restart NetworkManager

                    The observed effects:

                    • The MAC address was random everytime (as configured).
                    • The wifi network scanning no longer works in the config app.
                      Scanning from the command line does still work. nmcli radio wifi on && nmcli device wifi rescan && nmcli device wifi list && nmcli radio wifi off

                    I could really use some help on that one.

                    To make permanent

                    • Created /userdata/system-data/etc/NetworkManager/conf.d/
                    • Copied the existing /etc/NetworkManager/conf.d/default-wifi-powersave-on.conf to /userdata/system-data/etc/NetworkManager/conf.d/.
                    • Created /userdata/system-data/tmp/
                    • Created the described /userdata/system-data/etc/systemd/system/etc-NetworkManager-conf.d.mount
                    [Unit]
                    Description=Mount unit for /etc/NetworkManager/conf.d
                    DefaultDependencies=no
                    Requires=system.slice dev-sda17.device -.mount
                    Conflicts=umount.target
                    Before=umount.target local-fs.target
                    Before=network-pre.service
                    Wants=network-pre.service
                    
                    [Mount]
                    Where=/etc/NetworkManager/conf.d
                    What=/userdata/system-data/etc/NetworkManager/conf.d
                    Options=rw,relatime,upperdir=/userdata/system-data/etc/NetworkManager/conf.d,lowerdir=/etc/NetworkManager/conf.d,workdir=/userdata/system-data/tmp
                    Type=overlay
                    
                    [Install]
                    WantedBy=network.target
                    
                    • Created /userdata/system-data/etc/NetworkManager/conf.d/20-randomwifimacaddress.conf with
                    [device]
                    wifi.scan-rand-mac-address=yes
                    
                    [connection]
                    wifi.cloned-mac-address=random
                    
                    • Ran commands
                      • systemctl daemon-reload
                      • systemctl start etc-NetworkManager-conf.d.mount
                    • Verify it was correctly mounted and had the right files
                    • Ran commands
                      • systemctl enable etc-NetworkManager-conf.d.mount

                    Summary so far

                    • MAC Randomization works
                    • Wifi network scanning in the config app no longer works (and it does work using nmcli). If we disable the scan mac randomization then the config app works again.
                    G 1 Reply Last reply Reply Quote 0
                    • G Online
                      gpatel-fr @nielsbasjes
                      last edited by

                      @nielsbasjes said in Enabling MAC randomization:

                      Wifi network scanning in the config app no longer works

                      if you mean that the other networks don't appear when disabling and enabling wifi in settings/wifi, I don't repro. I can still see them. I think it has happened to me even without randomisation, the problem is a bit random itself πŸ™‚

                      nielsbasjesN 1 Reply Last reply Reply Quote 0
                      • nielsbasjesN Offline
                        nielsbasjes @gpatel-fr
                        last edited by

                        @gpatel-fr Correct, the list in the config UI does not show any of the available networks. On the FP5 we have it seems to be directly related to the scan randomisation setting.

                        G 1 Reply Last reply Reply Quote 0
                        • G Online
                          gpatel-fr @nielsbasjes
                          last edited by

                          @nielsbasjes

                          Since the grand total of devices in the test is 2 it's difficult to conclude anything.

                          Does it happen in any neighboroud ? I mean has it been only tested in an enterprise context with special enterprise wifi access point? which version of UT do you use ?

                          If the problem really interests you, you could enter the lxc android container (sudo lxc-attach --name android -- sh) and use logcat or take a look at the android wifi logs (/data/vendor/wifi/wlan_logs) while disabling/enabling the wifi in the Ui to see if any interesting error message does appear at this time.

                          1 Reply Last reply Reply Quote 0
                          • First post
                            Last post