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

    Unknown DHCP ping

    Scheduled Pinned Locked Moved General pfSense Questions
    36 Posts 6 Posters 656 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.
    • johnpozJ
      johnpoz LAYER 8 Global Moderator @deleted
      last edited by

      @deleted it really shouldn't be hard to track down.

      You should be able to look in your NDP table and find that link-local address fe80::3eec:efff:fe34:3623

      This will give you the mac address, you should then be able to look in your ARP table for that mac, and know what IPv4 address the device has.

      find.jpg

      Another option would be packet capture (diag menu) and sniff for IPv6 going to [ff02::1:2]:547, this will then give you the mac address of the device sending it.

      An intelligent man is sometimes forced to be drunk to spend time with his fools
      If you get confused: Listen to the Music Play
      Please don't Chat/PM me for help, unless mod related
      SG-4860 24.11 | Lab VMs 2.7.2, 24.11

      1 Reply Last reply Reply Quote 2
      • D
        deleted
        last edited by

        I just wanted to take care of my log entry and assign the IPv6 address in the NDP table.
        However, it is not listed. However, log entries are available.

        Where does this IP come from?

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

          The fe80 link-local address?

          It's auto generated at the client based on the MAC address of the NIC.

          1 Reply Last reply Reply Quote 0
          • patient0P
            patient0 @deleted
            last edited by

            @deleted said in Unknown DHCP ping:

            However, it is not listed. However, log entries are available.

            Does the log entry mention on what interface in source is on?

            D 1 Reply Last reply Reply Quote 0
            • D
              deleted @patient0
              last edited by

              @patient0

              Yes:
              Source: [fe80::3eec:efff:fe34:3623]:546
              Target: [ff02::1:2]:547

              Always on the same NIC every 2 minutes.
              It is also the only one of all where the entry is created.

              patient0P 1 Reply Last reply Reply Quote 0
              • patient0P
                patient0 @deleted
                last edited by

                @deleted said in Unknown DHCP ping:

                Yes:

                Is it on WAN or LAN? And did you check to make sure it's not an pfSense interface itself (Status / Interfaces)

                D 1 Reply Last reply Reply Quote 0
                • D
                  deleted @patient0
                  last edited by

                  @patient0

                  It is Lan.
                  Yes, I have checked it. The NICs are all present in the NDP table
                  and have different IPs. But not this one. I can't assign this IP anywhere.

                  In the meantime I have checked pretty much every point once to see if the IP can be found.

                  When I track this via diagnostics / packet recording, I get an info:

                  option-request DNS-server DNS-search-list
                  

                  I have the DNS server active and don't use any other servers.
                  I checked it immediately but couldn't find anything either.

                  P johnpozJ 2 Replies Last reply Reply Quote 0
                  • P
                    Patch @deleted
                    last edited by

                    @deleted the pfsense package nmap may give you a hint on what it is.

                    1 Reply Last reply Reply Quote 0
                    • johnpozJ
                      johnpoz LAYER 8 Global Moderator @deleted
                      last edited by johnpoz

                      @deleted said in Unknown DHCP ping:

                      option-request DNS-server DNS-search-list

                      Huh? I showed you how to find the actual mac address of the device. Not sure what your looking up, you can not lookup a link-local address to find the maker, like you can from a mac address.

                      See in my example where it says cisco on that a4:9b:cd address..

                      You can look them up on plenty of websites..

                      https://maclookup.app/search/result?mac=a4:9b:cd

                      If your not seeing this link-local address in your NDP table, then sniff, ie do a packet capture.. It will show you the mac address.

                      That traffic is a dhcpv6.. https://en.wikipedia.org/wiki/DHCPv6

                      Once you know the mac address, you should be able to get a clue to what device is asking for dhcpv6.

                      edit: here is a packet capture showing the mac, set your view options to full, set the port to 547

                      packetcapturedhcpv6.jpg

                      If I lookup the mac of the sender, that b8:27:eb I see that is my raspberry pi

                      https://maclookup.app/search/result?mac=b8:27:eb

                      Those dns-server dns-search-list are options the dhcpv6 client is asking for.. See on the last line of sniff above you see the options, mine is also asking for sntp and ntp servers..

                      edit2: Now to turn ipv6 off on my raspberry pi

                      I set
                      net.ipv6.conf.all.disable_ipv6 = 1

                      in
                      /etc/sysctl.conf

                      I also set
                      service procps reload

                      in
                      /etc/rc.local

                      Then did a
                      sysctl -p

                      now if I look on my pi you will notice it no longer has a link-local IPv6 address even

                      root@pihole:/home/pi# ifconfig
                      eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
                              inet 192.168.3.10  netmask 255.255.255.0  broadcast 192.168.3.255
                              ether b8:27:eb:38:d8:4d  txqueuelen 1000  (Ethernet)
                              RX packets 1910131  bytes 194224986 (185.2 MiB)
                              RX errors 0  dropped 0  overruns 0  frame 0
                              TX packets 1909435  bytes 257026039 (245.1 MiB)
                              TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
                      

                      Which before it did, and notice in my sniff above that was the link-local sending the request for dhcpv6

                      root@pihole:/home/pi# ifconfig
                      eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
                              inet 192.168.3.10  netmask 255.255.255.0  broadcast 192.168.3.255
                              inet6 fe80::257a:b357:6bd1:841c  prefixlen 64  scopeid 0x20<link>
                              ether b8:27:eb:38:d8:4d  txqueuelen 1000  (Ethernet)
                              RX packets 1909789  bytes 194202989 (185.2 MiB)
                              RX errors 0  dropped 0  overruns 0  frame 0
                              TX packets 1909069  bytes 256976581 (245.0 MiB)
                              TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
                      

                      An intelligent man is sometimes forced to be drunk to spend time with his fools
                      If you get confused: Listen to the Music Play
                      Please don't Chat/PM me for help, unless mod related
                      SG-4860 24.11 | Lab VMs 2.7.2, 24.11

                      1 Reply Last reply Reply Quote 1
                      • D
                        deleted
                        last edited by deleted

                        Hi @johnpoz, thanks for your detailed reply with all the info.

                        I understand so far.
                        I also looked there as you did on the screenshot.

                        However, just as you read, the “option-request DNS server ...” entry and thought it was an attack.

                        However, I have now been able to find out the MAC and as suspected it is the pfsense itself.

                        I double-checked everything directly in the bios of the server.
                        No DHCP is running. Everything is static or off.

                        I have also looked through every menu of the sense to see if I have overlooked anything.
                        However, no option was found.

                        However, you are right, I know the option "net.ipv6.conf.all.disable_ipv6" as well.
                        Would it be a solution if I put the option in the advanced settings / system fine-tuning?

                        Thanks again for the very detailed answer.
                        (Unfortunately I don't have enough points and a thumbs up to give).

                        johnpozJ 1 Reply Last reply Reply Quote 2
                        • johnpozJ
                          johnpoz LAYER 8 Global Moderator @deleted
                          last edited by johnpoz

                          @deleted I wouldn't try that with pfsense, it runs on freebsd - which is sim to linux, but not exactly.. So it might be a bit different.

                          Where exactly are you seeing that? I assumed it was in your firewall log? So its pfsense asking for IPv6 via dhcp on its wan?? if so just set pfsense wan to not do IPv6 on its wan..

                          wanipv6.jpg

                          Pfsense shouldn't log that it trying for dhcp - unless you unchecked the ipv6 box..

                          ipv6log.jpg

                          If you uncheck that box, then yeah it creates block rules for anything IPv6. But just setting none on your wan interface for ipv6 would stop it from asking for IPv6 via dhcpv6

                          An intelligent man is sometimes forced to be drunk to spend time with his fools
                          If you get confused: Listen to the Music Play
                          Please don't Chat/PM me for help, unless mod related
                          SG-4860 24.11 | Lab VMs 2.7.2, 24.11

                          1 Reply Last reply Reply Quote 0
                          • D
                            deleted
                            last edited by

                            This is the entry in the log:
                            Screenshot_20250518_143021.png

                            I have configured my interface exactly as shown in your picture.
                            Except that it has a static IPv4.
                            The Allow IPv6 field is deactivated.

                            The settings were already set as they were, I didn't update anything.

                            Or is it in FreeBSD?

                            johnpozJ 1 Reply Last reply Reply Quote 0
                            • johnpozJ
                              johnpoz LAYER 8 Global Moderator @deleted
                              last edited by johnpoz

                              @deleted so its not pfsense sending it.. Why would the firewall log outgoing traffic from pfsense?

                              I have now been able to find out the MAC and as suspected it is the pfsense itself.

                              The lan side interfaces should not be requesting IPv6 unless you had them set for dhcp for IPv6, the IPv6 setting on your lan side interfaces should be NONE as well.

                              When you disable IPv6 it does create block rules - that could be blocking outbound? But an outbound block log normally shows direction arrow..

                              outbound.jpg

                              Please show us how you determined the mac address of this traffic and that it pfsense itself. If the interface for IPv6 is set to none - it wouldn't be sending dhcpv6 requests.

                              I do not disable IPv6 because I do use it for testing.. By default IPv6 is allowed - ie that check box is checked.. So I am not exactly sure the rules it creates when you uncheck it.. But it would seem odd that it would block outbound traffic and not log that it is outbound traffic like the above picture, where my outbound rule blocks rfc1918 going out my wan.

                              But if an interface is set to none for IPv6 - it sure wouldn't be sending dhcpv6 requests.. I doubt its pfsense mac address sending that to be honest.. Unless you have the lan01 interface set to dhcpv6.. And even if you did I would think the block all ipv6 if set for outbound blocking it would log the direction, which from what you posted that is an inbound block.. So into the lan01 interface, not traffic leaving the interface into the lan01 network.

                              edit: so I disabled IPv6 by unchecking the box, and it does create an outbound rule

                              You can view the full ruleset
                              https://docs.netgate.com/pfsense/en/latest/firewall/pf-ruleset.html

                              Not all rules are shown in the gui, there are some hidden rules to see you have to use the above linked instructions.

                              # Block all IPv6
                              block in  quick inet6 all ridentifier 1000000003 label "Block all IPv6"
                              block out  quick inet6 all ridentifier 1000000004 label "Block all IPv6"
                              

                              But as you see if the pfsense interface was sending it - it would show that it was in the outbound direction.

                              I enabled dhcp for ipv6 on my test interface - and you can see pfsense with default logging on, logs that in the outbound direction, since your log does not show this - then the traffic was inbound into your lan01 interface - and not from pfsense itself

                              blockipv6.jpg

                              And you can also tell that was inbound because of the rule ID, 1000000003 vs the 4 one which is the outbound rule.

                              An intelligent man is sometimes forced to be drunk to spend time with his fools
                              If you get confused: Listen to the Music Play
                              Please don't Chat/PM me for help, unless mod related
                              SG-4860 24.11 | Lab VMs 2.7.2, 24.11

                              1 Reply Last reply Reply Quote 2
                              • D
                                deleted
                                last edited by

                                @johnpoz
                                I really can't tell you what's happening here.

                                But yes, you're right, I can remember the arrows.

                                But I haven't seen any for a long time.
                                Neither in my pfSense-dark-BETA theme nor in the original pfSense theme. (Just looked.)
                                However, I perceived this more as a design change and don't attach so much importance to whether there is an arrow or not.

                                Which version of pfSense are you using?
                                I use pfSense+ ver. 24.11

                                I have made a larger section so that you can see that it is the same view:
                                Screenshot_20250518_170459.png

                                I ended up doing exactly the same as you;
                                Screenshot 2025-05-18 at 17-16-10 Diagnose Paketmitschnitt - sense.deleted.intra.png

                                I then searched for the MAC in the ARP table and was able to assign the IP of the BNC access of the server on which pfSense is running.

                                As I said, I have checked the bios several times but I have no IPv6 or DHCP running which could generate the entry.

                                johnpozJ 1 Reply Last reply Reply Quote 0
                                • johnpozJ
                                  johnpoz LAYER 8 Global Moderator @deleted
                                  last edited by johnpoz

                                  @deleted Super Micro Computer, Inc. is what that 3c:ec:ef shows up as.. That is what your pfsense is running on.. Show the mac address on your pfsense.

                                  ifconfig..

                                  I am running 24.11+ as well.

                                  Is pfsense running on a vm where it would be using the same mac as the host? That traffic is blocked inbound into the interface - it is not pfsense sending it - it can not send inbound traffic into its own interface.

                                  An intelligent man is sometimes forced to be drunk to spend time with his fools
                                  If you get confused: Listen to the Music Play
                                  Please don't Chat/PM me for help, unless mod related
                                  SG-4860 24.11 | Lab VMs 2.7.2, 24.11

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

                                    Smells like IPMI set to use a shared NIC.

                                    johnpozJ 1 Reply Last reply Reply Quote 1
                                    • johnpozJ
                                      johnpoz LAYER 8 Global Moderator @stephenw10
                                      last edited by johnpoz

                                      @stephenw10 yup another possibility for sure.

                                      edit: Odd that your seeing inbound port 0.. I don't think I have seen traffic like that.. That source IP is cloudvps-net??

                                      An intelligent man is sometimes forced to be drunk to spend time with his fools
                                      If you get confused: Listen to the Music Play
                                      Please don't Chat/PM me for help, unless mod related
                                      SG-4860 24.11 | Lab VMs 2.7.2, 24.11

                                      1 Reply Last reply Reply Quote 0
                                      • D
                                        deleted
                                        last edited by

                                        @johnpoz

                                        Yes, it runs on a SuperMicro 1537.
                                        However, it is not a VM or similar, but a dedicated 1U server.

                                        I even bought it from Netgate in the store, so I didn't use my own hardware in this case.

                                        johnpozJ 1 Reply Last reply Reply Quote 0
                                        • johnpozJ
                                          johnpoz LAYER 8 Global Moderator @deleted
                                          last edited by johnpoz

                                          @deleted what cables are plugged in exactly from the pfsense box? is there an ipmi interface that is plugged into your lan switch?

                                          please show your ipconfig on pfsense.. Your not going to see inbound into your lan01 interface - unless for example you have some sort of shared ipmi interface that shares the same mac but has its own port.

                                          Or maybe its off by 1 on the mac..

                                          example - my pfsense interfaces - the mac is off by 1 for each interface

                                          igb2: flags=1008843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST,LOWER_UP> metric 0 mtu 1500
                                                  description: WLAN
                                                  options=4e120bb<RXCSUM,TXCSUM,VLAN_MTU,VLAN_HWTAGGING,JUMBO_MTU,VLAN_HWCSUM,WOL_MAGIC,VLAN_HWFILTER,RXCSUM_IPV6,TXCSUM_IPV6,HWSTATS,MEXTPG>
                                                  ether 00:08:a2:0c:e6:20
                                                  inet 192.168.2.253 netmask 0xffffff00 broadcast 192.168.2.255
                                                  inet6 fe80::208:a2ff:fe0c:e620%igb2 prefixlen 64 scopeid 0x3
                                                  media: Ethernet autoselect (1000baseT <full-duplex>)
                                                  status: active
                                                  nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
                                          igb3: flags=1008843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST,LOWER_UP> metric 0 mtu 1500
                                                  description: DMZ
                                                  options=4e120bb<RXCSUM,TXCSUM,VLAN_MTU,VLAN_HWTAGGING,JUMBO_MTU,VLAN_HWCSUM,WOL_MAGIC,VLAN_HWFILTER,RXCSUM_IPV6,TXCSUM_IPV6,HWSTATS,MEXTPG>
                                                  ether 00:08:a2:0c:e6:21
                                                  inet 192.168.3.253 netmask 0xffffff00 broadcast 192.168.3.255
                                                  inet6 fe80::208:a2ff:fe0c:e621%igb3 prefixlen 64 scopeid 0x4
                                                  media: Ethernet autoselect (1000baseT <full-duplex>)
                                                  status: active
                                                  nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
                                          igb4: flags=1008843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST,LOWER_UP> metric 0 mtu 1500
                                                  description: NVR
                                                  options=4e120bb<RXCSUM,TXCSUM,VLAN_MTU,VLAN_HWTAGGING,JUMBO_MTU,VLAN_HWCSUM,WOL_MAGIC,VLAN_HWFILTER,RXCSUM_IPV6,TXCSUM_IPV6,HWSTATS,MEXTPG>
                                                  ether 00:08:a2:0c:e6:22
                                                  inet 192.168.110.253 netmask 0xffffff00 broadcast 192.168.110.255
                                                  inet6 fe80::208:a2ff:fe0c:e622%igb4 prefixlen 64 scopeid 0x5
                                                  media: Ethernet autoselect (1000baseT <full-duplex>)
                                                  status: active
                                                  nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
                                          igb5: flags=1008843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST,LOWER_UP> metric 0 mtu 1500
                                                  description: W_Roku
                                                  options=4e120bb<RXCSUM,TXCSUM,VLAN_MTU,VLAN_HWTAGGING,JUMBO_MTU,VLAN_HWCSUM,WOL_MAGIC,VLAN_HWFILTER,RXCSUM_IPV6,TXCSUM_IPV6,HWSTATS,MEXTPG>
                                                  ether 00:08:a2:0c:e6:23
                                                  inet 192.168.7.253 netmask 0xffffff00 broadcast 192.168.7.255
                                                  inet6 fe80::208:a2ff:fe0c:e623%igb5 prefixlen 64 scopeid 0x6
                                                  media: Ethernet autoselect (1000baseT <full-duplex>)
                                                  status: active
                                                  nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
                                          

                                          So really like to see which interface of pfsense has that mac 3c:ec:ef:34:36:23

                                          An intelligent man is sometimes forced to be drunk to spend time with his fools
                                          If you get confused: Listen to the Music Play
                                          Please don't Chat/PM me for help, unless mod related
                                          SG-4860 24.11 | Lab VMs 2.7.2, 24.11

                                          1 Reply Last reply Reply Quote 0
                                          • D
                                            deleted
                                            last edited by

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