Hi WDNJSQ,
If you want the traffic from L2VPN goes into L3VPN, you have to use Virtual-Ethernet port instead of the Physical port. For example, the traffic from L2VPN in Virtual-Ethernet0/2/0.204 (vlan-type dot1q 204) will go into the L3VPN in Virtual-Ethernet0/2/1.204(vlan-type dot1q 204), because their main ports Virtual-Ethernet0/2/0(l2-terminate) and Virtual-Ethernet0/2/1(l3-terminate)are bind with the same “ve-group 1”
#
interface GigabitEthernet0/2/1.203
undo l2 binding vsi XXX
#
interface GigabitEthernet0/2/1.204
undo ip binding vpn-instance YYY
#
interface Virtual-Ethernet0/2/0
ve-group 1 l2-terminate
quit
#
interface Virtual-Ethernet0/2/0.204
vlan-type dot1q 204
description XXX L2VPN to AR1
l2 binding vsi XXX
#
interface Virtual-Ethernet0/2/1
ve-group 1 l3-access
#
interface Virtual-Ethernet0/2/1.204
vlan-type dot1q 204
description YYY L3VPN FOR WIRELESS SSID
ip binding vpn-instance YYY
ip address 10.38.9.1255.255.255.0
#
You can also refer to:
https://support.huawei.com/hedex/hdx.do?docid=EDOC1000142116&id=dc_vrp_l2-l3_cfg_5008&lang=en
And here refer to UPE, NPE, and PE to understand the network topology and traffic flow:
https://support.huawei.com/hedex/hdx.do?docid=EDOC1000142116&id=dc_vrp_l2-l3_cfg_5025&lang=en
I hope it helps!