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

    2 bonded nics working slowing down imaging speed

    Scheduled Pinned Locked Moved Solved
    FOG Problems
    5
    19
    4.9k
    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.
    • M
      mitzayapa
      last edited by

      Whould any of you be kind and paste a corrected interfaces file for my configuration?

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

        I’d suggest this config:

        auto em1
        iface em1 inet manual
          bond-master bond0
          bond-primary em1
        
        auto p255p1
        iface p255p1 inet manual
          bond-master bond0
        
        auto bond0
        iface bond0 inet static
          bond-slaves em1 p255p1
          bond-mode 2
          bond-miimon 100
          ...
        

        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

        george1421G 1 Reply Last reply Reply Quote 0
        • george1421G
          george1421 Moderator @Sebastian Roth
          last edited by

          @Sebastian-Roth In some of the ubuntu examples they always use bond-slaves none. Not sure why. I would agree with your setting.

          As for the primary, I still think I would use the onboard nic for primary, but again I don’t know what a p255p network interface is. Also if the xor mode (bond mode 2) (not really intelligent but fast) isn’t properly sharing the bandwidth during 3 or more installs at the same time, I would switch to bond-mode 5 or setup lacp on the switch and use bond-mode 4.

          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!

          1 Reply Last reply Reply Quote 0
          • M
            mitzayapa
            last edited by

            The p255p is the second NIC I added to the server.

            em1 - built in
            p255p - 1gigabit ethernet card

            auto em1
            iface em1 inet manual
              bond-master bond0
              bond-primary em1
            
            auto p255p1
            iface p255p1 inet manual
              bond-master bond0
            
            auto bond0
            iface bond0 inet static
              bond-slaves em1 p255p1
              bond-mode 2
              bond-miimon 100
              ... -> is there missing something or thats all ?
            george1421G 1 Reply Last reply Reply Quote 0
            • J
              jbsclm Developer
              last edited by

              I used round robin, it gave both speed and resilience, however that was on an unmanaged switch.

              1 Reply Last reply Reply Quote 0
              • george1421G
                george1421 Moderator @mitzayapa
                last edited by george1421

                @mitzayapa Sorry I was reading fast before I started my commute into work. I read p255p1 as your primary interface. I thought it was strange, but I’ve seen some pretty strange stuff in the last few days.

                As for the bonding, what you have is correct, you still need to assign the normal IP address stuff to the bond0 interface.

                At the very least these:

                address 192.168.137.51
                netmask 255.255.255.0
                gateway 192.168.137.1
                

                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!

                1 Reply Last reply Reply Quote 0
                • M
                  mitzayapa
                  last edited by

                  This is what i should have then ?

                  # This file describes the network interfaces available on your system
                  # and how to activate them. For more information, see interfaces(5).
                  # The loopback network interface
                  
                  auto lo
                  iface lo inet loopback
                  
                  # The primary network interface
                  
                  auto em1
                  iface em1 inet manual
                    bond-master bond0
                    bond-primary em1
                  
                  auto p255p1
                  iface p255p1 inet manual
                    bond-master bond0
                  
                  auto bond0
                  iface bond0 inet static
                    bond-slaves em1 p255p1
                    bond-mode 2
                    bond-miimon 100
                    address 192.168.137.51
                    netmask 255.255.255.0
                    gateway 192.168.137.1
                  
                  george1421G ch3iC 2 Replies Last reply Reply Quote 0
                  • george1421G
                    george1421 Moderator @mitzayapa
                    last edited by george1421

                    @mitzayapa I agree that looks reasonable. Restart the network service and see what you have with ip addr show

                    I do have to say I’ve only seen where they bond like adapters. This should work but now you have two network drivers loaded. Again not a problem, just not standard.

                    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!

                    1 Reply Last reply Reply Quote 0
                    • ch3iC
                      ch3i Moderator @mitzayapa
                      last edited by ch3i

                      @mitzayapa said:

                      This is what i should have then ?

                      # This file describes the network interfaces available on your system
                      # and how to activate them. For more information, see interfaces(5).
                      # The loopback network interface
                      
                      auto lo
                      iface lo inet loopback
                      
                      # The primary network interface
                      
                      auto em1
                      iface em1 inet manual
                        bond-master bond0
                        bond-primary em1
                      
                      auto p255p1
                      iface p255p1 inet manual
                        bond-master bond0
                      
                      auto bond0
                      iface bond0 inet static
                        bond-slaves em1 p255p1
                        bond-mode 2
                        bond-miimon 100
                        address 192.168.137.51
                        netmask 255.255.255.0
                        gateway 192.168.137.1
                      

                      It’s seem to be good, it’s not necessary to configure your p255p1 and em1 interfaces :

                      # This file describes the network interfaces available on your system
                      # and how to activate them. For more information, see interfaces(5).
                      # The loopback network interface
                      
                      auto lo
                      iface lo inet loopback
                      
                      # The primary network interface
                      
                      #auto em1
                      #iface em1 inet manual
                      #  bond-master bond0
                       # bond-primary em1
                      
                      #auto p255p1
                      #iface p255p1 inet manual
                      #  bond-master bond0
                      
                      auto bond0
                      iface bond0 inet static
                        bond-slaves em1 p255p1
                        bond-mode 2
                        bond-miimon 100
                        address 192.168.137.51
                        netmask 255.255.255.0
                        gateway 192.168.137.1
                      
                      1 Reply Last reply Reply Quote 1
                      • M
                        mitzayapa
                        last edited by mitzayapa

                        Without configuring the p255p1 and em1 the network ainºt working.(as i have no connection to server)

                        It works like this :

                        auto em1
                        iface em1 inet manual
                          bond-master bond0
                          bond-primary em1
                        
                        auto p255p1
                        iface p255p1 inet manual
                          bond-master bond0
                        
                        auto bond0
                        iface bond0 inet static
                          bond-slaves em1 p255p1
                          bond-mode 2
                          bond-miimon 100
                          address 192.168.137.51
                          netmask 255.255.255.0
                          gateway 192.168.137.1```
                        
                        and this is what i get :
                        
                        ```root@fog1:~# ip addr show
                        1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default
                            link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
                            inet 127.0.0.1/8 scope host lo
                               valid_lft forever preferred_lft forever
                            inet6 ::1/128 scope host
                               valid_lft forever preferred_lft forever
                        2: p255p1: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc mq master bond0 state UP group default qlen 1000
                            link/ether e8:39:35:63:fa:bb brd ff:ff:ff:ff:ff:ff
                        3: em1: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast master bond0 state UP group default qlen 1000
                            link/ether e8:39:35:63:fa:bb brd ff:ff:ff:ff:ff:ff
                        4: bond0: <BROADCAST,MULTICAST,MASTER,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default
                            link/ether e8:39:35:63:fa:bb brd ff:ff:ff:ff:ff:ff
                            inet 192.168.137.51/24 brd 192.168.137.255 scope global bond0
                               valid_lft forever preferred_lft forever
                            inet6 fe80::ea39:35ff:fe63:fabb/64 scope link tentative dadfailed
                               valid_lft forever preferred_lft forever```
                        1 Reply Last reply Reply Quote 1
                        • 1 / 1
                        • First post
                          Last post

                        160

                        Online

                        12.1k

                        Users

                        17.3k

                        Topics

                        155.4k

                        Posts
                        Copyright © 2012-2024 FOG Project