I am not finding a way to find ALL IPv6 addresses. I do not really know what address I am looking for, I just want to see if a particular interface has had IPv6 traffic pass through it.
How do I create a filter to find ALL IPv6 address as source?
Nominating a forum post submits a request to create a new Knowledge Article based on the forum post topic. Please ensure your nomination includes a solution within the reply.
To just list up all IPv6 addresses configure on a box, I would do:
# config sys int (interface) # show | grep ip6-address
If you want to see what interface has what address, you can add '-f' option to grep.
I need this in logs, not on the device. I am trying to figure out if traffic passed through the device anytime in the past 24 hours.
Hi there,
You can use filter family(srcip)=6 for ipv6 traffic.
For example:
select devid, sum(coalesce(sentbyte, 0)+coalesce(rcvdbyte, 0)) as bandwidth from $log where $filter and (logflag&1>0) and family(srcip)=6 group by devid order by bandwidth desc
Regards,
hz
To just list up all IPv6 addresses configure on a box, I would do:
# config sys int (interface) # show | grep ip6-address
If you want to see what interface has what address, you can add '-f' option to grep.
Select Forum Responses to become Knowledge Articles!
Select the “Nominate to Knowledge Base” button to recommend a forum post to become a knowledge article.
User | Count |
---|---|
1720 | |
1093 | |
752 | |
447 | |
234 |
The Fortinet Security Fabric brings together the concepts of convergence and consolidation to provide comprehensive cybersecurity protection for all users, devices, and applications and across all network edges.
Copyright 2024 Fortinet, Inc. All Rights Reserved.