[Contents] [Prev] [Next] [Index] [Report an Error]


Configure Extended Ethernet VLAN Encapsulation with Remote and Proxy ARP Addresses

Specify the encapsulation for Ethernet Extended VLAN circuits with the encapsulation extended-vlan-tcc statement. This statement configures the entire physical device.

You must also enable VLAN tagging. Ethernet interfaces in VLAN mode can have multiple logical interfaces. For encapsulation type extended-vlan-tcc, all VLAN IDs from 0 through 4094 are valid, up to a maximum of 1024 VLANs.

To enable ARP functionality, configure the remote statement at the [edit interfaces interface-name unit unit-number family tcc] hierarchy level with either the MAC address or IP address of your Ethernet TCC neighbor. To complete the ARP setup, configure the proxy statement at the [edit interfaces interface-name unit unit-number family tcc] hierarchy level and specify the IP address of the non-Ethernet TCC neighbor.

[edit]
interfaces {
    EthernetType-fpc/pic/port {
        vlan-tagging;
        encapsulation extended-vlan-tcc;
            unit 0 {
                vlan-id 600;
                family tcc {
                    remote {                                        # Addresses associated with the Ethernet TCC neighbor.
                        mac-address mac-address;                                        # Select either a MAC address or an IP address.
                        inet-address inet-address;
                    }
                    proxy {                                        # Addresses belonging to the Non-Ethernet TCC neighbor.
                        inet-address inet-address;
                    }
                }
            }
        }
    }
}


[Contents] [Prev] [Next] [Index] [Report an Error]