• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login

    Multicast does not work anymore

    Scheduled Pinned Locked Moved Solved
    FOG Problems
    3
    18
    2.4k
    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.
    • S
      Sebastian Roth Moderator
      last edited by

      @Tywyn FOG actually enumerates the IP addresses. So please run /sbin/ip -4 addr | awk -F'[ /]+' '/global/ {print $3}' and /sbin/ifconfig -a | awk -F'[ /:]+' '/(cast)/ {print $4}' and post output here.

      Maybe the network interface with the old IP is still up and running. Though I still wonder why FOG wouldn’t find the ens33 one.

      Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

      Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

      T 1 Reply Last reply Reply Quote 0
      • Wayne WorkmanW
        Wayne Workman @Tywyn
        last edited by

        @tywyn troubleshooting dictates we remove fog from the picture entirely and just test multicast on your network to determine if that works or not. Follow these instructions to do that https://wiki.fogproject.org/wik:i/index.php?title=Troubleshoot_Downloading_-_Multicast#Testing_Multicast
        Ask us for help if you need it.

        Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!
        Daily Clean Installation Results:
        https://fogtesting.fogproject.us/
        FOG Reporting:
        https://fog-external-reporting-results.fogproject.us/

        T 1 Reply Last reply Reply Quote 0
        • T
          Tywyn @Wayne Workman
          last edited by

          @wayne-workman

          Will run through this troubleshooting page. Have to install a second linux first 🙂

          1 Reply Last reply Reply Quote 0
          • T
            Tywyn
            last edited by

            Ok, setup a second linux machine and did the tests, that are described here:
            https://wiki.fogproject.org/wiki/index.php?title=Troubleshoot_Downloading_-_Multicast

            This test worked (I received on the second machine the fogsettings-file).

            Still the normal deploy via multicast stopps at the clonepart-screen.

            1 Reply Last reply Reply Quote 0
            • T
              Tywyn @Sebastian Roth
              last edited by

              @sebastian-roth said in Multicast does not work anymore:

              /sbin/ifconfig -a | awk -F’[ /:]+’ ‘/(cast)/ {print $4}’

              # /sbin/ip -4 addr | awk -F'[ /]+' '/global/ {print $3}'
              10.203.8.31
              192.168.100.1
              

              Yes, the old interface is still running. From the beginning we have had both ip-addresses. I just switched fog from one interface to the other one.

              The other command you postet just output twice “netmask”. So here is the full ifconfig.

              # /sbin/ifconfig -a 
              enp3s1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
                      inet 192.168.100.1  netmask 255.255.255.0  broadcast 192.168.100.255
                      inet6 fe80::a61b:9cdd:69ce:1d4b  prefixlen 64  scopeid 0x20<link>
                      ether 98:de:d0:1b:bd:d5  txqueuelen 1000  (Ethernet)
                      RX packets 83  bytes 7640 (7.4 KiB)
                      RX errors 0  dropped 0  overruns 0  frame 0
                      TX packets 180  bytes 17066 (16.6 KiB)
                      TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
              
              ens33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
                      inet 10.203.8.31  netmask 255.255.248.0  broadcast 10.203.15.255
                      inet6 fd00::4a79:ee8:ead6:2c9c  prefixlen 64  scopeid 0x0<global>
                      inet6 fe80::78d3:810d:4c36:e801  prefixlen 64  scopeid 0x20<link>
                      ether 00:25:11:5e:6a:86  txqueuelen 1000  (Ethernet)
                      RX packets 57921  bytes 7461829 (7.1 MiB)
                      RX errors 0  dropped 13  overruns 0  frame 0
                      TX packets 6536  bytes 1220003 (1.1 MiB)
                      TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
              
              lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
                      inet 127.0.0.1  netmask 255.0.0.0
                      inet6 ::1  prefixlen 128  scopeid 0x10<host>
                      loop  txqueuelen 1  (Lokale Schleife)
                      RX packets 1156  bytes 162929 (159.1 KiB)
                      RX errors 0  dropped 0  overruns 0  frame 0
                      TX packets 1156  bytes 162929 (159.1 KiB)
                      TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
              
              1 Reply Last reply Reply Quote 0
              • S
                Sebastian Roth Moderator
                last edited by

                @Tywyn What kind of Linux OS do you run? Seems like the ifconfig output is a different format to what we are used to.

                Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                1 Reply Last reply Reply Quote 0
                • T
                  Tywyn
                  last edited by

                  @Sebastian-Roth
                  It is a debian 9.

                  1 Reply Last reply Reply Quote 0
                  • S
                    Sebastian Roth Moderator
                    last edited by

                    @tywyn Alright, so it seems like the ifconfig output format changed. But FOG uses the /sbin/ip -4 ... command first and so it shouldn’t be an issue.

                    I have looked through the code thoroughly but still can’t think of why we only see 192.168.100.1 in the multicast log. We should see the other one as well! Possibly I’ve just looked it over and need to get a rest. Maybe someone else can see what I am missing here.

                    Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                    Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                    Wayne WorkmanW 1 Reply Last reply Reply Quote 0
                    • Wayne WorkmanW
                      Wayne Workman @Sebastian Roth
                      last edited by

                      @sebastian-roth We need to clearly define the problem. As I see it, there’s two local interfaces on this FOG Server.

                      • enp3s1 @ 192.168.100.1
                      • ens33 @ 10.203.8.31

                      And we are seeing multicast try to use enp3s1 instead of the one we see defined on the storage node in the picture ens33.

                      I remember @Tom-Elliott doing work on this, something about auto-selecting the interface if I remember right. But really, the interface that Multicast should use ought to be the defined interface in storage node settings.

                      @Tywyn you could try to turn the interface off and see if multicast works then? Try this command: ip link set enp3s1 down You can later turn it back on with ip link set enp3s1 up also a reboot would bring it back up too.

                      Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!
                      Daily Clean Installation Results:
                      https://fogtesting.fogproject.us/
                      FOG Reporting:
                      https://fog-external-reporting-results.fogproject.us/

                      1 Reply Last reply Reply Quote 0
                      • T
                        Tywyn
                        last edited by

                        So, now I did some tests. With all changes I everytime restarted the FOGMulticastManager.

                        ens33 remained the same, having ip 10.203.8.31

                        1. Changed enp3s1 to 10.203.80.4 -> Multicast workes
                        2. Deactived enp3s1 -> Multicast workes
                        3. Changed enp3s1 to 192.168.100.1 (same config, which did not work before) -> Multicast workes
                        4. Changed enp3s1 to 10.203.80.4 -> Multicast workes

                        So, in all 4 cases Multicast works now. Very strange.
                        I would consider the case closed for me, but it is anyway strange.

                        Maybe someone could try to have same scenario as I had to maybe reproduce the thing. In brief:

                        Version 1.4.4
                        Setup 2 NIC with IP-addresses A and B
                        define IP Address A for fog-server -> multicast worked
                        Change fog-server address to B -> multicast stopped working
                        Chance IP A into IP C -> multicast works again.

                        Thank you for you help, gentlemen!

                        1 Reply Last reply Reply Quote 0
                        • S
                          Sebastian Roth Moderator
                          last edited by

                          @Tywyn Great to hear you could make it work again. I have no idea what was wrong before. I have looked through the code many times and don’t know what could have gone wrong. Marking this solved now. Let us know if you see this again.

                          Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                          Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

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

                          276

                          Online

                          12.0k

                          Users

                          17.3k

                          Topics

                          155.2k

                          Posts
                          Copyright © 2012-2024 FOG Project