Check the Configuration of Promiscuous Mode on an ATM2 IQ Interface
Purpose
If your configuration of promiscuous mode is incorrect, the logical interface is not created. ATM2 IQ interfaces must have the
pic-type atm2statement included if you are including thepromiscuous-modestatement in the configuration.Action
To check that promiscuous mode is configured correctly on your ATM2 IQ interface, follow these steps:
- Check the configuration with the following JUNOS CLI operational mode command:
user@host>show configuration interfaces at-fpc/pic/portFor example, the following output shows promiscuous mode incorrectly configured on an ATM2 IQ interface:
user@host>show configuration interfaces at-1/2/0encapsulation atm-ccc-cell-relay;atm-options {promiscuous-mode {<<< the pic-type statement is missingvpi 1;}}unit 1 {vpi 1;}
- Check if the logical interface unit 1 is created with the following command:
user@host>run show interfaces terseat-fpc/pic/portFor example, the following output shows that the link is not created:
user@host#run show interfaces terse at-0/1/0Interface Admin Link Proto Local Remoteat-0/1/0 up up<<< missing logical interface at-0/1/0.1
- Include the
pic-typestatement in the configuration:user@host>edituser@host#set interfacesinterface-nameatm-options pic-type atm2user@host#showuser@host#commitFor example, the following output shows promiscuous mode correctly configured on an ATM2 IQ interface:
user@host>show configuration interfaces at-0/1/0encapsulation atm-ccc-cell-relay;atm-options {pic-type atm2;promiscuous-mode {vpi 1;}}unit 1 {vpi 1;}
- Check that the logical interface is created with the following command:
user@host>run show interfaces terseat-fpc/pic/portFor example, the following output shows that the link is created:
user@host#run show interfaces terse at-0/1/0Interface Admin Link Proto Local Remoteat-0/1/0 up upat-0/1/0.1 up up cccWhat It Means
The steps above show that initially the logical interface
at-0/1/0.1is not created because thepic-typestatement is not included with thepromiscuous-modestatement in the ATM2 IQ configuration. When that statement is included, the logical interface is created.