Layer 3 LAG on vRR 7750 SR-12

In this lab I wanted to try if LAG (Link Aggregation Group) will work GNS3.

Very basic configuration:

On R1 as following

A:R1>config>port# info 
----------------------------------------------
        ethernet
            no autonegotiate
        exit
        no shutdown
----------------------------------------------
A:R1>config>lag# info 
----------------------------------------------
        port 1/1/1 
        no shutdown
----------------------------------------------
A:R1>config>router>if# info 
----------------------------------------------
            address 12.12.12.1/30
            port lag-12
            no shutdown
----------------------------------------------
A:R1>config>router>isis# info 
----------------------------------------------
            level-capability level-1
            area-id 49.01
            interface "system"
                no shutdown
            exit
            interface "toR2"
                interface-type point-to-point
                no shutdown
            exit
            no shutdown
----------------------------------------------

On R2 as following

A:R2>config>port# info 
----------------------------------------------
        ethernet
            no autonegotiate
        exit
        no shutdown
----------------------------------------------
A:R2>config>lag# info 
----------------------------------------------
        port 1/1/1 
        no shutdown
----------------------------------------------
A:R2>config>router>if# info 
----------------------------------------------
            address 12.12.12.2/30
            port lag-12
            no shutdown
----------------------------------------------
A:R2>config>router>isis# info 
----------------------------------------------
            level-capability level-1
            area-id 49.01
            interface "system"
                no shutdown
            exit
            interface "toR1"
                interface-type point-to-point
                no shutdown
            exit
            no shutdown
----------------------------------------------

validation:

A:R1# show router interface "toR2" 

=============================================================================
Interface Table (Router: Base)
=============================================================================
Interface-Name                   Adm         Opr(v4/v6)  Mode    Port/SapId
   IP-Address                                                    PfxState
-----------------------------------------------------------------------------
toR2                             Up          Up/--       Network lag-12
   12.12.12.1/30                                                 n/a
-----------------------------------------------------------------------------
Interfaces : 1
=============================================================================
A:R1# show lag 12 

=============================================================================
Lag Data
=============================================================================
Lag-id         Adm     Opr     Weighted Threshold Up-Count MC Act/Stdby
-----------------------------------------------------------------------------
12             up      up      No       0         1        N/A
=============================================================================
A:R1# show port  

=============================================================================
Ports on Slot 1
=============================================================================
Port        Admin Link Port    Cfg  Oper LAG/ Port Port Port   C/QS/S/XFP/
Id          State      State   MTU  MTU  Bndl Mode Encp Type   MDIMDX
-----------------------------------------------------------------------------
1/1/1       Up    Yes  Up      8936 8936   12 netw null xcme   GIGE-LX  10KM
1/1/2       Down  No   Down    8936 8936    - netw null xcme   GIGE-LX  10KM
1/1/3       Down  No   Down    8936 8936    - netw null xcme   GIGE-LX  10KM
1/1/4       Down  No   Down    8936 8936    - netw null xcme   GIGE-LX  10KM
1/1/5       Down  No   Down    8936 8936    - netw null xcme   GIGE-LX  10KM

=============================================================================
Ports on Slot A
=============================================================================
Port        Admin Link Port    Cfg  Oper LAG/ Port Port Port   C/QS/S/XFP/
Id          State      State   MTU  MTU  Bndl Mode Encp Type   MDIMDX
-----------------------------------------------------------------------------
A/1         Up    No   Down    1514 1514    - netw null faste  

=============================================================================
Ports on Slot B                       
=============================================================================
Port        Admin Link Port    Cfg  Oper LAG/ Port Port Port   C/QS/S/XFP/
Id          State      State   MTU  MTU  Bndl Mode Encp Type   MDIMDX
-----------------------------------------------------------------------------
B/1         Up    No   Ghost   1514 1514    - netw null faste  
=============================================================================

but I cannot ping

A:R1# ping 12.12.12.2 
PING 12.12.12.2 56 data bytes
Request timed out. icmp_seq=1.
Request timed out. icmp_seq=2.
Request timed out. icmp_seq=3.
Request timed out. icmp_seq=4.
Request timed out. icmp_seq=5.

---- 12.12.12.2 PING Statistics ----
5 packets transmitted, 0 packets received, 100% packet loss

Although ISIS adjacency and routing table are updated.

A:R1# show router isis adjacency 

=============================================================================
Router Base ISIS Instance 0 Adjacency
=============================================================================
System ID                Usage State Hold Interface                     MT-ID
-----------------------------------------------------------------------------
vRR                      L1    Up    25   toR2                          0
-----------------------------------------------------------------------------
Adjacencies : 1
=============================================================================
A:vRR# show router route-         
route-next-hop-policy      route-table
A:vRR# show router route-table 

=============================================================================
Route Table (Router: Base)
=============================================================================
Dest Prefix[Flags]                            Type    Proto     Age      Pref
      Next Hop[Interface Name]                                    Metric   
-----------------------------------------------------------------------------
1.1.1.1/32                                    Local   Local     00h25m56s  0
       system                                                       0
2.2.2.2/32                                    Remote  ISIS      00h19m21s  15
       12.12.12.2                                                   10
12.12.12.0/30                                 Local   Local     00h19m22s  0
       toR2                                                         0
-----------------------------------------------------------------------------
No. of Routes: 3
Flags: n = Number of times nexthop is repeated
       B = BGP backup route available
       L = LFA nexthop available
       S = Sticky ECMP requested
=============================================================================

Anything I missed here or the emulator just really does not work well? any thought, comment, etc? thanks!

I will test LAG as layer 2 some other time.