Description

A commit error was encountered when attempting to apply settings related to VOIP VLANs. The error indicated a conflict between the VOIP VLAN and the data VLAN configured on the same interface. This issue arose due to the use of the same VLAN ID for both voice and data traffic on the ge-x/x/x interface.

Symptoms

[edit switch-options voip]

  'interface'

    VOIP vlan and the vlan configured on access interface should be different!

error: configuration check-out failed

 

set interfaces ge-x/x/x unit x family ethernet-switching vlan members vlan400_voice

set switch-options voip interfacege-x/x/x.x vlan400_voice

 

The commit process fails, preventing the successful application of the configuration changes.

Solution

Upon investigation, it was observed that the customer had configured the same VLAN ID (v400_voice) for both the voice VLAN and the data VLAN on the ge-x/x/x interface. This configuration is not allowed, as the voice and data VLANs must be distinct. The data VLAN configuration was modified to use a different VLAN ID (v300_data), ensuring that the voice and data VLANs were distinct. After this modification, the configuration was successfully committed without any errors.

 

set interfaces ge-x/x/x unit x family ethernet-switching vlan members v300_data

set switch-options voip interfacege-x/x/x.x vlan400_voice

 

Modification History

2024-08-18 : Article Created