How to enable ipv6 processing: Difference between revisions

From VoIPmonitor.org
(Add guide for enabling IPv6 support with migration warnings)
 
(Review: optimalizace diagramu, standardizace info boxů na šablony, přidána kategorie)
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
= How to Enable IPv6 Processing =
{{DISPLAYTITLE:How to Enable IPv6 Processing}}
[[Category:Configuration]]


This guide explains how to enable IPv6 support in VoIPmonitor, covering both new installations and existing IPv4-formatted databases.
This guide explains how to enable IPv6 support in VoIPmonitor, covering both new installations and existing IPv4-formatted databases.
<kroki lang="mermaid">
%%{init: {'flowchart': {'nodeSpacing': 15, 'rankSpacing': 25}}}%%
flowchart TD
    A[Enable IPv6?] --> B{New Install?}
    B -->|Yes| C["ipv6=yes in config"]
    C --> D[Start service]
    D --> E[Done]
    B -->|No| F{Large DB?}
    F -->|Yes| G[Fresh DB approach]
    G --> G1[Backup GUI config]
    G1 --> G2[Drop old DB]
    G2 --> G3["New DB + ipv6=yes"]
    G3 --> G4[Restore config]
    F -->|No| H[Migration]
    H --> I["1. ipv6_alter.sql"]
    I --> J["2. ipv6=yes on sensors"]
    J --> K[3. Restart sensors]
    K --> L[Verify capture]
</kroki>


== Quick Start for New Installations ==
== Quick Start for New Installations ==
Line 7: Line 30:
For a fresh VoIPmonitor installation, simply enable IPv6 before starting the service for the first time:
For a fresh VoIPmonitor installation, simply enable IPv6 before starting the service for the first time:


<code>ipv6=yes</code>
<syntaxhighlight lang="ini">
ipv6 = yes
</syntaxhighlight>


in your `voipmonitor.conf` file. The database will be created with IPv6 columns from the beginning.
Add this to your <code>/etc/voipmonitor.conf</code> file. The database will be created with IPv6 columns from the beginning.


== Enabling IPv6 on Existing Installations ==
== Enabling IPv6 on Existing Installations ==


If you have an existing VoIPmonitor installation that was set up with only IPv4 addresses, enabling IPv6 requires a database schema migration.
If you have an existing VoIPmonitor installation that was set up with only IPv4 addresses, enabling IPv6 requires a database schema migration. The correct order is critical: first prepare the database schema, then configure the sensors.
 
=== Step 1: Run Migration Script on Database/GUI Server ===


=== Step 1: Enable IPv6 in Configuration ===
The migration script <code>ipv6_alter.sql</code> must be run '''only on the database/GUI server''' to add the necessary IPv6 columns to your database tables. This step prepares the database schema before sensors start writing IPv6 data.


Add or modify the following line in `/etc/voipmonitor.conf`:
{{Warning|1=Backup your database before running any schema migration!}}


<code>ipv6=yes</code>
;Location
:Typically found in the scripts directory of your VoIPmonitor installation, such as <code>/usr/share/voipmonitor/scripts/</code> or <code>/var/www/html/scripts/</code>.


=== Step 2: Run the Migration Script ===
<syntaxhighlight lang="bash">
# On the database/GUI server only:
mysql -u root -p voipmonitor < /path/to/scripts/ipv6_alter.sql
</syntaxhighlight>


The migration script `ipv6_alter.sql` adds the necessary IPv6 columns to your database tables. Locate and run this script:
=== Step 2: Enable IPv6 in Configuration on Each Sensor ===


*Location:* Typically found in the scripts directory of your VoIPmonitor installation, such as `/usr/share/voipmonitor/scripts/` or `/var/www/html/scripts/`.
After the database schema is prepared, configure each sensor to write IPv6 data.


<b>Important: Backup your database before running any schema migration!</b>
Edit <code>/etc/voipmonitor.conf</code> on each sensor:


<code>mysql -u root -p voipmonitor &lt; /path/to/scripts/ipv6_alter.sql</code>
<syntaxhighlight lang="ini">
ipv6 = yes
</syntaxhighlight>


=== Step 3: Restart the Service ===
=== Step 3: Restart the Service on Each Sensor ===


<code>systemctl restart voipmonitor</code>
<syntaxhighlight lang="bash">
systemctl restart voipmonitor
</syntaxhighlight>


=== Verification ===
=== Verification ===
Line 39: Line 74:
After the service restarts, VoIPmonitor will begin logging IPv6 addresses for calls involving IPv6 endpoints. You can verify this by checking the CDR view for calls with IPv6 addresses.
After the service restarts, VoIPmonitor will begin logging IPv6 addresses for calls involving IPv6 endpoints. You can verify this by checking the CDR view for calls with IPv6 addresses.


== Important Considerations for Existing Databases <b>⚠️</b> ==
== Troubleshooting: Hostname Lookup Issues After Migration ==
 
=== B-side IP Addresses Not Resolving to Hostnames ===
 
After running the IPv6 migration script, you may find that B-side (Destination/Called party) IP addresses fail to resolve to hostnames in the GUI, while A-side (Source/Caller) hostnames display correctly.
 
If you run the <code>ipv6_alter.sql</code> migration script before saving the hostname table with IPv6-compatible data, the hostname table may contain IP addresses stored in the old integer format. This causes lookups to fail for B-side addresses.
 
{{Note|1='''Symptom:''' In the GUI CDR view, Called party IP addresses show only the IP address without hostname, while Caller party IP addresses display the hostname correctly.}}
 
To fix this issue, run the following SQL command on the VoIPMonitor database to correct the data format:
 
<syntaxhighlight lang="sql">
update hostname set ip=INET6_ATON(inet_ntoa(ip));
</syntaxhighlight>
 
This command converts the IP addresses in the hostname table from integer format to binary format compatible with IPv6 column types.
 
After running the command, refresh the GUI CDR view to verify that B-side hostnames now resolve correctly.
 
== Troubleshooting: IPv6 Traffic Not Being Captured ==
 
If you have enabled IPv6 and run the migration script, but VoIPmonitor is still not capturing IPv6 traffic, follow this troubleshooting checklist.
 
=== Verify Service Restart ===
 
Changes to <code>/etc/voipmonitor.conf</code> do not take effect until the service is restarted. Always restart after configuration changes:
 
<syntaxhighlight lang="bash">
systemctl restart voipmonitor
</syntaxhighlight>
 
=== Check Traffic Reaches the Interface ===
 
Before assuming a VoIPmonitor configuration issue, verify that IPv6 packets are actually arriving at the network interface. Use <code>tshark</code> or <code>tcpdump</code> to inspect raw traffic:
 
<syntaxhighlight lang="bash">
# Replace eth0 with your actual interface name
tshark -i eth0 -Y "sip || rtp" -n
</syntaxhighlight>
 
*  **If IPv6 packets appear here:** The issue is internal to VoIPmonitor (filters, configuration). Continue to the next steps.
*  **If NO IPv6 packets appear:** The issue is at the network/OS level:
    *  Switch mirroring (SPAN/RSPAN) may not include IPv6 traffic in the mirror session
    *  Tunnel endpoint may be misconfigured (for ERSPAN/GRE setups)
    *  Interface may not be in promiscuous mode: <code>ip link set eth0 promisc on</code>
 
=== Check BPF Filters ===
 
A common cause of missing IPv6 traffic is a restrictive <code>filter</code> directive in <code>/etc/voipmonitor.conf</code> that explicitly excludes IPv6.
 
*  **The Problem:** Standard BPF syntax often defaults to IPv4. For example, using <code>filter = ip proto udp</code> will explicitly drop IPv6 traffic (which uses the <code>ip6</code> protocol indicator).
*  **The Fix:**
    *  Use protocol-agnostic syntax instead. Change <code>ip proto udp</code> to just <code>udp</code> or <code>port 5060</code>.
    *  Temporarily disable the filter to test: comment out the filter line in <code>/etc/voipmonitor.conf</code>.
    *  Restart the service and check if IPv6 calls appear.
 
For more details on filter syntax, see [[Capture_rules|Capture Rules Documentation]].
 
=== Verify Interface Configuration ===
 
*  Specific interfaces are preferred over <code>interface = any</code> for reliability in promiscuous mode:
    <syntaxhighlight lang="ini">
interface = eth0
    </syntaxhighlight>
*  Ensure the interface is UP:
    <syntaxhighlight lang="bash">
ip link show eth0
    </syntaxhighlight>
 
=== Check Database Schema Migration ===
 
The <code>ipv6_alter.sql</code> script adds IPv6 columns to the database. If this migration is incomplete, IPv6 data cannot be stored.
 
Check the sensor logs during startup for database errors:
<syntaxhighlight lang="bash">
journalctl -u voipmonitor -n 50
</syntaxhighlight>
 
As an alternative verification, use the GUI repair tool (accessible from the web interface):
*  Log in to the GUI
*  Add <code>?check_tables=1</code> to the URL (e.g., <code>http://yourserver/?check_tables=1</code>)
*  This triggers a schema check and adds any missing columns required for IPv6 support
 
=== Review Logs ===
 
If traffic is visible in tshark but not in VoIPmonitor, check for performance warnings in the logs:
 
<syntaxhighlight lang="bash">
journalctl -u voipmonitor -f
</syntaxhighlight>
 
Look for warnings like:
*  <code>t0CPU</code> - sensor CPU usage is too high
*  <code>dropping packets</code> - packet loss due to overload
 
These indicate the sensor is overloaded, which typically affects random calls rather than a specific protocol like IPv6.
 
==== Common Root Causes ====
 
{| class="wikitable"
|-
! Symptom
! Common Cause
! Solution
|-
| No IPv6 traffic in VoIPmonitor or tshark
| Network mirroring/switch config not including IPv6
| Configure switch port mirroring to include IPv6 traffic
|-
| IPv6 traffic in tshark but not VoIPmonitor
| BPF filter is IPv4-only
| Remove or update <code>filter</code> directive to be protocol-agnostic
|-
| Database errors in logs
| Incomplete schema migration
| Re-run <code>ipv6_alter.sql</code> or use GUI <code>?check_tables=1</code>
|-
| Sporadic IPv6 captures
| Sensor overloaded, dropping packets
| Check <code>t0CPU</code> and <code>dropping packets</code> in logs; optimize sensor performance
|}
 
== Important Considerations for Existing Databases ==


=== Performance and Time ===
=== Performance and Time ===


* The migration process can be<b> very time-consuming</b> for large databases with millions of CDRs
* The migration process can be '''very time-consuming''' for large databases with millions of CDRs
* The `ipv6_alter.sql` script adds columns to multiple tables, which requires copying existing data
* The <code>ipv6_alter.sql</code> script adds columns to multiple tables, which requires copying existing data
* During migration, the database may experience performance degradation
* During migration, the database may experience performance degradation


Line 50: Line 208:


* Converting existing IPv4 entries cannot retroactively convert them to IPv6 format
* Converting existing IPv4 entries cannot retroactively convert them to IPv6 format
* Historical statistics and reports may display<b> inaccuracies</b> after the migration, as pre-migration data will have NULL values in IPv6 columns
* Historical statistics and reports may display '''inaccuracies''' after the migration, as pre-migration data will have NULL values in IPv6 columns
* Some aggregations or filters may behave unexpectedly with the mixed IPv4/IPv6 data
* Some aggregations or filters may behave unexpectedly with the mixed IPv4/IPv6 data


=== Recommended Approach: Fresh Database ===
=== Recommended Approach: Fresh Database ===


<b>For most production environments, we recommend starting with a fresh database instead of migrating:</b>
For most production environments, we recommend starting with a fresh database instead of migrating:


# Export or back up any data you need to preserve (raw PCAPs, reports, etc.)
# Export or back up any data you need to preserve (raw PCAPs, reports, etc.)
# Use the GUI's<b> "Tools → Backup & Restore → Configuration TABLES"</b> feature to save your GUI settings, alerts, user permissions, and other configuration
# Use the GUI's '''Tools → Backup & Restore → Configuration TABLES''' feature to save your GUI settings, alerts, user permissions, and other configuration
# Flush or drop the old VoIPmonitor database
# Flush or drop the old VoIPmonitor database
# Recreate it from scratch with `ipv6=yes` enabled
# Recreate it from scratch with <code>ipv6 = yes</code> enabled
# Restore your GUI configuration tables from the backup
# Restore your GUI configuration tables from the backup


Line 69: Line 227:
When resetting the database, you can preserve your GUI configuration:
When resetting the database, you can preserve your GUI configuration:


1. Access the VoIPmonitor GUI web interface
# Access the VoIPmonitor GUI web interface
2. Navigate to <b>Tools → Backup & Restore</b>
# Navigate to '''Tools → Backup & Restore'''
3. Select <b>Backup configuration TABLES</b>
# Select '''Backup configuration TABLES'''
4. Save the backup file to a safe location
# Save the backup file to a safe location
5. After creating the new database and ensuring `ipv6=yes` is set
# Create the new database with <code>ipv6 = yes</code> enabled
6. Use <b>Restore configuration TABLES</b> to reapply your settings
# Use '''Restore configuration TABLES''' to reapply your settings


This restores:
This restores:
Line 83: Line 241:
* Custom capture rules
* Custom capture rules


Note: This does <b>not</b> restore CDR data or PCAP files—those must be backed up separately if needed.
Note: This does '''not''' restore CDR data or PCAP files—those must be backed up separately if needed.


== Related Documentation ==
== Related Documentation ==


* [[Sniffer_configuration|Complete Configuration Reference]] for all voipmonitor.conf options
* [[Sniffer_configuration|Complete Configuration Reference]] for all voipmonitor.conf options
* [[FAQ|FAQ]] for common troubleshooting questions
* [[FAQ]] for common troubleshooting questions
* [[Data_Cleaning|Data Cleaning and Retention]] for managing database size and cleanup
* [[Data_Cleaning|Data Cleaning and Retention]] for managing database size and cleanup


== AI Summary for RAG ==
== AI Summary for RAG ==
'''Summary:''' This guide covers enabling IPv6 support in VoIPmonitor. For new installations, set `ipv6=yes` before first start. For existing systems with IPv4-only databases, run `/var/www/html/scripts/ipv6_alter.sql` to add IPv6 columns. The migration is time-consuming and may cause historical statistics inaccuracies. The recommended approach for most production environments is to flush the old database, start fresh with `ipv6=yes`, and use "Tools → Backup & Restore → Configuration TABLES" to preserve GUI settings.
'''Summary:''' This guide covers enabling IPv6 support in VoIPmonitor. For new installations, set <code>ipv6 = yes</code> in voipmonitor.conf before first start. For existing systems with IPv4-only databases, the correct order is: (1) Run <code>ipv6_alter.sql</code> migration script on the database/GUI server only, (2) Enable <code>ipv6 = yes</code> on each sensor, (3) Restart the service. The migration is time-consuming for large databases and may cause historical statistics inaccuracies. The recommended approach for production environments is to flush the old database, start fresh with IPv6 enabled, and use "Tools → Backup & Restore → Configuration TABLES" to preserve GUI settings.
'''Keywords:''' ipv6, ipv6_enable, migration, database migration, ipv6_alter.sql, historical data, configuration backup, gui settings, database flush
 
'''Keywords:''' ipv6, ipv6 enable, migration, database migration, ipv6_alter.sql, database server, gui server, sensor configuration, historical data, configuration backup, gui settings, troubleshooting, BPF filter, tshark, packet capture, hostname lookup, hostname table, INET6_ATON, INET_NTOA, B-side IP, destination IP
 
'''Key Questions:'''
'''Key Questions:'''
* How do I enable IPv6 on a new VoIPmonitor installation?
* How do I enable IPv6 on a new VoIPmonitor installation?
* What is the correct order to run ipv6_alter.sql and configure ipv6 = yes?
* Do I need to run ipv6_alter.sql on all sensors or just the database server?
* How do I enable IPv6 on an existing IPv4-only VoIPmonitor installation?
* How do I enable IPv6 on an existing IPv4-only VoIPmonitor installation?
* What is the `ipv6_alter.sql` migration script?
* What is the ipv6_alter.sql migration script?
* Why might migration be problematic for existing databases?
* Why might migration be problematic for existing databases?
* How can I preserve my GUI settings when recreating a database?
* Why is IPv6 traffic not being captured after enabling ipv6 = yes?
* What are the risks of running the IPv6 migration on a large database?
* How to troubleshoot IPv6 packet capture issues?
* How do BPF filters affect IPv6 traffic capture?
* How to use tshark to verify IPv6 packets reach the interface?
* B-side IP addresses not resolving to hostnames after IPv6 migration?
* How to fix hostname table data format after ipv6_alter.sql migration?

Latest revision as of 18:00, 6 January 2026


This guide explains how to enable IPv6 support in VoIPmonitor, covering both new installations and existing IPv4-formatted databases.

Quick Start for New Installations

For a fresh VoIPmonitor installation, simply enable IPv6 before starting the service for the first time:

ipv6 = yes

Add this to your /etc/voipmonitor.conf file. The database will be created with IPv6 columns from the beginning.

Enabling IPv6 on Existing Installations

If you have an existing VoIPmonitor installation that was set up with only IPv4 addresses, enabling IPv6 requires a database schema migration. The correct order is critical: first prepare the database schema, then configure the sensors.

Step 1: Run Migration Script on Database/GUI Server

The migration script ipv6_alter.sql must be run only on the database/GUI server to add the necessary IPv6 columns to your database tables. This step prepares the database schema before sensors start writing IPv6 data.

⚠️ Warning: Backup your database before running any schema migration!

Location
Typically found in the scripts directory of your VoIPmonitor installation, such as /usr/share/voipmonitor/scripts/ or /var/www/html/scripts/.
# On the database/GUI server only:
mysql -u root -p voipmonitor < /path/to/scripts/ipv6_alter.sql

Step 2: Enable IPv6 in Configuration on Each Sensor

After the database schema is prepared, configure each sensor to write IPv6 data.

Edit /etc/voipmonitor.conf on each sensor:

ipv6 = yes

Step 3: Restart the Service on Each Sensor

systemctl restart voipmonitor

Verification

After the service restarts, VoIPmonitor will begin logging IPv6 addresses for calls involving IPv6 endpoints. You can verify this by checking the CDR view for calls with IPv6 addresses.

Troubleshooting: Hostname Lookup Issues After Migration

B-side IP Addresses Not Resolving to Hostnames

After running the IPv6 migration script, you may find that B-side (Destination/Called party) IP addresses fail to resolve to hostnames in the GUI, while A-side (Source/Caller) hostnames display correctly.

If you run the ipv6_alter.sql migration script before saving the hostname table with IPv6-compatible data, the hostname table may contain IP addresses stored in the old integer format. This causes lookups to fail for B-side addresses.

ℹ️ Note: Symptom: In the GUI CDR view, Called party IP addresses show only the IP address without hostname, while Caller party IP addresses display the hostname correctly.

To fix this issue, run the following SQL command on the VoIPMonitor database to correct the data format:

update hostname set ip=INET6_ATON(inet_ntoa(ip));

This command converts the IP addresses in the hostname table from integer format to binary format compatible with IPv6 column types.

After running the command, refresh the GUI CDR view to verify that B-side hostnames now resolve correctly.

Troubleshooting: IPv6 Traffic Not Being Captured

If you have enabled IPv6 and run the migration script, but VoIPmonitor is still not capturing IPv6 traffic, follow this troubleshooting checklist.

Verify Service Restart

Changes to /etc/voipmonitor.conf do not take effect until the service is restarted. Always restart after configuration changes:

systemctl restart voipmonitor

Check Traffic Reaches the Interface

Before assuming a VoIPmonitor configuration issue, verify that IPv6 packets are actually arriving at the network interface. Use tshark or tcpdump to inspect raw traffic:

# Replace eth0 with your actual interface name
tshark -i eth0 -Y "sip || rtp" -n
  • **If IPv6 packets appear here:** The issue is internal to VoIPmonitor (filters, configuration). Continue to the next steps.
  • **If NO IPv6 packets appear:** The issue is at the network/OS level:
   *   Switch mirroring (SPAN/RSPAN) may not include IPv6 traffic in the mirror session
   *   Tunnel endpoint may be misconfigured (for ERSPAN/GRE setups)
   *   Interface may not be in promiscuous mode: ip link set eth0 promisc on

Check BPF Filters

A common cause of missing IPv6 traffic is a restrictive filter directive in /etc/voipmonitor.conf that explicitly excludes IPv6.

  • **The Problem:** Standard BPF syntax often defaults to IPv4. For example, using filter = ip proto udp will explicitly drop IPv6 traffic (which uses the ip6 protocol indicator).
  • **The Fix:**
   *   Use protocol-agnostic syntax instead. Change ip proto udp to just udp or port 5060.
   *   Temporarily disable the filter to test: comment out the filter line in /etc/voipmonitor.conf.
   *   Restart the service and check if IPv6 calls appear.

For more details on filter syntax, see Capture Rules Documentation.

Verify Interface Configuration

  • Specific interfaces are preferred over interface = any for reliability in promiscuous mode:
interface = eth0
  • Ensure the interface is UP:
ip link show eth0

Check Database Schema Migration

The ipv6_alter.sql script adds IPv6 columns to the database. If this migration is incomplete, IPv6 data cannot be stored.

Check the sensor logs during startup for database errors:

journalctl -u voipmonitor -n 50

As an alternative verification, use the GUI repair tool (accessible from the web interface):

  • Log in to the GUI
  • Add ?check_tables=1 to the URL (e.g., http://yourserver/?check_tables=1)
  • This triggers a schema check and adds any missing columns required for IPv6 support

Review Logs

If traffic is visible in tshark but not in VoIPmonitor, check for performance warnings in the logs:

journalctl -u voipmonitor -f

Look for warnings like:

  • t0CPU - sensor CPU usage is too high
  • dropping packets - packet loss due to overload

These indicate the sensor is overloaded, which typically affects random calls rather than a specific protocol like IPv6.

Common Root Causes

Symptom Common Cause Solution
No IPv6 traffic in VoIPmonitor or tshark Network mirroring/switch config not including IPv6 Configure switch port mirroring to include IPv6 traffic
IPv6 traffic in tshark but not VoIPmonitor BPF filter is IPv4-only Remove or update filter directive to be protocol-agnostic
Database errors in logs Incomplete schema migration Re-run ipv6_alter.sql or use GUI ?check_tables=1
Sporadic IPv6 captures Sensor overloaded, dropping packets Check t0CPU and dropping packets in logs; optimize sensor performance

Important Considerations for Existing Databases

Performance and Time

  • The migration process can be very time-consuming for large databases with millions of CDRs
  • The ipv6_alter.sql script adds columns to multiple tables, which requires copying existing data
  • During migration, the database may experience performance degradation

Impact on Historical Data

  • Converting existing IPv4 entries cannot retroactively convert them to IPv6 format
  • Historical statistics and reports may display inaccuracies after the migration, as pre-migration data will have NULL values in IPv6 columns
  • Some aggregations or filters may behave unexpectedly with the mixed IPv4/IPv6 data

Recommended Approach: Fresh Database

For most production environments, we recommend starting with a fresh database instead of migrating:

  1. Export or back up any data you need to preserve (raw PCAPs, reports, etc.)
  2. Use the GUI's Tools → Backup & Restore → Configuration TABLES feature to save your GUI settings, alerts, user permissions, and other configuration
  3. Flush or drop the old VoIPmonitor database
  4. Recreate it from scratch with ipv6 = yes enabled
  5. Restore your GUI configuration tables from the backup

This approach avoids migration time, eliminates potential data inconsistencies, and ensures clean IPv6 operation going forward.

Preserving GUI Settings

When resetting the database, you can preserve your GUI configuration:

  1. Access the VoIPmonitor GUI web interface
  2. Navigate to Tools → Backup & Restore
  3. Select Backup configuration TABLES
  4. Save the backup file to a safe location
  5. Create the new database with ipv6 = yes enabled
  6. Use Restore configuration TABLES to reapply your settings

This restores:

  • User accounts and permissions
  • Alert rules and email notifications
  • Dashboard configurations
  • GUI settings and preferences
  • Custom capture rules

Note: This does not restore CDR data or PCAP files—those must be backed up separately if needed.

Related Documentation

AI Summary for RAG

Summary: This guide covers enabling IPv6 support in VoIPmonitor. For new installations, set ipv6 = yes in voipmonitor.conf before first start. For existing systems with IPv4-only databases, the correct order is: (1) Run ipv6_alter.sql migration script on the database/GUI server only, (2) Enable ipv6 = yes on each sensor, (3) Restart the service. The migration is time-consuming for large databases and may cause historical statistics inaccuracies. The recommended approach for production environments is to flush the old database, start fresh with IPv6 enabled, and use "Tools → Backup & Restore → Configuration TABLES" to preserve GUI settings.

Keywords: ipv6, ipv6 enable, migration, database migration, ipv6_alter.sql, database server, gui server, sensor configuration, historical data, configuration backup, gui settings, troubleshooting, BPF filter, tshark, packet capture, hostname lookup, hostname table, INET6_ATON, INET_NTOA, B-side IP, destination IP

Key Questions:

  • How do I enable IPv6 on a new VoIPmonitor installation?
  • What is the correct order to run ipv6_alter.sql and configure ipv6 = yes?
  • Do I need to run ipv6_alter.sql on all sensors or just the database server?
  • How do I enable IPv6 on an existing IPv4-only VoIPmonitor installation?
  • What is the ipv6_alter.sql migration script?
  • Why might migration be problematic for existing databases?
  • Why is IPv6 traffic not being captured after enabling ipv6 = yes?
  • How to troubleshoot IPv6 packet capture issues?
  • How do BPF filters affect IPv6 traffic capture?
  • How to use tshark to verify IPv6 packets reach the interface?
  • B-side IP addresses not resolving to hostnames after IPv6 migration?
  • How to fix hostname table data format after ipv6_alter.sql migration?